@salutejs/sdds-serv 0.316.1-canary.2074.16163189225.0 → 0.316.1-canary.2078.16193701703.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 +74 -0
- package/components/TextArea/TextArea.d.ts +8 -0
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
@@ -1,3 +1,77 @@
|
|
1
|
+
## 0.316.0 (10 июля 2025)
|
2
|
+
|
3
|
+
## Функциональные изменения в компонентах
|
4
|
+
|
5
|
+
### Tour
|
6
|
+
|
7
|
+
* Добавлен в поставку новый компонент
|
8
|
+
|
9
|
+

|
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
|
+

|
20
|
+
|
21
|
+
**After**:
|
22
|
+

|
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
|
+

|
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
|
+
|
1
75
|
## 0.314.0 (26 июня 2025)
|
2
76
|
|
3
77
|
## Функциональные изменения в компонентах
|
@@ -34,6 +34,7 @@ export declare const TextArea: import("react").FunctionComponent<import("@salute
|
|
34
34
|
label?: string;
|
35
35
|
labelPlacement?: "inner" | "outer";
|
36
36
|
titleCaption?: import("react").ReactNode;
|
37
|
+
headerSlot?: import("react").ReactNode;
|
37
38
|
contentRight?: React.ReactElement;
|
38
39
|
resize?: "none" | "both" | "horizontal" | "vertical";
|
39
40
|
helperText?: string;
|
@@ -78,6 +79,7 @@ export declare const TextArea: import("react").FunctionComponent<import("@salute
|
|
78
79
|
label?: string;
|
79
80
|
labelPlacement?: "inner" | "outer";
|
80
81
|
titleCaption?: import("react").ReactNode;
|
82
|
+
headerSlot?: import("react").ReactNode;
|
81
83
|
contentRight?: React.ReactElement;
|
82
84
|
resize?: "none" | "both" | "horizontal" | "vertical";
|
83
85
|
helperText?: string;
|
@@ -122,6 +124,7 @@ export declare const TextArea: import("react").FunctionComponent<import("@salute
|
|
122
124
|
label?: string;
|
123
125
|
labelPlacement?: "inner" | "outer";
|
124
126
|
titleCaption?: import("react").ReactNode;
|
127
|
+
headerSlot?: import("react").ReactNode;
|
125
128
|
contentRight?: React.ReactElement;
|
126
129
|
resize?: "none" | "both" | "horizontal" | "vertical";
|
127
130
|
helperText?: string;
|
@@ -166,6 +169,7 @@ export declare const TextArea: import("react").FunctionComponent<import("@salute
|
|
166
169
|
label?: string;
|
167
170
|
labelPlacement?: "inner" | "outer";
|
168
171
|
titleCaption?: import("react").ReactNode;
|
172
|
+
headerSlot?: import("react").ReactNode;
|
169
173
|
contentRight?: React.ReactElement;
|
170
174
|
resize?: "none" | "both" | "horizontal" | "vertical";
|
171
175
|
helperText?: string;
|
@@ -210,6 +214,7 @@ export declare const TextArea: import("react").FunctionComponent<import("@salute
|
|
210
214
|
label?: string;
|
211
215
|
labelPlacement?: "inner" | "outer";
|
212
216
|
titleCaption?: import("react").ReactNode;
|
217
|
+
headerSlot?: import("react").ReactNode;
|
213
218
|
contentRight?: React.ReactElement;
|
214
219
|
resize?: "none" | "both" | "horizontal" | "vertical";
|
215
220
|
helperText?: string;
|
@@ -254,6 +259,7 @@ export declare const TextArea: import("react").FunctionComponent<import("@salute
|
|
254
259
|
label?: string;
|
255
260
|
labelPlacement?: "inner" | "outer";
|
256
261
|
titleCaption?: import("react").ReactNode;
|
262
|
+
headerSlot?: import("react").ReactNode;
|
257
263
|
contentRight?: React.ReactElement;
|
258
264
|
resize?: "none" | "both" | "horizontal" | "vertical";
|
259
265
|
helperText?: string;
|
@@ -298,6 +304,7 @@ export declare const TextArea: import("react").FunctionComponent<import("@salute
|
|
298
304
|
label?: string;
|
299
305
|
labelPlacement?: "inner" | "outer";
|
300
306
|
titleCaption?: import("react").ReactNode;
|
307
|
+
headerSlot?: import("react").ReactNode;
|
301
308
|
contentRight?: React.ReactElement;
|
302
309
|
resize?: "none" | "both" | "horizontal" | "vertical";
|
303
310
|
helperText?: string;
|
@@ -342,6 +349,7 @@ export declare const TextArea: import("react").FunctionComponent<import("@salute
|
|
342
349
|
label?: string;
|
343
350
|
labelPlacement?: "inner" | "outer";
|
344
351
|
titleCaption?: import("react").ReactNode;
|
352
|
+
headerSlot?: import("react").ReactNode;
|
345
353
|
contentRight?: React.ReactElement;
|
346
354
|
resize?: "none" | "both" | "horizontal" | "vertical";
|
347
355
|
helperText?: string;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@salutejs/sdds-serv",
|
3
|
-
"version": "0.316.1-canary.
|
3
|
+
"version": "0.316.1-canary.2078.16193701703.0",
|
4
4
|
"description": "Salute Design System / React UI kit for SDDS SERV web applications",
|
5
5
|
"author": "Salute Frontend Team <salute.developers@gmail.com>",
|
6
6
|
"license": "MIT",
|
@@ -32,8 +32,8 @@
|
|
32
32
|
"directory": "packages/sdds-serv"
|
33
33
|
},
|
34
34
|
"dependencies": {
|
35
|
-
"@salutejs/plasma-new-hope": "0.329.1-canary.
|
36
|
-
"@salutejs/sdds-themes": "0.41.0
|
35
|
+
"@salutejs/plasma-new-hope": "0.329.1-canary.2078.16193701703.0",
|
36
|
+
"@salutejs/sdds-themes": "0.41.0"
|
37
37
|
},
|
38
38
|
"peerDependencies": {
|
39
39
|
"@emotion/react": ">=11",
|
@@ -63,10 +63,10 @@
|
|
63
63
|
"@rollup/plugin-commonjs": "^25.0.4",
|
64
64
|
"@rollup/plugin-node-resolve": "^15.1.0",
|
65
65
|
"@salutejs/plasma-colors": "0.15.0",
|
66
|
-
"@salutejs/plasma-core": "1.201.0
|
67
|
-
"@salutejs/plasma-cy-utils": "0.132.0
|
68
|
-
"@salutejs/plasma-icons": "1.
|
69
|
-
"@salutejs/plasma-sb-utils": "0.202.
|
66
|
+
"@salutejs/plasma-core": "1.201.0",
|
67
|
+
"@salutejs/plasma-cy-utils": "0.132.0",
|
68
|
+
"@salutejs/plasma-icons": "1.220.0",
|
69
|
+
"@salutejs/plasma-sb-utils": "0.202.1-canary.2078.16193701703.0",
|
70
70
|
"@storybook/addon-docs": "7.6.17",
|
71
71
|
"@storybook/addon-essentials": "7.6.17",
|
72
72
|
"@storybook/addons": "7.6.17",
|
@@ -137,5 +137,5 @@
|
|
137
137
|
"sideEffects": [
|
138
138
|
"*.css"
|
139
139
|
],
|
140
|
-
"gitHead": "
|
140
|
+
"gitHead": "1f466849cc3c38318c6fad8e9e63e780f054b861"
|
141
141
|
}
|