@salutejs/sdds-finportal 0.160.0-canary.1542.11732695647.0 → 0.160.0-dev.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -579,6 +579,7 @@ true: PolymorphicClassName;
579
579
  text?: string | undefined;
580
580
  contentLeft?: ReactNode;
581
581
  contentRight?: ReactNode;
582
+ maxWidth?: Property.Width<string | number> | undefined;
582
583
  size?: string | undefined;
583
584
  view?: string | undefined;
584
585
  } & {
@@ -591,6 +592,7 @@ transparent?: false | undefined;
591
592
  text?: string | undefined;
592
593
  contentLeft?: ReactNode;
593
594
  contentRight?: ReactNode;
595
+ maxWidth?: Property.Width<string | number> | undefined;
594
596
  size?: string | undefined;
595
597
  view?: string | undefined;
596
598
  } & {
@@ -603,6 +605,7 @@ clear?: false | undefined;
603
605
  text?: string | undefined;
604
606
  contentLeft?: ReactNode;
605
607
  contentRight?: ReactNode;
608
+ maxWidth?: Property.Width<string | number> | undefined;
606
609
  size?: string | undefined;
607
610
  view?: string | undefined;
608
611
  } & {
@@ -1067,7 +1070,6 @@ true: PolymorphicClassName;
1067
1070
  size?: string | undefined;
1068
1071
  view?: string | undefined;
1069
1072
  labelPlacement?: "outer" | "inner" | undefined;
1070
- formType?: false | undefined;
1071
1073
  } & {
1072
1074
  readOnly?: boolean | undefined;
1073
1075
  disabled?: true | undefined;
@@ -1104,7 +1106,6 @@ true: PolymorphicClassName;
1104
1106
  size?: string | undefined;
1105
1107
  view?: string | undefined;
1106
1108
  labelPlacement?: "outer" | "inner" | undefined;
1107
- formType?: false | undefined;
1108
1109
  } & {
1109
1110
  readOnly?: boolean | undefined;
1110
1111
  disabled?: true | undefined;
@@ -1141,7 +1142,6 @@ true: PolymorphicClassName;
1141
1142
  size?: string | undefined;
1142
1143
  view?: string | undefined;
1143
1144
  labelPlacement?: "outer" | "inner" | undefined;
1144
- formType?: false | undefined;
1145
1145
  } & {
1146
1146
  readOnly?: boolean | undefined;
1147
1147
  disabled?: true | undefined;
@@ -1178,7 +1178,6 @@ true: PolymorphicClassName;
1178
1178
  size?: string | undefined;
1179
1179
  view?: string | undefined;
1180
1180
  labelPlacement?: "outer" | "inner" | undefined;
1181
- formType?: false | undefined;
1182
1181
  } & {
1183
1182
  readOnly?: boolean | undefined;
1184
1183
  disabled?: true | undefined;
@@ -1215,7 +1214,6 @@ true: PolymorphicClassName;
1215
1214
  size?: string | undefined;
1216
1215
  view?: string | undefined;
1217
1216
  labelPlacement?: "outer" | "inner" | undefined;
1218
- formType?: false | undefined;
1219
1217
  } & {
1220
1218
  readOnly?: true | undefined;
1221
1219
  disabled?: boolean | undefined;
@@ -1252,7 +1250,6 @@ true: PolymorphicClassName;
1252
1250
  size?: string | undefined;
1253
1251
  view?: string | undefined;
1254
1252
  labelPlacement?: "outer" | "inner" | undefined;
1255
- formType?: false | undefined;
1256
1253
  } & {
1257
1254
  readOnly?: true | undefined;
1258
1255
  disabled?: boolean | undefined;
@@ -1289,7 +1286,6 @@ true: PolymorphicClassName;
1289
1286
  size?: string | undefined;
1290
1287
  view?: string | undefined;
1291
1288
  labelPlacement?: "outer" | "inner" | undefined;
1292
- formType?: false | undefined;
1293
1289
  } & {
1294
1290
  readOnly?: true | undefined;
1295
1291
  disabled?: boolean | undefined;
@@ -1326,7 +1322,6 @@ true: PolymorphicClassName;
1326
1322
  size?: string | undefined;
1327
1323
  view?: string | undefined;
1328
1324
  labelPlacement?: "outer" | "inner" | undefined;
1329
- formType?: false | undefined;
1330
1325
  } & {
1331
1326
  readOnly?: true | undefined;
1332
1327
  disabled?: boolean | undefined;
@@ -1363,7 +1358,6 @@ true: PolymorphicClassName;
1363
1358
  size?: string | undefined;
1364
1359
  view?: string | undefined;
1365
1360
  labelPlacement?: "outer" | "inner" | undefined;
1366
- formType?: false | undefined;
1367
1361
  } & {
1368
1362
  readOnly?: false | undefined;
1369
1363
  disabled?: false | undefined;
@@ -1400,7 +1394,6 @@ true: PolymorphicClassName;
1400
1394
  size?: string | undefined;
1401
1395
  view?: string | undefined;
1402
1396
  labelPlacement?: "outer" | "inner" | undefined;
1403
- formType?: false | undefined;
1404
1397
  } & {
1405
1398
  readOnly?: false | undefined;
1406
1399
  disabled?: false | undefined;
@@ -1437,7 +1430,6 @@ true: PolymorphicClassName;
1437
1430
  size?: string | undefined;
1438
1431
  view?: string | undefined;
1439
1432
  labelPlacement?: "outer" | "inner" | undefined;
1440
- formType?: false | undefined;
1441
1433
  } & {
1442
1434
  readOnly?: false | undefined;
1443
1435
  disabled?: false | undefined;
@@ -1474,7 +1466,6 @@ true: PolymorphicClassName;
1474
1466
  size?: string | undefined;
1475
1467
  view?: string | undefined;
1476
1468
  labelPlacement?: "outer" | "inner" | undefined;
1477
- formType?: false | undefined;
1478
1469
  } & {
1479
1470
  readOnly?: false | undefined;
1480
1471
  disabled?: false | undefined;
@@ -31,6 +31,7 @@ export declare const Badge: import("react").FunctionComponent<import("@salutejs/
31
31
  text?: string | undefined;
32
32
  contentLeft?: import("react").ReactNode;
33
33
  contentRight?: import("react").ReactNode;
34
+ maxWidth?: import("csstype").Property.Width<string | number> | undefined;
34
35
  size?: string | undefined;
35
36
  view?: string | undefined;
36
37
  } & {
@@ -43,6 +44,7 @@ export declare const Badge: import("react").FunctionComponent<import("@salutejs/
43
44
  text?: string | undefined;
44
45
  contentLeft?: import("react").ReactNode;
45
46
  contentRight?: import("react").ReactNode;
47
+ maxWidth?: import("csstype").Property.Width<string | number> | undefined;
46
48
  size?: string | undefined;
47
49
  view?: string | undefined;
48
50
  } & {
@@ -55,6 +57,7 @@ export declare const Badge: import("react").FunctionComponent<import("@salutejs/
55
57
  text?: string | undefined;
56
58
  contentLeft?: import("react").ReactNode;
57
59
  contentRight?: import("react").ReactNode;
60
+ maxWidth?: import("csstype").Property.Width<string | number> | undefined;
58
61
  size?: string | undefined;
59
62
  view?: string | undefined;
60
63
  } & {
@@ -42,7 +42,6 @@ export declare const Combobox: import("react").FunctionComponent<import("@salute
42
42
  size?: string | undefined;
43
43
  view?: string | undefined;
44
44
  labelPlacement?: "outer" | "inner" | undefined;
45
- formType?: false | undefined;
46
45
  } & {
47
46
  readOnly?: boolean | undefined;
48
47
  disabled?: true | undefined;
@@ -79,7 +78,6 @@ export declare const Combobox: import("react").FunctionComponent<import("@salute
79
78
  size?: string | undefined;
80
79
  view?: string | undefined;
81
80
  labelPlacement?: "outer" | "inner" | undefined;
82
- formType?: false | undefined;
83
81
  } & {
84
82
  readOnly?: boolean | undefined;
85
83
  disabled?: true | undefined;
@@ -116,7 +114,6 @@ export declare const Combobox: import("react").FunctionComponent<import("@salute
116
114
  size?: string | undefined;
117
115
  view?: string | undefined;
118
116
  labelPlacement?: "outer" | "inner" | undefined;
119
- formType?: false | undefined;
120
117
  } & {
121
118
  readOnly?: boolean | undefined;
122
119
  disabled?: true | undefined;
@@ -153,7 +150,6 @@ export declare const Combobox: import("react").FunctionComponent<import("@salute
153
150
  size?: string | undefined;
154
151
  view?: string | undefined;
155
152
  labelPlacement?: "outer" | "inner" | undefined;
156
- formType?: false | undefined;
157
153
  } & {
158
154
  readOnly?: boolean | undefined;
159
155
  disabled?: true | undefined;
@@ -190,7 +186,6 @@ export declare const Combobox: import("react").FunctionComponent<import("@salute
190
186
  size?: string | undefined;
191
187
  view?: string | undefined;
192
188
  labelPlacement?: "outer" | "inner" | undefined;
193
- formType?: false | undefined;
194
189
  } & {
195
190
  readOnly?: true | undefined;
196
191
  disabled?: boolean | undefined;
@@ -227,7 +222,6 @@ export declare const Combobox: import("react").FunctionComponent<import("@salute
227
222
  size?: string | undefined;
228
223
  view?: string | undefined;
229
224
  labelPlacement?: "outer" | "inner" | undefined;
230
- formType?: false | undefined;
231
225
  } & {
232
226
  readOnly?: true | undefined;
233
227
  disabled?: boolean | undefined;
@@ -264,7 +258,6 @@ export declare const Combobox: import("react").FunctionComponent<import("@salute
264
258
  size?: string | undefined;
265
259
  view?: string | undefined;
266
260
  labelPlacement?: "outer" | "inner" | undefined;
267
- formType?: false | undefined;
268
261
  } & {
269
262
  readOnly?: true | undefined;
270
263
  disabled?: boolean | undefined;
@@ -301,7 +294,6 @@ export declare const Combobox: import("react").FunctionComponent<import("@salute
301
294
  size?: string | undefined;
302
295
  view?: string | undefined;
303
296
  labelPlacement?: "outer" | "inner" | undefined;
304
- formType?: false | undefined;
305
297
  } & {
306
298
  readOnly?: true | undefined;
307
299
  disabled?: boolean | undefined;
@@ -338,7 +330,6 @@ export declare const Combobox: import("react").FunctionComponent<import("@salute
338
330
  size?: string | undefined;
339
331
  view?: string | undefined;
340
332
  labelPlacement?: "outer" | "inner" | undefined;
341
- formType?: false | undefined;
342
333
  } & {
343
334
  readOnly?: false | undefined;
344
335
  disabled?: false | undefined;
@@ -375,7 +366,6 @@ export declare const Combobox: import("react").FunctionComponent<import("@salute
375
366
  size?: string | undefined;
376
367
  view?: string | undefined;
377
368
  labelPlacement?: "outer" | "inner" | undefined;
378
- formType?: false | undefined;
379
369
  } & {
380
370
  readOnly?: false | undefined;
381
371
  disabled?: false | undefined;
@@ -412,7 +402,6 @@ export declare const Combobox: import("react").FunctionComponent<import("@salute
412
402
  size?: string | undefined;
413
403
  view?: string | undefined;
414
404
  labelPlacement?: "outer" | "inner" | undefined;
415
- formType?: false | undefined;
416
405
  } & {
417
406
  readOnly?: false | undefined;
418
407
  disabled?: false | undefined;
@@ -449,7 +438,6 @@ export declare const Combobox: import("react").FunctionComponent<import("@salute
449
438
  size?: string | undefined;
450
439
  view?: string | undefined;
451
440
  labelPlacement?: "outer" | "inner" | undefined;
452
- formType?: false | undefined;
453
441
  } & {
454
442
  readOnly?: false | undefined;
455
443
  disabled?: false | undefined;
@@ -47,7 +47,6 @@ declare const Combobox: <T extends ItemOption>(props: Omit<ComboboxProps<T>, "vi
47
47
  size?: string | undefined;
48
48
  view?: string | undefined;
49
49
  labelPlacement?: "outer" | "inner" | undefined;
50
- formType?: false | undefined;
51
50
  } & {
52
51
  readOnly?: boolean | undefined;
53
52
  disabled?: true | undefined;
@@ -84,7 +83,6 @@ declare const Combobox: <T extends ItemOption>(props: Omit<ComboboxProps<T>, "vi
84
83
  size?: string | undefined;
85
84
  view?: string | undefined;
86
85
  labelPlacement?: "outer" | "inner" | undefined;
87
- formType?: false | undefined;
88
86
  } & {
89
87
  readOnly?: boolean | undefined;
90
88
  disabled?: true | undefined;
@@ -121,7 +119,6 @@ declare const Combobox: <T extends ItemOption>(props: Omit<ComboboxProps<T>, "vi
121
119
  size?: string | undefined;
122
120
  view?: string | undefined;
123
121
  labelPlacement?: "outer" | "inner" | undefined;
124
- formType?: false | undefined;
125
122
  } & {
126
123
  readOnly?: boolean | undefined;
127
124
  disabled?: true | undefined;
@@ -158,7 +155,6 @@ declare const Combobox: <T extends ItemOption>(props: Omit<ComboboxProps<T>, "vi
158
155
  size?: string | undefined;
159
156
  view?: string | undefined;
160
157
  labelPlacement?: "outer" | "inner" | undefined;
161
- formType?: false | undefined;
162
158
  } & {
163
159
  readOnly?: boolean | undefined;
164
160
  disabled?: true | undefined;
@@ -195,7 +191,6 @@ declare const Combobox: <T extends ItemOption>(props: Omit<ComboboxProps<T>, "vi
195
191
  size?: string | undefined;
196
192
  view?: string | undefined;
197
193
  labelPlacement?: "outer" | "inner" | undefined;
198
- formType?: false | undefined;
199
194
  } & {
200
195
  readOnly?: true | undefined;
201
196
  disabled?: boolean | undefined;
@@ -232,7 +227,6 @@ declare const Combobox: <T extends ItemOption>(props: Omit<ComboboxProps<T>, "vi
232
227
  size?: string | undefined;
233
228
  view?: string | undefined;
234
229
  labelPlacement?: "outer" | "inner" | undefined;
235
- formType?: false | undefined;
236
230
  } & {
237
231
  readOnly?: true | undefined;
238
232
  disabled?: boolean | undefined;
@@ -269,7 +263,6 @@ declare const Combobox: <T extends ItemOption>(props: Omit<ComboboxProps<T>, "vi
269
263
  size?: string | undefined;
270
264
  view?: string | undefined;
271
265
  labelPlacement?: "outer" | "inner" | undefined;
272
- formType?: false | undefined;
273
266
  } & {
274
267
  readOnly?: true | undefined;
275
268
  disabled?: boolean | undefined;
@@ -306,7 +299,6 @@ declare const Combobox: <T extends ItemOption>(props: Omit<ComboboxProps<T>, "vi
306
299
  size?: string | undefined;
307
300
  view?: string | undefined;
308
301
  labelPlacement?: "outer" | "inner" | undefined;
309
- formType?: false | undefined;
310
302
  } & {
311
303
  readOnly?: true | undefined;
312
304
  disabled?: boolean | undefined;
@@ -343,7 +335,6 @@ declare const Combobox: <T extends ItemOption>(props: Omit<ComboboxProps<T>, "vi
343
335
  size?: string | undefined;
344
336
  view?: string | undefined;
345
337
  labelPlacement?: "outer" | "inner" | undefined;
346
- formType?: false | undefined;
347
338
  } & {
348
339
  readOnly?: false | undefined;
349
340
  disabled?: false | undefined;
@@ -380,7 +371,6 @@ declare const Combobox: <T extends ItemOption>(props: Omit<ComboboxProps<T>, "vi
380
371
  size?: string | undefined;
381
372
  view?: string | undefined;
382
373
  labelPlacement?: "outer" | "inner" | undefined;
383
- formType?: false | undefined;
384
374
  } & {
385
375
  readOnly?: false | undefined;
386
376
  disabled?: false | undefined;
@@ -417,7 +407,6 @@ declare const Combobox: <T extends ItemOption>(props: Omit<ComboboxProps<T>, "vi
417
407
  size?: string | undefined;
418
408
  view?: string | undefined;
419
409
  labelPlacement?: "outer" | "inner" | undefined;
420
- formType?: false | undefined;
421
410
  } & {
422
411
  readOnly?: false | undefined;
423
412
  disabled?: false | undefined;
@@ -454,7 +443,6 @@ declare const Combobox: <T extends ItemOption>(props: Omit<ComboboxProps<T>, "vi
454
443
  size?: string | undefined;
455
444
  view?: string | undefined;
456
445
  labelPlacement?: "outer" | "inner" | undefined;
457
- formType?: false | undefined;
458
446
  } & {
459
447
  readOnly?: false | undefined;
460
448
  disabled?: false | undefined;
@@ -23,6 +23,9 @@ declare const HorizontalTabItem: React.FunctionComponent<import("@salutejs/plasm
23
23
  pilled: {
24
24
  true: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
25
25
  };
26
+ truncate: {
27
+ true: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
28
+ };
26
29
  }> & ((import("@salutejs/plasma-new-hope/styled-components").BaseTabItemProps & {
27
30
  orientation?: "horizontal" | undefined;
28
31
  contentLeft?: React.ReactNode;
@@ -70,6 +73,9 @@ declare const VerticalTabItem: React.FunctionComponent<import("@salutejs/plasma-
70
73
  disabled: {
71
74
  true: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
72
75
  };
76
+ truncate: {
77
+ true: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
78
+ };
73
79
  }> & ((import("@salutejs/plasma-new-hope/styled-components").BaseTabItemProps & {
74
80
  orientation: "vertical";
75
81
  contentLeft?: React.ReactNode;
@@ -27,5 +27,8 @@ export declare const config: {
27
27
  pilled: {
28
28
  true: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
29
29
  };
30
+ truncate: {
31
+ true: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
32
+ };
30
33
  };
31
34
  };
@@ -5,7 +5,7 @@ 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 _templateObject, _templateObject2, _templateObject3, _templateObject4, _templateObject5, _templateObject6, _templateObject7, _templateObject8, _templateObject9, _templateObject10, _templateObject11, _templateObject12, _templateObject13, _templateObject14, _templateObject15;
8
+ var _templateObject, _templateObject2, _templateObject3, _templateObject4, _templateObject5, _templateObject6, _templateObject7, _templateObject8, _templateObject9, _templateObject10, _templateObject11, _templateObject12, _templateObject13, _templateObject14, _templateObject15, _templateObject16;
9
9
  function _taggedTemplateLiteral(strings, raw) { if (!raw) { raw = strings.slice(0); } return Object.freeze(Object.defineProperties(strings, { raw: { value: Object.freeze(raw) } })); }
10
10
  var config = exports.config = {
11
11
  defaults: {
@@ -35,6 +35,9 @@ var config = exports.config = {
35
35
  },
36
36
  pilled: {
37
37
  "true": /*#__PURE__*/(0, _styledComponents.css)(_templateObject15 || (_templateObject15 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": 1.5rem;\n "])), _styledComponents.tabsTokens.itemPilledBorderRadius)
38
+ },
39
+ truncate: {
40
+ "true": /*#__PURE__*/(0, _styledComponents.css)(_templateObject16 || (_templateObject16 = /*#__PURE__*/_taggedTemplateLiteral([""])))
38
41
  }
39
42
  }
40
43
  };
@@ -16,5 +16,8 @@ export declare const config: {
16
16
  disabled: {
17
17
  true: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
18
18
  };
19
+ truncate: {
20
+ true: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
21
+ };
19
22
  };
20
23
  };
@@ -5,7 +5,7 @@ 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 _templateObject, _templateObject2, _templateObject3, _templateObject4, _templateObject5, _templateObject6;
8
+ var _templateObject, _templateObject2, _templateObject3, _templateObject4, _templateObject5, _templateObject6, _templateObject7;
9
9
  function _taggedTemplateLiteral(strings, raw) { if (!raw) { raw = strings.slice(0); } return Object.freeze(Object.defineProperties(strings, { raw: { value: Object.freeze(raw) } })); }
10
10
  var config = exports.config = {
11
11
  defaults: {
@@ -24,6 +24,9 @@ var config = exports.config = {
24
24
  },
25
25
  disabled: {
26
26
  "true": /*#__PURE__*/(0, _styledComponents.css)(_templateObject6 || (_templateObject6 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": 0.4;\n "])), _styledComponents.tabsTokens.disabledOpacity)
27
+ },
28
+ truncate: {
29
+ "true": /*#__PURE__*/(0, _styledComponents.css)(_templateObject7 || (_templateObject7 = /*#__PURE__*/_taggedTemplateLiteral([""])))
27
30
  }
28
31
  }
29
32
  };
@@ -1,4 +1,4 @@
1
- var _templateObject, _templateObject2, _templateObject3, _templateObject4, _templateObject5, _templateObject6, _templateObject7, _templateObject8, _templateObject9, _templateObject10, _templateObject11, _templateObject12, _templateObject13, _templateObject14, _templateObject15;
1
+ var _templateObject, _templateObject2, _templateObject3, _templateObject4, _templateObject5, _templateObject6, _templateObject7, _templateObject8, _templateObject9, _templateObject10, _templateObject11, _templateObject12, _templateObject13, _templateObject14, _templateObject15, _templateObject16;
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, tabsTokens } from '@salutejs/plasma-new-hope/styled-components';
4
4
  export var config = {
@@ -29,6 +29,9 @@ export var config = {
29
29
  },
30
30
  pilled: {
31
31
  "true": /*#__PURE__*/css(_templateObject15 || (_templateObject15 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": 1.5rem;\n "])), tabsTokens.itemPilledBorderRadius)
32
+ },
33
+ truncate: {
34
+ "true": /*#__PURE__*/css(_templateObject16 || (_templateObject16 = /*#__PURE__*/_taggedTemplateLiteral([""])))
32
35
  }
33
36
  }
34
37
  };
@@ -1,4 +1,4 @@
1
- var _templateObject, _templateObject2, _templateObject3, _templateObject4, _templateObject5, _templateObject6;
1
+ var _templateObject, _templateObject2, _templateObject3, _templateObject4, _templateObject5, _templateObject6, _templateObject7;
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, tabsTokens } from '@salutejs/plasma-new-hope/styled-components';
4
4
  export var config = {
@@ -18,6 +18,9 @@ export var config = {
18
18
  },
19
19
  disabled: {
20
20
  "true": /*#__PURE__*/css(_templateObject6 || (_templateObject6 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": 0.4;\n "])), tabsTokens.disabledOpacity)
21
+ },
22
+ truncate: {
23
+ "true": /*#__PURE__*/css(_templateObject7 || (_templateObject7 = /*#__PURE__*/_taggedTemplateLiteral([""])))
21
24
  }
22
25
  }
23
26
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salutejs/sdds-finportal",
3
- "version": "0.160.0-canary.1542.11732695647.0",
3
+ "version": "0.160.0-dev.0",
4
4
  "description": "Salute Design System / React UI kit for SDDS FinPortal web applications",
5
5
  "author": "Salute Frontend Team <salute.developers@gmail.com>",
6
6
  "license": "MIT",
@@ -19,7 +19,7 @@
19
19
  "directory": "packages/sdds-finportal"
20
20
  },
21
21
  "dependencies": {
22
- "@salutejs/plasma-new-hope": "0.186.0-canary.1542.11732695647.0",
22
+ "@salutejs/plasma-new-hope": "0.186.0-dev.0",
23
23
  "@salutejs/sdds-themes": "0.27.0-dev.0"
24
24
  },
25
25
  "peerDependencies": {
@@ -94,5 +94,5 @@
94
94
  "Vasiliy Loginevskiy"
95
95
  ],
96
96
  "sideEffects": false,
97
- "gitHead": "1fcc3a8a87feabe12448d8cffdeec0605f5f3978"
97
+ "gitHead": "908f2b894940c93fc0b905914061cf76c381f780"
98
98
  }