Sorry, but you either have no stories or none are selected somehow.
If the problem persists, check the browser console, or the terminal you've run Storybook from.
The fundamental-react
library is a set of React components built using SAP Fundamental Styles.
The Fundamental Styles library is a design system and HTML/CSS component library used to build modern product user experiences with the SAP look and feel.
See Component Documentation for examples and API details.
You will need to install Node and Node Package Manager.
Fundamental React requires a polyfill for:
You will need to add your own polyfills. See core-js for instructions.
For an existing react application, follow the steps below:
Install fundamental-react
.
All components are currently packaged together with their respective css
, you will need to edit your webpack configuration to handle these files. See css-loader.
Import components as needed. See Component Documentation for examples and API details.
or
NOTE: Importing from specific component is recommended. Doing so will bring in only the component you are using instead of the whole library, which will reduce your bundle size significantly.
Additionally, edit your webpack configuration to load font and icon fonts - see file-loader.
All styles are based on rem
units. Include the following in your CSS to ensure components are sized correctly:
The fundamental-react
library follows Semantic Versioning. These components strictly adhere to the [MAJOR].[MINOR].[PATCH]
numbering system (also known as [BREAKING].[FEATURE].[FIX]
).
Merges to the main
branch will be published as a prerelease. Prereleases will include an rc version (e.g. [MAJOR].[MINOR].[PATCH]-rc.[RC]
).
The following circumstances will be considered a BREAKING change:
The following circumstances will NOT be considered a BREAKING change:
role
, aria-*
, data-*
)role
, aria-*
, data-*
)This library supports css-modules. The motivation for this support is to be able to include multiple versions or instances of fundamental styles on the same page without collisions in styles. This can be useful if you have a page using fundamental-ngx alongside fundamental-react, for example.
One way to use fundamental-react with hashed class names is to pass the library code through css-loader in your webpack config
It's important to include [local]
in the localIdentName which keeps the class name in the hash. This is because some of the style rules in fundamental-styles reference the name of the class, like [class*=level]
.
Please see Issues.
If you encounter an issue or want to request a feature, you can create an issue.
If you want to contribute, please check the Contribution Guidelines. Also see our Developer Guide to Getting Started.
For the MAC M1 user, to Set up your local dev environment, you need to run the project under node x86.