@salutejs/plasma-web 1.422.0-dev.0 → 1.422.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 +233 -0
- package/package.json +11 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,236 @@
|
|
|
1
|
+
# v1.422.0 (Thu Oct 17 2024)
|
|
2
|
+
|
|
3
|
+
### Release Notes
|
|
4
|
+
|
|
5
|
+
#### Release by 16.10.2024 ([#1487](https://github.com/salute-developers/plasma/pull/1487))
|
|
6
|
+
|
|
7
|
+
## Components
|
|
8
|
+
|
|
9
|
+
### Accordion
|
|
10
|
+
|
|
11
|
+
- свойство `view` помечено как `optional`
|
|
12
|
+
- свойство `view` для AccordionItem помечено как `deprecated`
|
|
13
|
+
- свойство `title` для `AccordionItem` теперь `ReactNode`
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
[PLASMA-3591]: Fix Accordion types (https://github.com/salute-developers/plasma/pull/1467)
|
|
18
|
+
|
|
19
|
+
### TextArea
|
|
20
|
+
|
|
21
|
+
- исправлен скроллбар
|
|
22
|
+
- обновлены `snapshots`
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
feat(plasma-*, sdds-*): TextArea scrollbar (https://github.com/salute-developers/plasma/pull/1471)
|
|
26
|
+
|
|
27
|
+
### Popup
|
|
28
|
+
|
|
29
|
+
- добавлены storybook декораторы для `Popup` и `Notification` для правильного отображения: `Drawer, Modal, Notification, Popup`
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
plasma-*: Fix popup mount logic (https://github.com/salute-developers/plasma/pull/1412)
|
|
33
|
+
|
|
34
|
+
### Tabs
|
|
35
|
+
|
|
36
|
+
- вертикальные табы добавлены в поставку всех клиентских библиотек
|
|
37
|
+
- добавлено свойство `value` для горизонтальных и вертикальных табов
|
|
38
|
+
- исправлены токены для всех пакетов
|
|
39
|
+
|
|
40
|
+
<img width="181" alt="Снимок экрана 2024-09-24 в 14 39 29" src="https://github.com/user-attachments/assets/9889e4d1-9297-4cf9-a577-23f5d1c8c9af">
|
|
41
|
+
|
|
42
|
+
<img width="163" alt="Снимок экрана 2024-09-24 в 14 38 56" src="https://github.com/user-attachments/assets/596e92aa-1136-4f41-bb29-67ce31dbff75">
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
`plasma-*, sdds-*`: Vertical Tabs added (https://github.com/salute-developers/plasma/pull/1374)
|
|
46
|
+
|
|
47
|
+
### Badge
|
|
48
|
+
|
|
49
|
+
- добавлен новый размер `XS`
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
[PLASMA-3598]: Badge: Add size XS (https://github.com/salute-developers/plasma/pull/1466)
|
|
54
|
+
|
|
55
|
+
### `SDDS-CS`
|
|
56
|
+
|
|
57
|
+
#### Button
|
|
58
|
+
|
|
59
|
+
- используется token `--text-accent` когда `view: secondary`
|
|
60
|
+
|
|
61
|
+
#### Chip
|
|
62
|
+
|
|
63
|
+
- для `closeIconColor` используется token `--text-accent` когда `view: secondary`
|
|
64
|
+
|
|
65
|
+
#### Badge
|
|
66
|
+
|
|
67
|
+
- изменены `padding{Right,Left}` на `8px`
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
[PLASMA-3611]: Правки конфигураций Button, Chip, Badge [SDDS-CS] (https://github.com/salute-developers/plasma/pull/1473)
|
|
71
|
+
|
|
72
|
+
### Breadcrumbs
|
|
73
|
+
|
|
74
|
+
* добавлена поддержка обработчика `onClick` при клике на ссылку
|
|
75
|
+
* поправлены union типы
|
|
76
|
+
* обновлена документация с указанием типов элементов
|
|
77
|
+
|
|
78
|
+
|
|
79
|
+
feat(plasma-new-hope, *-docs): Add onClick for item to `Breadcrumbs` component (https://github.com/salute-developers/plasma/pull/1480)
|
|
80
|
+
|
|
81
|
+
### Tabs
|
|
82
|
+
- исправлен скролл табов при малой ширине
|
|
83
|
+
- в `storybooks` добавлены свойства `width` и `height`, доступные при условии `clip = scroll`
|
|
84
|
+
|
|
85
|
+
|
|
86
|
+
`plasma-new-hope`: fix tabs arrow scroll (https://github.com/salute-developers/plasma/pull/1476)
|
|
87
|
+
|
|
88
|
+
### Attach
|
|
89
|
+
- исправлен `onChange`, `id` и `name`
|
|
90
|
+
- добавлено свойство `onClear`
|
|
91
|
+
- в документацию добавлен пример с использованием компонента внутри формы
|
|
92
|
+
|
|
93
|
+
|
|
94
|
+
`plasma-new-hope`: fix Attach (https://github.com/salute-developers/plasma/pull/1481)
|
|
95
|
+
|
|
96
|
+
### Combobox
|
|
97
|
+
|
|
98
|
+
- добавлен дженерик для св-ва `items` в компоненте Combobox
|
|
99
|
+
|
|
100
|
+
|
|
101
|
+
feat(plasma-b2c, web, sdds): Added generic for items in Combobox (https://github.com/salute-developers/plasma/pull/1470)
|
|
102
|
+
|
|
103
|
+
### TextArea
|
|
104
|
+
|
|
105
|
+
- добавлена фокусировка по клику на дочерние элементы
|
|
106
|
+
|
|
107
|
+
|
|
108
|
+
plasma-*: Focus TextArea by click inside (https://github.com/salute-developers/plasma/pull/1444)
|
|
109
|
+
|
|
110
|
+
### SDDS CS Pack 4 ( overlay and navigation )
|
|
111
|
+
|
|
112
|
+
- изменены токены для компонентов: `Autocomplie`, `Avatar`, `Breadcrumbs`, `Cell`, `Drawer`, `Dropdown`, `Modal`, `Notification`, `Pagination`, `Popover`, `Price`, `Progress`, `Segment`, `Slider`, `Tabs`, `Toast`, `Toolbar`, `Tooltip`
|
|
113
|
+
- добавлена и обновлена актуальная документация
|
|
114
|
+
|
|
115
|
+
|
|
116
|
+
fix(sdds-cs): set overlay and navigation tokens (https://github.com/salute-developers/plasma/pull/1458)
|
|
117
|
+
|
|
118
|
+
### DatePicker
|
|
119
|
+
|
|
120
|
+
- добавлен вызов change callback при выборе даты из календаря
|
|
121
|
+
- добавлена возможность указать frame, в котором будет происходить рендер календаря
|
|
122
|
+
- добавлена сортировка дат для Range DatePicker
|
|
123
|
+
- исправлено поведение фокуса при закрытии календаря
|
|
124
|
+
|
|
125
|
+
|
|
126
|
+
feat(plasma-new-hope): Datepicker improvements (https://github.com/salute-developers/plasma/pull/1475)
|
|
127
|
+
|
|
128
|
+
### Segment
|
|
129
|
+
|
|
130
|
+
* добавлен вертикальный режим
|
|
131
|
+
* обновлен дизайн горизонтального отображения
|
|
132
|
+
* обновлен CS дизайн
|
|
133
|
+
|
|
134
|
+
|
|
135
|
+
feat: Segment redesign (https://github.com/salute-developers/plasma/pull/1392)
|
|
136
|
+
|
|
137
|
+
|
|
138
|
+
## Docs
|
|
139
|
+
|
|
140
|
+
### Документация `SDDS-CS`
|
|
141
|
+
|
|
142
|
+
- исправлены некорректные `imports` для примеров в документации к `Dropdown`
|
|
143
|
+
- добавлена страница для компонента `Tooltip`
|
|
144
|
+
|
|
145
|
+
|
|
146
|
+
[PLASMA-3536]: Fix incorrect imports by doc (https://github.com/salute-developers/plasma/pull/1469)
|
|
147
|
+
|
|
148
|
+
|
|
149
|
+
## Misc
|
|
150
|
+
|
|
151
|
+
### Attach
|
|
152
|
+
|
|
153
|
+
- исправлен `truncate` имени файла
|
|
154
|
+
- исправлены тесты
|
|
155
|
+
|
|
156
|
+
|
|
157
|
+
`plasma-new-hope`: fix attach truncate (https://github.com/salute-developers/plasma/pull/1454)
|
|
158
|
+
|
|
159
|
+
|
|
160
|
+
feat(plasma-tokens): auto generate stylesSalute theme (https://github.com/salute-developers/plasma/pull/1472)
|
|
161
|
+
|
|
162
|
+
### ThemeBuilder
|
|
163
|
+
|
|
164
|
+
* изменены методы генерации базовой темы в старом формате
|
|
165
|
+
* изменены методы генерации базовой темы для новой архитектуры
|
|
166
|
+
|
|
167
|
+
|
|
168
|
+
feat(plasma-theme-builder): Update generating default theme (https://github.com/salute-developers/plasma/pull/1477)
|
|
169
|
+
|
|
170
|
+
### Toast
|
|
171
|
+
|
|
172
|
+
- исправлен токен background для view="dark"
|
|
173
|
+
|
|
174
|
+
**Before**
|
|
175
|
+
<img width="319" alt="image" src="https://github.com/user-attachments/assets/fea32b30-270b-48c1-87f0-d6169e2d3bd7">
|
|
176
|
+
|
|
177
|
+
**After**
|
|
178
|
+
<img width="128" alt="image" src="https://github.com/user-attachments/assets/f52f5174-2a52-4dd0-a964-7fbcd52fdad6">
|
|
179
|
+
|
|
180
|
+
|
|
181
|
+
|
|
182
|
+
fix(plasma-*,sdds-*): Fix Toast background token (https://github.com/salute-developers/plasma/pull/1478)
|
|
183
|
+
|
|
184
|
+
---
|
|
185
|
+
|
|
186
|
+
#### 🚀 Enhancement
|
|
187
|
+
|
|
188
|
+
- Release by 16.10.2024 [#1487](https://github.com/salute-developers/plasma/pull/1487) ([@shuga2704](https://github.com/shuga2704) [@Salute-Eva](https://github.com/Salute-Eva) [@Yakutoc](https://github.com/Yakutoc) [@denivladislav](https://github.com/denivladislav) [@luizasok](https://github.com/luizasok) [@neretin-trike](https://github.com/neretin-trike) [@vadim-kudr](https://github.com/vadim-kudr) [@TitanKuzmich](https://github.com/TitanKuzmich) [@iljs](https://github.com/iljs) [@Yeti-or](https://github.com/Yeti-or))
|
|
189
|
+
- feat: SegmentGroup redesign & vertical mode [#1392](https://github.com/salute-developers/plasma/pull/1392) ([@vadim-kudr](https://github.com/vadim-kudr))
|
|
190
|
+
- feat(*): add breadrumbs new tokens [#1458](https://github.com/salute-developers/plasma/pull/1458) ([@iljs](https://github.com/iljs))
|
|
191
|
+
- feat(plasma-web, plasma-b2c, sdds): Interlayer in Combobox according to the new generic [#1470](https://github.com/salute-developers/plasma/pull/1470) ([@shuga2704](https://github.com/shuga2704))
|
|
192
|
+
- feat(plasma-new-hope): Add generic of ItemOption in ComboboxProps ([@shuga2704](https://github.com/shuga2704))
|
|
193
|
+
- feat: api report update by prop `size:xs` [#1466](https://github.com/salute-developers/plasma/pull/1466) ([@Yakutoc](https://github.com/Yakutoc))
|
|
194
|
+
- feat(plasma-*): add `size:xs` [badge] ([@Yakutoc](https://github.com/Yakutoc))
|
|
195
|
+
|
|
196
|
+
#### 🐛 Bug Fix
|
|
197
|
+
|
|
198
|
+
- Update package-lock.json files ([@Salute-Eva](https://github.com/Salute-Eva))
|
|
199
|
+
- Update versions ([@Salute-Eva](https://github.com/Salute-Eva))
|
|
200
|
+
- docs: generate new api reports ([@TitanKuzmich](https://github.com/TitanKuzmich))
|
|
201
|
+
- docs: regenerate api reports [#1478](https://github.com/salute-developers/plasma/pull/1478) ([@TitanKuzmich](https://github.com/TitanKuzmich))
|
|
202
|
+
- test(plasma-*): update Toast tests ([@TitanKuzmich](https://github.com/TitanKuzmich))
|
|
203
|
+
- fix(plasma-*,sdds-*): fix Toast background token ([@TitanKuzmich](https://github.com/TitanKuzmich))
|
|
204
|
+
- chore(): added width and height to Tabs storybooks [#1476](https://github.com/salute-developers/plasma/pull/1476) ([@denivladislav](https://github.com/denivladislav))
|
|
205
|
+
- docs(): api reports regenerated [#1374](https://github.com/salute-developers/plasma/pull/1374) ([@denivladislav](https://github.com/denivladislav))
|
|
206
|
+
- fix(plasma-new-hope): fix tokens, styles and typos ([@denivladislav](https://github.com/denivladislav))
|
|
207
|
+
- chore(plasma-b2c, plasma-web): vertical Tabs tests added ([@denivladislav](https://github.com/denivladislav))
|
|
208
|
+
- chore(plasma-*, sdds-*): Tabs ported ([@denivladislav](https://github.com/denivladislav))
|
|
209
|
+
- feat(plasma-*, sdds-*): Tabs split into Horizontal and Vertical ([@denivladislav](https://github.com/denivladislav))
|
|
210
|
+
- test(plasma-*): fix Popover flucky test [#1412](https://github.com/salute-developers/plasma/pull/1412) ([@TitanKuzmich](https://github.com/TitanKuzmich))
|
|
211
|
+
- test(plasma-*): fix Popup depending tests ([@TitanKuzmich](https://github.com/TitanKuzmich))
|
|
212
|
+
- fix(plasma-*,sdds-*): fix Modal & Popup stories docs ([@TitanKuzmich](https://github.com/TitanKuzmich))
|
|
213
|
+
- fix: fix storybook popover container ([@vadim-kudr](https://github.com/vadim-kudr))
|
|
214
|
+
- feat(plasma-*, sdds-*): add scrollbar to TextArea ([@denivladislav](https://github.com/denivladislav))
|
|
215
|
+
- fix(plasma-b2c, plasma-web): fix Attach tests ([@denivladislav](https://github.com/denivladislav))
|
|
216
|
+
- fix: api report update [#1467](https://github.com/salute-developers/plasma/pull/1467) ([@Yakutoc](https://github.com/Yakutoc))
|
|
217
|
+
- chore: Update package-lock.json files \[skip ci\] ([@Salute-Eva](https://github.com/Salute-Eva))
|
|
218
|
+
|
|
219
|
+
#### Authors: 10
|
|
220
|
+
|
|
221
|
+
- [@iljs](https://github.com/iljs)
|
|
222
|
+
- [@Salute-Eva](https://github.com/Salute-Eva)
|
|
223
|
+
- Alexander Lobyntsev ([@Yakutoc](https://github.com/Yakutoc))
|
|
224
|
+
- Dima Shugaev ([@shuga2704](https://github.com/shuga2704))
|
|
225
|
+
- Krivonos Aleksandr ([@TitanKuzmich](https://github.com/TitanKuzmich))
|
|
226
|
+
- Luiza_Sok ([@luizasok](https://github.com/luizasok))
|
|
227
|
+
- neretinaa ([@neretin-trike](https://github.com/neretin-trike))
|
|
228
|
+
- Vadim ([@vadim-kudr](https://github.com/vadim-kudr))
|
|
229
|
+
- Vasiliy ([@Yeti-or](https://github.com/Yeti-or))
|
|
230
|
+
- Vladislav Denisov ([@denivladislav](https://github.com/denivladislav))
|
|
231
|
+
|
|
232
|
+
---
|
|
233
|
+
|
|
1
234
|
# v1.413.0 (Thu Oct 03 2024)
|
|
2
235
|
|
|
3
236
|
### Release Notes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salutejs/plasma-web",
|
|
3
|
-
"version": "1.422.0
|
|
3
|
+
"version": "1.422.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",
|
|
@@ -19,13 +19,13 @@
|
|
|
19
19
|
"directory": "packages/plasma-web"
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@salutejs/plasma-core": "1.182.0
|
|
23
|
-
"@salutejs/plasma-hope": "1.315.0
|
|
24
|
-
"@salutejs/plasma-new-hope": "0.169.0
|
|
25
|
-
"@salutejs/plasma-themes": "0.20.0
|
|
26
|
-
"@salutejs/plasma-tokens-b2b": "1.43.0
|
|
27
|
-
"@salutejs/plasma-tokens-b2c": "0.53.0
|
|
28
|
-
"@salutejs/plasma-tokens-web": "1.58.0
|
|
22
|
+
"@salutejs/plasma-core": "1.182.0",
|
|
23
|
+
"@salutejs/plasma-hope": "1.315.0",
|
|
24
|
+
"@salutejs/plasma-new-hope": "0.169.0",
|
|
25
|
+
"@salutejs/plasma-themes": "0.20.0",
|
|
26
|
+
"@salutejs/plasma-tokens-b2b": "1.43.0",
|
|
27
|
+
"@salutejs/plasma-tokens-b2c": "0.53.0",
|
|
28
|
+
"@salutejs/plasma-tokens-web": "1.58.0",
|
|
29
29
|
"@salutejs/plasma-typo": "0.40.0"
|
|
30
30
|
},
|
|
31
31
|
"peerDependencies": {
|
|
@@ -49,9 +49,9 @@
|
|
|
49
49
|
"@rollup/plugin-commonjs": "25.0.7",
|
|
50
50
|
"@rollup/plugin-node-resolve": "15.2.3",
|
|
51
51
|
"@salutejs/plasma-colors": "0.13.0",
|
|
52
|
-
"@salutejs/plasma-cy-utils": "0.113.0
|
|
52
|
+
"@salutejs/plasma-cy-utils": "0.113.0",
|
|
53
53
|
"@salutejs/plasma-icons": "1.206.0",
|
|
54
|
-
"@salutejs/plasma-sb-utils": "0.180.0
|
|
54
|
+
"@salutejs/plasma-sb-utils": "0.180.0",
|
|
55
55
|
"@storybook/addon-docs": "7.6.17",
|
|
56
56
|
"@storybook/addon-essentials": "7.6.17",
|
|
57
57
|
"@storybook/addons": "7.6.17",
|
|
@@ -112,5 +112,5 @@
|
|
|
112
112
|
"Fanil Zubairov"
|
|
113
113
|
],
|
|
114
114
|
"sideEffects": false,
|
|
115
|
-
"gitHead": "
|
|
115
|
+
"gitHead": "a49135136f45a86b0b856ca4164b763bd6d17de5"
|
|
116
116
|
}
|