@salutejs/plasma-core 1.149.0-dev.0 → 1.149.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,3 +1,204 @@
1
+ # v1.149.0 (Thu Feb 15 2024)
2
+
3
+ ### Release Notes
4
+
5
+ #### Release by 14.02.2024 ([#1047](https://github.com/salute-developers/plasma/pull/1047))
6
+
7
+ ## Components
8
+
9
+ ### SSRProvider
10
+
11
+ - SSRProvider перенесен в библиотеку plasma-new-hope
12
+ - добавлен в поставку b2c/web/asdk
13
+ - из `plasma-asdk` удалена plasma-core зависимость
14
+
15
+
16
+ feat(plasma-new-hope): add ssr provider component (https://github.com/salute-developers/plasma/pull/1021)
17
+
18
+ ### Calendar
19
+
20
+ - добавлено новое свойство `onChangeStartOfRange` в библиотеки `plasma-{web,b2c}`
21
+
22
+ ### After
23
+
24
+ <img width="600" alt="prop onChangeStartOfRange" src="https://github.com/salute-developers/plasma/assets/2895992/a2e01d6e-01f1-4041-b57f-57bb7d3de54e" />
25
+
26
+
27
+ plasma-web: Add `onChangeStartOfRange` prop into Calendar (https://github.com/salute-developers/plasma/pull/1014)
28
+
29
+ ### Overlay
30
+
31
+ - добавлен в новой архитектуре
32
+ - добавлен в поставку для `plasma-{b2c/web}`
33
+ - написаны тесты и документация
34
+ - интегрирован в компоненты `Toast`, `Modal`
35
+
36
+
37
+ feat(plasma-new-hope/web/b2c): overlay component (https://github.com/salute-developers/plasma/pull/1033)
38
+
39
+ ### Select
40
+
41
+ - Обновлены зависимости у callback onChangeValue, который вызывался при выборе элемента в `multiselect` режиме для библиотеки `@salutejs/plasma-hope`
42
+
43
+
44
+ fix(plasma-hope): Add value deps for `Select` component with multiselect mode (https://github.com/salute-developers/plasma/pull/1040)
45
+
46
+ ### Tabs
47
+
48
+ - выполнен редизайн компонента `Tabs`
49
+ - компонент добавлен в `plasma-web/b2c` в новой архитектуре
50
+ - добавлены новые свойства для `TabItem`
51
+ - `TabsController` теперь deprecated. Для подключения клавиатурной навигации необходимо дополнительно прокинуть свойства `index, itemIndex, onIndexChange`.
52
+
53
+
54
+ feat(plasma-web, plasma-b2c): Tabs refactor and redesign (https://github.com/salute-developers/plasma/pull/983)
55
+
56
+ ### Avatar & AvatarGroup
57
+
58
+ - Упрощен функционал аватара
59
+ - Avatar и AvatarGroup были добавлены в web, b2c
60
+
61
+
62
+ feat(plasma-new-hope, plasma-web, plasma-b2c): Avatar & AvatarGroup (https://github.com/salute-developers/plasma/pull/1036)
63
+
64
+ ### Combobox
65
+
66
+ - добавлен компонент `Combobox` c новым дизайном в библиотеку `@salutejs/plasma-new-hope` для тем plasma-b2c и plasma-web, а также в `@salutejs/plasma-b2c` и `@salutejs/plasma-web`
67
+
68
+ single
69
+
70
+ ![image](https://github.com/salute-developers/plasma/assets/26903236/9178c72d-15ca-4dc4-b722-cc32956a6820)
71
+
72
+ multiple
73
+
74
+ ![image](https://github.com/salute-developers/plasma/assets/26903236/972c419a-25f2-4ddc-9afe-9e59785e19d8)
75
+
76
+
77
+ feat(plasma-new-hope): Add `Combobox` component (https://github.com/salute-developers/plasma/pull/1032)
78
+
79
+
80
+ ## Icons
81
+
82
+ - поправлен `tree-shaking` пакета иконок
83
+ - компонент `Icon` теперь **deprecated**
84
+
85
+
86
+ plasma-icons: fix tree-shaking (https://github.com/salute-developers/plasma/pull/1031)
87
+
88
+ ## Fonts
89
+
90
+ - обновлены шрифты SBSans Display для CDN
91
+
92
+
93
+ ## Infra
94
+
95
+ ### Plasma-web-docs
96
+
97
+ - обновлен пакет `docusaurus` и все что с ним связано до `@latest` версии
98
+ - исправлены **все** уязвимости в пакете `plasma-web-docs`
99
+
100
+
101
+ plasma-infra: Bump `Docusaurus` to latest [plasma-web-docs] (https://github.com/salute-developers/plasma/pull/1025)
102
+
103
+ ### Plasma-ui-docs
104
+
105
+ - обновлен пакет `docusaurus` и все что с ним связано до `@latest` версии
106
+ - исправлены **все** уязвимости в пакете `plasma-ui-docs`
107
+
108
+
109
+ plasma-infra: Bump `Docusaurus` to latest [plasma-ui-docs] (https://github.com/salute-developers/plasma/pull/1026)
110
+
111
+ ### DEV Stage
112
+
113
+ - добавлен dev stage для возможности сделать deploy dev branch. Нужен для QA
114
+
115
+
116
+ plasma-infra: Setup s3 DEV stage – manual run (https://github.com/salute-developers/plasma/pull/1029)
117
+
118
+ ### Fonts
119
+
120
+ - обновлены шрифты для документации, storybook , тестов
121
+
122
+
123
+ chore: update sb fonts (https://github.com/salute-developers/plasma/pull/1041)
124
+
125
+
126
+ ## Misc
127
+
128
+ ### Сборка без `styled-components`
129
+
130
+ - добавили возможность использовать `plasma-{web,b2c}` без `styled-components`
131
+
132
+ Пример использования:
133
+
134
+ ```js
135
+ import { TextArea } from @salutejs/plasma-web/css;
136
+ ```
137
+
138
+
139
+ plasma-web/plasma-b2c: Добавлена сборка без styled-components (https://github.com/salute-developers/plasma/pull/942)
140
+
141
+ ### SDDS SRVC
142
+
143
+ - добавлена библиотека sdds-srvc
144
+ - поднят storybook в рамках pull request
145
+ - опубликован npm пакет
146
+ - добавлена Typography (в виде компонентов как старого, так и нового формата)
147
+ - добавлены компоненты: Button, Checkbox, Dropdown, Link, Modal, Popup, Radiobox, Segment, Spinner, Switch
148
+
149
+
150
+ feat(sdds-srvc): add sdds srvc package (https://github.com/salute-developers/plasma/pull/1023)
151
+
152
+ ### Caldera
153
+
154
+ - добавлена библиотека Caldera
155
+ - поднят storybook в рамках pull request
156
+ - опубликован npm пакет
157
+ - добавлена Typography (в виде компонентов как старого, так и нового формата)
158
+ - добавлены компоненты: Button, Checkbox, Dropdown, Link, ModalBase, PopupBase, Radiobox, Segment, Spinner, Switch
159
+
160
+
161
+ feat(caldera): add Caldera package (https://github.com/salute-developers/plasma/pull/990)
162
+
163
+ ### Caldera-online
164
+
165
+ - добавлена библиотека Caldera-online
166
+ - поднят storybook в рамках pull request
167
+ - опубликован npm пакет
168
+ - добавлена Typography (в виде компонентов как старого, так и нового формата)
169
+ - добавлены компоненты: Button, Checkbox, Dropdown, Link, ModalBase, PopupBase, Radiobox, Segment, Spinner, Switch
170
+
171
+
172
+ feat(caldera): add caldera online package (https://github.com/salute-developers/plasma/pull/1012)
173
+
174
+ ---
175
+
176
+ #### 🚀 Enhancement
177
+
178
+ - Release by 14.02.2024 [#1047](https://github.com/salute-developers/plasma/pull/1047) ([@TitanKuzmich](https://github.com/TitanKuzmich) [@Salute-Eva](https://github.com/Salute-Eva) [@Yeti-or](https://github.com/Yeti-or) [@luizasok](https://github.com/luizasok) [@kayman233](https://github.com/kayman233) [@Yakutoc](https://github.com/Yakutoc) [@shuga2704](https://github.com/shuga2704) [@neretin-trike](https://github.com/neretin-trike))
179
+
180
+ #### 🐛 Bug Fix
181
+
182
+ - Update package-lock.json files ([@Salute-Eva](https://github.com/Salute-Eva))
183
+ - Update versions ([@Salute-Eva](https://github.com/Salute-Eva))
184
+ - fix(plasma-web, plasma-b2c): fix default Tabs sizes ([@kayman233](https://github.com/kayman233))
185
+ - fix(plasma-web, plasma-b2c): height, arrows design fixes ([@kayman233](https://github.com/kayman233))
186
+ - feat(plasma-web, plasma-b2c): Tabs refactor and redesign ([@kayman233](https://github.com/kayman233))
187
+ - chore: Update package-lock.json files \[skip ci\] ([@Salute-Eva](https://github.com/Salute-Eva))
188
+
189
+ #### Authors: 8
190
+
191
+ - [@kayman233](https://github.com/kayman233)
192
+ - [@Salute-Eva](https://github.com/Salute-Eva)
193
+ - Alex Czech ([@Yakutoc](https://github.com/Yakutoc))
194
+ - Dima Shugaev ([@shuga2704](https://github.com/shuga2704))
195
+ - Krivonos Aleksandr ([@TitanKuzmich](https://github.com/TitanKuzmich))
196
+ - Luiza_Sok ([@luizasok](https://github.com/luizasok))
197
+ - neretinaa ([@neretin-trike](https://github.com/neretin-trike))
198
+ - Vasiliy ([@Yeti-or](https://github.com/Yeti-or))
199
+
200
+ ---
201
+
1
202
  # v1.146.0 (Thu Feb 01 2024)
2
203
 
3
204
  ### Release Notes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salutejs/plasma-core",
3
- "version": "1.149.0-dev.0",
3
+ "version": "1.149.0",
4
4
  "description": "Core library for Plasma: Salute Design System.",
5
5
  "author": "Salute Frontend Team <salute.developers@gmail.com>",
6
6
  "license": "MIT",
@@ -23,7 +23,7 @@
23
23
  "@babel/preset-react": "7.14.5",
24
24
  "@babel/preset-typescript": "7.15.0",
25
25
  "@microsoft/api-extractor": "7.38.3",
26
- "@salutejs/plasma-cy-utils": "0.81.0-dev.0",
26
+ "@salutejs/plasma-cy-utils": "0.81.0",
27
27
  "@types/jest": "27.0.1",
28
28
  "@types/lodash.throttle": "4.1.6",
29
29
  "@types/node": "15.14.9",
@@ -81,5 +81,5 @@
81
81
  "Зубаиров Фаниль Асхатович"
82
82
  ],
83
83
  "sideEffects": false,
84
- "gitHead": "90000593b8493f495062a68b142923542462c1b1"
84
+ "gitHead": "9e808761c72d061ea3c59df01151f55ed487859f"
85
85
  }