@salutejs/sdds-serv 0.317.0-canary.1655.16198986399.0 → 0.317.0-canary.2009.16162480074.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,77 +1,3 @@
1
- ## 0.316.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
1
  ## 0.314.0 (26 июня 2025)
76
2
 
77
3
  ## Функциональные изменения в компонентах
@@ -1638,7 +1638,7 @@ borderRadius: {
1638
1638
  none: PolymorphicClassName;
1639
1639
  default: PolymorphicClassName;
1640
1640
  };
1641
- }> & Omit<PopupProps, "draggable" | "handle" | "resizable"> & Omit<PanelProps, "draggable"> & {
1641
+ }> & PopupProps & PanelProps & {
1642
1642
  placement?: "top" | "bottom" | "right" | "left" | undefined;
1643
1643
  asModal?: boolean | undefined;
1644
1644
  customBackgroundColor?: string | undefined;
@@ -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" | "resizable"> & import("@salutejs/plasma-new-hope/types/components/Panel").PanelProps & {
15
+ }> & import("@salutejs/plasma-new-hope/styled-components").PopupProps & 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;
@@ -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.317.0-canary.1655.16198986399.0",
3
+ "version": "0.317.0-canary.2009.16162480074.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.330.0-canary.1655.16198986399.0",
36
- "@salutejs/sdds-themes": "0.41.0"
35
+ "@salutejs/plasma-new-hope": "0.330.0-canary.2009.16162480074.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.220.0",
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.220.0-canary.2009.16162480074.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": "4a47347012f001f699a78c02ec909a00d1eb1a92"
140
+ "gitHead": "dc2434e60896419db20ea5f3c68601133d4f97f8"
141
141
  }