sy-ui-lib 1.0.29 → 1.0.30
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/components/BankingDetailsCard/BankingDetailsCard.component.d.ts +27 -0
- package/dist/components/BankingDetailsCard/BankingDetailsCard.stories.d.ts +11 -0
- package/dist/components/BankingDetailsCard/BankingDetailsCard.types.d.ts +35 -0
- package/dist/components/BankingDetailsCard/index.d.ts +3 -0
- package/dist/components/Icon/SvgIcons.d.ts +1 -0
- package/dist/components/index.d.ts +1 -0
- package/dist/index.cjs +18 -18
- package/dist/index.css +1 -1
- package/dist/index.js +3230 -3125
- package/package.json +61 -61
package/package.json
CHANGED
|
@@ -1,61 +1,61 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "sy-ui-lib",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"main": "dist/index.cjs",
|
|
5
|
-
"module": "dist/index.js",
|
|
6
|
-
"types": "dist/index.d.ts",
|
|
7
|
-
"files": ["dist"],
|
|
8
|
-
"exports": {
|
|
9
|
-
".": {
|
|
10
|
-
"import": "./dist/index.js",
|
|
11
|
-
"require": "./dist/index.cjs"
|
|
12
|
-
},
|
|
13
|
-
"./dist/index.css": "./dist/index.css"
|
|
14
|
-
},
|
|
15
|
-
"type": "module",
|
|
16
|
-
"scripts": {
|
|
17
|
-
"lint": "eslint .",
|
|
18
|
-
"preview": "vite preview",
|
|
19
|
-
"storybook": "storybook dev -p 6006",
|
|
20
|
-
"build-storybook": "storybook build",
|
|
21
|
-
"build": "vite build",
|
|
22
|
-
"prepare": "husky"
|
|
23
|
-
},
|
|
24
|
-
"dependencies": {
|
|
25
|
-
"@tailwindcss/vite": "^4.1.8",
|
|
26
|
-
"@tanstack/react-table": "^8.21.3",
|
|
27
|
-
"react": "^19.1.0",
|
|
28
|
-
"react-day-picker": "^9.7.0",
|
|
29
|
-
"react-dom": "^19.1.0",
|
|
30
|
-
"react-time-picker": "^7.0.0",
|
|
31
|
-
"yarn": "^1.22.22"
|
|
32
|
-
},
|
|
33
|
-
"devDependencies": {
|
|
34
|
-
"@biomejs/biome": "1.9.4",
|
|
35
|
-
"@chromatic-com/storybook": "^4.0.0",
|
|
36
|
-
"@eslint/js": "^9.25.0",
|
|
37
|
-
"@storybook/addon-a11y": "^9.0.4",
|
|
38
|
-
"@storybook/addon-docs": "^9.0.4",
|
|
39
|
-
"@storybook/addon-onboarding": "^9.0.4",
|
|
40
|
-
"@storybook/react-vite": "^9.0.4",
|
|
41
|
-
"@types/node": "^22.15.29",
|
|
42
|
-
"@types/react": "^19.1.6",
|
|
43
|
-
"@types/react-dom": "^19.1.6",
|
|
44
|
-
"@vitejs/plugin-react": "^4.4.1",
|
|
45
|
-
"autoprefixer": "^10.4.21",
|
|
46
|
-
"eslint-plugin-react-hooks": "^5.2.0",
|
|
47
|
-
"eslint-plugin-react-refresh": "^0.4.19",
|
|
48
|
-
"eslint-plugin-storybook": "^9.0.4",
|
|
49
|
-
"globals": "^16.0.0",
|
|
50
|
-
"husky": "^9.1.7",
|
|
51
|
-
"lint-staged": "^16.1.0",
|
|
52
|
-
"playwright": "^1.52.0",
|
|
53
|
-
"postcss": "^8.5.4",
|
|
54
|
-
"storybook": "^9.0.4",
|
|
55
|
-
"tailwindcss": "^4.1.8",
|
|
56
|
-
"typescript": "~5.8.3",
|
|
57
|
-
"typescript-eslint": "^8.30.1",
|
|
58
|
-
"vite": "^6.3.5",
|
|
59
|
-
"vite-plugin-dts": "^4.5.4"
|
|
60
|
-
}
|
|
61
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "sy-ui-lib",
|
|
3
|
+
"version": "1.0.30",
|
|
4
|
+
"main": "dist/index.cjs",
|
|
5
|
+
"module": "dist/index.js",
|
|
6
|
+
"types": "dist/index.d.ts",
|
|
7
|
+
"files": ["dist"],
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"import": "./dist/index.js",
|
|
11
|
+
"require": "./dist/index.cjs"
|
|
12
|
+
},
|
|
13
|
+
"./dist/index.css": "./dist/index.css"
|
|
14
|
+
},
|
|
15
|
+
"type": "module",
|
|
16
|
+
"scripts": {
|
|
17
|
+
"lint": "eslint .",
|
|
18
|
+
"preview": "vite preview",
|
|
19
|
+
"storybook": "storybook dev -p 6006",
|
|
20
|
+
"build-storybook": "storybook build",
|
|
21
|
+
"build": "vite build",
|
|
22
|
+
"prepare": "husky"
|
|
23
|
+
},
|
|
24
|
+
"dependencies": {
|
|
25
|
+
"@tailwindcss/vite": "^4.1.8",
|
|
26
|
+
"@tanstack/react-table": "^8.21.3",
|
|
27
|
+
"react": "^19.1.0",
|
|
28
|
+
"react-day-picker": "^9.7.0",
|
|
29
|
+
"react-dom": "^19.1.0",
|
|
30
|
+
"react-time-picker": "^7.0.0",
|
|
31
|
+
"yarn": "^1.22.22"
|
|
32
|
+
},
|
|
33
|
+
"devDependencies": {
|
|
34
|
+
"@biomejs/biome": "1.9.4",
|
|
35
|
+
"@chromatic-com/storybook": "^4.0.0",
|
|
36
|
+
"@eslint/js": "^9.25.0",
|
|
37
|
+
"@storybook/addon-a11y": "^9.0.4",
|
|
38
|
+
"@storybook/addon-docs": "^9.0.4",
|
|
39
|
+
"@storybook/addon-onboarding": "^9.0.4",
|
|
40
|
+
"@storybook/react-vite": "^9.0.4",
|
|
41
|
+
"@types/node": "^22.15.29",
|
|
42
|
+
"@types/react": "^19.1.6",
|
|
43
|
+
"@types/react-dom": "^19.1.6",
|
|
44
|
+
"@vitejs/plugin-react": "^4.4.1",
|
|
45
|
+
"autoprefixer": "^10.4.21",
|
|
46
|
+
"eslint-plugin-react-hooks": "^5.2.0",
|
|
47
|
+
"eslint-plugin-react-refresh": "^0.4.19",
|
|
48
|
+
"eslint-plugin-storybook": "^9.0.4",
|
|
49
|
+
"globals": "^16.0.0",
|
|
50
|
+
"husky": "^9.1.7",
|
|
51
|
+
"lint-staged": "^16.1.0",
|
|
52
|
+
"playwright": "^1.52.0",
|
|
53
|
+
"postcss": "^8.5.4",
|
|
54
|
+
"storybook": "^9.0.4",
|
|
55
|
+
"tailwindcss": "^4.1.8",
|
|
56
|
+
"typescript": "~5.8.3",
|
|
57
|
+
"typescript-eslint": "^8.30.1",
|
|
58
|
+
"vite": "^6.3.5",
|
|
59
|
+
"vite-plugin-dts": "^4.5.4"
|
|
60
|
+
}
|
|
61
|
+
}
|