@devniel/carbon-components-react
v5.5.1-8-alpha.1
Published
A React wrapper for carbon-components
Downloads
11
Maintainers
Readme
A fork of https://github.com/IBM/carbon-components-react with changes for:
- Tooltip
- Radio Button
- Check box
- DataTable: tools/normalize.js
- DataTable: TableHeader
Usage
List of Available Components
View available React Components here. You can see usage information in several ways:
- Clicking the blue Show Info icon in the top right corner of the selected component. You can see the list of available React props
- Clicking the STORY tab at the bottom. This tab contains the code that shows how the component is being used
- Clicking the KNOBS tab at the bottom and changing values there. Most knobs are shown as something like
Button kind (kind)
, wherekind
is the name of React prop - Clicking the ACTION LOGGER tab at the bottom and interacting with the selected component. You may see something like
onClick
which typically indicates that the event handler (React prop) with the same name is called. You can also expand the twistie to see the details of the event - Clicking the README tab at the bottom. You can see some more document for some components
Getting Started
Run the following command using npm:
npm install -S @devniel/carbon-components-react @devniel/carbon-components carbon-icons
If you prefer Yarn, use the following command instead:
yarn add @devniel/carbon-components-react @devniel/carbon-components carbon-icons
These components require the use of Webpack in your project. See our
webpack.config.js
for an example configuration.Components do not import any of the styles themselves, use the scss or css from
@devniel/carbon-components
to bring in styling.For older browsers (e.g. IE11), polyfills listed in
carbon-components-react/.storybook/polyfills.js
file is required.
If you just want to try out @devniel/carbon-components-react
, you can also use CodeSandbox.
Development
Please refer to the Contribution Guidelines before starting any work.
Using the server
We recommend the use of React Storybook for developing components.
(Optional) Set environment variables:
true
toCARBON_USE_EXPERIMENTAL_FEATURES
environment variable to test some of the experimental features:$ export CARBON_USE_EXPERIMENTAL_FEATURES=true
true
toCARBON_REACT_STORYBOOK_USE_EXTERNAL_CSS
environment variable to use external CSS, making style source link usable in DOM inspector:$ export CARBON_REACT_STORYBOOK_USE_EXTERNAL_CSS=true
true
toCARBON_REACT_STORYBOOK_USE_STYLE_SOURCEMAP
environment variable to use Sass source map, making style source link point to the original Sass code:$ export CARBON_REACT_STORYBOOK_USE_STYLE_SOURCEMAP=true
Caveats:
CARBON_REACT_STORYBOOK_USE_EXTERNAL_CSS=true
andCARBON_REACT_STORYBOOK_USE_STYLE_SOURCEMAP=true
make WebPack builds slightly slower.- With
CARBON_REACT_STORYBOOK_USE_STYLE_SOURCEMAP=true
, the source map (hitting style source link in DOM inspector) sometimes leads you to a mix-in, instead of a style rule calling the mix-in, which may get you lost.
Start the server:
$ yarn storybook
Open browser to
http://localhost:9000/
.Develop components in their respective folders (
/components
or/internal
).Write stories for your components in
/.storybook
.