droplinked-ui-kit 0.0.1 → 0.0.3
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/droplinked-ui-kit.cjs +2 -2
- package/dist/droplinked-ui-kit.js +436 -397
- package/dist/index.d.ts +11 -0
- package/package.json +4 -4
package/dist/index.d.ts
CHANGED
|
@@ -125,6 +125,17 @@ export declare const defaultSystem: SystemContext;
|
|
|
125
125
|
*/
|
|
126
126
|
export declare const defaultTypography: TypographyConfigs;
|
|
127
127
|
|
|
128
|
+
export declare function Divider(props: DividerProps): JSX.Element;
|
|
129
|
+
|
|
130
|
+
declare type DividerOrientation = 'horizontal' | 'vertical';
|
|
131
|
+
|
|
132
|
+
declare interface DividerProps extends BoxProps {
|
|
133
|
+
orientation?: DividerOrientation;
|
|
134
|
+
length?: BoxProps['width'];
|
|
135
|
+
thickness?: BoxProps['height'];
|
|
136
|
+
colorToken?: string;
|
|
137
|
+
}
|
|
138
|
+
|
|
128
139
|
export declare function Dropdown(props: DropdownProps): JSX.Element;
|
|
129
140
|
|
|
130
141
|
declare interface DropdownProps {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "droplinked-ui-kit",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.3",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/droplinked-ui-kit.cjs",
|
|
6
6
|
"module": "./dist/droplinked-ui-kit.js",
|
|
@@ -24,9 +24,6 @@
|
|
|
24
24
|
"build-storybook": "storybook build"
|
|
25
25
|
},
|
|
26
26
|
"peerDependencies": {
|
|
27
|
-
"@chakra-ui/react": "^3.30.0",
|
|
28
|
-
"@emotion/react": "^11.14.0",
|
|
29
|
-
"next-themes": "^0.4.6",
|
|
30
27
|
"react": "^19.2.0",
|
|
31
28
|
"react-dom": "^19.2.0"
|
|
32
29
|
},
|
|
@@ -67,6 +64,9 @@
|
|
|
67
64
|
"vitest": "^4.0.18"
|
|
68
65
|
},
|
|
69
66
|
"dependencies": {
|
|
67
|
+
"@chakra-ui/react": "^3.30.0",
|
|
68
|
+
"@emotion/react": "^11.14.0",
|
|
69
|
+
"next-themes": "^0.4.6",
|
|
70
70
|
"react-router-dom": "^7.12.0"
|
|
71
71
|
}
|
|
72
72
|
}
|