@lux-design-system/components-react 1.0.0 → 1.0.1
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/dist/index.mjs +452 -12161
- package/dist/index.umd.js +431 -12140
- package/dist/src/icon/FallbackIcon.d.ts +1 -0
- package/dist/src/icon/Icon.d.ts +3 -5
- package/package.json +2 -3
package/dist/src/icon/Icon.d.ts
CHANGED
|
@@ -1,8 +1,6 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { IconProps as UtrechtIconProps } from '@utrecht/component-library-react';
|
|
1
|
+
import { IconProps as UtrechtIconProps } from '@utrecht/component-library-react/dist/css-module';
|
|
3
2
|
import { PropsWithChildren, ReactNode } from 'react';
|
|
4
3
|
export type LuxIconProps = UtrechtIconProps & {
|
|
5
|
-
|
|
6
|
-
library?: Record<string, ReactNode>;
|
|
4
|
+
icon?: ReactNode;
|
|
7
5
|
};
|
|
8
|
-
export declare const LuxIcon: ({
|
|
6
|
+
export declare const LuxIcon: ({ icon, children }: PropsWithChildren<LuxIconProps>) => ReactNode;
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "1.0.
|
|
2
|
+
"version": "1.0.1",
|
|
3
3
|
"author": "Community for NL Design System",
|
|
4
4
|
"description": "React component library for LUX, the Design System for Logius, based on the NL Design System architecture",
|
|
5
5
|
"license": "EUPL-1.2",
|
|
@@ -35,8 +35,7 @@
|
|
|
35
35
|
"@utrecht/focus-ring-css": "2.3.0",
|
|
36
36
|
"clsx": "2.1.1",
|
|
37
37
|
"date-fns": "3.6.0",
|
|
38
|
-
"lodash.chunk": "4.2.0"
|
|
39
|
-
"@lux-design-system/icons": "1.0.0"
|
|
38
|
+
"lodash.chunk": "4.2.0"
|
|
40
39
|
},
|
|
41
40
|
"devDependencies": {
|
|
42
41
|
"@babel/core": "7.25.2",
|