@salutejs/sdds-serv 0.317.0-canary.2081.16214551068.0 → 0.318.0-canary.1655.16171144116.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/api/sdds-serv.api.md +1 -1
- package/components/Drawer/Drawer.d.ts +1 -1
- 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
|
## Функциональные изменения в компонентах
|
package/api/sdds-serv.api.md
CHANGED
@@ -1638,7 +1638,7 @@ borderRadius: {
|
|
1638
1638
|
none: PolymorphicClassName;
|
1639
1639
|
default: PolymorphicClassName;
|
1640
1640
|
};
|
1641
|
-
}> & PopupProps & PanelProps & {
|
1641
|
+
}> & Omit<PopupProps, "draggable" | "handle" | "resizable"> & Omit<PanelProps, "draggable"> & {
|
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
|
-
}> & import("@salutejs/plasma-new-hope/styled-components").PopupProps & import("@salutejs/plasma-new-hope/types/components/Panel").PanelProps & {
|
15
|
+
}> & Omit<import("@salutejs/plasma-new-hope/styled-components").PopupProps, "draggable" | "handle" | "resizable"> & Omit<import("@salutejs/plasma-new-hope/types/components/Panel").PanelProps, "draggable"> & {
|
16
16
|
placement?: import("@salutejs/plasma-new-hope/types/components/Drawer/Drawer.types").DrawerPlacement;
|
17
17
|
asModal?: boolean;
|
18
18
|
customBackgroundColor?: string;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@salutejs/sdds-serv",
|
3
|
-
"version": "0.
|
3
|
+
"version": "0.318.0-canary.1655.16171144116.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.
|
36
|
-
"@salutejs/sdds-themes": "0.41.0"
|
35
|
+
"@salutejs/plasma-new-hope": "0.331.0-canary.1655.16171144116.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-dev.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": "bf9e5f4ef8bbf0370ff796d691bcabca0874699e"
|
141
141
|
}
|