@salutejs/sdds-cs 0.331.0-canary.2285.18499468890.0 → 0.331.0-canary.2286.18537184906.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 +93 -0
- package/components/Select/Select.d.ts +12 -0
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
@@ -1,3 +1,96 @@
|
|
1
|
+
## 0.330.0 (15 октября 2025)
|
2
|
+
|
3
|
+
## Функциональные изменения в компонентах
|
4
|
+
|
5
|
+
### Combobox, Select
|
6
|
+
|
7
|
+
* Исправлена некорректная работа компонента при асинхронной загрузке опций в режиме `multiple`
|
8
|
+
|
9
|
+
[PR](https://github.com/salute-developers/plasma/pull/2268)
|
10
|
+
|
11
|
+
### Chip, TextField, Select, Combobox
|
12
|
+
|
13
|
+
* Добавлено состояние `hover` для крестика в `Chip`
|
14
|
+
|
15
|
+
* Добавлено свойство `chipClickArea`, которое определяет область нажатия
|
16
|
+
|
17
|
+
[PR](https://github.com/salute-developers/plasma/pull/2237)
|
18
|
+
|
19
|
+
### Tree
|
20
|
+
|
21
|
+
* Исправлено некорректной поведение компонента при использование ключа `type` в объектах `treeData`
|
22
|
+
|
23
|
+
[PR](https://github.com/salute-developers/plasma/pull/2267)
|
24
|
+
|
25
|
+
### Modal
|
26
|
+
|
27
|
+
* Исправлено переопределение overlay при использование свойства `hasBody`
|
28
|
+
|
29
|
+
[PR](https://github.com/salute-developers/plasma/pull/2276)
|
30
|
+
|
31
|
+
### Popup, Drawer
|
32
|
+
|
33
|
+
* Добавлено новое свойство `positionFixed`, которое вне зависимости от `frame` устанавливает `position: fixed`
|
34
|
+
|
35
|
+
[PR](https://github.com/salute-developers/plasma/pull/2277)
|
36
|
+
|
37
|
+
### Slider
|
38
|
+
|
39
|
+
* Исправлена транзитивная ошибка `_reactDom.default.findDOMNode is not a function` в библиотеки `react-draggable` при использование в связке с `React 19`
|
40
|
+
|
41
|
+
[PR](https://github.com/salute-developers/plasma/pull/2282)
|
42
|
+
|
43
|
+
### Table
|
44
|
+
|
45
|
+
* Добавлены новые свойства `setCellProps` и `setRowProps` для настройки атрибутов в `cell` и `row` соответственно
|
46
|
+
|
47
|
+
* Обновлена документацию: новые примеры, улучшили структуру
|
48
|
+
|
49
|
+
[PR](https://github.com/salute-developers/plasma/pull/2271)
|
50
|
+
|
51
|
+
### Popover
|
52
|
+
|
53
|
+
* Добавлен механизм resizable
|
54
|
+
|
55
|
+
* Добавлены новые `callback` для событий `onResizeStart`, `onResizeStop`
|
56
|
+
|
57
|
+
[PR](https://github.com/salute-developers/plasma/pull/2281)
|
58
|
+
|
59
|
+
### Icons
|
60
|
+
|
61
|
+
* Добавлены новые иконки: `DocumentAddOutline/Fill, FilterFunnelOffOutline/Fill, TargetOutline, OpenPanelFill, ClosePanelFill`
|
62
|
+
|
63
|
+
[PR](https://github.com/salute-developers/plasma/pull/2284)
|
64
|
+
|
65
|
+
### ProgressBarCircular
|
66
|
+
|
67
|
+
* Добавлен новый компонент
|
68
|
+
|
69
|
+
[PR](https://github.com/salute-developers/plasma/pull/2280)
|
70
|
+
|
71
|
+
## Docs
|
72
|
+
|
73
|
+
### Popover, Modal
|
74
|
+
|
75
|
+
* Добавлен новый раздел описывающий работу свойства `isFocusTrapped`
|
76
|
+
|
77
|
+
[PR](https://github.com/salute-developers/plasma/pull/2273)
|
78
|
+
|
79
|
+
## Изменения в библиотеки
|
80
|
+
|
81
|
+
### Tokens
|
82
|
+
|
83
|
+
* Исправлены токены для `:hover` `:active` на `text-accent-minor`
|
84
|
+
|
85
|
+
[PR](https://github.com/salute-developers/plasma/pull/2269)
|
86
|
+
|
87
|
+
### ButtonGroup
|
88
|
+
|
89
|
+
* Исправлен `view: secondary` в соответсвии с макетами
|
90
|
+
|
91
|
+
[PR](https://github.com/salute-developers/plasma/pull/2269)
|
92
|
+
|
93
|
+
|
1
94
|
## 0.329.0 (1 октября 2025)
|
2
95
|
|
3
96
|
## Функциональные изменения в компонентах
|
@@ -52,6 +52,8 @@ declare const SelectNewHope: React.FunctionComponent<import("@salutejs/plasma-ne
|
|
52
52
|
disabled?: boolean;
|
53
53
|
readOnly?: boolean;
|
54
54
|
items?: import("@salutejs/plasma-new-hope/styled-components").DropdownNodeSelect[] | undefined;
|
55
|
+
treeView?: boolean;
|
56
|
+
arrowPlacement?: "left" | "right";
|
55
57
|
onItemSelect?: ((e: import("@salutejs/plasma-new-hope/styled-components").DropdownNodeSelect, event: React.SyntheticEvent) => void) | undefined;
|
56
58
|
children?: never;
|
57
59
|
isTargetAmount?: boolean;
|
@@ -112,6 +114,8 @@ declare const SelectNewHope: React.FunctionComponent<import("@salutejs/plasma-ne
|
|
112
114
|
disabled?: boolean;
|
113
115
|
readOnly?: boolean;
|
114
116
|
items?: import("@salutejs/plasma-new-hope/styled-components").DropdownNodeSelect[] | undefined;
|
117
|
+
treeView?: boolean;
|
118
|
+
arrowPlacement?: "left" | "right";
|
115
119
|
onItemSelect?: ((e: import("@salutejs/plasma-new-hope/styled-components").DropdownNodeSelect, event: React.SyntheticEvent) => void) | undefined;
|
116
120
|
children?: never;
|
117
121
|
isTargetAmount?: boolean;
|
@@ -171,6 +175,8 @@ declare const SelectNewHope: React.FunctionComponent<import("@salutejs/plasma-ne
|
|
171
175
|
disabled?: boolean;
|
172
176
|
readOnly?: boolean;
|
173
177
|
items?: import("@salutejs/plasma-new-hope/styled-components").DropdownNodeSelect[] | undefined;
|
178
|
+
treeView?: boolean;
|
179
|
+
arrowPlacement?: "left" | "right";
|
174
180
|
onItemSelect?: ((e: import("@salutejs/plasma-new-hope/styled-components").DropdownNodeSelect, event: React.SyntheticEvent) => void) | undefined;
|
175
181
|
children?: never;
|
176
182
|
isTargetAmount?: boolean;
|
@@ -231,6 +237,8 @@ declare const SelectNewHope: React.FunctionComponent<import("@salutejs/plasma-ne
|
|
231
237
|
disabled?: boolean;
|
232
238
|
readOnly?: boolean;
|
233
239
|
items?: import("@salutejs/plasma-new-hope/styled-components").DropdownNodeSelect[] | undefined;
|
240
|
+
treeView?: boolean;
|
241
|
+
arrowPlacement?: "left" | "right";
|
234
242
|
onItemSelect?: ((e: import("@salutejs/plasma-new-hope/styled-components").DropdownNodeSelect, event: React.SyntheticEvent) => void) | undefined;
|
235
243
|
children?: never;
|
236
244
|
isTargetAmount?: boolean;
|
@@ -278,6 +286,8 @@ declare const SelectNewHope: React.FunctionComponent<import("@salutejs/plasma-ne
|
|
278
286
|
disabled?: boolean;
|
279
287
|
readOnly?: boolean;
|
280
288
|
items?: import("@salutejs/plasma-new-hope/styled-components").DropdownNodeSelect[] | undefined;
|
289
|
+
treeView?: boolean;
|
290
|
+
arrowPlacement?: "left" | "right";
|
281
291
|
onItemSelect?: ((e: import("@salutejs/plasma-new-hope/styled-components").DropdownNodeSelect, event: React.SyntheticEvent) => void) | undefined;
|
282
292
|
children?: never;
|
283
293
|
isTargetAmount?: boolean;
|
@@ -326,6 +336,8 @@ declare const SelectNewHope: React.FunctionComponent<import("@salutejs/plasma-ne
|
|
326
336
|
disabled?: boolean;
|
327
337
|
readOnly?: boolean;
|
328
338
|
items?: import("@salutejs/plasma-new-hope/styled-components").DropdownNodeSelect[] | undefined;
|
339
|
+
treeView?: boolean;
|
340
|
+
arrowPlacement?: "left" | "right";
|
329
341
|
onItemSelect?: ((e: import("@salutejs/plasma-new-hope/styled-components").DropdownNodeSelect, event: React.SyntheticEvent) => void) | undefined;
|
330
342
|
children?: never;
|
331
343
|
isTargetAmount?: boolean;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@salutejs/sdds-cs",
|
3
|
-
"version": "0.331.0-canary.
|
3
|
+
"version": "0.331.0-canary.2286.18537184906.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",
|
@@ -31,7 +31,7 @@
|
|
31
31
|
"directory": "packages/sdds-cs"
|
32
32
|
},
|
33
33
|
"dependencies": {
|
34
|
-
"@salutejs/plasma-new-hope": "0.339.0-canary.
|
34
|
+
"@salutejs/plasma-new-hope": "0.339.0-canary.2286.18537184906.0",
|
35
35
|
"@salutejs/sdds-themes": "0.47.0"
|
36
36
|
},
|
37
37
|
"peerDependencies": {
|
@@ -57,7 +57,7 @@
|
|
57
57
|
"@salutejs/plasma-colors": "0.16.0",
|
58
58
|
"@salutejs/plasma-core": "1.208.0",
|
59
59
|
"@salutejs/plasma-cy-utils": "0.138.0",
|
60
|
-
"@salutejs/plasma-icons": "1.
|
60
|
+
"@salutejs/plasma-icons": "1.225.0",
|
61
61
|
"@salutejs/plasma-sb-utils": "0.208.0",
|
62
62
|
"@storybook/addon-docs": "8.6.14",
|
63
63
|
"@storybook/addon-essentials": "8.6.14",
|
@@ -124,5 +124,5 @@
|
|
124
124
|
"Anton Vinogradov"
|
125
125
|
],
|
126
126
|
"sideEffects": false,
|
127
|
-
"gitHead": "
|
127
|
+
"gitHead": "25a710347ca90762c19dd33314939dd93309d753"
|
128
128
|
}
|