@itcase/ui 1.8.128 → 1.8.130

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.
Files changed (34) hide show
  1. package/dist/{DatePicker_cjs_jhKYHjBs.js → DatePicker_cjs_BLOiIsfD.js} +2 -2
  2. package/dist/{DatePicker_es_D2nmwYIx.js → DatePicker_es_VslTy9Qw.js} +2 -2
  3. package/dist/{Group_cjs_DmfeUcFI.js → Group_cjs_DxyobxPf.js} +2 -2
  4. package/dist/{Group_es_BU5k8f5S.js → Group_es_DJ6GHMrs.js} +2 -2
  5. package/dist/cjs/components/AvatarStack.js +1 -1
  6. package/dist/cjs/components/DatePeriod.js +34 -10
  7. package/dist/cjs/components/DatePicker.js +1 -1
  8. package/dist/cjs/components/Group.js +1 -1
  9. package/dist/cjs/components/MenuItem.js +1 -1
  10. package/dist/cjs/components/ModalSheetBottom.js +2 -2
  11. package/dist/cjs/components/Response.js +1 -1
  12. package/dist/cjs/components/Select.js +1 -1
  13. package/dist/cjs/hooks/useStyles/styleAttributes.js +5 -1
  14. package/dist/components/AvatarStack.js +1 -1
  15. package/dist/components/DatePeriod.js +34 -10
  16. package/dist/components/DatePicker.js +1 -1
  17. package/dist/components/Group.js +1 -1
  18. package/dist/components/MenuItem.js +1 -1
  19. package/dist/components/ModalSheetBottom.js +2 -2
  20. package/dist/components/Response.js +1 -1
  21. package/dist/components/Select.js +1 -1
  22. package/dist/css/components/Chips/Chips.css +0 -3
  23. package/dist/css/components/DatePeriod/DatePeriod.css +5 -24
  24. package/dist/css/components/DatePicker/DatePicker.css +3 -1
  25. package/dist/css/components/MenuItem/MenuItem.css +1 -4
  26. package/dist/css/components/Swiper/Swiper.css +463 -473
  27. package/dist/css/styles/bundle.css +104 -0
  28. package/dist/css/styles/easing/easing.css +104 -0
  29. package/dist/hooks/useStyles/styleAttributes.js +5 -1
  30. package/dist/types/components/DatePeriod/DatePeriod.appearance.d.ts +52 -2
  31. package/dist/types/components/DatePeriod/appearance/datePeriodShape.d.ts +25 -0
  32. package/dist/types/components/DatePeriod/appearance/datePeriodSize.d.ts +2 -4
  33. package/dist/types/components/DatePicker/DatePicker.d.ts +1 -1
  34. package/package.json +8 -8
@@ -773,6 +773,110 @@ div.alignment {
773
773
  }
774
774
  }
775
775
  }
776
+ div.easing {
777
+ &_ease {
778
+ transition: all 600ms ease;
779
+ }
780
+ &_linear {
781
+ transition: all 600ms linear;
782
+ }
783
+ &_easeIn {
784
+ transition: all 600ms ease-in;
785
+ }
786
+ &_easeOut {
787
+ transition: all 600ms ease-out;
788
+ }
789
+ &_easeInSine {
790
+ transition: all 600ms easeInSine;
791
+ }
792
+ &_easeOutSine {
793
+ transition: all 600ms easeOutSine;
794
+ }
795
+ &_easeInOutSine {
796
+ transition: all 600ms easeInOutSine;
797
+ }
798
+ &_easeInQuad {
799
+ transition: all 600ms easeInQuad;
800
+ }
801
+ &_easeOutQuad {
802
+ transition: all 600ms easeOutQuad;
803
+ }
804
+ &_easeInOutQuad {
805
+ transition: all 600ms easeInOutQuad;
806
+ }
807
+ &_easeInCubic {
808
+ transition: all 600ms easeInCubic;
809
+ }
810
+ &_easeOutCubic {
811
+ transition: all 600ms easeOutCubic;
812
+ }
813
+ &_easeInOutCubic {
814
+ transition: all 600ms easeInOutCubic;
815
+ }
816
+ &_easeInQuart {
817
+ transition: all 600ms easeInQuart;
818
+ }
819
+ &_easeOutQuart {
820
+ transition: all 600ms easeOutQuart;
821
+ }
822
+ &_easeInOutQuart {
823
+ transition: all 600ms easeInOutQuart;
824
+ }
825
+ &_easeInQuint {
826
+ transition: all 600ms easeInQuint;
827
+ }
828
+ &_easeOutQuint {
829
+ transition: all 600ms easeOutQuint;
830
+ }
831
+ &_easeInOutQuint {
832
+ transition: all 600ms easeInOutQuint;
833
+ }
834
+ &_easeInExpo {
835
+ transition: all 600ms easeInExpo;
836
+ }
837
+ &_easeOutExpo {
838
+ transition: all 600ms easeOutExpo;
839
+ }
840
+ &_easeInOutExpo {
841
+ transition: all 600ms easeInOutExpo;
842
+ }
843
+ &_easeInCirc {
844
+ transition: all 600ms easeInCirc;
845
+ }
846
+ &_easeOutCirc {
847
+ transition: all 600ms easeOutCirc;
848
+ }
849
+ &_easeInOutCirc {
850
+ transition: all 600ms easeInOutCirc;
851
+ }
852
+ &_easeInBack {
853
+ transition: all 600ms easeInBack;
854
+ }
855
+ &_easeOutBack {
856
+ transition: all 600ms easeOutBack;
857
+ }
858
+ &_easeInOutBack {
859
+ transition: all 600ms easeInOutBack;
860
+ }
861
+ &_easeInElastic {
862
+ transition: all 600ms easeInElastic;
863
+ }
864
+ &_easeOutElastic {
865
+ transition: all 600ms easeOutElastic;
866
+ }
867
+ &_easeInOutElastic {
868
+ transition: all 600ms easeInOutElastic;
869
+ }
870
+ &_easeInBounce {
871
+ transition: all 600ms easeInBounce;
872
+ }
873
+ &_easeOutBounce {
874
+ transition: all 600ms easeOutBounce;
875
+ }
876
+ &_easeInOutBounce {
877
+ transition: all 600ms easeInOutBounce;
878
+ }
879
+ }
776
880
  .elevation {
777
881
  @each $val in 1, 2, 4, 6, 8, 12, 16, 24 {
778
882
  &_$(val) {
@@ -0,0 +1,104 @@
1
+ div.easing {
2
+ &_ease {
3
+ transition: all 600ms ease;
4
+ }
5
+ &_linear {
6
+ transition: all 600ms linear;
7
+ }
8
+ &_easeIn {
9
+ transition: all 600ms ease-in;
10
+ }
11
+ &_easeOut {
12
+ transition: all 600ms ease-out;
13
+ }
14
+ &_easeInSine {
15
+ transition: all 600ms easeInSine;
16
+ }
17
+ &_easeOutSine {
18
+ transition: all 600ms easeOutSine;
19
+ }
20
+ &_easeInOutSine {
21
+ transition: all 600ms easeInOutSine;
22
+ }
23
+ &_easeInQuad {
24
+ transition: all 600ms easeInQuad;
25
+ }
26
+ &_easeOutQuad {
27
+ transition: all 600ms easeOutQuad;
28
+ }
29
+ &_easeInOutQuad {
30
+ transition: all 600ms easeInOutQuad;
31
+ }
32
+ &_easeInCubic {
33
+ transition: all 600ms easeInCubic;
34
+ }
35
+ &_easeOutCubic {
36
+ transition: all 600ms easeOutCubic;
37
+ }
38
+ &_easeInOutCubic {
39
+ transition: all 600ms easeInOutCubic;
40
+ }
41
+ &_easeInQuart {
42
+ transition: all 600ms easeInQuart;
43
+ }
44
+ &_easeOutQuart {
45
+ transition: all 600ms easeOutQuart;
46
+ }
47
+ &_easeInOutQuart {
48
+ transition: all 600ms easeInOutQuart;
49
+ }
50
+ &_easeInQuint {
51
+ transition: all 600ms easeInQuint;
52
+ }
53
+ &_easeOutQuint {
54
+ transition: all 600ms easeOutQuint;
55
+ }
56
+ &_easeInOutQuint {
57
+ transition: all 600ms easeInOutQuint;
58
+ }
59
+ &_easeInExpo {
60
+ transition: all 600ms easeInExpo;
61
+ }
62
+ &_easeOutExpo {
63
+ transition: all 600ms easeOutExpo;
64
+ }
65
+ &_easeInOutExpo {
66
+ transition: all 600ms easeInOutExpo;
67
+ }
68
+ &_easeInCirc {
69
+ transition: all 600ms easeInCirc;
70
+ }
71
+ &_easeOutCirc {
72
+ transition: all 600ms easeOutCirc;
73
+ }
74
+ &_easeInOutCirc {
75
+ transition: all 600ms easeInOutCirc;
76
+ }
77
+ &_easeInBack {
78
+ transition: all 600ms easeInBack;
79
+ }
80
+ &_easeOutBack {
81
+ transition: all 600ms easeOutBack;
82
+ }
83
+ &_easeInOutBack {
84
+ transition: all 600ms easeInOutBack;
85
+ }
86
+ &_easeInElastic {
87
+ transition: all 600ms easeInElastic;
88
+ }
89
+ &_easeOutElastic {
90
+ transition: all 600ms easeOutElastic;
91
+ }
92
+ &_easeInOutElastic {
93
+ transition: all 600ms easeInOutElastic;
94
+ }
95
+ &_easeInBounce {
96
+ transition: all 600ms easeInBounce;
97
+ }
98
+ &_easeOutBounce {
99
+ transition: all 600ms easeOutBounce;
100
+ }
101
+ &_easeInOutBounce {
102
+ transition: all 600ms easeInOutBounce;
103
+ }
104
+ }
@@ -37,6 +37,10 @@ var styleAttributes = [
37
37
  /**
38
38
  * Filter
39
39
  */
40
- 'backdropFilter'];
40
+ 'backdropFilter',
41
+ /**
42
+ * transition
43
+ */
44
+ 'transition', 'transitionBehavior', 'transitionDelay', 'transitionDuration', 'transitionProperty', 'transitionTimingFunction'];
41
45
 
42
46
  export { styleAttributes as default };
@@ -1,2 +1,52 @@
1
- import { DatePeriodAppearanceType } from './DatePeriod.interface';
2
- export declare const datePeriodAppearance: DatePeriodAppearanceType;
1
+ export declare const datePeriodAppearance: {
2
+ circular: {
3
+ shape: string;
4
+ };
5
+ rounded: {
6
+ shape: string;
7
+ };
8
+ roundedXL: {
9
+ shape: string;
10
+ shapeStrength: string;
11
+ };
12
+ roundedL: {
13
+ shape: string;
14
+ shapeStrength: string;
15
+ };
16
+ roundedM: {
17
+ shape: string;
18
+ shapeStrength: string;
19
+ };
20
+ roundedS: {
21
+ shape: string;
22
+ shapeStrength: string;
23
+ };
24
+ sizeL: {
25
+ size: string;
26
+ chipsAppearanceSize: string;
27
+ datePickerAppearanceSize: string;
28
+ datePickerInputAppearanceSize: string;
29
+ };
30
+ sizeM: {
31
+ size: string;
32
+ chipsAppearanceSize: string;
33
+ datePickerAppearanceSize: string;
34
+ datePickerInputAppearanceSize: string;
35
+ };
36
+ surfacePrimary: {
37
+ fill: string;
38
+ chipsAppearance: string;
39
+ chipsShape: string;
40
+ datePickerAppearance: string;
41
+ datePickerInputAppearance: string;
42
+ shape: string;
43
+ };
44
+ surfaceSecondary: {
45
+ fill: string;
46
+ chipsAppearance: string;
47
+ chipsShape: string;
48
+ datePickerAppearance: string;
49
+ datePickerInputAppearance: string;
50
+ shape: string;
51
+ };
52
+ };
@@ -0,0 +1,25 @@
1
+ declare const datePeriodAppearanceShape: {
2
+ circular: {
3
+ shape: string;
4
+ };
5
+ rounded: {
6
+ shape: string;
7
+ };
8
+ roundedXL: {
9
+ shape: string;
10
+ shapeStrength: string;
11
+ };
12
+ roundedL: {
13
+ shape: string;
14
+ shapeStrength: string;
15
+ };
16
+ roundedM: {
17
+ shape: string;
18
+ shapeStrength: string;
19
+ };
20
+ roundedS: {
21
+ shape: string;
22
+ shapeStrength: string;
23
+ };
24
+ };
25
+ export { datePeriodAppearanceShape };
@@ -3,15 +3,13 @@ declare const datePeriodAppearanceSize: {
3
3
  size: string;
4
4
  chipsAppearanceSize: string;
5
5
  datePickerAppearanceSize: string;
6
- datePickerInputSize: string;
7
- datePickerInputTextSize: string;
6
+ datePickerInputAppearanceSize: string;
8
7
  };
9
8
  sizeM: {
10
9
  size: string;
11
10
  chipsAppearanceSize: string;
12
11
  datePickerAppearanceSize: string;
13
- datePickerInputSize: string;
14
- datePickerInputTextSize: string;
12
+ datePickerInputAppearanceSize: string;
15
13
  };
16
14
  };
17
15
  export { datePeriodAppearanceSize };
@@ -1,4 +1,4 @@
1
1
  import type { DatePickerConfig, DatePickerInputProps } from './DatePicker.interface';
2
2
  declare const datePickerConfig: DatePickerConfig;
3
3
  declare function DatePickerInput(props: DatePickerInputProps): import("react/jsx-runtime").JSX.Element;
4
- export { DatePickerInput, datePickerConfig };
4
+ export { datePickerConfig, DatePickerInput };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itcase/ui",
3
- "version": "1.8.128",
3
+ "version": "1.8.130",
4
4
  "description": "UI components (Modal, Loader, Popup, etc)",
5
5
  "keywords": [
6
6
  "Modal",
@@ -101,9 +101,9 @@
101
101
  },
102
102
  "dependencies": {
103
103
  "@emotion/is-prop-valid": "^1.4.0",
104
- "@itcase/common": "^1.2.31",
104
+ "@itcase/common": "^1.2.32",
105
105
  "@itcase/icons": "^1.2.19",
106
- "@itcase/storybook-config": "^1.2.7",
106
+ "@itcase/storybook-config": "^1.2.10",
107
107
  "@itcase/tokens-am": "^1.1.19",
108
108
  "@itcase/tokens-baikal": "^1.1.17",
109
109
  "@itcase/tokens-palette": "^1.1.11",
@@ -114,14 +114,14 @@
114
114
  "lodash": "^4.17.21",
115
115
  "luxon": "^3.7.2",
116
116
  "motion": "^12.23.12",
117
- "rc-slider": "^11.1.8",
117
+ "rc-slider": "^11.1.9",
118
118
  "react": "^18.3.1",
119
119
  "react-dadata": "^2.27.4",
120
120
  "react-datepicker": "^8.7.0",
121
121
  "react-dom": "^18.3.1",
122
122
  "react-indiana-drag-scroll": "^3.0.3-alpha",
123
123
  "react-inlinesvg": "^4.2.0",
124
- "react-modal-sheet": "4.4.0",
124
+ "react-modal-sheet": "5.1.1",
125
125
  "react-modern-drawer": "^1.4.0",
126
126
  "react-otp-input": "^3.1.1",
127
127
  "react-paginate": "^8.3.0",
@@ -130,7 +130,7 @@
130
130
  "react-scrollbars-custom": "^4.1.1",
131
131
  "react-select": "^5.10.2",
132
132
  "simplebar-react": "^3.3.2",
133
- "swiper": "^11.2.10",
133
+ "swiper": "^12.0.1",
134
134
  "uuid": "^13.0.0"
135
135
  },
136
136
  "devDependencies": {
@@ -140,7 +140,7 @@
140
140
  "@commitlint/cli": "^19.8.1",
141
141
  "@commitlint/config-conventional": "^19.8.1",
142
142
  "@itcase/config": "^1.0.57",
143
- "@itcase/lint": "^1.1.57",
143
+ "@itcase/lint": "^1.1.59",
144
144
  "@itcase/types": "^1.0.45",
145
145
  "@rollup/plugin-alias": "^5.1.1",
146
146
  "@rollup/plugin-babel": "^6.0.4",
@@ -176,7 +176,7 @@
176
176
  "rollup-plugin-dts": "^6.2.3",
177
177
  "rollup-plugin-peer-deps-external": "^2.2.4",
178
178
  "rollup-preserve-directives": "^1.1.3",
179
- "semantic-release": "^24.2.7",
179
+ "semantic-release": "^24.2.8",
180
180
  "storybook": "^9.1.5",
181
181
  "stylelint": "^16.24.0",
182
182
  "typescript": "^5.9.2"