@sellgar/kit 0.0.30 → 0.0.32
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/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"type": "module",
|
|
3
3
|
"name": "@sellgar/kit",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.32",
|
|
5
5
|
"description": "Sellgar storybook",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
7
7
|
"module": "./dist/index.js",
|
|
@@ -10,6 +10,12 @@
|
|
|
10
10
|
"type": "git",
|
|
11
11
|
"url": "git+https://github.com/pyatakovvg/sellgar.ui.kit.git"
|
|
12
12
|
},
|
|
13
|
+
"scripts": {
|
|
14
|
+
"dev": "vite build --watch",
|
|
15
|
+
"build": "vite build",
|
|
16
|
+
"login": "npm login",
|
|
17
|
+
"publish": "npm publish"
|
|
18
|
+
},
|
|
13
19
|
"files": [
|
|
14
20
|
"./dist/*",
|
|
15
21
|
"./types/*"
|
|
@@ -26,12 +32,6 @@
|
|
|
26
32
|
"./theme.css": "./dist/index2.css",
|
|
27
33
|
"./theme-viewport.css": "./dist/index3.css"
|
|
28
34
|
},
|
|
29
|
-
"scripts": {
|
|
30
|
-
"dev": "vite build --watch",
|
|
31
|
-
"build": "vite build",
|
|
32
|
-
"login": "npm login",
|
|
33
|
-
"publish": "npm publish"
|
|
34
|
-
},
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"@floating-ui/dom": "1.6.13",
|
|
37
37
|
"@floating-ui/react": "0.27.4",
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { TIconName } from '../icon';
|
|
3
|
+
interface IProps {
|
|
4
|
+
size?: 'sm' | 'md';
|
|
5
|
+
active?: boolean;
|
|
6
|
+
showdivider?: boolean;
|
|
7
|
+
divider?: '>' | '/';
|
|
8
|
+
leadicon?: TIconName;
|
|
9
|
+
tailicon?: TIconName;
|
|
10
|
+
label: string;
|
|
11
|
+
}
|
|
12
|
+
export declare const Breadcrumb: React.FC<IProps>;
|
|
13
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { Breadcrumb } from './breadcrumb.tsx';
|