JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 5
  • Score
    100M100P100Q52143F
  • License MIT

Camel Components

Package Exports

  • camel-components

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (camel-components) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

camel-components

Standalone React Components

Simple React components without additional dependencies.

Example page

https://musemind.github.io/camel-components/

Repository

https://github.com/musemind/camel-components/ Contributions are very welcome!

Use it:

  • Install npm package
npm install camel-components --save

Changelog:

0.1.0

Breaking Change:

Simplification: If you want to update an existing element, use styleUpdate as an object, not a boolean. Don't use styleUpdate and style in one element object.

New:

scenes={[
  {name: 'scene name', frames: 10, elements: {
    bar: {styleUpdate: {left: '30px'}}
  }}
}]

Deprecated:

scenes={[
  {name: 'scene name', frames: 10, elements: {
    bar: {styleUpdate: true, style: {left: '30px'}}
  }}
}]