@adaptive-web/adaptive-web-components
v0.8.1
Published
Standards based, framework agnostic web components built using FAST.
Downloads
333
Readme
Adaptive Web Components
Note this is an alpha release. The components are functional and performant and safe to use. They are however based on the beta release of FAST Element.
While we are committed to following semver for this project, it's important to note that while we move through alpha and beta, minor version numbers can and will likely include breaking changes until we hit 1.0.0. After 1.0.0, we will be aligned with semver2.0.
We currently recommend consuming them with as few adjustments as possible because many common issues will be made much easier, including building your own customized design system.
Please see the Next Steps for upcoming work.
What
This project is based on FAST and implements the first comprehensive web component library built as Web Components for enterprise web software utilizing the power of Adaptive User Interfaces.
Why
Stop reinventing the wheel, and cut your engineering costs by up to 75%! Simply consume these Web Components, configure your own brand and design system, and start building immediately.
- Optimized for performance
- Optimized for scale
- Optimized for accessibility
- Build on the latest Open Web Standards
- Build on architectural best practices
- Build on framework-less TypeScript foundation
- Built for Design-to-Code principles
How
Add the components:
npm install "@adaptive-web/adaptive-web-components"
Import and use everything:
import { AdaptiveDesignSystem } "@adaptive-web/adaptive-web-components";
import { AllComponents } from "@adaptive-web/adaptive-web-components/all-components";
AdaptiveDesignSystem.defineComponents(AllComponents);
Import via CDN link on a script tag:
<!DOCTYPE html>
<html lang="en">
<head>
<script type="module" src="https://cdn.jsdelivr.net/npm/@adaptive-web/adaptive-web-components/dist/adaptive-web-components.min.js"></script>
</head>
<!-- ... -->
</html>
Author html with imported components:
<adaptive-button>Click Me</adaptive-button>
See the examples for more details.
Next Steps
- Component styling will evolve with the capabilities of Adaptive UI. Default component styles are currently split between
templateStyles
andaestheticStyles
. The aesthetic styles will migrate to a modular styling approach that will be configurable using the Design Tokens Community Group working format standards. - Universal support for an
appearance
attribute on all components, allowing for extreme flexibility in creating and styling the variations you need. - Evolving the component definition model for enhanced customization.