@cloud-ru/uikit-product-mobile-chips 0.8.43 → 0.8.45
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
|
@@ -3,6 +3,29 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## 0.8.45 (2025-12-08)
|
|
7
|
+
|
|
8
|
+
### Only dependencies have been changed
|
|
9
|
+
* [@cloud-ru/uikit-product-icons@16.0.1](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/icons/CHANGELOG.md)
|
|
10
|
+
* [@cloud-ru/uikit-product-mobile-dropdown@0.9.29](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
|
|
11
|
+
* [@cloud-ru/uikit-product-mobile-tooltip@0.5.2](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-tooltip/CHANGELOG.md)
|
|
12
|
+
* [@cloud-ru/uikit-product-utils@8.0.2](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/utils/CHANGELOG.md)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
## 0.8.44 (2025-11-28)
|
|
19
|
+
|
|
20
|
+
### Only dependencies have been changed
|
|
21
|
+
* [@cloud-ru/uikit-product-icons@16.0.0](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/icons/CHANGELOG.md)
|
|
22
|
+
* [@cloud-ru/uikit-product-mobile-dropdown@0.9.28](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-dropdown/CHANGELOG.md)
|
|
23
|
+
* [@cloud-ru/uikit-product-mobile-tooltip@0.5.1](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-tooltip/CHANGELOG.md)
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
|
|
6
29
|
## 0.8.43 (2025-11-28)
|
|
7
30
|
|
|
8
31
|
### Only dependencies have been changed
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cloud-ru/uikit-product-mobile-chips",
|
|
3
3
|
"title": "Mobile Chips",
|
|
4
|
-
"version": "0.8.
|
|
4
|
+
"version": "0.8.45",
|
|
5
5
|
"sideEffects": [
|
|
6
6
|
"*.css",
|
|
7
7
|
"*.woff",
|
|
@@ -36,10 +36,10 @@
|
|
|
36
36
|
},
|
|
37
37
|
"scripts": {},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@cloud-ru/uikit-product-icons": "
|
|
40
|
-
"@cloud-ru/uikit-product-mobile-dropdown": "0.9.
|
|
41
|
-
"@cloud-ru/uikit-product-mobile-tooltip": "0.5.
|
|
42
|
-
"@cloud-ru/uikit-product-utils": "8.0.
|
|
39
|
+
"@cloud-ru/uikit-product-icons": "16.0.1",
|
|
40
|
+
"@cloud-ru/uikit-product-mobile-dropdown": "0.9.29",
|
|
41
|
+
"@cloud-ru/uikit-product-mobile-tooltip": "0.5.2",
|
|
42
|
+
"@cloud-ru/uikit-product-utils": "8.0.2",
|
|
43
43
|
"@snack-uikit/button": "0.19.15",
|
|
44
44
|
"@snack-uikit/calendar": "0.13.0",
|
|
45
45
|
"@snack-uikit/chips": "0.28.0",
|
|
@@ -59,5 +59,5 @@
|
|
|
59
59
|
"devDependencies": {
|
|
60
60
|
"@types/fuzzy-search": "2.1.5"
|
|
61
61
|
},
|
|
62
|
-
"gitHead": "
|
|
62
|
+
"gitHead": "ab61e93fe6f723c522e95a7c5540b3080de6b2de"
|
|
63
63
|
}
|
|
@@ -22,15 +22,10 @@ export type AnyType = any;
|
|
|
22
22
|
export type ContentRenderProps = Omit<ItemContentProps, 'option' | 'disabled'>;
|
|
23
23
|
|
|
24
24
|
export type FilterOption<T extends ContentRenderProps = ContentRenderProps> =
|
|
25
|
-
// eslint-disable-next-line no-use-before-define
|
|
26
25
|
| BaseOption<T>
|
|
27
|
-
// eslint-disable-next-line no-use-before-define
|
|
28
26
|
| AccordionOption<T>
|
|
29
|
-
// eslint-disable-next-line no-use-before-define
|
|
30
27
|
| GroupOption<T>
|
|
31
|
-
// eslint-disable-next-line no-use-before-define
|
|
32
28
|
| GroupSelectOption<T>
|
|
33
|
-
// eslint-disable-next-line no-use-before-define
|
|
34
29
|
| NestListOption<T>;
|
|
35
30
|
|
|
36
31
|
export type BaseOption<T extends ContentRenderProps = ContentRenderProps> = Omit<BaseItemProps, 'content' | 'id'> & {
|