A library of white-label, highly-customizable and reusable web components.
Visit the Chameleon Showcase for general information, demos and documentation.
There are three strategies we recommend for using these web components.
-
Run
npm i @genexus/chameleon-controls-library --save
-
Put a script tag similar to this
<script src="node_modules/@genexus/chameleon-controls-library/dist/chameleon/chameleon.esm.js"></script>
in the head of your index.html -
Then you can use the web components anywhere in your template, JSX, html etc
-
Run
npm i @genexus/chameleon-controls-library --save
-
Add an import to the library inside
src/index.ts
:import "@genexus/chameleon-controls-library";
-
Then you can use the web components anywhere in your template, JSX, html etc
-
Put a script tag similar to this
<script src="https://unpkg.com/@genexus/chameleon-controls-library@latest/dist/chameleon/chameleon.esm.js"></script>
in the head of your index.html -
Then you can use the web components anywhere in your template, JSX, html etc
Category | Description |
---|---|
"experimental" |
The control is in its early stages of the development. This phase is often useful for testing the control early, but it is very likely that the interface will change from the final version. Breaking changes for the control can be applied in "patch" tags. |
"developer-preview" |
The control is in its final stages of the development. The interface and behaviors to implement the control are almost complete. The interface of the control should not change so much from the final version. Breaking changes for the control can be applied in "patch" tags. |
"stable" |
The control's development is stable and can be safety used in production environments. Breaking changes for the control can be applied in "major" tags. In some cases, two "major" tags would be used to deprecate a behavior in the control. |
npm i
npm start
To run the unit tests for the custom elements, run:
npm test
To run the spec tests for a specific custom element, run:
npm run test.spec src/components/<path to test file.spec.ts>
## For example:
npm run test.spec src/components/layout-splitter/tests/fixAndUpdateLayoutModel.spec.ts
To watch changes for tests (spec and e2e), run:
npm run test.watch
To watch only one file, run:
npm run test.watch -- -- src/components/edit/<path to test file.<spec|e2e>.ts>
## For example:
npm run test.watch -- -- src/components/edit/tests/edit.e2e.ts
To build the design for production, run:
npm run build