@itcase/ui 1.9.68 → 1.9.69
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.
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
import { AppearanceKeysDefault, AppearanceSizeKey, AppearanceSizeOrEqualKey, AppearanceStyleKey, BorderColorProps, CompositeAppearanceDefaultSizeStyleKey, DirectionProps, FillActiveHoverProps, FillHoverProps, FillProps, ShapeProps, SizeProps, TextColorProps } from '@itcase/types-ui';
|
|
1
|
+
import { AppearanceKeysDefault, AppearanceSizeKey, AppearanceSizeOrEqualKey, AppearanceStyleKey, BorderColorActiveProps, BorderColorProps, CompositeAppearanceDefaultSizeStyleKey, DirectionProps, FillActiveHoverProps, FillActiveProps, FillHoverProps, FillProps, ShapeProps, SizeProps, TextColorProps } from '@itcase/types-ui';
|
|
2
2
|
import { StyleAttributes } from '../../hooks/useStyles/styleAttributes.interface';
|
|
3
3
|
import { IconProps } from '../Icon/Icon.interface';
|
|
4
4
|
import { LabelProps } from '../Label/Label.interface';
|
|
5
5
|
import { TextProps } from '../Text/Text.interface';
|
|
6
6
|
type CellAppearanceProps = {
|
|
7
7
|
borderColor?: BorderColorProps;
|
|
8
|
-
borderColorActive?:
|
|
8
|
+
borderColorActive?: BorderColorActiveProps;
|
|
9
9
|
borderColorActiveHover?: BorderColorProps;
|
|
10
10
|
borderColorHover?: BorderColorProps;
|
|
11
11
|
direction?: DirectionProps;
|
|
12
12
|
fill?: FillProps;
|
|
13
|
-
fillActive?:
|
|
13
|
+
fillActive?: FillActiveProps;
|
|
14
14
|
fillActiveHover?: FillActiveHoverProps;
|
|
15
15
|
fillHover?: FillHoverProps;
|
|
16
16
|
labelTextColor?: TextProps['textColor'];
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { CSSProperties, ReactNode } from 'react';
|
|
2
|
-
import { AlignProps, AppearanceKeysDefault, AppearanceShapeKey, AppearanceSizeKey, AppearanceStyleKey, BorderColorProps, BorderTypeProps, BorderWidthProps, CompositeAppearanceKey, DirectionProps, FillActiveHoverProps, FillHoverProps, FillProps, ShapeProps, ShapeStrengthProps, SizeProps, TextColorProps, WrapProps } from '@itcase/types-ui';
|
|
2
|
+
import { AlignProps, AppearanceKeysDefault, AppearanceShapeKey, AppearanceSizeKey, AppearanceStyleKey, BorderColorProps, BorderTypeProps, BorderWidthProps, CompositeAppearanceKey, DirectionProps, FillActiveHoverProps, FillActiveProps, FillHoverProps, FillProps, ShapeProps, ShapeStrengthProps, SizeProps, TextColorProps, WrapProps } from '@itcase/types-ui';
|
|
3
|
+
import { StyleAttributes } from '../../hooks/useStyles/styleAttributes.interface';
|
|
3
4
|
import { BadgeProps } from '../Badge/Badge.interface';
|
|
4
5
|
import { IconProps } from '../Icon/Icon.interface';
|
|
5
6
|
import { TextProps } from '../Text/Text.interface';
|
|
6
|
-
import { StyleAttributes } from '../../hooks/useStyles/styleAttributes.interface';
|
|
7
7
|
type ChipsAppearanceProps = {
|
|
8
8
|
align?: AlignProps;
|
|
9
9
|
alignDirection?: DirectionProps;
|
|
@@ -22,7 +22,7 @@ type ChipsAppearanceProps = {
|
|
|
22
22
|
borderTypeMobile?: BorderTypeProps;
|
|
23
23
|
borderTypeTablet?: BorderTypeProps;
|
|
24
24
|
fill?: FillProps;
|
|
25
|
-
fillActive?:
|
|
25
|
+
fillActive?: FillActiveProps;
|
|
26
26
|
fillActiveHover?: FillActiveHoverProps;
|
|
27
27
|
fillHover?: FillHoverProps;
|
|
28
28
|
iconAfter?: IconProps['SvgImage'];
|
|
@@ -6,7 +6,7 @@ declare const Group: React.ForwardRefExoticComponent<{
|
|
|
6
6
|
alignDirection?: import("@itcase/types-ui").DirectionProps;
|
|
7
7
|
border?: import("@itcase/types-ui").BorderColorProps;
|
|
8
8
|
borderColor?: import("@itcase/types-ui").BorderColorProps;
|
|
9
|
-
borderColorActive?: import("@itcase/types-ui").
|
|
9
|
+
borderColorActive?: import("@itcase/types-ui").BorderColorActiveProps;
|
|
10
10
|
borderColorActiveHover?: import("@itcase/types-ui").BorderColorProps;
|
|
11
11
|
borderColorHover?: import("@itcase/types-ui").BorderColorProps;
|
|
12
12
|
borderType?: import("@itcase/types-ui").BorderTypeProps;
|
|
@@ -15,7 +15,7 @@ declare const Group: React.ForwardRefExoticComponent<{
|
|
|
15
15
|
direction?: import("@itcase/types-ui").DirectionProps;
|
|
16
16
|
elevation?: import("@itcase/types-ui").ElevationProps;
|
|
17
17
|
fill?: import("@itcase/types-ui").FillProps;
|
|
18
|
-
fillActive?: import("@itcase/types-ui").
|
|
18
|
+
fillActive?: import("@itcase/types-ui").FillActiveProps;
|
|
19
19
|
fillActiveHover?: import("@itcase/types-ui").FillActiveHoverProps;
|
|
20
20
|
fillDisabled?: import("@itcase/types-ui").FillProps;
|
|
21
21
|
fillHover?: import("@itcase/types-ui").FillHoverProps;
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
import { CSSProperties, ElementType, MouseEventHandler, ReactNode } from 'react';
|
|
2
|
-
import { AlignProps, AppearanceKeysDefault, BorderColorProps, BorderTypeProps, BorderWidthProps, CompositeAppearanceDefaultKey, DirectionProps, ElevationProps, FillActiveHoverProps, FillHoverProps, FillProps, HeightProps, JustifyContentProps, ShapeProps, ShapeStrengthProps, StackingProps, WidthProps, WrapProps } from '@itcase/types-ui';
|
|
2
|
+
import { AlignProps, AppearanceKeysDefault, BorderColorProps, BorderColorActiveProps, BorderTypeProps, BorderWidthProps, CompositeAppearanceDefaultKey, DirectionProps, ElevationProps, FillActiveHoverProps, FillActiveProps, FillHoverProps, FillProps, HeightProps, JustifyContentProps, ShapeProps, ShapeStrengthProps, StackingProps, WidthProps, WrapProps } from '@itcase/types-ui';
|
|
3
|
+
import { StyleAttributes } from '../../hooks/useStyles/styleAttributes.interface';
|
|
3
4
|
import { IconProps } from '../Icon/Icon.interface';
|
|
4
5
|
import { LabelProps } from '../Label/Label.interface';
|
|
5
6
|
import { TextProps } from '../Text/Text.interface';
|
|
6
|
-
import { StyleAttributes } from '../../hooks/useStyles/styleAttributes.interface';
|
|
7
7
|
type GroupAppearanceProps = {
|
|
8
8
|
align?: AlignProps;
|
|
9
9
|
alignDirection?: DirectionProps;
|
|
10
10
|
border?: BorderColorProps;
|
|
11
11
|
borderColor?: BorderColorProps;
|
|
12
|
-
borderColorActive?:
|
|
12
|
+
borderColorActive?: BorderColorActiveProps;
|
|
13
13
|
borderColorActiveHover?: BorderColorProps;
|
|
14
14
|
borderColorHover?: BorderColorProps;
|
|
15
15
|
borderType?: BorderTypeProps;
|
|
@@ -18,7 +18,7 @@ type GroupAppearanceProps = {
|
|
|
18
18
|
direction?: DirectionProps;
|
|
19
19
|
elevation?: ElevationProps;
|
|
20
20
|
fill?: FillProps;
|
|
21
|
-
fillActive?:
|
|
21
|
+
fillActive?: FillActiveProps;
|
|
22
22
|
fillActiveHover?: FillActiveHoverProps;
|
|
23
23
|
fillDisabled?: FillProps;
|
|
24
24
|
fillHover?: FillHoverProps;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@itcase/ui",
|
|
3
|
-
"version": "1.9.
|
|
3
|
+
"version": "1.9.69",
|
|
4
4
|
"description": "UI components (Modal, Loader, Popup, etc)",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Modal",
|
|
@@ -128,17 +128,17 @@
|
|
|
128
128
|
"@emotion/is-prop-valid": "^1.4.0",
|
|
129
129
|
"@itcase/common": "^1.2.41",
|
|
130
130
|
"@itcase/icons": "^1.2.29",
|
|
131
|
-
"@itcase/storybook-config": "^1.2.
|
|
131
|
+
"@itcase/storybook-config": "^1.2.46",
|
|
132
132
|
"@itcase/tokens-am": "^1.1.45",
|
|
133
133
|
"@itcase/tokens-baikal": "^1.1.41",
|
|
134
134
|
"@itcase/tokens-palette": "^1.1.41",
|
|
135
135
|
"clsx": "^2.1.1",
|
|
136
136
|
"date-fns": "^4.1.0",
|
|
137
|
-
"framer-motion": "^12.
|
|
137
|
+
"framer-motion": "^12.35.1",
|
|
138
138
|
"js-cookie": "^3.0.5",
|
|
139
139
|
"lodash": "^4.17.23",
|
|
140
140
|
"luxon": "^3.7.2",
|
|
141
|
-
"motion": "^12.
|
|
141
|
+
"motion": "^12.35.1",
|
|
142
142
|
"rc-slider": "^11.1.9",
|
|
143
143
|
"react": "^18.3.1",
|
|
144
144
|
"react-dadata": "^2.27.4",
|
|
@@ -147,7 +147,7 @@
|
|
|
147
147
|
"react-dropzone": "^15.0.0",
|
|
148
148
|
"react-indiana-drag-scroll": "^3.0.3-alpha",
|
|
149
149
|
"react-inlinesvg": "^4.2.0",
|
|
150
|
-
"react-modal-sheet": "5.
|
|
150
|
+
"react-modal-sheet": "5.3.1",
|
|
151
151
|
"react-modern-drawer": "^1.4.0",
|
|
152
152
|
"react-otp-input": "^3.1.1",
|
|
153
153
|
"react-paginate": "^8.3.0",
|
|
@@ -162,19 +162,19 @@
|
|
|
162
162
|
"devDependencies": {
|
|
163
163
|
"@babel/core": "^7.29.0",
|
|
164
164
|
"@babel/preset-react": "^7.28.5",
|
|
165
|
-
"@commitlint/cli": "^20.4.
|
|
166
|
-
"@commitlint/config-conventional": "^20.4.
|
|
167
|
-
"@itcase/config": "^1.6.
|
|
168
|
-
"@itcase/lint": "^1.1.
|
|
165
|
+
"@commitlint/cli": "^20.4.3",
|
|
166
|
+
"@commitlint/config-conventional": "^20.4.3",
|
|
167
|
+
"@itcase/config": "^1.6.52",
|
|
168
|
+
"@itcase/lint": "^1.1.101",
|
|
169
169
|
"@itcase/types-core": "^1.1.31",
|
|
170
|
-
"@itcase/types-ui": "^1.1.
|
|
170
|
+
"@itcase/types-ui": "^1.1.37",
|
|
171
171
|
"@rollup/plugin-alias": "^6.0.0",
|
|
172
|
-
"@rollup/plugin-babel": "^
|
|
173
|
-
"@rollup/plugin-commonjs": "^29.0.
|
|
172
|
+
"@rollup/plugin-babel": "^7.0.0",
|
|
173
|
+
"@rollup/plugin-commonjs": "^29.0.2",
|
|
174
174
|
"@rollup/plugin-image": "^3.0.3",
|
|
175
175
|
"@rollup/plugin-json": "^6.1.0",
|
|
176
176
|
"@rollup/plugin-node-resolve": "^16.0.3",
|
|
177
|
-
"@rollup/plugin-terser": "^0.
|
|
177
|
+
"@rollup/plugin-terser": "^1.0.0",
|
|
178
178
|
"@rollup/plugin-typescript": "^12.3.0",
|
|
179
179
|
"@semantic-release/changelog": "^6.0.3",
|
|
180
180
|
"@semantic-release/git": "^10.0.1",
|
|
@@ -187,12 +187,12 @@
|
|
|
187
187
|
"@types/react-dom": "^19.0.2",
|
|
188
188
|
"@types/react-scroll": "^1.8.10",
|
|
189
189
|
"@types/uuid": "^11.0.0",
|
|
190
|
-
"babel-loader": "^10.
|
|
190
|
+
"babel-loader": "^10.1.0",
|
|
191
191
|
"babel-plugin-inline-react-svg": "^2.0.2",
|
|
192
|
-
"conventional-changelog-conventionalcommits": "^9.
|
|
192
|
+
"conventional-changelog-conventionalcommits": "^9.3.0",
|
|
193
193
|
"eslint": "9",
|
|
194
194
|
"husky": "^9.1.7",
|
|
195
|
-
"lint-staged": "^16.3.
|
|
195
|
+
"lint-staged": "^16.3.2",
|
|
196
196
|
"prettier": "^3.8.1",
|
|
197
197
|
"rollup": "4.59.0",
|
|
198
198
|
"rollup-plugin-copy": "^3.5.0",
|
|
@@ -200,7 +200,7 @@
|
|
|
200
200
|
"rollup-plugin-peer-deps-external": "^2.2.4",
|
|
201
201
|
"rollup-preserve-directives": "^1.1.3",
|
|
202
202
|
"semantic-release": "^25.0.3",
|
|
203
|
-
"storybook": "^10.2.
|
|
203
|
+
"storybook": "^10.2.16",
|
|
204
204
|
"stylelint": "^17.4.0",
|
|
205
205
|
"typescript": "^5.9.3"
|
|
206
206
|
}
|