@cloud-ru/uikit-product-mobile-toolbar 0.4.3

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.
Files changed (33) hide show
  1. package/CHANGELOG.md +779 -0
  2. package/LICENSE +201 -0
  3. package/README.md +8 -0
  4. package/package.json +58 -0
  5. package/src/components/AdaptiveToolbar/AdaptiveToolbar.tsx +19 -0
  6. package/src/components/AdaptiveToolbar/index.ts +1 -0
  7. package/src/components/MobileToolbar/MobileToolbar.tsx +135 -0
  8. package/src/components/MobileToolbar/helpers.ts +10 -0
  9. package/src/components/MobileToolbar/hooks.ts +68 -0
  10. package/src/components/MobileToolbar/index.ts +1 -0
  11. package/src/components/MobileToolbar/styles.module.scss +104 -0
  12. package/src/components/MobileToolbar/types.ts +53 -0
  13. package/src/components/MobileToolbar/typesUtils.ts +17 -0
  14. package/src/components/index.ts +2 -0
  15. package/src/constants.ts +19 -0
  16. package/src/helperComponents/BulkActions/BulkActions.tsx +95 -0
  17. package/src/helperComponents/BulkActions/constants.ts +4 -0
  18. package/src/helperComponents/BulkActions/index.ts +3 -0
  19. package/src/helperComponents/BulkActions/styles.module.scss +72 -0
  20. package/src/helperComponents/BulkActions/types.ts +31 -0
  21. package/src/helperComponents/BulkActionsCheckbox/BulkActionsCheckbox.tsx +37 -0
  22. package/src/helperComponents/BulkActionsCheckbox/index.ts +1 -0
  23. package/src/helperComponents/BulkActionsCheckbox/styles.module.scss +23 -0
  24. package/src/helperComponents/FilterButton/FilterButton.tsx +28 -0
  25. package/src/helperComponents/FilterButton/index.ts +1 -0
  26. package/src/helperComponents/MoreActions/MoreActions.tsx +57 -0
  27. package/src/helperComponents/MoreActions/constants.ts +6 -0
  28. package/src/helperComponents/MoreActions/index.ts +1 -0
  29. package/src/helperComponents/Separator/Separator.tsx +9 -0
  30. package/src/helperComponents/Separator/index.ts +1 -0
  31. package/src/helperComponents/Separator/styles.module.scss +15 -0
  32. package/src/helperComponents/index.ts +5 -0
  33. package/src/index.ts +1 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,779 @@
1
+ # Change Log
2
+
3
+ All notable changes to this project will be documented in this file.
4
+ See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
+
6
+ ## 0.4.3 (2025-11-12)
7
+
8
+ ### Only dependencies have been changed
9
+ * [@cloud-ru/uikit-product-icons@15.1.1](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/icons/CHANGELOG.md)
10
+ * [@cloud-ru/uikit-product-mobile-chips@0.8.36](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-chips/CHANGELOG.md)
11
+ * [@cloud-ru/uikit-product-mobile-dropdown@0.9.21](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
12
+ * [@cloud-ru/uikit-product-mobile-tooltip@0.4.65](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-tooltip/CHANGELOG.md)
13
+ * [@cloud-ru/uikit-product-utils@7.0.0](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/utils/CHANGELOG.md)
14
+
15
+
16
+
17
+
18
+
19
+ ## 0.4.2 (2025-11-12)
20
+
21
+ ### Only dependencies have been changed
22
+ * [@cloud-ru/uikit-product-icons@15.1.0](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/icons/CHANGELOG.md)
23
+ * [@cloud-ru/uikit-product-mobile-chips@0.8.35](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-chips/CHANGELOG.md)
24
+ * [@cloud-ru/uikit-product-mobile-dropdown@0.9.20](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
25
+ * [@cloud-ru/uikit-product-mobile-tooltip@0.4.64](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-tooltip/CHANGELOG.md)
26
+
27
+
28
+
29
+
30
+
31
+ ## 0.4.1 (2025-11-07)
32
+
33
+ ### Only dependencies have been changed
34
+ * [@cloud-ru/uikit-product-icons@15.0.5](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/icons/CHANGELOG.md)
35
+ * [@cloud-ru/uikit-product-mobile-chips@0.8.34](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-chips/CHANGELOG.md)
36
+ * [@cloud-ru/uikit-product-mobile-dropdown@0.9.19](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
37
+ * [@cloud-ru/uikit-product-mobile-tooltip@0.4.63](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-tooltip/CHANGELOG.md)
38
+ * [@cloud-ru/uikit-product-utils@6.2.2](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/utils/CHANGELOG.md)
39
+
40
+
41
+
42
+
43
+
44
+ # 0.4.0 (2025-10-14)
45
+
46
+
47
+ ### Features
48
+
49
+ * **PDS-2843:** new way of bulk actions display ([347f8c2](https://gitverse.ru/cloud-ru-tech/uikit-product/commits/347f8c24dbed37a63573af0782c5384169c335a8))
50
+
51
+
52
+
53
+
54
+
55
+ ## 0.3.15 (2025-10-06)
56
+
57
+ ### Only dependencies have been changed
58
+ * [@cloud-ru/uikit-product-icons@15.0.4](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/icons/CHANGELOG.md)
59
+ * [@cloud-ru/uikit-product-mobile-chips@0.8.33](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-chips/CHANGELOG.md)
60
+ * [@cloud-ru/uikit-product-mobile-dropdown@0.9.18](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
61
+ * [@cloud-ru/uikit-product-mobile-tooltip@0.4.62](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-tooltip/CHANGELOG.md)
62
+
63
+
64
+
65
+
66
+
67
+ ## 0.3.14 (2025-10-06)
68
+
69
+ ### Only dependencies have been changed
70
+ * [@cloud-ru/uikit-product-icons@15.0.3](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/icons/CHANGELOG.md)
71
+ * [@cloud-ru/uikit-product-mobile-chips@0.8.32](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-chips/CHANGELOG.md)
72
+ * [@cloud-ru/uikit-product-mobile-dropdown@0.9.17](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
73
+ * [@cloud-ru/uikit-product-mobile-tooltip@0.4.61](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-tooltip/CHANGELOG.md)
74
+
75
+
76
+
77
+
78
+
79
+ ## 0.3.13 (2025-10-03)
80
+
81
+ ### Only dependencies have been changed
82
+ * [@cloud-ru/uikit-product-icons@15.0.2](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/icons/CHANGELOG.md)
83
+ * [@cloud-ru/uikit-product-mobile-chips@0.8.31](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-chips/CHANGELOG.md)
84
+ * [@cloud-ru/uikit-product-mobile-dropdown@0.9.16](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
85
+ * [@cloud-ru/uikit-product-mobile-tooltip@0.4.60](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-tooltip/CHANGELOG.md)
86
+
87
+
88
+
89
+
90
+
91
+ ## 0.3.12 (2025-09-30)
92
+
93
+
94
+ ### Bug Fixes
95
+
96
+ * **FF-6758:** typescript issues ([520f8f0](https://gitverse.ru/cloud-ru-tech/uikit-product/commits/520f8f0c18ce3c5e74d6e05e6b7b72afa7a69771))
97
+
98
+
99
+
100
+
101
+
102
+ ## 0.3.11 (2025-09-26)
103
+
104
+ ### Only dependencies have been changed
105
+ * [@cloud-ru/uikit-product-icons@15.0.0](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/icons/CHANGELOG.md)
106
+ * [@cloud-ru/uikit-product-mobile-chips@0.8.29](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-chips/CHANGELOG.md)
107
+ * [@cloud-ru/uikit-product-mobile-dropdown@0.9.14](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
108
+ * [@cloud-ru/uikit-product-mobile-tooltip@0.4.58](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-tooltip/CHANGELOG.md)
109
+
110
+
111
+
112
+
113
+
114
+ ## 0.3.10 (2025-09-25)
115
+
116
+ ### Only dependencies have been changed
117
+ * [@cloud-ru/uikit-product-icons@14.6.0](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/icons/CHANGELOG.md)
118
+ * [@cloud-ru/uikit-product-mobile-chips@0.8.28](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-chips/CHANGELOG.md)
119
+ * [@cloud-ru/uikit-product-mobile-dropdown@0.9.13](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
120
+ * [@cloud-ru/uikit-product-mobile-tooltip@0.4.57](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-tooltip/CHANGELOG.md)
121
+
122
+
123
+
124
+
125
+
126
+ ## 0.3.9 (2025-09-18)
127
+
128
+ ### Only dependencies have been changed
129
+ * [@cloud-ru/uikit-product-icons@14.5.0](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/icons/CHANGELOG.md)
130
+ * [@cloud-ru/uikit-product-mobile-chips@0.8.27](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-chips/CHANGELOG.md)
131
+ * [@cloud-ru/uikit-product-mobile-dropdown@0.9.12](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
132
+ * [@cloud-ru/uikit-product-mobile-tooltip@0.4.56](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-tooltip/CHANGELOG.md)
133
+
134
+
135
+
136
+
137
+
138
+ ## 0.3.8 (2025-09-17)
139
+
140
+ ### Only dependencies have been changed
141
+ * [@cloud-ru/uikit-product-icons@14.4.0](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/icons/CHANGELOG.md)
142
+ * [@cloud-ru/uikit-product-mobile-chips@0.8.26](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-chips/CHANGELOG.md)
143
+ * [@cloud-ru/uikit-product-mobile-dropdown@0.9.11](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
144
+ * [@cloud-ru/uikit-product-mobile-tooltip@0.4.55](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-tooltip/CHANGELOG.md)
145
+ * [@cloud-ru/uikit-product-utils@6.2.0](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/utils/CHANGELOG.md)
146
+
147
+
148
+
149
+
150
+
151
+ ## 0.3.7 (2025-09-11)
152
+
153
+ ### Only dependencies have been changed
154
+ * [@cloud-ru/uikit-product-icons@14.3.1](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/icons/CHANGELOG.md)
155
+ * [@cloud-ru/uikit-product-mobile-chips@0.8.25](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-chips/CHANGELOG.md)
156
+ * [@cloud-ru/uikit-product-mobile-dropdown@0.9.10](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
157
+ * [@cloud-ru/uikit-product-mobile-tooltip@0.4.54](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-tooltip/CHANGELOG.md)
158
+
159
+
160
+
161
+
162
+
163
+ ## 0.3.6 (2025-09-05)
164
+
165
+
166
+ ### Dependencies
167
+
168
+ * **FF-7117:** up snack field deps ([465eb49](https://gitverse.ru/cloud-ru-tech/uikit-product/commits/465eb49b46a72ebb8a43d851f101cb7c0827e151))
169
+
170
+
171
+
172
+
173
+
174
+ ## 0.3.5 (2025-09-02)
175
+
176
+ ### Only dependencies have been changed
177
+ * [@cloud-ru/uikit-product-icons@14.3.0](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/icons/CHANGELOG.md)
178
+ * [@cloud-ru/uikit-product-mobile-chips@0.8.24](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-chips/CHANGELOG.md)
179
+ * [@cloud-ru/uikit-product-mobile-dropdown@0.9.9](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
180
+ * [@cloud-ru/uikit-product-mobile-tooltip@0.4.53](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-tooltip/CHANGELOG.md)
181
+
182
+
183
+
184
+
185
+
186
+ ## 0.3.4 (2025-09-01)
187
+
188
+ ### Only dependencies have been changed
189
+ * [@cloud-ru/uikit-product-icons@14.2.0](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/icons/CHANGELOG.md)
190
+ * [@cloud-ru/uikit-product-mobile-chips@0.8.23](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-chips/CHANGELOG.md)
191
+ * [@cloud-ru/uikit-product-mobile-dropdown@0.9.8](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
192
+ * [@cloud-ru/uikit-product-mobile-tooltip@0.4.52](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-tooltip/CHANGELOG.md)
193
+
194
+
195
+
196
+
197
+
198
+ ## 0.3.3 (2025-08-20)
199
+
200
+ ### Only dependencies have been changed
201
+ * [@cloud-ru/uikit-product-icons@14.1.2](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/icons/CHANGELOG.md)
202
+ * [@cloud-ru/uikit-product-mobile-chips@0.8.22](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-chips/CHANGELOG.md)
203
+ * [@cloud-ru/uikit-product-mobile-dropdown@0.9.7](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
204
+ * [@cloud-ru/uikit-product-mobile-tooltip@0.4.51](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-tooltip/CHANGELOG.md)
205
+
206
+
207
+
208
+
209
+
210
+ ## 0.3.2 (2025-08-19)
211
+
212
+ ### Only dependencies have been changed
213
+ * [@cloud-ru/uikit-product-icons@14.1.1](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/icons/CHANGELOG.md)
214
+ * [@cloud-ru/uikit-product-mobile-chips@0.8.21](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-chips/CHANGELOG.md)
215
+ * [@cloud-ru/uikit-product-mobile-dropdown@0.9.6](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
216
+ * [@cloud-ru/uikit-product-mobile-tooltip@0.4.50](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-tooltip/CHANGELOG.md)
217
+ * [@cloud-ru/uikit-product-utils@6.1.0](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/utils/CHANGELOG.md)
218
+
219
+
220
+
221
+
222
+
223
+ ## 0.3.1 (2025-08-15)
224
+
225
+ ### Only dependencies have been changed
226
+ * [@cloud-ru/uikit-product-icons@14.1.0](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/icons/CHANGELOG.md)
227
+ * [@cloud-ru/uikit-product-mobile-chips@0.8.20](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-chips/CHANGELOG.md)
228
+ * [@cloud-ru/uikit-product-mobile-dropdown@0.9.5](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
229
+ * [@cloud-ru/uikit-product-mobile-tooltip@0.4.49](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-tooltip/CHANGELOG.md)
230
+
231
+
232
+
233
+
234
+
235
+ # 0.3.0 (2025-08-14)
236
+
237
+
238
+ ### Features
239
+
240
+ * **PDS-2643:** add AdaptiveToolbar component ([5606e63](https://gitverse.ru/cloud-ru-tech/uikit-product/commits/5606e63adeaffc837c3bfe89dfe95de46b3c945c))
241
+
242
+
243
+
244
+
245
+
246
+ ## 0.2.18 (2025-08-07)
247
+
248
+ ### Only dependencies have been changed
249
+ * [@cloud-ru/uikit-product-mobile-chips@0.8.18](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-chips/CHANGELOG.md)
250
+ * [@cloud-ru/uikit-product-mobile-dropdown@0.9.3](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
251
+
252
+
253
+
254
+
255
+
256
+ ## 0.2.17 (2025-08-04)
257
+
258
+ ### Only dependencies have been changed
259
+ * [@cloud-ru/uikit-product-icons@14.0.2](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/icons/CHANGELOG.md)
260
+ * [@cloud-ru/uikit-product-mobile-chips@0.8.17](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-chips/CHANGELOG.md)
261
+ * [@cloud-ru/uikit-product-mobile-dropdown@0.9.2](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
262
+ * [@cloud-ru/uikit-product-mobile-tooltip@0.4.47](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-tooltip/CHANGELOG.md)
263
+
264
+
265
+
266
+
267
+
268
+ ## 0.2.16 (2025-08-04)
269
+
270
+ ### Only dependencies have been changed
271
+ * [@cloud-ru/uikit-product-icons@14.0.1](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/icons/CHANGELOG.md)
272
+ * [@cloud-ru/uikit-product-mobile-chips@0.8.16](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-chips/CHANGELOG.md)
273
+ * [@cloud-ru/uikit-product-mobile-dropdown@0.9.1](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
274
+ * [@cloud-ru/uikit-product-mobile-tooltip@0.4.46](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-tooltip/CHANGELOG.md)
275
+
276
+
277
+
278
+
279
+
280
+ ## 0.2.15 (2025-07-28)
281
+
282
+ ### Only dependencies have been changed
283
+ * [@cloud-ru/uikit-product-mobile-chips@0.8.15](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-chips/CHANGELOG.md)
284
+ * [@cloud-ru/uikit-product-mobile-dropdown@0.9.0](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
285
+
286
+
287
+
288
+
289
+
290
+ ## 0.2.14 (2025-07-25)
291
+
292
+ ### Only dependencies have been changed
293
+ * [@cloud-ru/uikit-product-icons@14.0.0](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/icons/CHANGELOG.md)
294
+ * [@cloud-ru/uikit-product-mobile-chips@0.8.14](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-chips/CHANGELOG.md)
295
+ * [@cloud-ru/uikit-product-mobile-dropdown@0.8.5](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
296
+ * [@cloud-ru/uikit-product-mobile-tooltip@0.4.45](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-tooltip/CHANGELOG.md)
297
+
298
+
299
+
300
+
301
+
302
+ ## 0.2.13 (2025-07-17)
303
+
304
+ ### Only dependencies have been changed
305
+ * [@cloud-ru/uikit-product-icons@13.0.6](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/icons/CHANGELOG.md)
306
+ * [@cloud-ru/uikit-product-mobile-chips@0.8.13](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-chips/CHANGELOG.md)
307
+ * [@cloud-ru/uikit-product-mobile-dropdown@0.8.4](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
308
+ * [@cloud-ru/uikit-product-mobile-tooltip@0.4.44](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-tooltip/CHANGELOG.md)
309
+
310
+
311
+
312
+
313
+
314
+ ## 0.2.12 (2025-07-17)
315
+
316
+ ### Only dependencies have been changed
317
+ * [@cloud-ru/uikit-product-mobile-chips@0.8.12](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-chips/CHANGELOG.md)
318
+ * [@cloud-ru/uikit-product-mobile-dropdown@0.8.3](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
319
+
320
+
321
+
322
+
323
+
324
+ ## 0.2.11 (2025-07-16)
325
+
326
+ ### Only dependencies have been changed
327
+ * [@cloud-ru/uikit-product-icons@13.0.5](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/icons/CHANGELOG.md)
328
+ * [@cloud-ru/uikit-product-mobile-chips@0.8.11](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-chips/CHANGELOG.md)
329
+ * [@cloud-ru/uikit-product-mobile-dropdown@0.8.2](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
330
+ * [@cloud-ru/uikit-product-mobile-tooltip@0.4.43](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-tooltip/CHANGELOG.md)
331
+
332
+
333
+
334
+
335
+
336
+ ## 0.2.10 (2025-07-15)
337
+
338
+ ### Only dependencies have been changed
339
+ * [@cloud-ru/uikit-product-icons@13.0.4](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/icons/CHANGELOG.md)
340
+ * [@cloud-ru/uikit-product-mobile-chips@0.8.10](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-chips/CHANGELOG.md)
341
+ * [@cloud-ru/uikit-product-mobile-dropdown@0.8.1](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
342
+ * [@cloud-ru/uikit-product-mobile-tooltip@0.4.42](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-tooltip/CHANGELOG.md)
343
+
344
+
345
+
346
+
347
+
348
+ ## 0.2.9 (2025-07-07)
349
+
350
+ ### Only dependencies have been changed
351
+ * [@cloud-ru/uikit-product-mobile-chips@0.8.9](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-chips/CHANGELOG.md)
352
+ * [@cloud-ru/uikit-product-mobile-dropdown@0.8.0](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
353
+
354
+
355
+
356
+
357
+
358
+ ## 0.2.8 (2025-07-01)
359
+
360
+ ### Only dependencies have been changed
361
+ * [@cloud-ru/uikit-product-icons@13.0.3](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/icons/CHANGELOG.md)
362
+ * [@cloud-ru/uikit-product-mobile-chips@0.8.8](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-chips/CHANGELOG.md)
363
+ * [@cloud-ru/uikit-product-mobile-dropdown@0.7.9](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
364
+ * [@cloud-ru/uikit-product-mobile-tooltip@0.4.41](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-tooltip/CHANGELOG.md)
365
+
366
+
367
+
368
+
369
+
370
+ ## 0.2.7 (2025-06-27)
371
+
372
+ ### Only dependencies have been changed
373
+ * [@cloud-ru/uikit-product-icons@13.0.2](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/icons/CHANGELOG.md)
374
+ * [@cloud-ru/uikit-product-mobile-chips@0.8.7](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-chips/CHANGELOG.md)
375
+ * [@cloud-ru/uikit-product-mobile-dropdown@0.7.8](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
376
+ * [@cloud-ru/uikit-product-mobile-tooltip@0.4.40](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-tooltip/CHANGELOG.md)
377
+
378
+
379
+
380
+
381
+
382
+ ## 0.2.6 (2025-06-27)
383
+
384
+ ### Only dependencies have been changed
385
+ * [@cloud-ru/uikit-product-icons@13.0.1](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/icons/CHANGELOG.md)
386
+ * [@cloud-ru/uikit-product-mobile-chips@0.8.6](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-chips/CHANGELOG.md)
387
+ * [@cloud-ru/uikit-product-mobile-dropdown@0.7.7](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
388
+ * [@cloud-ru/uikit-product-mobile-tooltip@0.4.39](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-tooltip/CHANGELOG.md)
389
+
390
+
391
+
392
+
393
+
394
+ ## 0.2.5 (2025-06-24)
395
+
396
+ ### Only dependencies have been changed
397
+ * [@cloud-ru/uikit-product-icons@13.0.0](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/icons/CHANGELOG.md)
398
+ * [@cloud-ru/uikit-product-mobile-chips@0.8.5](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-chips/CHANGELOG.md)
399
+ * [@cloud-ru/uikit-product-mobile-dropdown@0.7.6](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
400
+ * [@cloud-ru/uikit-product-mobile-tooltip@0.4.38](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-tooltip/CHANGELOG.md)
401
+
402
+
403
+
404
+
405
+
406
+ ## 0.2.4 (2025-06-20)
407
+
408
+ ### Only dependencies have been changed
409
+ * [@cloud-ru/uikit-product-icons@12.1.0](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/icons/CHANGELOG.md)
410
+ * [@cloud-ru/uikit-product-mobile-chips@0.8.4](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-chips/CHANGELOG.md)
411
+ * [@cloud-ru/uikit-product-mobile-dropdown@0.7.5](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
412
+ * [@cloud-ru/uikit-product-mobile-tooltip@0.4.37](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-tooltip/CHANGELOG.md)
413
+
414
+
415
+
416
+
417
+
418
+ ## 0.2.3 (2025-06-20)
419
+
420
+ ### Only dependencies have been changed
421
+ * [@cloud-ru/uikit-product-mobile-chips@0.8.3](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-chips/CHANGELOG.md)
422
+ * [@cloud-ru/uikit-product-mobile-dropdown@0.7.4](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
423
+ * [@cloud-ru/uikit-product-mobile-tooltip@0.4.36](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-tooltip/CHANGELOG.md)
424
+
425
+
426
+
427
+
428
+
429
+ ## 0.2.2 (2025-06-20)
430
+
431
+ ### Only dependencies have been changed
432
+ * [@cloud-ru/uikit-product-icons@12.0.0](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/icons/CHANGELOG.md)
433
+ * [@cloud-ru/uikit-product-mobile-chips@0.8.2](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-chips/CHANGELOG.md)
434
+ * [@cloud-ru/uikit-product-mobile-dropdown@0.7.3](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
435
+ * [@cloud-ru/uikit-product-mobile-tooltip@0.4.35](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-tooltip/CHANGELOG.md)
436
+
437
+
438
+
439
+
440
+
441
+ ## 0.2.1 (2025-06-06)
442
+
443
+ ### Only dependencies have been changed
444
+ * [@cloud-ru/uikit-product-icons@11.9.0](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/icons/CHANGELOG.md)
445
+ * [@cloud-ru/uikit-product-mobile-chips@0.8.1](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-chips/CHANGELOG.md)
446
+ * [@cloud-ru/uikit-product-mobile-dropdown@0.7.2](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
447
+ * [@cloud-ru/uikit-product-mobile-tooltip@0.4.34](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-tooltip/CHANGELOG.md)
448
+
449
+
450
+
451
+
452
+
453
+ # 0.2.0 (2025-06-05)
454
+
455
+
456
+ ### Features
457
+
458
+ * **FF-6788:** add initialOpen prop ([e7e7712](https://gitverse.ru/cloud-ru-tech/uikit-product/commits/e7e7712f87c8b4348e95a8d4350213ae461023ad))
459
+
460
+
461
+
462
+
463
+
464
+ # 0.1.0 (2025-05-29)
465
+
466
+
467
+ ### BREAKING CHANGES
468
+
469
+
470
+ * **FF-6484:** up deps ([578fdbb](https://gitverse.ru/cloud-ru-tech/uikit-product/commits/578fdbbb604085655bd316308440976db38d25ce))
471
+
472
+
473
+
474
+
475
+ ## 0.0.27 (2025-05-28)
476
+
477
+ ### Only dependencies have been changed
478
+ * [@cloud-ru/uikit-product-mobile-chips@0.7.19](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-chips/CHANGELOG.md)
479
+
480
+
481
+
482
+
483
+
484
+ ## 0.0.26 (2025-05-28)
485
+
486
+ ### Only dependencies have been changed
487
+ * [@cloud-ru/uikit-product-icons@11.8.0](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/icons/CHANGELOG.md)
488
+ * [@cloud-ru/uikit-product-mobile-chips@0.7.18](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-chips/CHANGELOG.md)
489
+ * [@cloud-ru/uikit-product-mobile-dropdown@0.7.1](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
490
+ * [@cloud-ru/uikit-product-mobile-tooltip@0.4.33](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-tooltip/CHANGELOG.md)
491
+
492
+
493
+
494
+
495
+
496
+ ## 0.0.25 (2025-05-27)
497
+
498
+ ### Only dependencies have been changed
499
+ * [@cloud-ru/uikit-product-mobile-chips@0.7.17](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-chips/CHANGELOG.md)
500
+ * [@cloud-ru/uikit-product-mobile-dropdown@0.7.0](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
501
+
502
+
503
+
504
+
505
+
506
+ ## 0.0.24 (2025-05-16)
507
+
508
+ ### Only dependencies have been changed
509
+ * [@cloud-ru/uikit-product-icons@11.7.0](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/icons/CHANGELOG.md)
510
+ * [@cloud-ru/uikit-product-mobile-chips@0.7.16](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-chips/CHANGELOG.md)
511
+ * [@cloud-ru/uikit-product-mobile-dropdown@0.6.41](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
512
+ * [@cloud-ru/uikit-product-mobile-tooltip@0.4.32](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-tooltip/CHANGELOG.md)
513
+
514
+
515
+
516
+
517
+
518
+ ## 0.0.23 (2025-05-14)
519
+
520
+ ### Only dependencies have been changed
521
+ * [@cloud-ru/uikit-product-mobile-chips@0.7.15](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-chips/CHANGELOG.md)
522
+
523
+
524
+
525
+
526
+
527
+ ## 0.0.22 (2025-05-14)
528
+
529
+ ### Only dependencies have been changed
530
+ * [@cloud-ru/uikit-product-icons@11.6.0](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/icons/CHANGELOG.md)
531
+ * [@cloud-ru/uikit-product-mobile-chips@0.7.14](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-chips/CHANGELOG.md)
532
+ * [@cloud-ru/uikit-product-mobile-dropdown@0.6.40](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
533
+ * [@cloud-ru/uikit-product-mobile-tooltip@0.4.31](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-tooltip/CHANGELOG.md)
534
+
535
+
536
+
537
+
538
+
539
+ ## 0.0.21 (2025-05-13)
540
+
541
+ ### Only dependencies have been changed
542
+ * [@cloud-ru/uikit-product-mobile-chips@0.7.13](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-chips/CHANGELOG.md)
543
+
544
+
545
+
546
+
547
+
548
+ ## 0.0.20 (2025-04-30)
549
+
550
+ ### Only dependencies have been changed
551
+ * [@cloud-ru/uikit-product-icons@11.5.0](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/icons/CHANGELOG.md)
552
+ * [@cloud-ru/uikit-product-mobile-chips@0.7.12](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-chips/CHANGELOG.md)
553
+ * [@cloud-ru/uikit-product-mobile-dropdown@0.6.39](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
554
+ * [@cloud-ru/uikit-product-mobile-tooltip@0.4.30](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-tooltip/CHANGELOG.md)
555
+
556
+
557
+
558
+
559
+
560
+ ## 0.0.19 (2025-04-24)
561
+
562
+ ### Only dependencies have been changed
563
+ * [@cloud-ru/uikit-product-mobile-chips@0.7.11](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-chips/CHANGELOG.md)
564
+ * [@cloud-ru/uikit-product-mobile-dropdown@0.6.38](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
565
+
566
+
567
+
568
+
569
+
570
+ ## 0.0.18 (2025-04-15)
571
+
572
+ ### Only dependencies have been changed
573
+ * [@cloud-ru/uikit-product-icons@11.4.0](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/icons/CHANGELOG.md)
574
+ * [@cloud-ru/uikit-product-mobile-chips@0.7.10](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-chips/CHANGELOG.md)
575
+ * [@cloud-ru/uikit-product-mobile-dropdown@0.6.37](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
576
+ * [@cloud-ru/uikit-product-mobile-tooltip@0.4.29](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-tooltip/CHANGELOG.md)
577
+
578
+
579
+
580
+
581
+
582
+ ## 0.0.17 (2025-04-09)
583
+
584
+ ### Only dependencies have been changed
585
+ * [@cloud-ru/uikit-product-icons@11.3.0](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/icons/CHANGELOG.md)
586
+ * [@cloud-ru/uikit-product-mobile-chips@0.7.9](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-chips/CHANGELOG.md)
587
+ * [@cloud-ru/uikit-product-mobile-dropdown@0.6.36](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
588
+ * [@cloud-ru/uikit-product-mobile-tooltip@0.4.28](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-tooltip/CHANGELOG.md)
589
+
590
+
591
+
592
+
593
+
594
+ ## 0.0.16 (2025-04-01)
595
+
596
+ ### Only dependencies have been changed
597
+ * [@cloud-ru/uikit-product-icons@11.2.0](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/icons/CHANGELOG.md)
598
+ * [@cloud-ru/uikit-product-mobile-chips@0.7.8](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-chips/CHANGELOG.md)
599
+ * [@cloud-ru/uikit-product-mobile-dropdown@0.6.35](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
600
+ * [@cloud-ru/uikit-product-mobile-tooltip@0.4.27](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-tooltip/CHANGELOG.md)
601
+
602
+
603
+
604
+
605
+
606
+ ## 0.0.15 (2025-03-27)
607
+
608
+ ### Only dependencies have been changed
609
+ * [@cloud-ru/uikit-product-icons@11.1.0](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/icons/CHANGELOG.md)
610
+ * [@cloud-ru/uikit-product-mobile-chips@0.7.7](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-chips/CHANGELOG.md)
611
+ * [@cloud-ru/uikit-product-mobile-dropdown@0.6.34](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
612
+ * [@cloud-ru/uikit-product-mobile-tooltip@0.4.26](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-tooltip/CHANGELOG.md)
613
+
614
+
615
+
616
+
617
+
618
+ ## 0.0.14 (2025-03-21)
619
+
620
+ ### Only dependencies have been changed
621
+ * [@cloud-ru/uikit-product-icons@11.0.1](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/icons/CHANGELOG.md)
622
+ * [@cloud-ru/uikit-product-mobile-chips@0.7.6](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-chips/CHANGELOG.md)
623
+ * [@cloud-ru/uikit-product-mobile-dropdown@0.6.33](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
624
+ * [@cloud-ru/uikit-product-mobile-tooltip@0.4.25](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-tooltip/CHANGELOG.md)
625
+
626
+
627
+
628
+
629
+
630
+ ## 0.0.13 (2025-03-20)
631
+
632
+ ### Only dependencies have been changed
633
+ * [@cloud-ru/uikit-product-mobile-chips@0.7.5](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-chips/CHANGELOG.md)
634
+
635
+
636
+
637
+
638
+
639
+ ## 0.0.12 (2025-03-20)
640
+
641
+ ### Only dependencies have been changed
642
+ * [@cloud-ru/uikit-product-icons@11.0.0](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/icons/CHANGELOG.md)
643
+ * [@cloud-ru/uikit-product-mobile-chips@0.7.4](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-chips/CHANGELOG.md)
644
+ * [@cloud-ru/uikit-product-mobile-dropdown@0.6.32](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
645
+ * [@cloud-ru/uikit-product-mobile-tooltip@0.4.24](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-tooltip/CHANGELOG.md)
646
+
647
+
648
+
649
+
650
+
651
+ ## 0.0.11 (2025-03-18)
652
+
653
+ ### Only dependencies have been changed
654
+ * [@cloud-ru/uikit-product-icons@10.7.0](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/icons/CHANGELOG.md)
655
+ * [@cloud-ru/uikit-product-mobile-chips@0.7.3](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-chips/CHANGELOG.md)
656
+ * [@cloud-ru/uikit-product-mobile-dropdown@0.6.31](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
657
+ * [@cloud-ru/uikit-product-mobile-tooltip@0.4.23](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-tooltip/CHANGELOG.md)
658
+
659
+
660
+
661
+
662
+
663
+ ## 0.0.10 (2025-03-14)
664
+
665
+ ### Only dependencies have been changed
666
+ * [@cloud-ru/uikit-product-icons@10.6.0](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/icons/CHANGELOG.md)
667
+ * [@cloud-ru/uikit-product-mobile-chips@0.7.2](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-chips/CHANGELOG.md)
668
+ * [@cloud-ru/uikit-product-mobile-dropdown@0.6.30](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
669
+ * [@cloud-ru/uikit-product-mobile-tooltip@0.4.22](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-tooltip/CHANGELOG.md)
670
+
671
+
672
+
673
+
674
+
675
+ ## 0.0.9 (2025-03-13)
676
+
677
+ ### Only dependencies have been changed
678
+ * [@cloud-ru/uikit-product-icons@10.5.1](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/icons/CHANGELOG.md)
679
+ * [@cloud-ru/uikit-product-mobile-chips@0.7.1](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-chips/CHANGELOG.md)
680
+ * [@cloud-ru/uikit-product-mobile-dropdown@0.6.29](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
681
+ * [@cloud-ru/uikit-product-mobile-tooltip@0.4.21](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-tooltip/CHANGELOG.md)
682
+
683
+
684
+
685
+
686
+
687
+ ## 0.0.8 (2025-03-05)
688
+
689
+ ### Only dependencies have been changed
690
+ * [@cloud-ru/uikit-product-mobile-chips@0.7.0](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-chips/CHANGELOG.md)
691
+
692
+
693
+
694
+
695
+
696
+ ## 0.0.7 (2025-03-05)
697
+
698
+ ### Only dependencies have been changed
699
+ * [@cloud-ru/uikit-product-icons@10.5.0](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/icons/CHANGELOG.md)
700
+ * [@cloud-ru/uikit-product-mobile-chips@0.6.29](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-chips/CHANGELOG.md)
701
+ * [@cloud-ru/uikit-product-mobile-dropdown@0.6.28](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
702
+ * [@cloud-ru/uikit-product-mobile-tooltip@0.4.20](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-tooltip/CHANGELOG.md)
703
+
704
+
705
+
706
+
707
+
708
+ ## 0.0.6 (2025-03-04)
709
+
710
+ ### Only dependencies have been changed
711
+ * [@cloud-ru/uikit-product-icons@10.4.0](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/icons/CHANGELOG.md)
712
+ * [@cloud-ru/uikit-product-mobile-chips@0.6.28](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-chips/CHANGELOG.md)
713
+ * [@cloud-ru/uikit-product-mobile-dropdown@0.6.27](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
714
+ * [@cloud-ru/uikit-product-mobile-tooltip@0.4.19](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-tooltip/CHANGELOG.md)
715
+
716
+
717
+
718
+
719
+
720
+ ## 0.0.5 (2025-02-28)
721
+
722
+ ### Only dependencies have been changed
723
+ * [@cloud-ru/uikit-product-icons@10.3.0](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/icons/CHANGELOG.md)
724
+ * [@cloud-ru/uikit-product-mobile-chips@0.6.27](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-chips/CHANGELOG.md)
725
+ * [@cloud-ru/uikit-product-mobile-dropdown@0.6.26](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
726
+ * [@cloud-ru/uikit-product-mobile-tooltip@0.4.18](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-tooltip/CHANGELOG.md)
727
+
728
+
729
+
730
+
731
+
732
+ ## 0.0.4 (2025-02-27)
733
+
734
+ ### Only dependencies have been changed
735
+ * [@cloud-ru/uikit-product-mobile-chips@0.6.26](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-chips/CHANGELOG.md)
736
+ * [@cloud-ru/uikit-product-mobile-dropdown@0.6.25](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
737
+
738
+
739
+
740
+
741
+
742
+ ## 0.0.3 (2025-02-25)
743
+
744
+ ### Only dependencies have been changed
745
+ * [@cloud-ru/uikit-product-mobile-chips@0.6.25](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-chips/CHANGELOG.md)
746
+
747
+
748
+
749
+
750
+
751
+ ## 0.0.2 (2025-02-10)
752
+
753
+
754
+ ### Bug Fixes
755
+
756
+ * **FF-4704:** make type for filters in generic non required ([a16d1e5](https://gitverse.ru/cloud-ru-tech/uikit-product/commits/a16d1e5ad15085035301533f74f35c39e442f534))
757
+
758
+
759
+ ### Dependencies
760
+
761
+ * **FF-4704:** up deps ([7da95ef](https://gitverse.ru/cloud-ru-tech/uikit-product/commits/7da95ef6551ced9a63c75970f43b047cc564cedc))
762
+
763
+
764
+
765
+
766
+
767
+ ## <small>0.0.1 (2025-02-05)</small>
768
+
769
+ * feat(PDS-1081): add mobile toolbar initial version ([226ce69](https://gitverse.ru/cloud-ru-tech/uikit-product/commits/226ce69))
770
+
771
+
772
+
773
+
774
+
775
+ ## CHANGELOG
776
+
777
+ ### v0.0.0
778
+
779
+ - Initial version