rds-ui-system 2.3.0 → 2.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -0
- package/dist/lib/components/icons/iconMapping.d.ts +10 -0
- package/dist/rds-ui-system.es.js +609 -549
- package/dist/rds-ui-system.umd.js +649 -586
- package/dist/style.css +27 -17
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -22,6 +22,7 @@ https://storybook.remondis.io/
|
|
|
22
22
|
1. Install dependencies with `pnpm i` (first run `corepack enable` to enable pnpm)
|
|
23
23
|
2. Run `pnpm prepare` command to setup [Husky](https://typicode.github.io/husky) pre-commit hooks.
|
|
24
24
|
|
|
25
|
+
|
|
25
26
|
### Main Scripts
|
|
26
27
|
|
|
27
28
|
Always prepending pnpm:
|
|
@@ -224,5 +224,15 @@ export declare const iconMapping: {
|
|
|
224
224
|
isDisabled: boolean,
|
|
225
225
|
bgFillColor: string,
|
|
226
226
|
) => import('react/jsx-runtime').JSX.Element
|
|
227
|
+
readonly Visibility: (
|
|
228
|
+
isOutlined: boolean,
|
|
229
|
+
isDisabled: boolean,
|
|
230
|
+
bgFillColor: string,
|
|
231
|
+
) => import('react/jsx-runtime').JSX.Element
|
|
232
|
+
readonly VisibilityOff: (
|
|
233
|
+
isOutlined: boolean,
|
|
234
|
+
isDisabled: boolean,
|
|
235
|
+
bgFillColor: string,
|
|
236
|
+
) => import('react/jsx-runtime').JSX.Element
|
|
227
237
|
}
|
|
228
238
|
export type IconName = keyof typeof iconMapping
|