Skip to content

A library of white-label, highly-customizable and reusable web components

License

Notifications You must be signed in to change notification settings

genexuslabs/chameleon-controls-library

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ci status Netlify Status Built With Stencil code style: prettier

Chameleon

A library of white-label, highly-customizable and reusable web components.

Visit the Chameleon Showcase for general information, demos and documentation.

Using this library

There are three strategies we recommend for using these web components.

Node Modules

  • 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

In a Stencil project

  • 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

Script tag

  • 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

Meaning of development status in each control

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.

Local Development

npm i
npm start

Running the tests

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

Building for production

To build the design for production, run:

npm run build