@profitliga/ui 1.2.32 → 1.2.34

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.
@@ -14,3 +14,4 @@ export declare const MondayStart: Story;
14
14
  export declare const DisabledState: Story;
15
15
  export declare const FullWidth: Story;
16
16
  export declare const Composed: Story;
17
+ export declare const ComposedWithDialog: Story;
@@ -1,6 +1,8 @@
1
1
  import { DatePickerContentProps, DatePickerRootProps, DateValue } from 'reka-ui';
2
+ import { IDatePickerFieldProps } from './DatePickerField.vue';
2
3
  import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
3
4
  interface IDatePickerProps extends DatePickerRootProps {
5
+ fieldProps?: IDatePickerFieldProps;
4
6
  contentProps?: DatePickerContentProps;
5
7
  }
6
8
  type __VLS_Props = IDatePickerProps;
@@ -1,6 +1,6 @@
1
1
  import { SegmentPart, DateValue } from 'reka-ui';
2
2
  import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
3
- interface IDatePickerFieldProps {
3
+ export interface IDatePickerFieldProps {
4
4
  width?: number | 'full';
5
5
  placeholder?: string;
6
6
  size?: 'small' | 'default' | 'large';
@@ -13,3 +13,4 @@ export declare const EnglishLocale: Story;
13
13
  export declare const MondayStart: Story;
14
14
  export declare const DisabledState: Story;
15
15
  export declare const Composed: Story;
16
+ export declare const ComposedWithDialog: Story;
@@ -3,7 +3,7 @@ export interface IDatePickerFieldProps {
3
3
  width?: number | string;
4
4
  placeholder?: string;
5
5
  size?: 'small' | 'default' | 'large';
6
- clear?: boolean;
6
+ showClear?: boolean;
7
7
  }
8
8
  declare const _default: DefineComponent<IDatePickerFieldProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<IDatePickerFieldProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
9
9
  export default _default;