urfu-ui-kit-react 0.0.2 → 0.0.4
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/style.css +1 -1
- package/dist/urfu-ui-kit-react.js +1923 -1720
- package/package.json +20 -16
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"description": "UrFU UI-Kit for React Web",
|
|
4
4
|
"license": "UNLICENSED",
|
|
5
5
|
"private": false,
|
|
6
|
-
"version": "0.0.
|
|
6
|
+
"version": "0.0.4",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"main": "dist/urfu-ui-kit-react",
|
|
9
9
|
"types": "dist/urfu-ui-kit-react",
|
|
@@ -13,24 +13,26 @@
|
|
|
13
13
|
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
|
|
14
14
|
"preview": "vite preview",
|
|
15
15
|
"sb": "storybook dev -p 6006",
|
|
16
|
-
"
|
|
16
|
+
"sbb": "storybook build",
|
|
17
|
+
"pub": "tsc && vite build && git stash && npm version patch && git stash pop && npm publish"
|
|
17
18
|
},
|
|
18
19
|
"dependencies": {
|
|
19
20
|
"less": "^4.2.0",
|
|
20
|
-
"react": "^18.
|
|
21
|
-
"react-dom": "^18.
|
|
22
|
-
"urfu-ui-kit-vanilla": "^1.1.
|
|
21
|
+
"react": "^18.3.1",
|
|
22
|
+
"react-dom": "^18.3.1",
|
|
23
|
+
"urfu-ui-kit-vanilla": "^1.1.8"
|
|
23
24
|
},
|
|
24
25
|
"devDependencies": {
|
|
25
|
-
"@chromatic-com/storybook": "^1.
|
|
26
|
-
"@storybook/addon-essentials": "^8.0.
|
|
27
|
-
"@storybook/addon-interactions": "^8.0.
|
|
28
|
-
"@storybook/addon-links": "^8.0.
|
|
29
|
-
"@storybook/addon-
|
|
30
|
-
"@storybook/
|
|
31
|
-
"@storybook/
|
|
32
|
-
"@storybook/react
|
|
33
|
-
"@storybook/
|
|
26
|
+
"@chromatic-com/storybook": "^1.3.3",
|
|
27
|
+
"@storybook/addon-essentials": "^8.0.9",
|
|
28
|
+
"@storybook/addon-interactions": "^8.0.9",
|
|
29
|
+
"@storybook/addon-links": "^8.0.9",
|
|
30
|
+
"@storybook/addon-mdx-gfm": "^8.0.9",
|
|
31
|
+
"@storybook/addon-onboarding": "^8.0.9",
|
|
32
|
+
"@storybook/blocks": "^8.0.9",
|
|
33
|
+
"@storybook/react": "^8.0.9",
|
|
34
|
+
"@storybook/react-vite": "^8.0.9",
|
|
35
|
+
"@storybook/test": "^8.0.9",
|
|
34
36
|
"@types/node": "^20.12.7",
|
|
35
37
|
"@types/react": "^18.2.75",
|
|
36
38
|
"@types/react-dom": "^18.2.22",
|
|
@@ -43,9 +45,11 @@
|
|
|
43
45
|
"eslint-plugin-react-refresh": "^0.4.6",
|
|
44
46
|
"eslint-plugin-storybook": "^0.8.0",
|
|
45
47
|
"prop-types": "^15.8.1",
|
|
46
|
-
"storybook": "^8.0.
|
|
48
|
+
"storybook": "^8.0.10",
|
|
47
49
|
"typescript": "^5.2.2",
|
|
48
50
|
"vite": "^5.2.0"
|
|
49
51
|
},
|
|
50
|
-
"files": [
|
|
52
|
+
"files": [
|
|
53
|
+
"dist"
|
|
54
|
+
]
|
|
51
55
|
}
|