@salutejs/sdds-cs 0.322.0-canary.1655.16168034594.0 → 0.322.0-canary.1655.16198986399.0

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.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,99 @@
1
+ ## 0.321.0 (10 июля 2025)
2
+
3
+ ## Функциональные изменения в компонентах
4
+
5
+ ### Tour
6
+
7
+ * Добавлен в поставку новый компонент
8
+
9
+ ![4539d0a6\_Kapture\_2025-06-30\_at\_13 45 01](https://github.com/user-attachments/assets/b6dac64b-0623-4308-a4b2-8a827c5d4d55)
10
+
11
+ [PR](https://github.com/salute-developers/plasma/pull/2010)
12
+
13
+ ### DatePicker
14
+
15
+ * Добавлена проверка при обновлении `value/defaultValue`, чтобы избежать коллизии при `mount/unmount`
16
+
17
+ **Before**:
18
+
19
+ ![460583735-fea399b1-8225-4b39-889b-b332664a4bcc](https://github.com/user-attachments/assets/ae641e2c-1ab8-47b4-8855-4267bb26a7d4)
20
+
21
+ **After**:
22
+ ![460583334-2e733867-15fb-4818-97f1-f0c024dc37cb](https://github.com/user-attachments/assets/971cc214-415f-4e53-9984-242e63ba084a)
23
+
24
+ [PR](https://github.com/salute-developers/plasma/pull/2058)
25
+
26
+ ### useUniqId
27
+
28
+ * Помечен как deprecated по причине устаревания и не актуальности. Рекомендуем использовать метод `safeUseId`
29
+
30
+ [PR](https://github.com/salute-developers/plasma/pull/2053)
31
+
32
+ ### NumberFormat
33
+
34
+ * Улучшен механизм копирование и вставки числа
35
+
36
+ ![459900391-30817797-7211-4d0e-8e4b-799d7fdab2c9](https://github.com/user-attachments/assets/11c52f11-b847-49c1-9a82-4df74bf64ff7)
37
+
38
+ [PR](https://github.com/salute-developers/plasma/pull/2050)
39
+
40
+ ### Chip
41
+
42
+ * изменен размер иконки `Close` для размера `XS`, стало `12x12`
43
+
44
+ [PR](https://github.com/salute-developers/plasma/pull/2070)
45
+
46
+ ### Icons
47
+
48
+ * добавлен `rest props` для IconRoot. Теперь есть возможность прокинуть `data-attrs` и другие атрибуты тега
49
+
50
+ <img width="1024" src="https://github.com/user-attachments/assets/ff1831f3-98f9-46df-a874-3c4891ca47b4" />
51
+
52
+ [PR](https://github.com/salute-developers/plasma/pull/2066)
53
+
54
+ ### Combobox
55
+
56
+ * Добавлен токен для галочки и иконки в режиме `single`
57
+
58
+ [PR](https://github.com/salute-developers/plasma/pull/2049)
59
+
60
+ ### Select
61
+
62
+ * Добавлен токен для галочки и иконки в режиме `single`
63
+
64
+ [PR](https://github.com/salute-developers/plasma/pull/2049)
65
+
66
+ ### TextArea
67
+
68
+ * добавлено свойство `headerSlot`
69
+
70
+ <img width="685" alt="image" src="https://github.com/user-attachments/assets/e092e789-b5ca-4b8e-a500-9f6594dc59ef" />
71
+
72
+ [PR](https://github.com/salute-developers/plasma/pull/2075)
73
+
74
+ ## Изменения в библиотеки
75
+
76
+ ### Docs
77
+
78
+ * Исправлен UI документации, добавлено условие для переопределения token фона
79
+
80
+ [PR](https://github.com/salute-developers/plasma/pull/2064)
81
+
82
+ ### Divider
83
+
84
+ * Изменен токен цвета заливки состояния `Default` с `SurfaceSolidPrimary` на `SurfaceSolidTertiary`
85
+
86
+ [PR](https://github.com/salute-developers/plasma/pull/2062)
87
+
88
+ ### Tooltip
89
+
90
+ * изменены токены на `inverse` в состоянии `default`
91
+
92
+ * добавлено новое состояние `secondary`
93
+
94
+ [PR](https://github.com/salute-developers/plasma/pull/2071)
95
+
96
+
1
97
  ## 0.319.0 (26 июня 2025)
2
98
 
3
99
  ## Функциональные изменения в компонентах
@@ -12,7 +12,7 @@ export declare const Drawer: import("react").FunctionComponent<import("@salutejs
12
12
  none: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
13
13
  default: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
14
14
  };
15
- }> & Omit<import("@salutejs/plasma-new-hope/styled-components").PopupProps, "draggable" | "handle" | "resizable"> & Omit<import("@salutejs/plasma-new-hope/types/components/Panel").PanelProps, "draggable"> & {
15
+ }> & Omit<import("@salutejs/plasma-new-hope/styled-components").PopupProps, "draggable" | "resizable"> & import("@salutejs/plasma-new-hope/types/components/Panel").PanelProps & {
16
16
  placement?: import("@salutejs/plasma-new-hope/types/components/Drawer/Drawer.types").DrawerPlacement;
17
17
  asModal?: boolean;
18
18
  customBackgroundColor?: string;
@@ -31,6 +31,7 @@ export declare const TextArea: import("react").FunctionComponent<import("@salute
31
31
  label?: string;
32
32
  labelPlacement?: "inner" | "outer";
33
33
  titleCaption?: import("react").ReactNode;
34
+ headerSlot?: import("react").ReactNode;
34
35
  contentRight?: React.ReactElement;
35
36
  resize?: "none" | "both" | "horizontal" | "vertical";
36
37
  helperText?: string;
@@ -75,6 +76,7 @@ export declare const TextArea: import("react").FunctionComponent<import("@salute
75
76
  label?: string;
76
77
  labelPlacement?: "inner" | "outer";
77
78
  titleCaption?: import("react").ReactNode;
79
+ headerSlot?: import("react").ReactNode;
78
80
  contentRight?: React.ReactElement;
79
81
  resize?: "none" | "both" | "horizontal" | "vertical";
80
82
  helperText?: string;
@@ -119,6 +121,7 @@ export declare const TextArea: import("react").FunctionComponent<import("@salute
119
121
  label?: string;
120
122
  labelPlacement?: "inner" | "outer";
121
123
  titleCaption?: import("react").ReactNode;
124
+ headerSlot?: import("react").ReactNode;
122
125
  contentRight?: React.ReactElement;
123
126
  resize?: "none" | "both" | "horizontal" | "vertical";
124
127
  helperText?: string;
@@ -163,6 +166,7 @@ export declare const TextArea: import("react").FunctionComponent<import("@salute
163
166
  label?: string;
164
167
  labelPlacement?: "inner" | "outer";
165
168
  titleCaption?: import("react").ReactNode;
169
+ headerSlot?: import("react").ReactNode;
166
170
  contentRight?: React.ReactElement;
167
171
  resize?: "none" | "both" | "horizontal" | "vertical";
168
172
  helperText?: string;
@@ -207,6 +211,7 @@ export declare const TextArea: import("react").FunctionComponent<import("@salute
207
211
  label?: string;
208
212
  labelPlacement?: "inner" | "outer";
209
213
  titleCaption?: import("react").ReactNode;
214
+ headerSlot?: import("react").ReactNode;
210
215
  contentRight?: React.ReactElement;
211
216
  resize?: "none" | "both" | "horizontal" | "vertical";
212
217
  helperText?: string;
@@ -251,6 +256,7 @@ export declare const TextArea: import("react").FunctionComponent<import("@salute
251
256
  label?: string;
252
257
  labelPlacement?: "inner" | "outer";
253
258
  titleCaption?: import("react").ReactNode;
259
+ headerSlot?: import("react").ReactNode;
254
260
  contentRight?: React.ReactElement;
255
261
  resize?: "none" | "both" | "horizontal" | "vertical";
256
262
  helperText?: string;
@@ -295,6 +301,7 @@ export declare const TextArea: import("react").FunctionComponent<import("@salute
295
301
  label?: string;
296
302
  labelPlacement?: "inner" | "outer";
297
303
  titleCaption?: import("react").ReactNode;
304
+ headerSlot?: import("react").ReactNode;
298
305
  contentRight?: React.ReactElement;
299
306
  resize?: "none" | "both" | "horizontal" | "vertical";
300
307
  helperText?: string;
@@ -339,6 +346,7 @@ export declare const TextArea: import("react").FunctionComponent<import("@salute
339
346
  label?: string;
340
347
  labelPlacement?: "inner" | "outer";
341
348
  titleCaption?: import("react").ReactNode;
349
+ headerSlot?: import("react").ReactNode;
342
350
  contentRight?: React.ReactElement;
343
351
  resize?: "none" | "both" | "horizontal" | "vertical";
344
352
  helperText?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salutejs/sdds-cs",
3
- "version": "0.322.0-canary.1655.16168034594.0",
3
+ "version": "0.322.0-canary.1655.16198986399.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,8 +30,8 @@
30
30
  "directory": "packages/sdds-cs"
31
31
  },
32
32
  "dependencies": {
33
- "@salutejs/plasma-new-hope": "0.330.0-canary.1655.16168034594.0",
34
- "@salutejs/sdds-themes": "0.41.0-dev.0"
33
+ "@salutejs/plasma-new-hope": "0.330.0-canary.1655.16198986399.0",
34
+ "@salutejs/sdds-themes": "0.41.0"
35
35
  },
36
36
  "peerDependencies": {
37
37
  "@emotion/react": ">=11",
@@ -54,10 +54,10 @@
54
54
  "@microsoft/api-extractor": "7.38.3",
55
55
  "@originjs/vite-plugin-commonjs": "1.0.3",
56
56
  "@salutejs/plasma-colors": "0.15.0",
57
- "@salutejs/plasma-core": "1.201.0-dev.0",
58
- "@salutejs/plasma-cy-utils": "0.132.0-dev.0",
59
- "@salutejs/plasma-icons": "1.220.0-canary.1655.16168034594.0",
60
- "@salutejs/plasma-sb-utils": "0.202.0-dev.0",
57
+ "@salutejs/plasma-core": "1.201.0",
58
+ "@salutejs/plasma-cy-utils": "0.132.0",
59
+ "@salutejs/plasma-icons": "1.220.0",
60
+ "@salutejs/plasma-sb-utils": "0.202.0",
61
61
  "@storybook/addon-docs": "7.6.17",
62
62
  "@storybook/addon-essentials": "7.6.17",
63
63
  "@storybook/addons": "7.6.17",
@@ -123,5 +123,5 @@
123
123
  "Anton Vinogradov"
124
124
  ],
125
125
  "sideEffects": false,
126
- "gitHead": "442a980a4686af3a6f7c14eaf5d8c569217d37b8"
126
+ "gitHead": "4a47347012f001f699a78c02ec909a00d1eb1a92"
127
127
  }