@salutejs/plasma-ui 1.327.0 → 1.327.1-canary.2182.17263856770.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 +85 -0
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,88 @@
|
|
|
1
|
+
## 1.327.0 (21 августа 2025)
|
|
2
|
+
|
|
3
|
+
## Функциональные изменения в компонентах
|
|
4
|
+
|
|
5
|
+
### DatePicker
|
|
6
|
+
|
|
7
|
+
* добавлено свойство `preserveInvalidOnBlur`, которое отключает сброс некорректных значений из поля ввода
|
|
8
|
+
|
|
9
|
+
[PR](https://github.com/salute-developers/plasma/pull/2134)
|
|
10
|
+
|
|
11
|
+
* исправлен `controlled` вариант `DatePicker`
|
|
12
|
+
|
|
13
|
+
[PR](https://github.com/salute-developers/plasma/pull/2148)
|
|
14
|
+
|
|
15
|
+
### NumberFormat
|
|
16
|
+
|
|
17
|
+
* добавлена поддержка `defaultValue`
|
|
18
|
+
|
|
19
|
+
[PR](https://github.com/salute-developers/plasma/pull/2138)
|
|
20
|
+
|
|
21
|
+
* добавлена функция `numberFormatter`, которая приводит число к нужному формату
|
|
22
|
+
|
|
23
|
+
[PR](https://github.com/salute-developers/plasma/pull/2137)
|
|
24
|
+
|
|
25
|
+
### Pagination
|
|
26
|
+
|
|
27
|
+
* исправлен `controlled` вариант
|
|
28
|
+
|
|
29
|
+
[PR](https://github.com/salute-developers/plasma/pull/2141)
|
|
30
|
+
|
|
31
|
+
* отключено взаимодействие с текущей выбранной страницей;
|
|
32
|
+
|
|
33
|
+
[PR](https://github.com/salute-developers/plasma/pull/2160)
|
|
34
|
+
|
|
35
|
+
### NumberInput
|
|
36
|
+
|
|
37
|
+
* расширен тип `value` до `number | string | undefined` для поддержки пустых значений
|
|
38
|
+
|
|
39
|
+
[PR](https://github.com/salute-developers/plasma/pull/2135)
|
|
40
|
+
|
|
41
|
+
### InformationWrapper
|
|
42
|
+
|
|
43
|
+
* добавлен компонент-обертка для элементов формы
|
|
44
|
+
|
|
45
|
+
[PR](https://github.com/salute-developers/plasma/pull/2065)
|
|
46
|
+
|
|
47
|
+
### Dropdown, Combobox
|
|
48
|
+
|
|
49
|
+
* исправлен баг в свойстве `alwaysOpened`, из-за которого приходилось делать двойные нажатия для открытия дочерних списков;
|
|
50
|
+
|
|
51
|
+
[PR](https://github.com/salute-developers/plasma/pull/2152)
|
|
52
|
+
|
|
53
|
+
### Modal, Popup
|
|
54
|
+
|
|
55
|
+
* исправлен раздел документации связанный со свойством resizable
|
|
56
|
+
|
|
57
|
+
[PR](https://github.com/salute-developers/plasma/pull/2158)
|
|
58
|
+
|
|
59
|
+
### Switch
|
|
60
|
+
|
|
61
|
+
* тип свойства `label` расширен до `ReactNode`
|
|
62
|
+
|
|
63
|
+
[PR](https://github.com/salute-developers/plasma/pull/2157)
|
|
64
|
+
|
|
65
|
+
### TextField
|
|
66
|
+
|
|
67
|
+
* свойства, связанные с `chip` помечены как deprecated;
|
|
68
|
+
|
|
69
|
+
[PR](https://github.com/salute-developers/plasma/pull/2133)
|
|
70
|
+
|
|
71
|
+
### Spinner
|
|
72
|
+
|
|
73
|
+
* свойство size теперь union type и может быть как string, так и number
|
|
74
|
+
|
|
75
|
+
[PR](https://github.com/salute-developers/plasma/pull/2156)
|
|
76
|
+
|
|
77
|
+
## Изменения в библиотеки
|
|
78
|
+
|
|
79
|
+
### Pickers
|
|
80
|
+
|
|
81
|
+
* добавлена поддержка долгого нажатия клавиши для клавиатурной навигации
|
|
82
|
+
|
|
83
|
+
[PR](https://github.com/salute-developers/plasma/pull/2130)
|
|
84
|
+
|
|
85
|
+
|
|
1
86
|
## 1.325.0 (7 августа 2025)
|
|
2
87
|
|
|
3
88
|
## Функциональные изменения в компонентах
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salutejs/plasma-ui",
|
|
3
|
-
"version": "1.327.0",
|
|
3
|
+
"version": "1.327.1-canary.2182.17263856770.0",
|
|
4
4
|
"description": "Salute Design System.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"module": "es/index.js",
|
|
@@ -38,12 +38,12 @@
|
|
|
38
38
|
"@salutejs/plasma-sb-utils": "0.206.0",
|
|
39
39
|
"@salutejs/plasma-tokens": "1.121.0",
|
|
40
40
|
"@salutejs/use-virtual": "2.0.0",
|
|
41
|
-
"@storybook/addon-docs": "
|
|
42
|
-
"@storybook/addon-essentials": "
|
|
43
|
-
"@storybook/
|
|
44
|
-
"@storybook/react": "
|
|
45
|
-
"@storybook/react-vite": "
|
|
46
|
-
"@storybook/theming": "
|
|
41
|
+
"@storybook/addon-docs": "8.6.14",
|
|
42
|
+
"@storybook/addon-essentials": "8.6.14",
|
|
43
|
+
"@storybook/manager-api": "8.6.14",
|
|
44
|
+
"@storybook/react": "8.6.14",
|
|
45
|
+
"@storybook/react-vite": "8.6.14",
|
|
46
|
+
"@storybook/theming": "8.6.14",
|
|
47
47
|
"@testing-library/react": "12.0.0",
|
|
48
48
|
"@types/color": "3.0.2",
|
|
49
49
|
"@types/jest": "26.0.24",
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
"jest-styled-components": "7.0.5",
|
|
64
64
|
"react": "18.2.0",
|
|
65
65
|
"react-dom": "18.2.0",
|
|
66
|
-
"storybook": "
|
|
66
|
+
"storybook": "8.6.14",
|
|
67
67
|
"styled-components": "5.3.1",
|
|
68
68
|
"ts-jest": "27.0.5",
|
|
69
69
|
"typescript": "4.2.4",
|
|
@@ -109,5 +109,5 @@
|
|
|
109
109
|
"Чельцов Евгений Олегович"
|
|
110
110
|
],
|
|
111
111
|
"sideEffects": false,
|
|
112
|
-
"gitHead": "
|
|
112
|
+
"gitHead": "0b79fb4994d4984296529478226df55be9652b68"
|
|
113
113
|
}
|