@cloud-ru/uikit-product-mobile-fields 0.12.0 → 0.12.1

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,18 @@
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.12.1 (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-modal@0.9.26](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/mobile-modal/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
+
6
18
  # 0.12.0 (2025-12-03)
7
19
 
8
20
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@cloud-ru/uikit-product-mobile-fields",
3
3
  "title": "Mobile Fields",
4
- "version": "0.12.0",
4
+ "version": "0.12.1",
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": "16.0.0",
40
- "@cloud-ru/uikit-product-mobile-dropdown": "0.9.28",
41
- "@cloud-ru/uikit-product-mobile-modal": "0.9.25",
42
- "@cloud-ru/uikit-product-utils": "8.0.1",
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-modal": "0.9.26",
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/fields": "0.51.12",
@@ -62,5 +62,5 @@
62
62
  "peerDependencies": {
63
63
  "@cloud-ru/uikit-product-locale": "*"
64
64
  },
65
- "gitHead": "6366d4a4912c09f95af6ba794df7b5a246893762"
65
+ "gitHead": "ab61e93fe6f723c522e95a7c5540b3080de6b2de"
66
66
  }
@@ -18,17 +18,8 @@ import { WithSupportProps } from '@snack-uikit/utils';
18
18
  // eslint-disable-next-line @typescript-eslint/no-explicit-any
19
19
  export type AnyType = any;
20
20
 
21
- export type OptionProps =
22
- // eslint-disable-next-line no-use-before-define
23
- | BaseOptionProps
24
- // eslint-disable-next-line no-use-before-define
25
- | AccordionOptionProps
26
- // eslint-disable-next-line no-use-before-define
27
- | GroupOptionProps
28
- // eslint-disable-next-line no-use-before-define
29
- | NestListOptionProps;
30
-
31
- // eslint-disable-next-line no-use-before-define
21
+ export type OptionProps = BaseOptionProps | AccordionOptionProps | GroupOptionProps | NestListOptionProps;
22
+
32
23
  export type OptionWithoutGroup = BaseOptionProps | AccordionOptionProps | NestListOptionProps;
33
24
 
34
25
  export type BaseOptionProps = Pick<BaseItemProps, 'beforeContent' | 'afterContent' | 'disabled'> &