stp-ui-kit 0.0.43 → 0.0.45
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/README.md +93 -93
- package/dist/banners/Sat.svg +3 -3
- package/dist/banners/SatFinished.svg +3 -3
- package/dist/icons/ArrowLine.svg +3 -3
- package/dist/icons/ParentLine.svg +3 -3
- package/dist/icons/SideLine.svg +3 -3
- package/dist/icons/decorativeIcons/Alert.svg +11 -11
- package/dist/icons/decorativeIcons/Error.svg +11 -11
- package/dist/icons/decorativeIcons/Locked.svg +10 -10
- package/dist/icons/decorativeIcons/Success.svg +10 -10
- package/dist/shared/@types/resources.d.ts +5 -5
- package/dist/shared/i18n/i18next.d.ts +7 -9
- package/dist/stp-ui-kit.cjs.js.map +1 -1
- package/dist/stp-ui-kit.es.js.map +1 -1
- package/package.json +95 -95
- package/src/styles/_variables.scss +440 -440
package/package.json
CHANGED
|
@@ -1,95 +1,95 @@
|
|
|
1
|
-
{
|
|
2
|
-
"main": "dist/stp-ui-kit.cjs.js",
|
|
3
|
-
"module": "dist/stp-ui-kit.es.js",
|
|
4
|
-
"types": "dist/types/index.d.ts",
|
|
5
|
-
"style": "dist/styles/index.css",
|
|
6
|
-
"files": [
|
|
7
|
-
"dist",
|
|
8
|
-
"src/styles/_variables.scss"
|
|
9
|
-
],
|
|
10
|
-
"publishConfig": {
|
|
11
|
-
"access": "public"
|
|
12
|
-
},
|
|
13
|
-
"name": "stp-ui-kit",
|
|
14
|
-
"version": "0.0.
|
|
15
|
-
"type": "module",
|
|
16
|
-
"scripts": {
|
|
17
|
-
"dev": "vite",
|
|
18
|
-
"build": "vite build",
|
|
19
|
-
"lint": "eslint --ext .ts,.tsx ./src",
|
|
20
|
-
"preview": "vite preview",
|
|
21
|
-
"format": "yarn prettier ./src/**/*.{ts,tsx} --write",
|
|
22
|
-
"storybook": "storybook dev -p 6006",
|
|
23
|
-
"build-storybook": "storybook build",
|
|
24
|
-
"interface:locales": "yarn run interface:locales:ru && yarn run interface:locales:kz && yarn run interface:locales:uz && yarn run interface:locales:en",
|
|
25
|
-
"interface:locales:kz": "i18next-resources-for-ts interface -i ./src/shared/i18n/locales/kz -o ./src/shared/@types/resources.d.ts",
|
|
26
|
-
"interface:locales:ru": "i18next-resources-for-ts interface -i ./src/shared/i18n/locales/ru -o ./src/shared/@types/resources.d.ts",
|
|
27
|
-
"interface:locales:uz": "i18next-resources-for-ts interface -i ./src/shared/i18n/locales/uz -o ./src/shared/@types/resources.d.ts",
|
|
28
|
-
"interface:locales:en": "i18next-resources-for-ts interface -i ./src/shared/i18n/locales/en -o ./src/shared/@types/resources.d.ts",
|
|
29
|
-
"generate-tokens": "tsx scripts/generate-tokens.ts"
|
|
30
|
-
},
|
|
31
|
-
"dependencies": {
|
|
32
|
-
"@tailwindcss/vite": "^4.0.7",
|
|
33
|
-
"class-variance-authority": "^0.7.1",
|
|
34
|
-
"classnames": "^2.5.1",
|
|
35
|
-
"clsx": "^2.1.1",
|
|
36
|
-
"i18next": "^24.2.2",
|
|
37
|
-
"immer": "^10.1.1",
|
|
38
|
-
"lucide-react": "^0.511.0",
|
|
39
|
-
"react-hook-form": "^7.57.0",
|
|
40
|
-
"react-input-mask": "^2.0.4",
|
|
41
|
-
"react-router-dom": "^7.6.0",
|
|
42
|
-
"sonner": "^2.0.5",
|
|
43
|
-
"tailwind-merge": "^3.3.0",
|
|
44
|
-
"tailwindcss": "^4.0.7",
|
|
45
|
-
"vite-plugin-dts": "^4.5.4"
|
|
46
|
-
},
|
|
47
|
-
"devDependencies": {
|
|
48
|
-
"@eslint/js": "^9.3.0",
|
|
49
|
-
"@feature-sliced/eslint-config": "^0.1.1",
|
|
50
|
-
"@storybook/addon-essentials": "^8.6.14",
|
|
51
|
-
"@storybook/addon-interactions": "^8.6.14",
|
|
52
|
-
"@storybook/addon-links": "^8.6.14",
|
|
53
|
-
"@storybook/addon-onboarding": "^8.6.14",
|
|
54
|
-
"@storybook/blocks": "^8.6.14",
|
|
55
|
-
"@storybook/react": "^8.6.14",
|
|
56
|
-
"@storybook/react-vite": "^8.6.14",
|
|
57
|
-
"@storybook/test": "^8.6.14",
|
|
58
|
-
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
|
|
59
|
-
"@types/node": "^20.12.12",
|
|
60
|
-
"@types/react": "^18.2.66",
|
|
61
|
-
"@types/react-dom": "^18.2.22",
|
|
62
|
-
"@types/react-i18next": "^8.1.0",
|
|
63
|
-
"@types/react-input-mask": "^3.0.6",
|
|
64
|
-
"@typescript-eslint/eslint-plugin": "^7.10.0",
|
|
65
|
-
"@typescript-eslint/parser": "^7.10.0",
|
|
66
|
-
"@vitejs/plugin-react": "^4.2.1",
|
|
67
|
-
"dayjs": "^1.11.11",
|
|
68
|
-
"eslint": "8.x",
|
|
69
|
-
"eslint-config-prettier": "^9.1.0",
|
|
70
|
-
"eslint-import-resolver-typescript": "^3.6.1",
|
|
71
|
-
"eslint-plugin-boundaries": "^4.2.1",
|
|
72
|
-
"eslint-plugin-import": "^2.29.1",
|
|
73
|
-
"eslint-plugin-prettier": "^5.1.3",
|
|
74
|
-
"eslint-plugin-react": "^7.34.1",
|
|
75
|
-
"eslint-plugin-react-hooks": "^4.6.0",
|
|
76
|
-
"eslint-plugin-react-refresh": "^0.4.6",
|
|
77
|
-
"eslint-plugin-storybook": "^0.12.0",
|
|
78
|
-
"globals": "^15.3.0",
|
|
79
|
-
"i18next-resources-for-ts": "^1.5.0",
|
|
80
|
-
"prettier": "^3.2.5",
|
|
81
|
-
"react-i18next": "^14.1.2",
|
|
82
|
-
"sass": "^1.89.2",
|
|
83
|
-
"storybook": "^8.6.14",
|
|
84
|
-
"tsx": "^4.19.4",
|
|
85
|
-
"tw-animate-css": "^1.3.1",
|
|
86
|
-
"typescript": "^5.2.2",
|
|
87
|
-
"typescript-eslint": "^7.10.0",
|
|
88
|
-
"vite": "^5.2.0"
|
|
89
|
-
},
|
|
90
|
-
"peerDependencies": {
|
|
91
|
-
"react": "^18.0.0 || ^19.0.0",
|
|
92
|
-
"react-dom": "^18.0.0 || ^19.0.0",
|
|
93
|
-
"scheduler": "^0.23.0"
|
|
94
|
-
}
|
|
95
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"main": "dist/stp-ui-kit.cjs.js",
|
|
3
|
+
"module": "dist/stp-ui-kit.es.js",
|
|
4
|
+
"types": "dist/types/index.d.ts",
|
|
5
|
+
"style": "dist/styles/index.css",
|
|
6
|
+
"files": [
|
|
7
|
+
"dist",
|
|
8
|
+
"src/styles/_variables.scss"
|
|
9
|
+
],
|
|
10
|
+
"publishConfig": {
|
|
11
|
+
"access": "public"
|
|
12
|
+
},
|
|
13
|
+
"name": "stp-ui-kit",
|
|
14
|
+
"version": "0.0.45",
|
|
15
|
+
"type": "module",
|
|
16
|
+
"scripts": {
|
|
17
|
+
"dev": "vite",
|
|
18
|
+
"build": "vite build",
|
|
19
|
+
"lint": "eslint --ext .ts,.tsx ./src",
|
|
20
|
+
"preview": "vite preview",
|
|
21
|
+
"format": "yarn prettier ./src/**/*.{ts,tsx} --write",
|
|
22
|
+
"storybook": "storybook dev -p 6006",
|
|
23
|
+
"build-storybook": "storybook build",
|
|
24
|
+
"interface:locales": "yarn run interface:locales:ru && yarn run interface:locales:kz && yarn run interface:locales:uz && yarn run interface:locales:en",
|
|
25
|
+
"interface:locales:kz": "i18next-resources-for-ts interface -i ./src/shared/i18n/locales/kz -o ./src/shared/@types/resources.d.ts",
|
|
26
|
+
"interface:locales:ru": "i18next-resources-for-ts interface -i ./src/shared/i18n/locales/ru -o ./src/shared/@types/resources.d.ts",
|
|
27
|
+
"interface:locales:uz": "i18next-resources-for-ts interface -i ./src/shared/i18n/locales/uz -o ./src/shared/@types/resources.d.ts",
|
|
28
|
+
"interface:locales:en": "i18next-resources-for-ts interface -i ./src/shared/i18n/locales/en -o ./src/shared/@types/resources.d.ts",
|
|
29
|
+
"generate-tokens": "tsx scripts/generate-tokens.ts"
|
|
30
|
+
},
|
|
31
|
+
"dependencies": {
|
|
32
|
+
"@tailwindcss/vite": "^4.0.7",
|
|
33
|
+
"class-variance-authority": "^0.7.1",
|
|
34
|
+
"classnames": "^2.5.1",
|
|
35
|
+
"clsx": "^2.1.1",
|
|
36
|
+
"i18next": "^24.2.2",
|
|
37
|
+
"immer": "^10.1.1",
|
|
38
|
+
"lucide-react": "^0.511.0",
|
|
39
|
+
"react-hook-form": "^7.57.0",
|
|
40
|
+
"react-input-mask": "^2.0.4",
|
|
41
|
+
"react-router-dom": "^7.6.0",
|
|
42
|
+
"sonner": "^2.0.5",
|
|
43
|
+
"tailwind-merge": "^3.3.0",
|
|
44
|
+
"tailwindcss": "^4.0.7",
|
|
45
|
+
"vite-plugin-dts": "^4.5.4"
|
|
46
|
+
},
|
|
47
|
+
"devDependencies": {
|
|
48
|
+
"@eslint/js": "^9.3.0",
|
|
49
|
+
"@feature-sliced/eslint-config": "^0.1.1",
|
|
50
|
+
"@storybook/addon-essentials": "^8.6.14",
|
|
51
|
+
"@storybook/addon-interactions": "^8.6.14",
|
|
52
|
+
"@storybook/addon-links": "^8.6.14",
|
|
53
|
+
"@storybook/addon-onboarding": "^8.6.14",
|
|
54
|
+
"@storybook/blocks": "^8.6.14",
|
|
55
|
+
"@storybook/react": "^8.6.14",
|
|
56
|
+
"@storybook/react-vite": "^8.6.14",
|
|
57
|
+
"@storybook/test": "^8.6.14",
|
|
58
|
+
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
|
|
59
|
+
"@types/node": "^20.12.12",
|
|
60
|
+
"@types/react": "^18.2.66",
|
|
61
|
+
"@types/react-dom": "^18.2.22",
|
|
62
|
+
"@types/react-i18next": "^8.1.0",
|
|
63
|
+
"@types/react-input-mask": "^3.0.6",
|
|
64
|
+
"@typescript-eslint/eslint-plugin": "^7.10.0",
|
|
65
|
+
"@typescript-eslint/parser": "^7.10.0",
|
|
66
|
+
"@vitejs/plugin-react": "^4.2.1",
|
|
67
|
+
"dayjs": "^1.11.11",
|
|
68
|
+
"eslint": "8.x",
|
|
69
|
+
"eslint-config-prettier": "^9.1.0",
|
|
70
|
+
"eslint-import-resolver-typescript": "^3.6.1",
|
|
71
|
+
"eslint-plugin-boundaries": "^4.2.1",
|
|
72
|
+
"eslint-plugin-import": "^2.29.1",
|
|
73
|
+
"eslint-plugin-prettier": "^5.1.3",
|
|
74
|
+
"eslint-plugin-react": "^7.34.1",
|
|
75
|
+
"eslint-plugin-react-hooks": "^4.6.0",
|
|
76
|
+
"eslint-plugin-react-refresh": "^0.4.6",
|
|
77
|
+
"eslint-plugin-storybook": "^0.12.0",
|
|
78
|
+
"globals": "^15.3.0",
|
|
79
|
+
"i18next-resources-for-ts": "^1.5.0",
|
|
80
|
+
"prettier": "^3.2.5",
|
|
81
|
+
"react-i18next": "^14.1.2",
|
|
82
|
+
"sass": "^1.89.2",
|
|
83
|
+
"storybook": "^8.6.14",
|
|
84
|
+
"tsx": "^4.19.4",
|
|
85
|
+
"tw-animate-css": "^1.3.1",
|
|
86
|
+
"typescript": "^5.2.2",
|
|
87
|
+
"typescript-eslint": "^7.10.0",
|
|
88
|
+
"vite": "^5.2.0"
|
|
89
|
+
},
|
|
90
|
+
"peerDependencies": {
|
|
91
|
+
"react": "^18.0.0 || ^19.0.0",
|
|
92
|
+
"react-dom": "^18.0.0 || ^19.0.0",
|
|
93
|
+
"scheduler": "^0.23.0"
|
|
94
|
+
}
|
|
95
|
+
}
|