@salutejs/sdds-serv 0.316.1-canary.2008.16195181996.0 → 0.316.1-canary.2049.16159375154.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 +0 -74
- package/components/TextArea/TextArea.d.ts +0 -8
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
@@ -1,77 +1,3 @@
|
|
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
|
-
|
75
1
|
## 0.314.0 (26 июня 2025)
|
76
2
|
|
77
3
|
## Функциональные изменения в компонентах
|
@@ -34,7 +34,6 @@ 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;
|
38
37
|
contentRight?: React.ReactElement;
|
39
38
|
resize?: "none" | "both" | "horizontal" | "vertical";
|
40
39
|
helperText?: string;
|
@@ -79,7 +78,6 @@ export declare const TextArea: import("react").FunctionComponent<import("@salute
|
|
79
78
|
label?: string;
|
80
79
|
labelPlacement?: "inner" | "outer";
|
81
80
|
titleCaption?: import("react").ReactNode;
|
82
|
-
headerSlot?: import("react").ReactNode;
|
83
81
|
contentRight?: React.ReactElement;
|
84
82
|
resize?: "none" | "both" | "horizontal" | "vertical";
|
85
83
|
helperText?: string;
|
@@ -124,7 +122,6 @@ export declare const TextArea: import("react").FunctionComponent<import("@salute
|
|
124
122
|
label?: string;
|
125
123
|
labelPlacement?: "inner" | "outer";
|
126
124
|
titleCaption?: import("react").ReactNode;
|
127
|
-
headerSlot?: import("react").ReactNode;
|
128
125
|
contentRight?: React.ReactElement;
|
129
126
|
resize?: "none" | "both" | "horizontal" | "vertical";
|
130
127
|
helperText?: string;
|
@@ -169,7 +166,6 @@ export declare const TextArea: import("react").FunctionComponent<import("@salute
|
|
169
166
|
label?: string;
|
170
167
|
labelPlacement?: "inner" | "outer";
|
171
168
|
titleCaption?: import("react").ReactNode;
|
172
|
-
headerSlot?: import("react").ReactNode;
|
173
169
|
contentRight?: React.ReactElement;
|
174
170
|
resize?: "none" | "both" | "horizontal" | "vertical";
|
175
171
|
helperText?: string;
|
@@ -214,7 +210,6 @@ export declare const TextArea: import("react").FunctionComponent<import("@salute
|
|
214
210
|
label?: string;
|
215
211
|
labelPlacement?: "inner" | "outer";
|
216
212
|
titleCaption?: import("react").ReactNode;
|
217
|
-
headerSlot?: import("react").ReactNode;
|
218
213
|
contentRight?: React.ReactElement;
|
219
214
|
resize?: "none" | "both" | "horizontal" | "vertical";
|
220
215
|
helperText?: string;
|
@@ -259,7 +254,6 @@ export declare const TextArea: import("react").FunctionComponent<import("@salute
|
|
259
254
|
label?: string;
|
260
255
|
labelPlacement?: "inner" | "outer";
|
261
256
|
titleCaption?: import("react").ReactNode;
|
262
|
-
headerSlot?: import("react").ReactNode;
|
263
257
|
contentRight?: React.ReactElement;
|
264
258
|
resize?: "none" | "both" | "horizontal" | "vertical";
|
265
259
|
helperText?: string;
|
@@ -304,7 +298,6 @@ export declare const TextArea: import("react").FunctionComponent<import("@salute
|
|
304
298
|
label?: string;
|
305
299
|
labelPlacement?: "inner" | "outer";
|
306
300
|
titleCaption?: import("react").ReactNode;
|
307
|
-
headerSlot?: import("react").ReactNode;
|
308
301
|
contentRight?: React.ReactElement;
|
309
302
|
resize?: "none" | "both" | "horizontal" | "vertical";
|
310
303
|
helperText?: string;
|
@@ -349,7 +342,6 @@ export declare const TextArea: import("react").FunctionComponent<import("@salute
|
|
349
342
|
label?: string;
|
350
343
|
labelPlacement?: "inner" | "outer";
|
351
344
|
titleCaption?: import("react").ReactNode;
|
352
|
-
headerSlot?: import("react").ReactNode;
|
353
345
|
contentRight?: React.ReactElement;
|
354
346
|
resize?: "none" | "both" | "horizontal" | "vertical";
|
355
347
|
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.2049.16159375154.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.2049.16159375154.0",
|
36
|
+
"@salutejs/sdds-themes": "0.41.0-dev.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.0",
|
66
|
+
"@salutejs/plasma-core": "1.201.0-dev.0",
|
67
|
+
"@salutejs/plasma-cy-utils": "0.132.0-dev.0",
|
68
|
+
"@salutejs/plasma-icons": "1.219.1-canary.2049.16159375154.0",
|
69
|
+
"@salutejs/plasma-sb-utils": "0.202.0-dev.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": "9ec11ce3a5cfd88a908df37812a4f72256a17a89"
|
141
141
|
}
|