@salutejs/plasma-web 1.597.0-canary.2285.18499468890.0 → 1.597.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 CHANGED
@@ -1,3 +1,82 @@
1
+ ## 1.596.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
+
1
80
  ## 1.595.0 (1 октября 2025)
2
81
 
3
82
  ## Функциональные изменения в компонентах
@@ -72,6 +72,8 @@ declare const SelectNewHope: React.FunctionComponent<import("@salutejs/plasma-ne
72
72
  disabled?: boolean;
73
73
  readOnly?: boolean;
74
74
  items?: DropdownNodeSelect[] | undefined;
75
+ treeView?: boolean;
76
+ arrowPlacement?: "left" | "right";
75
77
  onItemSelect?: ((e: DropdownNodeSelect, event: React.SyntheticEvent) => void) | undefined;
76
78
  children?: never;
77
79
  isTargetAmount?: boolean;
@@ -132,6 +134,8 @@ declare const SelectNewHope: React.FunctionComponent<import("@salutejs/plasma-ne
132
134
  disabled?: boolean;
133
135
  readOnly?: boolean;
134
136
  items?: DropdownNodeSelect[] | undefined;
137
+ treeView?: boolean;
138
+ arrowPlacement?: "left" | "right";
135
139
  onItemSelect?: ((e: DropdownNodeSelect, event: React.SyntheticEvent) => void) | undefined;
136
140
  children?: never;
137
141
  isTargetAmount?: boolean;
@@ -191,6 +195,8 @@ declare const SelectNewHope: React.FunctionComponent<import("@salutejs/plasma-ne
191
195
  disabled?: boolean;
192
196
  readOnly?: boolean;
193
197
  items?: DropdownNodeSelect[] | undefined;
198
+ treeView?: boolean;
199
+ arrowPlacement?: "left" | "right";
194
200
  onItemSelect?: ((e: DropdownNodeSelect, event: React.SyntheticEvent) => void) | undefined;
195
201
  children?: never;
196
202
  isTargetAmount?: boolean;
@@ -251,6 +257,8 @@ declare const SelectNewHope: React.FunctionComponent<import("@salutejs/plasma-ne
251
257
  disabled?: boolean;
252
258
  readOnly?: boolean;
253
259
  items?: DropdownNodeSelect[] | undefined;
260
+ treeView?: boolean;
261
+ arrowPlacement?: "left" | "right";
254
262
  onItemSelect?: ((e: DropdownNodeSelect, event: React.SyntheticEvent) => void) | undefined;
255
263
  children?: never;
256
264
  isTargetAmount?: boolean;
@@ -298,6 +306,8 @@ declare const SelectNewHope: React.FunctionComponent<import("@salutejs/plasma-ne
298
306
  disabled?: boolean;
299
307
  readOnly?: boolean;
300
308
  items?: DropdownNodeSelect[] | undefined;
309
+ treeView?: boolean;
310
+ arrowPlacement?: "left" | "right";
301
311
  onItemSelect?: ((e: DropdownNodeSelect, event: React.SyntheticEvent) => void) | undefined;
302
312
  children?: never;
303
313
  isTargetAmount?: boolean;
@@ -346,6 +356,8 @@ declare const SelectNewHope: React.FunctionComponent<import("@salutejs/plasma-ne
346
356
  disabled?: boolean;
347
357
  readOnly?: boolean;
348
358
  items?: DropdownNodeSelect[] | undefined;
359
+ treeView?: boolean;
360
+ arrowPlacement?: "left" | "right";
349
361
  onItemSelect?: ((e: DropdownNodeSelect, event: React.SyntheticEvent) => void) | undefined;
350
362
  children?: never;
351
363
  isTargetAmount?: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salutejs/plasma-web",
3
- "version": "1.597.0-canary.2285.18499468890.0",
3
+ "version": "1.597.0-canary.2286.18537184906.0",
4
4
  "description": "Salute Design System / React UI kit for web applications",
5
5
  "author": "Salute Frontend Team <salute.developers@gmail.com>",
6
6
  "license": "MIT",
@@ -20,8 +20,8 @@
20
20
  },
21
21
  "dependencies": {
22
22
  "@salutejs/plasma-core": "1.208.0",
23
- "@salutejs/plasma-hope": "1.355.0-canary.2285.18499468890.0",
24
- "@salutejs/plasma-new-hope": "0.339.0-canary.2285.18499468890.0",
23
+ "@salutejs/plasma-hope": "1.354.0",
24
+ "@salutejs/plasma-new-hope": "0.339.0-canary.2286.18537184906.0",
25
25
  "@salutejs/plasma-themes": "0.38.0",
26
26
  "@salutejs/plasma-tokens-b2b": "1.54.0",
27
27
  "@salutejs/plasma-tokens-b2c": "0.65.0",
@@ -50,7 +50,7 @@
50
50
  "@rollup/plugin-node-resolve": "15.2.3",
51
51
  "@salutejs/plasma-colors": "0.16.0",
52
52
  "@salutejs/plasma-cy-utils": "0.138.0",
53
- "@salutejs/plasma-icons": "1.226.0-canary.2285.18499468890.0",
53
+ "@salutejs/plasma-icons": "1.225.0",
54
54
  "@salutejs/plasma-sb-utils": "0.208.0",
55
55
  "@storybook/addon-docs": "8.6.14",
56
56
  "@storybook/addon-essentials": "8.6.14",
@@ -111,5 +111,5 @@
111
111
  "Fanil Zubairov"
112
112
  ],
113
113
  "sideEffects": false,
114
- "gitHead": "404e435dc8b66f78408050b2fab3f25880e26fb0"
114
+ "gitHead": "25a710347ca90762c19dd33314939dd93309d753"
115
115
  }