@salutejs/sdds-finportal 0.154.0-canary.1522.11600272541.0 → 0.154.1-canary.1522.11616667789.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/CHANGELOG.md +234 -0
  2. package/package.json +8 -8
package/CHANGELOG.md CHANGED
@@ -1,3 +1,237 @@
1
+ # v0.154.0 (Thu Oct 31 2024)
2
+
3
+ ### Release Notes
4
+
5
+ #### Release by 30.10.2024 ([#1521](https://github.com/salute-developers/plasma/pull/1521))
6
+
7
+ ## Components
8
+
9
+ ### Генерация CSS linaria для SDDS SERV
10
+
11
+ - styled components перенесены в папку `styled-components` для пакета `sdds-serv`
12
+ - добавлена генерация CSS Linaria по-умолчанию для пакета `sdds-serv`
13
+
14
+
15
+ feat(sdds-serv): Add linaria (https://github.com/salute-developers/plasma/pull/1419)
16
+
17
+ ### Accordion
18
+
19
+ - исправлен параметр `contentRight`
20
+ - исправлен отступы во всех поставках `sdds` в `AccordionItem`
21
+ - добавлен новый параметр `opened`, для контроля состоянием вне компонента
22
+ - добавлена возможность прокидывать `ref` в `AccordionItem`
23
+
24
+
25
+ feat(*): Fix Accordion Right Content and Paddings (https://github.com/salute-developers/plasma/pull/1484)
26
+
27
+ ### TextArea, TextField
28
+
29
+ - добавлены подсказки сверху справа и в виде Tooltip
30
+ - обновлены тесты и документация
31
+
32
+ **After**:
33
+ <img width="498" alt="image" src="https://github.com/user-attachments/assets/31f03fe2-1325-4412-80b5-b443e19e2a2d">
34
+
35
+
36
+
37
+ feat(plasma-*,sdds-*): add TextArea and TextField hints (https://github.com/salute-developers/plasma/pull/1459)
38
+
39
+
40
+ ### Select
41
+
42
+ - добавлены новые токены в ядро компонента
43
+ - исправлена конфигурация компонента с учетом новых токенов для поставки `sdds-cs`
44
+
45
+
46
+ plasma-*: Update config for `Select` (https://github.com/salute-developers/plasma/pull/1504)
47
+
48
+ ### Dropdown
49
+ - компонент Dropdown переведен на новую архитекутуру. API сохранен;
50
+ - исправлен баг, связанный с невозможностью раскрытия выпадающего списка в старом(legacy) Dropdown;
51
+ - исправлены недочеты по UI;
52
+ - расширены возможности использования через портал;
53
+
54
+
55
+ feat(plasma-*, sdds-*): Dropdown architecture improvement (https://github.com/salute-developers/plasma/pull/1497)
56
+
57
+ ### Combobox
58
+ - несуществующие value (которых нет в массиве items) теперь отбрасываются и не принимают участие в работе компонента;
59
+ - изменение массива items теперь приводит к обновлению выбранных элементов (для гибкой асинхронной работы);
60
+ - исправлен баг, связанный с мутацией исходного массива items;
61
+ - добавлено новое св-во renderValue;
62
+
63
+ ### Select
64
+ - несуществующие value (которых нет в массиве items) теперь отбрасываются и не принимают участие в работе компонента;
65
+ - изменение массива items теперь приводит к обновлению выбранных элементов (для гибкой асинхронной работы);
66
+
67
+
68
+ feat(plasma-*, sdds-*): Combobox & Select improvements (https://github.com/salute-developers/plasma/pull/1505)
69
+
70
+ ### Slider
71
+
72
+ * добавлено вертикальное отображение
73
+ * обновлен дизайн горизонтального отображения
74
+
75
+
76
+ feat: vertical single Slider (https://github.com/salute-developers/plasma/pull/1452)
77
+
78
+ ### Notification
79
+
80
+ - изменен `type` для `title` на `ReactNode`
81
+ - добавлено расположение `bottom-left`
82
+
83
+
84
+ feat: Notification placement prop (https://github.com/salute-developers/plasma/pull/1503)
85
+
86
+ ### Tabs
87
+ - добавлены `Header Tabs`
88
+ - добавлены `hover` и `active` состояния для стрелок
89
+ - обновлены тесты и `storybooks`
90
+
91
+
92
+ plasma-*, sdds-*: Header Tabs added (https://github.com/salute-developers/plasma/pull/1502)
93
+
94
+ ### SDDS-CS
95
+
96
+ - добавлена `view negative` для компонента `Select`
97
+ - исправлен цветовой токен для `contentLeftColor` в компоненте `Select`
98
+ - убраны лишние опции и примеры из storybook для компонента `Select`
99
+
100
+
101
+ [PLASMA-3718]: Fix config for `Select` (https://github.com/salute-developers/plasma/pull/1519)
102
+
103
+ ### Combobox
104
+
105
+ - добавлены тесты;
106
+
107
+
108
+ feat(plasma-b2c, plasma-web): Combobox component tests (https://github.com/salute-developers/plasma/pull/1518)
109
+
110
+ ### Counter
111
+ - видимое значение не может быть меньше 1
112
+ - для значений от 1 до 9 `Counter` становится круглым
113
+ - добавлены размеры `l`, `m`, `s` во все пакеты (в `sdds-cs` только размер `s`)
114
+ - исправлены токены отступов для размера `xxs`
115
+ - обновлены `storybooks` и документация
116
+
117
+ **Before**:
118
+
119
+ <img width="292" alt="berfore" src="https://github.com/user-attachments/assets/7762823b-2ae4-4474-abb6-d638fd98b805">
120
+
121
+ **After**:
122
+
123
+ <img width="827" alt="after" src="https://github.com/user-attachments/assets/27ec7202-6243-43a7-91a6-b94131f3b84f">
124
+
125
+
126
+ `plasma-*, sdds-*`: `Counter` impovements added (https://github.com/salute-developers/plasma/pull/1514)
127
+
128
+
129
+ ## Tokens
130
+
131
+ ### Tokens
132
+
133
+ - собраны изменение всех тем в один PR:
134
+ * https://github.com/salute-developers/plasma/pull/1491
135
+ * https://github.com/salute-developers/plasma/pull/1489
136
+ * https://github.com/salute-developers/plasma/pull/1486
137
+ * https://github.com/salute-developers/plasma/pull/1485
138
+ - добавлена новая тема `sdds_os` на основе `sdds_serv`
139
+ - обновлена `default` тема для пакета plasma-tokens
140
+
141
+
142
+ feat(plasma-tokens,sdds-themes,plasma-themes): Add and update themes from other PRs (https://github.com/salute-developers/plasma/pull/1495)
143
+
144
+ ### Tokens
145
+
146
+ * обновлены токены типографики в теме `sdds-cs`. Теперь для всех размеров экранов (L, M и S) значения всех параметров одинаковые
147
+
148
+
149
+ fix(sdds-themes): Update typography tokens for `sdds-cs` theme (https://github.com/salute-developers/plasma/pull/1507)
150
+
151
+ ### Tokens
152
+
153
+ - исправлена генерация токенов для модульного css, а также обновлены все темы
154
+ - добавлены методы генерации наборов токенов (dark и light режимов) для компонента `ViewContainer`
155
+ - добавлено подключение темы через css модули из пакета @salutejs/plasma-themes в plasma-new-hope
156
+
157
+ ### ViewContainer
158
+
159
+ - добавлен компонент `ViewContainer` в plasma-new-hope в качестве примера
160
+ - добавлен декоратор `decoratorViewContainer` в plasma-new-hope с возможностью переключения тем и режимов контейнера (onDark / onLight / default)
161
+ - добавлен компонент `ViewContainer` во все библиотеки вертикали `sdds`, а также примеры и документация
162
+
163
+
164
+ feat(plasma-new-hope, sdds-*): Add `ViewContainer` component (https://github.com/salute-developers/plasma/pull/1488)
165
+
166
+
167
+ ## Misc
168
+
169
+ ### Calendar
170
+
171
+ - поправлено поведение hover для дней на календарной сетке
172
+
173
+ **Before**:
174
+
175
+ https://github.com/user-attachments/assets/992d2566-10a1-40ff-8d76-d3e2d8de4d13
176
+
177
+ **After**:
178
+
179
+ https://github.com/user-attachments/assets/8e0bf060-a103-46ba-aa4a-b5bc6bef632d
180
+
181
+
182
+ fix(plasma-new-hope): Fix Calendar hover behaviour (https://github.com/salute-developers/plasma/pull/1498)
183
+
184
+ ### Sdds-insol
185
+
186
+ - добавлена новая библиотека
187
+
188
+
189
+ sdds-insol: Add library of components `sdds-insol` (https://github.com/salute-developers/plasma/pull/1509)
190
+
191
+ ---
192
+
193
+ #### 🚀 Enhancement
194
+
195
+ - Release by 30.10.2024 [#1521](https://github.com/salute-developers/plasma/pull/1521) ([@iljs](https://github.com/iljs) [@Salute-Eva](https://github.com/Salute-Eva) [@simashova](https://github.com/simashova) [@Irinkv](https://github.com/Irinkv) [@neretin-trike](https://github.com/neretin-trike) [@Yakutoc](https://github.com/Yakutoc) [@TitanKuzmich](https://github.com/TitanKuzmich) [@shuga2704](https://github.com/shuga2704) [@vadim-kudr](https://github.com/vadim-kudr) [@denivladislav](https://github.com/denivladislav))
196
+ - docs(): api reports regenerated [#1514](https://github.com/salute-developers/plasma/pull/1514) ([@denivladislav](https://github.com/denivladislav))
197
+ - feat(plasma-*,sdds-*): add hasHint to TextField/Area stories [#1513](https://github.com/salute-developers/plasma/pull/1513) ([@TitanKuzmich](https://github.com/TitanKuzmich))
198
+ - feat: Notification placement prop [#1503](https://github.com/salute-developers/plasma/pull/1503) ([@vadim-kudr](https://github.com/vadim-kudr))
199
+ - feat: vertical single Slider [#1452](https://github.com/salute-developers/plasma/pull/1452) ([@vadim-kudr](https://github.com/vadim-kudr))
200
+ - feat(*): add new tokens to select in all libs [#1504](https://github.com/salute-developers/plasma/pull/1504) ([@iljs](https://github.com/iljs))
201
+ - feat(sdds-*): Add `ViewContainer` component [#1488](https://github.com/salute-developers/plasma/pull/1488) ([@neretin-trike](https://github.com/neretin-trike))
202
+ - feat(sdds-*): add hint to TextArea & TextField [#1459](https://github.com/salute-developers/plasma/pull/1459) ([@TitanKuzmich](https://github.com/TitanKuzmich))
203
+ - feat(*): add new props, edit contentRight, add ref to item and fix margin in sdds [#1484](https://github.com/salute-developers/plasma/pull/1484) ([@iljs](https://github.com/iljs))
204
+
205
+ #### 🐛 Bug Fix
206
+
207
+ - Update package-lock.json files ([@Salute-Eva](https://github.com/Salute-Eva))
208
+ - Update versions ([@Salute-Eva](https://github.com/Salute-Eva))
209
+ - chore(plasma-*, sdds-*): Counter configs and storybooks updated ([@denivladislav](https://github.com/denivladislav))
210
+ - docs(): api reports regenerated [#1502](https://github.com/salute-developers/plasma/pull/1502) ([@denivladislav](https://github.com/denivladislav))
211
+ - fix(): add arrow hover & active state; fix tokens ([@denivladislav](https://github.com/denivladislav))
212
+ - feat(plasma-*, sdds-*): Header tabs added ([@denivladislav](https://github.com/denivladislav))
213
+ - feat(plasma-*, sdds-*): Combobox & Select improvements [#1505](https://github.com/salute-developers/plasma/pull/1505) ([@shuga2704](https://github.com/shuga2704))
214
+ - feat(plasma-*, sdds-*): Dropdown architecture improvement [#1497](https://github.com/salute-developers/plasma/pull/1497) ([@shuga2704](https://github.com/shuga2704))
215
+ - docs(sdds-*): Regenerate API report ([@neretin-trike](https://github.com/neretin-trike))
216
+ - docs: regenerate api reports ([@TitanKuzmich](https://github.com/TitanKuzmich))
217
+ - docs: generate new api reports ([@TitanKuzmich](https://github.com/TitanKuzmich))
218
+ - chore: Update package-lock.json files \[skip ci\] ([@Salute-Eva](https://github.com/Salute-Eva))
219
+
220
+ #### Authors: 10
221
+
222
+ - [@iljs](https://github.com/iljs)
223
+ - [@Irinkv](https://github.com/Irinkv)
224
+ - [@Salute-Eva](https://github.com/Salute-Eva)
225
+ - Alexander Lobyntsev ([@Yakutoc](https://github.com/Yakutoc))
226
+ - Anastasia Simashova ([@simashova](https://github.com/simashova))
227
+ - Dima Shugaev ([@shuga2704](https://github.com/shuga2704))
228
+ - Krivonos Aleksandr ([@TitanKuzmich](https://github.com/TitanKuzmich))
229
+ - neretinaa ([@neretin-trike](https://github.com/neretin-trike))
230
+ - Vadim ([@vadim-kudr](https://github.com/vadim-kudr))
231
+ - Vladislav Denisov ([@denivladislav](https://github.com/denivladislav))
232
+
233
+ ---
234
+
1
235
  # v0.142.0 (Thu Oct 17 2024)
2
236
 
3
237
  ### Release Notes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salutejs/sdds-finportal",
3
- "version": "0.154.0-canary.1522.11600272541.0",
3
+ "version": "0.154.1-canary.1522.11616667789.0",
4
4
  "description": "Salute Design System / React UI kit for SDDS FinPortal web applications",
5
5
  "author": "Salute Frontend Team <salute.developers@gmail.com>",
6
6
  "license": "MIT",
@@ -19,8 +19,8 @@
19
19
  "directory": "packages/sdds-finportal"
20
20
  },
21
21
  "dependencies": {
22
- "@salutejs/plasma-new-hope": "0.181.0-canary.1522.11600272541.0",
23
- "@salutejs/sdds-themes": "0.25.1-dev.0"
22
+ "@salutejs/plasma-new-hope": "0.181.1-canary.1522.11616667789.0",
23
+ "@salutejs/sdds-themes": "0.26.0"
24
24
  },
25
25
  "peerDependencies": {
26
26
  "react": ">=16.13.1",
@@ -37,10 +37,10 @@
37
37
  "@babel/preset-typescript": "7.24.1",
38
38
  "@microsoft/api-extractor": "7.38.3",
39
39
  "@salutejs/plasma-colors": "0.13.0",
40
- "@salutejs/plasma-core": "1.183.1-dev.0",
41
- "@salutejs/plasma-cy-utils": "0.114.1-dev.0",
42
- "@salutejs/plasma-icons": "1.207.0-dev.0",
43
- "@salutejs/plasma-sb-utils": "0.181.1-dev.0",
40
+ "@salutejs/plasma-core": "1.184.0",
41
+ "@salutejs/plasma-cy-utils": "0.115.0",
42
+ "@salutejs/plasma-icons": "1.207.0",
43
+ "@salutejs/plasma-sb-utils": "0.182.0",
44
44
  "@storybook/addon-docs": "7.6.17",
45
45
  "@storybook/addon-essentials": "7.6.17",
46
46
  "@storybook/addons": "7.6.17",
@@ -94,5 +94,5 @@
94
94
  "Vasiliy Loginevskiy"
95
95
  ],
96
96
  "sideEffects": false,
97
- "gitHead": "10edc8717c3d219cf0e6d532981580c119961edb"
97
+ "gitHead": "0322135236cd2b665c64b959368d401563a6c30e"
98
98
  }