@snack-uikit/fields 0.32.2-preview-eca10dbc.0 → 0.32.2

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,16 @@
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.32.2 (2024-11-08)
7
+
8
+ ### Only dependencies have been changed
9
+ * [@snack-uikit/calendar@0.11.2](https://github.com/cloud-ru-tech/snack-uikit/blob/master/packages/calendar/CHANGELOG.md)
10
+ * [@snack-uikit/list@0.21.2](https://github.com/cloud-ru-tech/snack-uikit/blob/master/packages/list/CHANGELOG.md)
11
+
12
+
13
+
14
+
15
+
6
16
  ## 0.32.1 (2024-11-05)
7
17
 
8
18
  ### Only dependencies have been changed
package/README.md CHANGED
@@ -506,8 +506,8 @@ FieldStepper в основном предназначен для работы с
506
506
  |------|------|---------------|-------------|
507
507
  | open | `boolean` | - | Открыт time-picker |
508
508
  | onOpenChange | `(value: boolean) => void` | - | Колбек открытия пикера |
509
- | value | `TimePickerProps` | - | Значение поля |
510
- | onChange | `TimePickerProps` | - | Колбек смены значения |
509
+ | value | `TimeValue` | - | Значение поля |
510
+ | onChange | `(value?: TimeValue) => void` | - | Колбек смены значения |
511
511
  | showCopyButton | `boolean` | - | Отображение кнопки копирования |
512
512
  | showSeconds | `boolean` | true | Показывать ли секунды |
513
513
  | showClearButton | `boolean` | true | Отображение кнопки Очистки поля |
@@ -7,7 +7,7 @@ import { FieldDecoratorProps } from '../FieldDecorator';
7
7
  export type AnyType = any;
8
8
  export type OptionProps = BaseOptionProps | AccordionOptionProps | GroupOptionProps | NestListOptionProps;
9
9
  export type OptionWithoutGroup = BaseOptionProps | AccordionOptionProps | NestListOptionProps;
10
- export type BaseOptionProps = Pick<BaseItemProps, 'beforeContent' | 'afterContent' | 'disabled' | 'itemWrapRender'> & Pick<ItemContentProps, 'option' | 'caption' | 'description'> & {
10
+ export type BaseOptionProps = Pick<BaseItemProps, 'beforeContent' | 'afterContent' | 'disabled'> & Pick<ItemContentProps, 'option' | 'caption' | 'description'> & {
11
11
  value: string | number;
12
12
  } & Pick<TagProps, 'appearance'>;
13
13
  export type AccordionOptionProps = Pick<AccordionItemProps, 'type'> & BaseOptionProps & {
@@ -7,7 +7,7 @@ import { FieldDecoratorProps } from '../FieldDecorator';
7
7
  export type AnyType = any;
8
8
  export type OptionProps = BaseOptionProps | AccordionOptionProps | GroupOptionProps | NestListOptionProps;
9
9
  export type OptionWithoutGroup = BaseOptionProps | AccordionOptionProps | NestListOptionProps;
10
- export type BaseOptionProps = Pick<BaseItemProps, 'beforeContent' | 'afterContent' | 'disabled' | 'itemWrapRender'> & Pick<ItemContentProps, 'option' | 'caption' | 'description'> & {
10
+ export type BaseOptionProps = Pick<BaseItemProps, 'beforeContent' | 'afterContent' | 'disabled'> & Pick<ItemContentProps, 'option' | 'caption' | 'description'> & {
11
11
  value: string | number;
12
12
  } & Pick<TagProps, 'appearance'>;
13
13
  export type AccordionOptionProps = Pick<AccordionItemProps, 'type'> & BaseOptionProps & {
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "access": "public"
5
5
  },
6
6
  "title": "Fields",
7
- "version": "0.32.2-preview-eca10dbc.0",
7
+ "version": "0.32.2",
8
8
  "sideEffects": [
9
9
  "*.css",
10
10
  "*.woff",
@@ -37,13 +37,13 @@
37
37
  "scripts": {},
38
38
  "dependencies": {
39
39
  "@snack-uikit/button": "0.19.1",
40
- "@snack-uikit/calendar": "0.11.2-preview-eca10dbc.0",
40
+ "@snack-uikit/calendar": "0.11.2",
41
41
  "@snack-uikit/color-picker": "0.3.1",
42
42
  "@snack-uikit/divider": "3.2.0",
43
43
  "@snack-uikit/dropdown": "0.4.0",
44
44
  "@snack-uikit/icons": "0.24.0",
45
45
  "@snack-uikit/input-private": "4.2.1",
46
- "@snack-uikit/list": "0.21.2-preview-eca10dbc.0",
46
+ "@snack-uikit/list": "0.21.2",
47
47
  "@snack-uikit/scroll": "0.9.0",
48
48
  "@snack-uikit/skeleton": "0.5.0",
49
49
  "@snack-uikit/slider": "0.3.1",
@@ -65,5 +65,5 @@
65
65
  "peerDependencies": {
66
66
  "@snack-uikit/locale": "*"
67
67
  },
68
- "gitHead": "9c393122f75aafe771b6309c12f6bf1ad4b54891"
68
+ "gitHead": "df11a8777bfe0bd167f02aff8c393c48a24c1173"
69
69
  }
@@ -32,7 +32,7 @@ export type OptionProps =
32
32
  // eslint-disable-next-line no-use-before-define
33
33
  export type OptionWithoutGroup = BaseOptionProps | AccordionOptionProps | NestListOptionProps;
34
34
 
35
- export type BaseOptionProps = Pick<BaseItemProps, 'beforeContent' | 'afterContent' | 'disabled' | 'itemWrapRender'> &
35
+ export type BaseOptionProps = Pick<BaseItemProps, 'beforeContent' | 'afterContent' | 'disabled'> &
36
36
  Pick<ItemContentProps, 'option' | 'caption' | 'description'> & { value: string | number } & Pick<
37
37
  TagProps,
38
38
  'appearance'