@salutejs/plasma-web 1.467.0-canary.1552.12196523462.0 → 1.467.0-canary.1623.12195945790.0
Sign up to get free protection for your applications and to get access to all the features.
@@ -48,9 +48,6 @@ declare const ComboboxNew: React.FunctionComponent<import("@salutejs/plasma-new-
|
|
48
48
|
readOnly?: boolean | undefined;
|
49
49
|
disabled?: true | undefined;
|
50
50
|
alwaysOpened?: false | undefined;
|
51
|
-
} & {
|
52
|
-
name?: undefined;
|
53
|
-
defaultValue?: undefined;
|
54
51
|
} & {
|
55
52
|
multiple?: false | undefined;
|
56
53
|
value?: string | undefined;
|
@@ -58,39 +55,7 @@ declare const ComboboxNew: React.FunctionComponent<import("@salutejs/plasma-new-
|
|
58
55
|
isTargetAmount?: false | undefined;
|
59
56
|
targetAmount?: undefined;
|
60
57
|
renderValue?: undefined;
|
61
|
-
} & import("@salutejs/plasma-new-hope/types/components/TextField/TextField.types").RequiredProps & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "
|
62
|
-
items: ItemOption[];
|
63
|
-
placement?: ("top" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end") | undefined;
|
64
|
-
placeholder?: string | undefined;
|
65
|
-
helperText?: string | undefined;
|
66
|
-
contentLeft?: React.ReactElement<any, string | React.JSXElementConstructor<any>> | undefined;
|
67
|
-
textBefore?: string | undefined;
|
68
|
-
textAfter?: string | undefined;
|
69
|
-
variant?: "normal" | "tight" | undefined;
|
70
|
-
listOverflow?: import("csstype").Property.Overflow | undefined;
|
71
|
-
listHeight?: import("csstype").Property.Height<string | number> | undefined;
|
72
|
-
listWidth?: import("csstype").Property.Width<string | number> | undefined;
|
73
|
-
portal?: string | React.RefObject<HTMLElement> | undefined;
|
74
|
-
renderItem?: ((item: ItemOption) => React.ReactNode) | undefined;
|
75
|
-
filter?: ((item: ItemOption, textValue: string) => boolean) | undefined;
|
76
|
-
closeAfterSelect?: boolean | undefined;
|
77
|
-
size?: string | undefined;
|
78
|
-
view?: string | undefined;
|
79
|
-
} & import("@salutejs/plasma-new-hope/types/components/TextField/TextField.types").LabelProps & {
|
80
|
-
readOnly?: boolean | undefined;
|
81
|
-
disabled?: true | undefined;
|
82
|
-
alwaysOpened?: false | undefined;
|
83
|
-
} & {
|
84
|
-
name: string;
|
85
|
-
onChange?: React.ChangeEventHandler<Element> | undefined;
|
86
|
-
} & {
|
87
|
-
multiple?: false | undefined;
|
88
|
-
defaultValue?: string | undefined;
|
89
|
-
value?: undefined;
|
90
|
-
isTargetAmount?: false | undefined;
|
91
|
-
targetAmount?: undefined;
|
92
|
-
renderValue?: undefined;
|
93
|
-
} & import("@salutejs/plasma-new-hope/types/components/TextField/TextField.types").RequiredProps & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "defaultValue" | "name" | "value"> & React.RefAttributes<HTMLInputElement>) | ({
|
58
|
+
} & import("@salutejs/plasma-new-hope/types/components/TextField/TextField.types").RequiredProps & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "value"> & React.RefAttributes<HTMLInputElement>) | ({
|
94
59
|
items: ItemOption[];
|
95
60
|
placement?: ("top" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end") | undefined;
|
96
61
|
placeholder?: string | undefined;
|
@@ -112,9 +77,6 @@ declare const ComboboxNew: React.FunctionComponent<import("@salutejs/plasma-new-
|
|
112
77
|
readOnly?: boolean | undefined;
|
113
78
|
disabled?: true | undefined;
|
114
79
|
alwaysOpened?: false | undefined;
|
115
|
-
} & {
|
116
|
-
name?: undefined;
|
117
|
-
defaultValue?: undefined;
|
118
80
|
} & {
|
119
81
|
multiple: true;
|
120
82
|
value?: string[] | undefined;
|
@@ -122,39 +84,7 @@ declare const ComboboxNew: React.FunctionComponent<import("@salutejs/plasma-new-
|
|
122
84
|
isTargetAmount?: true | undefined;
|
123
85
|
targetAmount?: number | undefined;
|
124
86
|
renderValue?: ((item: ItemOption) => string) | undefined;
|
125
|
-
} & import("@salutejs/plasma-new-hope/types/components/TextField/TextField.types").RequiredProps & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "
|
126
|
-
items: ItemOption[];
|
127
|
-
placement?: ("top" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end") | undefined;
|
128
|
-
placeholder?: string | undefined;
|
129
|
-
helperText?: string | undefined;
|
130
|
-
contentLeft?: React.ReactElement<any, string | React.JSXElementConstructor<any>> | undefined;
|
131
|
-
textBefore?: string | undefined;
|
132
|
-
textAfter?: string | undefined;
|
133
|
-
variant?: "normal" | "tight" | undefined;
|
134
|
-
listOverflow?: import("csstype").Property.Overflow | undefined;
|
135
|
-
listHeight?: import("csstype").Property.Height<string | number> | undefined;
|
136
|
-
listWidth?: import("csstype").Property.Width<string | number> | undefined;
|
137
|
-
portal?: string | React.RefObject<HTMLElement> | undefined;
|
138
|
-
renderItem?: ((item: ItemOption) => React.ReactNode) | undefined;
|
139
|
-
filter?: ((item: ItemOption, textValue: string) => boolean) | undefined;
|
140
|
-
closeAfterSelect?: boolean | undefined;
|
141
|
-
size?: string | undefined;
|
142
|
-
view?: string | undefined;
|
143
|
-
} & import("@salutejs/plasma-new-hope/types/components/TextField/TextField.types").LabelProps & {
|
144
|
-
readOnly?: boolean | undefined;
|
145
|
-
disabled?: true | undefined;
|
146
|
-
alwaysOpened?: false | undefined;
|
147
|
-
} & {
|
148
|
-
name: string;
|
149
|
-
onChange?: React.ChangeEventHandler<Element> | undefined;
|
150
|
-
} & {
|
151
|
-
multiple: true;
|
152
|
-
defaultValue?: string[] | undefined;
|
153
|
-
value?: undefined;
|
154
|
-
isTargetAmount?: true | undefined;
|
155
|
-
targetAmount?: number | undefined;
|
156
|
-
renderValue?: ((item: ItemOption) => string) | undefined;
|
157
|
-
} & import("@salutejs/plasma-new-hope/types/components/TextField/TextField.types").RequiredProps & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "defaultValue" | "name" | "value"> & React.RefAttributes<HTMLInputElement>) | ({
|
87
|
+
} & import("@salutejs/plasma-new-hope/types/components/TextField/TextField.types").RequiredProps & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "value"> & React.RefAttributes<HTMLInputElement>) | ({
|
158
88
|
items: ItemOption[];
|
159
89
|
placement?: ("top" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end") | undefined;
|
160
90
|
placeholder?: string | undefined;
|
@@ -176,9 +106,6 @@ declare const ComboboxNew: React.FunctionComponent<import("@salutejs/plasma-new-
|
|
176
106
|
readOnly?: true | undefined;
|
177
107
|
disabled?: boolean | undefined;
|
178
108
|
alwaysOpened?: false | undefined;
|
179
|
-
} & {
|
180
|
-
name?: undefined;
|
181
|
-
defaultValue?: undefined;
|
182
109
|
} & {
|
183
110
|
multiple?: false | undefined;
|
184
111
|
value?: string | undefined;
|
@@ -186,39 +113,7 @@ declare const ComboboxNew: React.FunctionComponent<import("@salutejs/plasma-new-
|
|
186
113
|
isTargetAmount?: false | undefined;
|
187
114
|
targetAmount?: undefined;
|
188
115
|
renderValue?: undefined;
|
189
|
-
} & import("@salutejs/plasma-new-hope/types/components/TextField/TextField.types").RequiredProps & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "
|
190
|
-
items: ItemOption[];
|
191
|
-
placement?: ("top" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end") | undefined;
|
192
|
-
placeholder?: string | undefined;
|
193
|
-
helperText?: string | undefined;
|
194
|
-
contentLeft?: React.ReactElement<any, string | React.JSXElementConstructor<any>> | undefined;
|
195
|
-
textBefore?: string | undefined;
|
196
|
-
textAfter?: string | undefined;
|
197
|
-
variant?: "normal" | "tight" | undefined;
|
198
|
-
listOverflow?: import("csstype").Property.Overflow | undefined;
|
199
|
-
listHeight?: import("csstype").Property.Height<string | number> | undefined;
|
200
|
-
listWidth?: import("csstype").Property.Width<string | number> | undefined;
|
201
|
-
portal?: string | React.RefObject<HTMLElement> | undefined;
|
202
|
-
renderItem?: ((item: ItemOption) => React.ReactNode) | undefined;
|
203
|
-
filter?: ((item: ItemOption, textValue: string) => boolean) | undefined;
|
204
|
-
closeAfterSelect?: boolean | undefined;
|
205
|
-
size?: string | undefined;
|
206
|
-
view?: string | undefined;
|
207
|
-
} & import("@salutejs/plasma-new-hope/types/components/TextField/TextField.types").LabelProps & {
|
208
|
-
readOnly?: true | undefined;
|
209
|
-
disabled?: boolean | undefined;
|
210
|
-
alwaysOpened?: false | undefined;
|
211
|
-
} & {
|
212
|
-
name: string;
|
213
|
-
onChange?: React.ChangeEventHandler<Element> | undefined;
|
214
|
-
} & {
|
215
|
-
multiple?: false | undefined;
|
216
|
-
defaultValue?: string | undefined;
|
217
|
-
value?: undefined;
|
218
|
-
isTargetAmount?: false | undefined;
|
219
|
-
targetAmount?: undefined;
|
220
|
-
renderValue?: undefined;
|
221
|
-
} & import("@salutejs/plasma-new-hope/types/components/TextField/TextField.types").RequiredProps & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "defaultValue" | "name" | "value"> & React.RefAttributes<HTMLInputElement>) | ({
|
116
|
+
} & import("@salutejs/plasma-new-hope/types/components/TextField/TextField.types").RequiredProps & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "value"> & React.RefAttributes<HTMLInputElement>) | ({
|
222
117
|
items: ItemOption[];
|
223
118
|
placement?: ("top" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end") | undefined;
|
224
119
|
placeholder?: string | undefined;
|
@@ -240,9 +135,6 @@ declare const ComboboxNew: React.FunctionComponent<import("@salutejs/plasma-new-
|
|
240
135
|
readOnly?: true | undefined;
|
241
136
|
disabled?: boolean | undefined;
|
242
137
|
alwaysOpened?: false | undefined;
|
243
|
-
} & {
|
244
|
-
name?: undefined;
|
245
|
-
defaultValue?: undefined;
|
246
138
|
} & {
|
247
139
|
multiple: true;
|
248
140
|
value?: string[] | undefined;
|
@@ -250,39 +142,7 @@ declare const ComboboxNew: React.FunctionComponent<import("@salutejs/plasma-new-
|
|
250
142
|
isTargetAmount?: true | undefined;
|
251
143
|
targetAmount?: number | undefined;
|
252
144
|
renderValue?: ((item: ItemOption) => string) | undefined;
|
253
|
-
} & import("@salutejs/plasma-new-hope/types/components/TextField/TextField.types").RequiredProps & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "
|
254
|
-
items: ItemOption[];
|
255
|
-
placement?: ("top" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end") | undefined;
|
256
|
-
placeholder?: string | undefined;
|
257
|
-
helperText?: string | undefined;
|
258
|
-
contentLeft?: React.ReactElement<any, string | React.JSXElementConstructor<any>> | undefined;
|
259
|
-
textBefore?: string | undefined;
|
260
|
-
textAfter?: string | undefined;
|
261
|
-
variant?: "normal" | "tight" | undefined;
|
262
|
-
listOverflow?: import("csstype").Property.Overflow | undefined;
|
263
|
-
listHeight?: import("csstype").Property.Height<string | number> | undefined;
|
264
|
-
listWidth?: import("csstype").Property.Width<string | number> | undefined;
|
265
|
-
portal?: string | React.RefObject<HTMLElement> | undefined;
|
266
|
-
renderItem?: ((item: ItemOption) => React.ReactNode) | undefined;
|
267
|
-
filter?: ((item: ItemOption, textValue: string) => boolean) | undefined;
|
268
|
-
closeAfterSelect?: boolean | undefined;
|
269
|
-
size?: string | undefined;
|
270
|
-
view?: string | undefined;
|
271
|
-
} & import("@salutejs/plasma-new-hope/types/components/TextField/TextField.types").LabelProps & {
|
272
|
-
readOnly?: true | undefined;
|
273
|
-
disabled?: boolean | undefined;
|
274
|
-
alwaysOpened?: false | undefined;
|
275
|
-
} & {
|
276
|
-
name: string;
|
277
|
-
onChange?: React.ChangeEventHandler<Element> | undefined;
|
278
|
-
} & {
|
279
|
-
multiple: true;
|
280
|
-
defaultValue?: string[] | undefined;
|
281
|
-
value?: undefined;
|
282
|
-
isTargetAmount?: true | undefined;
|
283
|
-
targetAmount?: number | undefined;
|
284
|
-
renderValue?: ((item: ItemOption) => string) | undefined;
|
285
|
-
} & import("@salutejs/plasma-new-hope/types/components/TextField/TextField.types").RequiredProps & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "defaultValue" | "name" | "value"> & React.RefAttributes<HTMLInputElement>) | ({
|
145
|
+
} & import("@salutejs/plasma-new-hope/types/components/TextField/TextField.types").RequiredProps & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "value"> & React.RefAttributes<HTMLInputElement>) | ({
|
286
146
|
items: ItemOption[];
|
287
147
|
placement?: ("top" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end") | undefined;
|
288
148
|
placeholder?: string | undefined;
|
@@ -304,9 +164,6 @@ declare const ComboboxNew: React.FunctionComponent<import("@salutejs/plasma-new-
|
|
304
164
|
readOnly?: false | undefined;
|
305
165
|
disabled?: false | undefined;
|
306
166
|
alwaysOpened?: true | undefined;
|
307
|
-
} & {
|
308
|
-
name?: undefined;
|
309
|
-
defaultValue?: undefined;
|
310
167
|
} & {
|
311
168
|
multiple?: false | undefined;
|
312
169
|
value?: string | undefined;
|
@@ -314,39 +171,7 @@ declare const ComboboxNew: React.FunctionComponent<import("@salutejs/plasma-new-
|
|
314
171
|
isTargetAmount?: false | undefined;
|
315
172
|
targetAmount?: undefined;
|
316
173
|
renderValue?: undefined;
|
317
|
-
} & import("@salutejs/plasma-new-hope/types/components/TextField/TextField.types").RequiredProps & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "
|
318
|
-
items: ItemOption[];
|
319
|
-
placement?: ("top" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end") | undefined;
|
320
|
-
placeholder?: string | undefined;
|
321
|
-
helperText?: string | undefined;
|
322
|
-
contentLeft?: React.ReactElement<any, string | React.JSXElementConstructor<any>> | undefined;
|
323
|
-
textBefore?: string | undefined;
|
324
|
-
textAfter?: string | undefined;
|
325
|
-
variant?: "normal" | "tight" | undefined;
|
326
|
-
listOverflow?: import("csstype").Property.Overflow | undefined;
|
327
|
-
listHeight?: import("csstype").Property.Height<string | number> | undefined;
|
328
|
-
listWidth?: import("csstype").Property.Width<string | number> | undefined;
|
329
|
-
portal?: string | React.RefObject<HTMLElement> | undefined;
|
330
|
-
renderItem?: ((item: ItemOption) => React.ReactNode) | undefined;
|
331
|
-
filter?: ((item: ItemOption, textValue: string) => boolean) | undefined;
|
332
|
-
closeAfterSelect?: boolean | undefined;
|
333
|
-
size?: string | undefined;
|
334
|
-
view?: string | undefined;
|
335
|
-
} & import("@salutejs/plasma-new-hope/types/components/TextField/TextField.types").LabelProps & {
|
336
|
-
readOnly?: false | undefined;
|
337
|
-
disabled?: false | undefined;
|
338
|
-
alwaysOpened?: true | undefined;
|
339
|
-
} & {
|
340
|
-
name: string;
|
341
|
-
onChange?: React.ChangeEventHandler<Element> | undefined;
|
342
|
-
} & {
|
343
|
-
multiple?: false | undefined;
|
344
|
-
defaultValue?: string | undefined;
|
345
|
-
value?: undefined;
|
346
|
-
isTargetAmount?: false | undefined;
|
347
|
-
targetAmount?: undefined;
|
348
|
-
renderValue?: undefined;
|
349
|
-
} & import("@salutejs/plasma-new-hope/types/components/TextField/TextField.types").RequiredProps & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "defaultValue" | "name" | "value"> & React.RefAttributes<HTMLInputElement>) | ({
|
174
|
+
} & import("@salutejs/plasma-new-hope/types/components/TextField/TextField.types").RequiredProps & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "value"> & React.RefAttributes<HTMLInputElement>) | ({
|
350
175
|
items: ItemOption[];
|
351
176
|
placement?: ("top" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end") | undefined;
|
352
177
|
placeholder?: string | undefined;
|
@@ -368,9 +193,6 @@ declare const ComboboxNew: React.FunctionComponent<import("@salutejs/plasma-new-
|
|
368
193
|
readOnly?: false | undefined;
|
369
194
|
disabled?: false | undefined;
|
370
195
|
alwaysOpened?: true | undefined;
|
371
|
-
} & {
|
372
|
-
name?: undefined;
|
373
|
-
defaultValue?: undefined;
|
374
196
|
} & {
|
375
197
|
multiple: true;
|
376
198
|
value?: string[] | undefined;
|
@@ -378,39 +200,7 @@ declare const ComboboxNew: React.FunctionComponent<import("@salutejs/plasma-new-
|
|
378
200
|
isTargetAmount?: true | undefined;
|
379
201
|
targetAmount?: number | undefined;
|
380
202
|
renderValue?: ((item: ItemOption) => string) | undefined;
|
381
|
-
} & import("@salutejs/plasma-new-hope/types/components/TextField/TextField.types").RequiredProps & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "
|
382
|
-
items: ItemOption[];
|
383
|
-
placement?: ("top" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end") | undefined;
|
384
|
-
placeholder?: string | undefined;
|
385
|
-
helperText?: string | undefined;
|
386
|
-
contentLeft?: React.ReactElement<any, string | React.JSXElementConstructor<any>> | undefined;
|
387
|
-
textBefore?: string | undefined;
|
388
|
-
textAfter?: string | undefined;
|
389
|
-
variant?: "normal" | "tight" | undefined;
|
390
|
-
listOverflow?: import("csstype").Property.Overflow | undefined;
|
391
|
-
listHeight?: import("csstype").Property.Height<string | number> | undefined;
|
392
|
-
listWidth?: import("csstype").Property.Width<string | number> | undefined;
|
393
|
-
portal?: string | React.RefObject<HTMLElement> | undefined;
|
394
|
-
renderItem?: ((item: ItemOption) => React.ReactNode) | undefined;
|
395
|
-
filter?: ((item: ItemOption, textValue: string) => boolean) | undefined;
|
396
|
-
closeAfterSelect?: boolean | undefined;
|
397
|
-
size?: string | undefined;
|
398
|
-
view?: string | undefined;
|
399
|
-
} & import("@salutejs/plasma-new-hope/types/components/TextField/TextField.types").LabelProps & {
|
400
|
-
readOnly?: false | undefined;
|
401
|
-
disabled?: false | undefined;
|
402
|
-
alwaysOpened?: true | undefined;
|
403
|
-
} & {
|
404
|
-
name: string;
|
405
|
-
onChange?: React.ChangeEventHandler<Element> | undefined;
|
406
|
-
} & {
|
407
|
-
multiple: true;
|
408
|
-
defaultValue?: string[] | undefined;
|
409
|
-
value?: undefined;
|
410
|
-
isTargetAmount?: true | undefined;
|
411
|
-
targetAmount?: number | undefined;
|
412
|
-
renderValue?: ((item: ItemOption) => string) | undefined;
|
413
|
-
} & import("@salutejs/plasma-new-hope/types/components/TextField/TextField.types").RequiredProps & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "defaultValue" | "name" | "value"> & React.RefAttributes<HTMLInputElement>))>;
|
203
|
+
} & import("@salutejs/plasma-new-hope/types/components/TextField/TextField.types").RequiredProps & Omit<React.ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "value"> & React.RefAttributes<HTMLInputElement>))>;
|
414
204
|
declare type PropsFromConfig = keyof typeof config['variations'];
|
415
205
|
declare type PropsOld = ComponentProps<typeof ComboboxOld> & {
|
416
206
|
items?: never;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@salutejs/plasma-web",
|
3
|
-
"version": "1.467.0-canary.
|
3
|
+
"version": "1.467.0-canary.1623.12195945790.0",
|
4
4
|
"description": "Salute Design System / React UI kit for web applications",
|
5
5
|
"author": "Salute Frontend Team <salute.developers@gmail.com>",
|
6
6
|
"license": "MIT",
|
@@ -19,9 +19,9 @@
|
|
19
19
|
"directory": "packages/plasma-web"
|
20
20
|
},
|
21
21
|
"dependencies": {
|
22
|
-
"@salutejs/plasma-core": "1.
|
23
|
-
"@salutejs/plasma-hope": "1.
|
24
|
-
"@salutejs/plasma-new-hope": "0.212.0-canary.
|
22
|
+
"@salutejs/plasma-core": "1.188.0-canary.1623.12195945790.0",
|
23
|
+
"@salutejs/plasma-hope": "1.323.0-canary.1623.12195945790.0",
|
24
|
+
"@salutejs/plasma-new-hope": "0.212.0-canary.1623.12195945790.0",
|
25
25
|
"@salutejs/plasma-themes": "0.23.0",
|
26
26
|
"@salutejs/plasma-tokens-b2b": "1.43.0",
|
27
27
|
"@salutejs/plasma-tokens-b2c": "0.54.0",
|
@@ -49,9 +49,9 @@
|
|
49
49
|
"@rollup/plugin-commonjs": "25.0.7",
|
50
50
|
"@rollup/plugin-node-resolve": "15.2.3",
|
51
51
|
"@salutejs/plasma-colors": "0.13.0",
|
52
|
-
"@salutejs/plasma-cy-utils": "0.
|
52
|
+
"@salutejs/plasma-cy-utils": "0.119.0-canary.1623.12195945790.0",
|
53
53
|
"@salutejs/plasma-icons": "1.209.0",
|
54
|
-
"@salutejs/plasma-sb-utils": "0.
|
54
|
+
"@salutejs/plasma-sb-utils": "0.186.0-canary.1623.12195945790.0",
|
55
55
|
"@storybook/addon-docs": "7.6.17",
|
56
56
|
"@storybook/addon-essentials": "7.6.17",
|
57
57
|
"@storybook/addons": "7.6.17",
|
@@ -112,5 +112,5 @@
|
|
112
112
|
"Fanil Zubairov"
|
113
113
|
],
|
114
114
|
"sideEffects": false,
|
115
|
-
"gitHead": "
|
115
|
+
"gitHead": "e330f585e688d6a803dcbffb489d18750752119b"
|
116
116
|
}
|