@salutejs/sdds-cs 0.229.1-canary.1707.12823225023.0 → 0.230.0-dev.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -67,6 +67,7 @@ import { CommitInstanceCallback } from '@salutejs/plasma-new-hope/types/componen
67
67
  import { ComponentProps } from 'react';
68
68
  import { CounterProps } from '@salutejs/plasma-new-hope/styled-components';
69
69
  import { counterTokens } from '@salutejs/plasma-new-hope/styled-components';
70
+ import { CustomCounterProps } from '@salutejs/plasma-new-hope/types/components/Counter/Counter.types';
70
71
  import { CustomHeaderTabsProps } from '@salutejs/plasma-new-hope/types/components/Tabs/Tabs.types';
71
72
  import { CustomHorizontalTabsProps } from '@salutejs/plasma-new-hope/types/components/Tabs/Tabs.types';
72
73
  import { CustomPopoverProps } from '@salutejs/plasma-new-hope/types/components/Popover/Popover.types';
@@ -769,8 +770,8 @@ fit: PolymorphicClassName;
769
770
  focused: {
770
771
  true: PolymorphicClassName;
771
772
  };
772
- }> & HTMLAttributes<HTMLDivElement> & {
773
- size: "s" | "m" | "l" | "xxl" | "fit";
773
+ }> & ((HTMLAttributes<HTMLDivElement> & {
774
+ size?: string | undefined;
774
775
  name?: string | undefined;
775
776
  url?: string | undefined;
776
777
  customText?: string | undefined;
@@ -778,7 +779,46 @@ status?: "active" | "inactive" | undefined;
778
779
  isScalable?: boolean | undefined;
779
780
  focused?: boolean | undefined;
780
781
  statusLabels?: StatusLabels | undefined;
781
- } & RefAttributes<HTMLDivElement>>;
782
+ hasExtra?: boolean | undefined;
783
+ type?: "badge" | "counter" | undefined;
784
+ extraPlacement?: "top-right" | "top-left" | "bottom-right" | "bottom-left" | undefined;
785
+ } & {
786
+ badgeView?: string | undefined;
787
+ pilled?: boolean | undefined;
788
+ text?: string | undefined;
789
+ customColor?: string | undefined;
790
+ customBackgroundColor?: string | undefined;
791
+ contentLeft?: ReactNode;
792
+ contentRight?: ReactNode;
793
+ } & {
794
+ counterView?: undefined;
795
+ count?: undefined;
796
+ maxCount?: undefined;
797
+ } & RefAttributes<HTMLDivElement>) | (HTMLAttributes<HTMLDivElement> & {
798
+ size?: string | undefined;
799
+ name?: string | undefined;
800
+ url?: string | undefined;
801
+ customText?: string | undefined;
802
+ status?: "active" | "inactive" | undefined;
803
+ isScalable?: boolean | undefined;
804
+ focused?: boolean | undefined;
805
+ statusLabels?: StatusLabels | undefined;
806
+ hasExtra?: boolean | undefined;
807
+ type?: "badge" | "counter" | undefined;
808
+ extraPlacement?: "top-right" | "top-left" | "bottom-right" | "bottom-left" | undefined;
809
+ } & {
810
+ counterView?: string | undefined;
811
+ count?: number | undefined;
812
+ maxCount?: number | undefined;
813
+ } & {
814
+ badgeView?: undefined;
815
+ pilled?: undefined;
816
+ text?: undefined;
817
+ customColor?: undefined;
818
+ customBackgroundColor?: undefined;
819
+ contentLeft?: undefined;
820
+ contentRight?: undefined;
821
+ } & RefAttributes<HTMLDivElement>))>;
782
822
 
783
823
  // @public (undocumented)
784
824
  export const AvatarGroup: FunctionComponent<PropsType<Variants> & HTMLAttributes<HTMLDivElement> & {
@@ -820,27 +860,9 @@ view?: string | undefined;
820
860
  contentLeft?: ReactNode;
821
861
  contentRight?: undefined;
822
862
  } & {
823
- children?: ReactNode;
824
- } & {
825
863
  clear?: true | undefined;
826
- pilled?: false | undefined;
827
- transparent?: false | undefined;
828
- } & RefAttributes<HTMLDivElement>) | (HTMLAttributes<HTMLDivElement> & {
829
- text?: string | undefined;
830
- customColor?: string | undefined;
831
- customBackgroundColor?: string | undefined;
832
- maxWidth?: Property.Width<string | number> | undefined;
833
- size?: string | undefined;
834
- view?: string | undefined;
835
- } & {
836
- contentLeft?: ReactNode;
837
- contentRight?: undefined;
838
- } & {
839
- children?: ReactNode;
840
- } & {
841
- pilled?: true | undefined;
842
- transparent?: boolean | undefined;
843
- clear?: false | undefined;
864
+ pilled?: undefined;
865
+ transparent?: undefined;
844
866
  } & RefAttributes<HTMLDivElement>) | (HTMLAttributes<HTMLDivElement> & {
845
867
  text?: string | undefined;
846
868
  customColor?: string | undefined;
@@ -852,11 +874,9 @@ view?: string | undefined;
852
874
  contentLeft?: ReactNode;
853
875
  contentRight?: undefined;
854
876
  } & {
855
- children?: ReactNode;
856
- } & {
857
877
  pilled?: boolean | undefined;
858
- transparent?: true | undefined;
859
- clear?: false | undefined;
878
+ transparent?: boolean | undefined;
879
+ clear?: undefined;
860
880
  } & RefAttributes<HTMLDivElement>) | (HTMLAttributes<HTMLDivElement> & {
861
881
  text?: string | undefined;
862
882
  customColor?: string | undefined;
@@ -868,27 +888,9 @@ view?: string | undefined;
868
888
  contentLeft?: undefined;
869
889
  contentRight?: ReactNode;
870
890
  } & {
871
- children?: ReactNode;
872
- } & {
873
891
  clear?: true | undefined;
874
- pilled?: false | undefined;
875
- transparent?: false | undefined;
876
- } & RefAttributes<HTMLDivElement>) | (HTMLAttributes<HTMLDivElement> & {
877
- text?: string | undefined;
878
- customColor?: string | undefined;
879
- customBackgroundColor?: string | undefined;
880
- maxWidth?: Property.Width<string | number> | undefined;
881
- size?: string | undefined;
882
- view?: string | undefined;
883
- } & {
884
- contentLeft?: undefined;
885
- contentRight?: ReactNode;
886
- } & {
887
- children?: ReactNode;
888
- } & {
889
- pilled?: true | undefined;
890
- transparent?: boolean | undefined;
891
- clear?: false | undefined;
892
+ pilled?: undefined;
893
+ transparent?: undefined;
892
894
  } & RefAttributes<HTMLDivElement>) | (HTMLAttributes<HTMLDivElement> & {
893
895
  text?: string | undefined;
894
896
  customColor?: string | undefined;
@@ -900,11 +902,9 @@ view?: string | undefined;
900
902
  contentLeft?: undefined;
901
903
  contentRight?: ReactNode;
902
904
  } & {
903
- children?: ReactNode;
904
- } & {
905
905
  pilled?: boolean | undefined;
906
- transparent?: true | undefined;
907
- clear?: false | undefined;
906
+ transparent?: boolean | undefined;
907
+ clear?: undefined;
908
908
  } & RefAttributes<HTMLDivElement>))>;
909
909
 
910
910
  export { BadgeProps }
@@ -1285,12 +1285,7 @@ negative: PolymorphicClassName;
1285
1285
  size: {
1286
1286
  s: PolymorphicClassName;
1287
1287
  };
1288
- }> & HTMLAttributes<HTMLDivElement> & {
1289
- count: number;
1290
- maxCount?: number | undefined;
1291
- size?: string | undefined;
1292
- view?: string | undefined;
1293
- } & RefAttributes<HTMLDivElement>>;
1288
+ }> & HTMLAttributes<HTMLDivElement> & CustomCounterProps & RefAttributes<HTMLDivElement>>;
1294
1289
 
1295
1290
  export { CounterProps }
1296
1291
 
@@ -2449,7 +2444,7 @@ onDecrement?: ((value: number) => void) | undefined;
2449
2444
  } & {
2450
2445
  segmentation?: "clear" | undefined;
2451
2446
  inputBackgroundType?: undefined;
2452
- } & Omit<InputHTMLAttributes_2<HTMLInputElement>, "onChange" | "size" | "value"> & RefAttributes<HTMLInputElement>) | ({
2447
+ } & Omit<InputHTMLAttributes_2<HTMLInputElement>, "size" | "onChange" | "value"> & RefAttributes<HTMLInputElement>) | ({
2453
2448
  value?: number | undefined;
2454
2449
  min?: number | undefined;
2455
2450
  max?: number | undefined;
@@ -2475,7 +2470,7 @@ onDecrement?: ((value: number) => void) | undefined;
2475
2470
  } & {
2476
2471
  segmentation?: string | undefined;
2477
2472
  inputBackgroundType?: string | undefined;
2478
- } & Omit<InputHTMLAttributes_2<HTMLInputElement>, "onChange" | "size" | "value"> & RefAttributes<HTMLInputElement>))>;
2473
+ } & Omit<InputHTMLAttributes_2<HTMLInputElement>, "size" | "onChange" | "value"> & RefAttributes<HTMLInputElement>))>;
2479
2474
 
2480
2475
  export { numberInputClasses }
2481
2476
 
@@ -23,8 +23,8 @@ declare const mergedConfig: import("@salutejs/plasma-new-hope/styled-components"
23
23
  focused: {
24
24
  true: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
25
25
  };
26
- }>, import("react").HTMLAttributes<HTMLDivElement> & {
27
- size: "s" | "m" | "l" | "xxl" | "fit";
26
+ }>, (import("react").HTMLAttributes<HTMLDivElement> & {
27
+ size?: string | undefined;
28
28
  name?: string | undefined;
29
29
  url?: string | undefined;
30
30
  customText?: string | undefined;
@@ -32,7 +32,46 @@ declare const mergedConfig: import("@salutejs/plasma-new-hope/styled-components"
32
32
  isScalable?: boolean | undefined;
33
33
  focused?: boolean | undefined;
34
34
  statusLabels?: import("@salutejs/plasma-new-hope/types/components/Avatar/Avatar.types").StatusLabels | undefined;
35
- } & import("react").RefAttributes<HTMLDivElement>>;
35
+ hasExtra?: boolean | undefined;
36
+ type?: "badge" | "counter" | undefined;
37
+ extraPlacement?: "top-right" | "top-left" | "bottom-right" | "bottom-left" | undefined;
38
+ } & {
39
+ badgeView?: string | undefined;
40
+ pilled?: boolean | undefined;
41
+ text?: string | undefined;
42
+ customColor?: string | undefined;
43
+ customBackgroundColor?: string | undefined;
44
+ contentLeft?: import("react").ReactNode;
45
+ contentRight?: import("react").ReactNode;
46
+ } & {
47
+ counterView?: undefined;
48
+ count?: undefined;
49
+ maxCount?: undefined;
50
+ } & import("react").RefAttributes<HTMLDivElement>) | (import("react").HTMLAttributes<HTMLDivElement> & {
51
+ size?: string | undefined;
52
+ name?: string | undefined;
53
+ url?: string | undefined;
54
+ customText?: string | undefined;
55
+ status?: "active" | "inactive" | undefined;
56
+ isScalable?: boolean | undefined;
57
+ focused?: boolean | undefined;
58
+ statusLabels?: import("@salutejs/plasma-new-hope/types/components/Avatar/Avatar.types").StatusLabels | undefined;
59
+ hasExtra?: boolean | undefined;
60
+ type?: "badge" | "counter" | undefined;
61
+ extraPlacement?: "top-right" | "top-left" | "bottom-right" | "bottom-left" | undefined;
62
+ } & {
63
+ counterView?: string | undefined;
64
+ count?: number | undefined;
65
+ maxCount?: number | undefined;
66
+ } & {
67
+ badgeView?: undefined;
68
+ pilled?: undefined;
69
+ text?: undefined;
70
+ customColor?: undefined;
71
+ customBackgroundColor?: undefined;
72
+ contentLeft?: undefined;
73
+ contentRight?: undefined;
74
+ } & import("react").RefAttributes<HTMLDivElement>)>;
36
75
  declare const Avatar: import("react").FunctionComponent<import("@salutejs/plasma-new-hope/types/engines/types").PropsType<{
37
76
  view: {
38
77
  default: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
@@ -45,8 +84,32 @@ declare const Avatar: import("react").FunctionComponent<import("@salutejs/plasma
45
84
  focused: {
46
85
  true: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
47
86
  };
48
- }> & import("react").HTMLAttributes<HTMLDivElement> & {
49
- size: "s" | "m" | "l" | "xxl" | "fit";
87
+ }> & ((import("react").HTMLAttributes<HTMLDivElement> & {
88
+ size?: string | undefined;
89
+ name?: string | undefined;
90
+ url?: string | undefined;
91
+ customText?: string | undefined;
92
+ status?: "active" | "inactive" | undefined;
93
+ isScalable?: boolean | undefined;
94
+ focused?: boolean | undefined;
95
+ statusLabels?: import("@salutejs/plasma-new-hope/types/components/Avatar/Avatar.types").StatusLabels | undefined;
96
+ hasExtra?: boolean | undefined;
97
+ type?: "badge" | "counter" | undefined;
98
+ extraPlacement?: "top-right" | "top-left" | "bottom-right" | "bottom-left" | undefined;
99
+ } & {
100
+ badgeView?: string | undefined;
101
+ pilled?: boolean | undefined;
102
+ text?: string | undefined;
103
+ customColor?: string | undefined;
104
+ customBackgroundColor?: string | undefined;
105
+ contentLeft?: import("react").ReactNode;
106
+ contentRight?: import("react").ReactNode;
107
+ } & {
108
+ counterView?: undefined;
109
+ count?: undefined;
110
+ maxCount?: undefined;
111
+ } & import("react").RefAttributes<HTMLDivElement>) | (import("react").HTMLAttributes<HTMLDivElement> & {
112
+ size?: string | undefined;
50
113
  name?: string | undefined;
51
114
  url?: string | undefined;
52
115
  customText?: string | undefined;
@@ -54,5 +117,20 @@ declare const Avatar: import("react").FunctionComponent<import("@salutejs/plasma
54
117
  isScalable?: boolean | undefined;
55
118
  focused?: boolean | undefined;
56
119
  statusLabels?: import("@salutejs/plasma-new-hope/types/components/Avatar/Avatar.types").StatusLabels | undefined;
57
- } & import("react").RefAttributes<HTMLDivElement>>;
120
+ hasExtra?: boolean | undefined;
121
+ type?: "badge" | "counter" | undefined;
122
+ extraPlacement?: "top-right" | "top-left" | "bottom-right" | "bottom-left" | undefined;
123
+ } & {
124
+ counterView?: string | undefined;
125
+ count?: number | undefined;
126
+ maxCount?: number | undefined;
127
+ } & {
128
+ badgeView?: undefined;
129
+ pilled?: undefined;
130
+ text?: undefined;
131
+ customColor?: undefined;
132
+ customBackgroundColor?: undefined;
133
+ contentLeft?: undefined;
134
+ contentRight?: undefined;
135
+ } & import("react").RefAttributes<HTMLDivElement>))>;
58
136
  export { Avatar, mergedConfig };
@@ -31,28 +31,10 @@ export declare const Badge: import("react").FunctionComponent<import("@salutejs/
31
31
  } & {
32
32
  contentLeft?: import("react").ReactNode;
33
33
  contentRight?: undefined;
34
- } & {
35
- children?: import("react").ReactNode;
36
34
  } & {
37
35
  clear?: true | undefined;
38
- pilled?: false | undefined;
39
- transparent?: false | undefined;
40
- } & import("react").RefAttributes<HTMLDivElement>) | (import("react").HTMLAttributes<HTMLDivElement> & {
41
- text?: string | undefined;
42
- customColor?: string | undefined;
43
- customBackgroundColor?: string | undefined;
44
- maxWidth?: import("csstype").Property.Width<string | number> | undefined;
45
- size?: string | undefined;
46
- view?: string | undefined;
47
- } & {
48
- contentLeft?: import("react").ReactNode;
49
- contentRight?: undefined;
50
- } & {
51
- children?: import("react").ReactNode;
52
- } & {
53
- pilled?: true | undefined;
54
- transparent?: boolean | undefined;
55
- clear?: false | undefined;
36
+ pilled?: undefined;
37
+ transparent?: undefined;
56
38
  } & import("react").RefAttributes<HTMLDivElement>) | (import("react").HTMLAttributes<HTMLDivElement> & {
57
39
  text?: string | undefined;
58
40
  customColor?: string | undefined;
@@ -63,12 +45,10 @@ export declare const Badge: import("react").FunctionComponent<import("@salutejs/
63
45
  } & {
64
46
  contentLeft?: import("react").ReactNode;
65
47
  contentRight?: undefined;
66
- } & {
67
- children?: import("react").ReactNode;
68
48
  } & {
69
49
  pilled?: boolean | undefined;
70
- transparent?: true | undefined;
71
- clear?: false | undefined;
50
+ transparent?: boolean | undefined;
51
+ clear?: undefined;
72
52
  } & import("react").RefAttributes<HTMLDivElement>) | (import("react").HTMLAttributes<HTMLDivElement> & {
73
53
  text?: string | undefined;
74
54
  customColor?: string | undefined;
@@ -79,28 +59,10 @@ export declare const Badge: import("react").FunctionComponent<import("@salutejs/
79
59
  } & {
80
60
  contentLeft?: undefined;
81
61
  contentRight?: import("react").ReactNode;
82
- } & {
83
- children?: import("react").ReactNode;
84
62
  } & {
85
63
  clear?: true | undefined;
86
- pilled?: false | undefined;
87
- transparent?: false | undefined;
88
- } & import("react").RefAttributes<HTMLDivElement>) | (import("react").HTMLAttributes<HTMLDivElement> & {
89
- text?: string | undefined;
90
- customColor?: string | undefined;
91
- customBackgroundColor?: string | undefined;
92
- maxWidth?: import("csstype").Property.Width<string | number> | undefined;
93
- size?: string | undefined;
94
- view?: string | undefined;
95
- } & {
96
- contentLeft?: undefined;
97
- contentRight?: import("react").ReactNode;
98
- } & {
99
- children?: import("react").ReactNode;
100
- } & {
101
- pilled?: true | undefined;
102
- transparent?: boolean | undefined;
103
- clear?: false | undefined;
64
+ pilled?: undefined;
65
+ transparent?: undefined;
104
66
  } & import("react").RefAttributes<HTMLDivElement>) | (import("react").HTMLAttributes<HTMLDivElement> & {
105
67
  text?: string | undefined;
106
68
  customColor?: string | undefined;
@@ -111,10 +73,8 @@ export declare const Badge: import("react").FunctionComponent<import("@salutejs/
111
73
  } & {
112
74
  contentLeft?: undefined;
113
75
  contentRight?: import("react").ReactNode;
114
- } & {
115
- children?: import("react").ReactNode;
116
76
  } & {
117
77
  pilled?: boolean | undefined;
118
- transparent?: true | undefined;
119
- clear?: false | undefined;
78
+ transparent?: boolean | undefined;
79
+ clear?: undefined;
120
80
  } & import("react").RefAttributes<HTMLDivElement>))>;
@@ -12,9 +12,4 @@ export declare const Counter: import("react").FunctionComponent<import("@salutej
12
12
  size: {
13
13
  s: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
14
14
  };
15
- }> & import("react").HTMLAttributes<HTMLDivElement> & {
16
- count: number;
17
- maxCount?: number | undefined;
18
- size?: string | undefined;
19
- view?: string | undefined;
20
- } & import("react").RefAttributes<HTMLDivElement>>;
15
+ }> & import("react").HTMLAttributes<HTMLDivElement> & import("@salutejs/plasma-new-hope/types/components/Counter/Counter.types").CustomCounterProps & import("react").RefAttributes<HTMLDivElement>>;
@@ -45,7 +45,7 @@ export declare const NumberInput: import("react").FunctionComponent<import("@sal
45
45
  } & {
46
46
  segmentation?: "clear" | undefined;
47
47
  inputBackgroundType?: undefined;
48
- } & Omit<import("react").InputHTMLAttributes<HTMLInputElement>, "onChange" | "size" | "value"> & import("react").RefAttributes<HTMLInputElement>) | ({
48
+ } & Omit<import("react").InputHTMLAttributes<HTMLInputElement>, "size" | "onChange" | "value"> & import("react").RefAttributes<HTMLInputElement>) | ({
49
49
  value?: number | undefined;
50
50
  min?: number | undefined;
51
51
  max?: number | undefined;
@@ -71,4 +71,4 @@ export declare const NumberInput: import("react").FunctionComponent<import("@sal
71
71
  } & {
72
72
  segmentation?: string | undefined;
73
73
  inputBackgroundType?: string | undefined;
74
- } & Omit<import("react").InputHTMLAttributes<HTMLInputElement>, "onChange" | "size" | "value"> & import("react").RefAttributes<HTMLInputElement>))>;
74
+ } & Omit<import("react").InputHTMLAttributes<HTMLInputElement>, "size" | "onChange" | "value"> & import("react").RefAttributes<HTMLInputElement>))>;
@@ -5,8 +5,9 @@ Object.defineProperty(exports, "__esModule", {
5
5
  });
6
6
  exports.config = void 0;
7
7
  var _styledComponents = /*#__PURE__*/require("@salutejs/plasma-new-hope/styled-components");
8
- var _sdds_cs = /*#__PURE__*/require("@salutejs/sdds-themes/tokens/sdds_cs");
9
- var _templateObject;
8
+ var _sdds_cs = /*#__PURE__*/require("@salutejs/sdds-themes/es/tokens/sdds_cs");
9
+ var _templateObject; // eslint-disable-next-line @typescript-eslint/ban-ts-comment
10
+ // @ts-ignore
10
11
  function _taggedTemplateLiteral(strings, raw) { if (!raw) { raw = strings.slice(0); } return Object.freeze(Object.defineProperties(strings, { raw: { value: Object.freeze(raw) } })); }
11
12
  var config = exports.config = {
12
13
  variations: {
@@ -5,8 +5,9 @@ Object.defineProperty(exports, "__esModule", {
5
5
  });
6
6
  exports.config = void 0;
7
7
  var _emotion = /*#__PURE__*/require("@salutejs/plasma-new-hope/emotion");
8
- var _sdds_cs = /*#__PURE__*/require("@salutejs/sdds-themes/tokens/sdds_cs");
9
- var _templateObject;
8
+ var _sdds_cs = /*#__PURE__*/require("@salutejs/sdds-themes/es/tokens/sdds_cs");
9
+ var _templateObject; // eslint-disable-next-line @typescript-eslint/ban-ts-comment
10
+ // @ts-ignore
10
11
  function _taggedTemplateLiteral(strings, raw) { if (!raw) { raw = strings.slice(0); } return Object.freeze(Object.defineProperties(strings, { raw: { value: Object.freeze(raw) } })); }
11
12
  var config = exports.config = {
12
13
  variations: {
@@ -1,7 +1,9 @@
1
1
  var _templateObject;
2
2
  function _taggedTemplateLiteral(strings, raw) { if (!raw) { raw = strings.slice(0); } return Object.freeze(Object.defineProperties(strings, { raw: { value: Object.freeze(raw) } })); }
3
3
  import { css } from '@salutejs/plasma-new-hope/emotion';
4
- import { viewContainer } from '@salutejs/sdds-themes/tokens/sdds_cs';
4
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
5
+ // @ts-ignore
6
+ import { viewContainer } from '@salutejs/sdds-themes/es/tokens/sdds_cs';
5
7
  export var config = {
6
8
  variations: {
7
9
  view: {
@@ -1,7 +1,9 @@
1
1
  var _templateObject;
2
2
  function _taggedTemplateLiteral(strings, raw) { if (!raw) { raw = strings.slice(0); } return Object.freeze(Object.defineProperties(strings, { raw: { value: Object.freeze(raw) } })); }
3
3
  import { css } from '@salutejs/plasma-new-hope/styled-components';
4
- import { viewContainer } from '@salutejs/sdds-themes/tokens/sdds_cs';
4
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
5
+ // @ts-ignore
6
+ import { viewContainer } from '@salutejs/sdds-themes/es/tokens/sdds_cs';
5
7
  export var config = {
6
8
  variations: {
7
9
  view: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salutejs/sdds-cs",
3
- "version": "0.229.1-canary.1707.12823225023.0",
3
+ "version": "0.230.0-dev.0",
4
4
  "description": "Salute Design System / React UI kit for SDDS CS web applications",
5
5
  "author": "Salute Frontend Team <salute.developers@gmail.com>",
6
6
  "license": "MIT",
@@ -30,7 +30,7 @@
30
30
  "directory": "packages/sdds-cs"
31
31
  },
32
32
  "dependencies": {
33
- "@salutejs/plasma-new-hope": "0.240.1-canary.1707.12823225023.0",
33
+ "@salutejs/plasma-new-hope": "0.241.0-dev.0",
34
34
  "@salutejs/sdds-themes": "0.31.0"
35
35
  },
36
36
  "peerDependencies": {
@@ -99,8 +99,8 @@
99
99
  "build:styled-components:esm": "BABEL_ENV=esm SC_NAMESPACE=sdds-srvc babel ./src --out-dir ./es --extensions .ts,.tsx",
100
100
  "postbuild:styled-components": "rm -rf src-sc",
101
101
  "postbuild:emotion": "rm -rf src-emotion",
102
- "pregenerate:typings": "rm -rf components/**/*.d.ts && rm -f index.d.ts && rm -f mixins/index.d.ts && rm -f tokens/index.d.ts",
103
- "generate:typings": "tsc --outDir . --emitDeclarationOnly",
102
+ "remove:typings": "rm -rf components/**/*.d.ts && rm -f index.d.ts && rm -f mixins/index.d.ts && rm -f tokens/index.d.ts",
103
+ "generate:typings": "npm run remove:typings && tsc --outDir . --emitDeclarationOnly",
104
104
  "storybook": "storybook dev -p ${PORT:-7007} -c .storybook",
105
105
  "prestorybook:emotion": "npm run prebuild:emotion",
106
106
  "storybook:emotion": "USE_EMOTION_COMPONENTS=true storybook dev -p ${PORT:-7002} -c .storybook",
@@ -122,5 +122,5 @@
122
122
  "Anton Vinogradov"
123
123
  ],
124
124
  "sideEffects": false,
125
- "gitHead": "00f61092304f8cbfcb21419885e049842e6f8d35"
125
+ "gitHead": "4cf77737e0764a42f4df5eac4bbd7a9847539a2d"
126
126
  }