@profitliga/ui 1.2.48 → 1.2.50

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.
@@ -3,7 +3,7 @@ import { IDrawerCloseProps, IDialogContentProps } from '../Drawer/DrawerContent.
3
3
  import { AsTag, PointerDownOutsideEvent, FocusOutsideEvent } from 'reka-ui';
4
4
  import { OnCleanup } from '@vue/reactivity';
5
5
  type __VLS_Props = {
6
- zIndex?: number;
6
+ zIndex?: number | 'auto';
7
7
  };
8
8
  type __VLS_PublicProps = {
9
9
  'open'?: boolean;
@@ -1,13 +1,16 @@
1
+ import { TBreakpoints } from '../../types/global.types';
1
2
  import { ConfirmOptions } from './ConfirmDialog.types';
2
3
  import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
3
4
  interface Props {
4
5
  state?: ConfirmOptions | null;
6
+ breakpointMobile?: TBreakpoints;
5
7
  }
6
8
  declare const _default: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
7
9
  "update:state": (value: ConfirmOptions | null) => any;
8
10
  }, string, PublicProps, Readonly<Props> & Readonly<{
9
11
  "onUpdate:state"?: ((value: ConfirmOptions | null) => any) | undefined;
10
12
  }>, {
13
+ breakpointMobile: TBreakpoints;
11
14
  state: ConfirmOptions | null;
12
15
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
13
16
  export default _default;
@@ -1,9 +1,11 @@
1
1
  import { DatePickerContentProps, DatePickerRootProps, DateValue } from 'reka-ui';
2
+ import { TBreakpoints } from '../../types/global.types';
2
3
  import { IDatePickerFieldProps } from './DatePickerField.vue';
3
4
  import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
4
5
  interface IDatePickerProps extends DatePickerRootProps {
5
6
  fieldProps?: IDatePickerFieldProps;
6
7
  contentProps?: DatePickerContentProps;
8
+ breakpointMobile?: TBreakpoints;
7
9
  }
8
10
  type __VLS_Props = IDatePickerProps;
9
11
  type __VLS_PublicProps = {
@@ -15,5 +17,9 @@ declare const _default: DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, Compo
15
17
  }, string, PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
16
18
  "onUpdate:modelValue"?: ((...args: unknown[]) => any) | undefined;
17
19
  "onUpdate:placeholder"?: ((date: DateValue) => any) | undefined;
18
- }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
20
+ }>, {
21
+ breakpointMobile: TBreakpoints;
22
+ fieldProps: IDatePickerFieldProps;
23
+ contentProps: DatePickerContentProps;
24
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
19
25
  export default _default;
@@ -1,10 +1,12 @@
1
1
  import { DateRange, DateRangePickerRootProps, DateValue } from 'reka-ui';
2
+ import { TBreakpoints } from '../../types/global.types';
2
3
  import { IDateRangePickerContentProps } from './DateRangePickerContent.vue';
3
4
  import { IDatePickerFieldProps } from './DateRangePickerField.vue';
4
5
  import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
5
6
  interface IDateRangePickerRootProps extends DateRangePickerRootProps {
6
7
  fieldProps?: IDatePickerFieldProps;
7
8
  contentProps?: IDateRangePickerContentProps;
9
+ breakpointMobile?: TBreakpoints;
8
10
  }
9
11
  type __VLS_Props = IDateRangePickerRootProps;
10
12
  type __VLS_PublicProps = {
@@ -28,7 +30,11 @@ declare const __VLS_component: DefineComponent<__VLS_PublicProps, {}, {}, {}, {}
28
30
  "onUpdate:modelValue"?: ((...args: unknown[]) => any) | undefined;
29
31
  "onUpdate:placeholder"?: ((date: DateValue) => any) | undefined;
30
32
  "onUpdate:startValue"?: ((date: DateValue | undefined) => any) | undefined;
31
- }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
33
+ }>, {
34
+ breakpointMobile: TBreakpoints;
35
+ fieldProps: IDatePickerFieldProps;
36
+ contentProps: IDateRangePickerContentProps;
37
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
32
38
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
33
39
  export default _default;
34
40
  type __VLS_WithTemplateSlots<T, S> = T & {
@@ -1,10 +1,12 @@
1
+ import { TBreakpoints } from '../../types/global.types';
1
2
  import { IDialogCloseProps, IDialogTitleProps } from './DialogContent.vue';
2
3
  import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
3
4
  export interface DialogProps {
4
5
  title?: IDialogTitleProps;
5
6
  closeButton?: IDialogCloseProps;
6
7
  width?: number;
7
- zIndex?: number;
8
+ zIndex?: number | 'auto';
9
+ breakpointMobile?: TBreakpoints;
8
10
  }
9
11
  type __VLS_Props = DialogProps;
10
12
  type __VLS_PublicProps = {
@@ -34,6 +36,8 @@ declare const __VLS_component: DefineComponent<__VLS_PublicProps, {}, {}, {}, {}
34
36
  title: IDialogTitleProps;
35
37
  width: number;
36
38
  closeButton: IDialogCloseProps;
39
+ zIndex: number | "auto";
40
+ breakpointMobile: TBreakpoints;
37
41
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
38
42
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
39
43
  export default _default;
@@ -1,3 +1,4 @@
1
+ import { TBreakpoints } from '../../types/global.types';
1
2
  import { IDrawerCloseProps } from './DrawerContent.vue';
2
3
  import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
3
4
  export interface DrawerProps {
@@ -5,6 +6,8 @@ export interface DrawerProps {
5
6
  width?: number;
6
7
  closeButton?: IDrawerCloseProps;
7
8
  zIndex?: number;
9
+ contentClass?: string | string[];
10
+ breakpointMobile?: TBreakpoints;
8
11
  }
9
12
  type __VLS_Props = DrawerProps;
10
13
  type __VLS_PublicProps = {
@@ -32,6 +35,8 @@ declare const __VLS_component: DefineComponent<__VLS_PublicProps, {}, {}, {}, {}
32
35
  closeButton: IDrawerCloseProps;
33
36
  position: "right" | "left" | "top" | "bottom";
34
37
  zIndex: number;
38
+ contentClass: string | string[];
39
+ breakpointMobile: TBreakpoints;
35
40
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
36
41
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
37
42
  export default _default;
@@ -1,4 +1,5 @@
1
1
  import { DropdownMenuRootProps, DropdownMenuTriggerProps } from 'reka-ui';
2
+ import { TBreakpoints } from '../../types/global.types';
2
3
  import { IDropdownMenuContentProps } from './DropdownMenuContent.vue';
3
4
  import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
4
5
  export interface IDropdownMenuProps {
@@ -15,6 +16,7 @@ export interface IDropdownMenuProps {
15
16
  zIndexContent?: number;
16
17
  triggerProps?: DropdownMenuTriggerProps;
17
18
  contentProps?: IDropdownMenuContentProps;
19
+ breakpointMobile?: TBreakpoints;
18
20
  }
19
21
  type __VLS_Props = IDropdownMenuProps;
20
22
  type __VLS_PublicProps = {
@@ -36,7 +38,21 @@ declare const __VLS_component: DefineComponent<__VLS_PublicProps, {}, {}, {}, {}
36
38
  "update:open": (value: boolean) => any;
37
39
  }, string, PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
38
40
  "onUpdate:open"?: ((value: boolean) => any) | undefined;
39
- }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
41
+ }>, {
42
+ defaultOpen: boolean;
43
+ dir: "ltr" | "rtl";
44
+ modal: boolean;
45
+ breakpointMobile: TBreakpoints;
46
+ contentProps: IDropdownMenuContentProps;
47
+ contentWidth: number;
48
+ contentSide: "top" | "right" | "bottom" | "left";
49
+ contentAlign: "start" | "center" | "end";
50
+ contentSideOffset: number;
51
+ contentAlignOffset: number;
52
+ contentCollisionPadding: number;
53
+ zIndexContent: number;
54
+ triggerProps: DropdownMenuTriggerProps;
55
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
40
56
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
41
57
  export default _default;
42
58
  type __VLS_WithTemplateSlots<T, S> = T & {