@nation-a/ui 0.16.4 → 0.16.5
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.cjs +146 -63
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +146 -63
- package/dist/index.js.map +1 -1
- package/dist/types/components/index.d.ts +1 -0
- package/package.json +6 -4
|
@@ -16,4 +16,5 @@ export { default as RadioGroup, type RadioGroupProps } from './RadioGroup';
|
|
|
16
16
|
export { default as Checkbox, type CheckboxProps } from './Checkbox';
|
|
17
17
|
export { default as Switch, type SwitchProps } from './Switch';
|
|
18
18
|
export { default as Fab, type FabProps } from './Fab';
|
|
19
|
+
export { default as List, type ListProps, type ListItemProps } from './List';
|
|
19
20
|
export * from './Layout';
|
package/package.json
CHANGED
|
@@ -1,15 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nation-a/ui",
|
|
3
|
-
"version": "0.16.
|
|
3
|
+
"version": "0.16.5",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"types": "./dist/types/index.d.ts",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
7
7
|
"module": "./dist/index.js",
|
|
8
|
+
"private": false,
|
|
8
9
|
"files": [
|
|
9
10
|
"dist"
|
|
10
11
|
],
|
|
11
12
|
"publishConfig": {
|
|
12
|
-
"access": "public"
|
|
13
|
+
"access": "public",
|
|
14
|
+
"registry": "https://registry.npmjs.org"
|
|
13
15
|
},
|
|
14
16
|
"dependencies": {
|
|
15
17
|
"@ark-ui/react": "^5.1.0",
|
|
@@ -20,8 +22,8 @@
|
|
|
20
22
|
"react-dom": "^18.3.1",
|
|
21
23
|
"react-hot-toast": "^2.5.2",
|
|
22
24
|
"react-lottie": "^1.2.10",
|
|
23
|
-
"@nation-a/
|
|
24
|
-
"@nation-a/
|
|
25
|
+
"@nation-a/icons": "0.2.0",
|
|
26
|
+
"@nation-a/tokens": "0.2.3"
|
|
25
27
|
},
|
|
26
28
|
"devDependencies": {
|
|
27
29
|
"@chromatic-com/storybook": "^3",
|