@itcase/ui 1.0.102 → 1.1.1
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/Accordion.js +1 -0
- package/dist/components/Avatar.js +1 -0
- package/dist/components/Breadcrumbs.js +1 -0
- package/dist/components/Button.js +3 -0
- package/dist/components/Cell.js +1 -0
- package/dist/components/Choice.js +1 -0
- package/dist/components/ContextMenu.js +1 -0
- package/dist/components/CookiesWarning.js +1 -0
- package/dist/components/DatePicker.js +3 -2
- package/dist/components/Empty.js +1 -0
- package/dist/components/FormField.js +25 -22
- package/dist/components/Icon.js +1 -0
- package/dist/components/Input.js +3 -0
- package/dist/components/InputPassword.js +1 -0
- package/dist/components/Label.js +1 -0
- package/dist/components/LanguageSelector.js +1 -0
- package/dist/components/{RadioButton.js → Radio.js} +24 -24
- package/dist/components/Search.js +1 -0
- package/dist/components/Select.js +6 -5
- package/dist/components/SiteMenu.js +1 -0
- package/dist/components/Swiper.js +4 -4
- package/dist/components/Text.js +3 -1
- package/dist/components/Tile.js +1 -1
- package/dist/components/Tooltip.js +38 -20
- package/dist/css/components/Group/Group.css +1 -1
- package/dist/css/components/{RadioButton/RadioButton.css → Radio/Radio.css} +11 -10
- package/dist/css/components/Swiper/Swiper.css +2 -2
- package/dist/css/components/Title/Title.css +9 -0
- package/dist/stories/{RadioButton.stories.js → Radio.stories.js} +5 -5
- package/package.json +11 -10
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import
|
|
1
|
+
import { Radio, radioConfig } from '@itcase/ui/components/Radio'
|
|
2
|
+
import radioState from 'src/components/Radio/state.json'
|
|
3
3
|
|
|
4
4
|
import { shapeProps, textColorProps, textSizeProps } from '@itcase/ui/constants'
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
radioConfig.setState(radioState)
|
|
7
7
|
|
|
8
8
|
export default {
|
|
9
|
-
title: 'Atoms /
|
|
10
|
-
component:
|
|
9
|
+
title: 'Atoms / Radio',
|
|
10
|
+
component: Radio,
|
|
11
11
|
argTypes: {
|
|
12
12
|
advancedProps: { control: 'boolean' },
|
|
13
13
|
className: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@itcase/ui",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"description": "UI components (Modal, Loader, Popup, etc)",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Modal",
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"registry": "https://registry.npmjs.org/"
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
|
-
"@itcase/common": "^1.1.
|
|
44
|
+
"@itcase/common": "^1.1.13",
|
|
45
45
|
"clsx": "^2.1.0",
|
|
46
46
|
"html5-boilerplate": "^9.0.0",
|
|
47
47
|
"js-cookie": "^3.0.5",
|
|
@@ -53,23 +53,24 @@
|
|
|
53
53
|
"react-dadata": "^2.23.1",
|
|
54
54
|
"react-date-range": "^1.4.0",
|
|
55
55
|
"react-dom": "^18.2.0",
|
|
56
|
-
"react-inlinesvg": "^4.1.
|
|
56
|
+
"react-inlinesvg": "^4.1.3",
|
|
57
57
|
"react-modern-drawer": "^1.2.2",
|
|
58
58
|
"react-otp-input": "^3.1.1",
|
|
59
59
|
"react-paginate": "^8.2.0",
|
|
60
60
|
"react-responsive": "^9.0.2",
|
|
61
|
+
"react-scroll-ondrag": "^3.0.1",
|
|
61
62
|
"react-scrollbars-custom": "^4.1.1",
|
|
62
63
|
"react-select": "^5.8.0",
|
|
63
|
-
"swiper": "^11.0.
|
|
64
|
+
"swiper": "^11.0.7",
|
|
64
65
|
"uuid": "^9.0.1"
|
|
65
66
|
},
|
|
66
67
|
"devDependencies": {
|
|
67
|
-
"@babel/core": "^7.
|
|
68
|
+
"@babel/core": "^7.24.0",
|
|
68
69
|
"@babel/eslint-parser": "^7.23.10",
|
|
69
|
-
"@babel/preset-env": "^7.
|
|
70
|
+
"@babel/preset-env": "^7.24.0",
|
|
70
71
|
"@babel/preset-react": "^7.23.3",
|
|
71
|
-
"@commitlint/cli": "^
|
|
72
|
-
"@commitlint/config-conventional": "^
|
|
72
|
+
"@commitlint/cli": "^19.0.3",
|
|
73
|
+
"@commitlint/config-conventional": "^19.0.3",
|
|
73
74
|
"@rollup/plugin-babel": "^6.0.4",
|
|
74
75
|
"@rollup/plugin-commonjs": "^25.0.7",
|
|
75
76
|
"@rollup/plugin-json": "^6.1.0",
|
|
@@ -96,7 +97,7 @@
|
|
|
96
97
|
"eslint-plugin-standard": "^5.0.0",
|
|
97
98
|
"husky": "^9.0.11",
|
|
98
99
|
"lint-staged": "^15.2.2",
|
|
99
|
-
"npm": "^10.
|
|
100
|
+
"npm": "^10.5.0",
|
|
100
101
|
"postcss": "^8.4.35",
|
|
101
102
|
"postcss-aspect-ratio-polyfill": "^2.0.0",
|
|
102
103
|
"postcss-cli": "^11.0.0",
|
|
@@ -120,7 +121,7 @@
|
|
|
120
121
|
"postcss-responsive-type": "github:ITCase/postcss-responsive-type",
|
|
121
122
|
"postcss-sort-media-queries": "^5.2.0",
|
|
122
123
|
"prettier": "^3.2.5",
|
|
123
|
-
"react-datepicker": "^6.
|
|
124
|
+
"react-datepicker": "^6.2.0",
|
|
124
125
|
"rollup": "^4.12.0",
|
|
125
126
|
"rollup-plugin-copy": "^3.5.0",
|
|
126
127
|
"rollup-plugin-peer-deps-external": "^2.2.4",
|