@dolanske/vui 1.0.0 → 1.0.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.
Files changed (59) hide show
  1. package/dist/components/Accordion/Accordion.vue.d.ts +3 -2
  2. package/dist/components/Accordion/AccordionGroup.vue.d.ts +5 -2
  3. package/dist/components/Alert/Alert.vue.d.ts +3 -2
  4. package/dist/components/Avatar/Avatar.vue.d.ts +3 -2
  5. package/dist/components/Badge/Badge.vue.d.ts +3 -2
  6. package/dist/components/Breadcrumbs/BreadcrumbItem.vue.d.ts +3 -2
  7. package/dist/components/Breadcrumbs/Breadcrumbs.vue.d.ts +3 -2
  8. package/dist/components/Button/Button.vue.d.ts +3 -2
  9. package/dist/components/ButtonGroup/ButtonGroup.vue.d.ts +3 -2
  10. package/dist/components/Calendar/Calendar.vue.d.ts +6 -6
  11. package/dist/components/Card/Card.vue.d.ts +4 -3
  12. package/dist/components/Checkbox/Checkbox.vue.d.ts +7 -6
  13. package/dist/components/CopyClipboard/CopyClipboard.vue.d.ts +2 -1
  14. package/dist/components/Divider/Divider.vue.d.ts +3 -2
  15. package/dist/components/Drawer/Drawer.vue.d.ts +6 -5
  16. package/dist/components/Dropdown/Dropdown.vue.d.ts +66 -3
  17. package/dist/components/Dropdown/DropdownItem.vue.d.ts +3 -2
  18. package/dist/components/Dropdown/DropdownTitle.vue.d.ts +6 -6
  19. package/dist/components/Flex/Flex.vue.d.ts +3 -2
  20. package/dist/components/Grid/Grid.vue.d.ts +3 -2
  21. package/dist/components/Input/Color.vue.d.ts +11 -0
  22. package/dist/components/Input/Counter.vue.d.ts +5 -5
  23. package/dist/components/Input/Dropzone.vue.d.ts +95 -10
  24. package/dist/components/Input/File.vue.d.ts +4 -3
  25. package/dist/components/Input/Input.vue.d.ts +7 -6
  26. package/dist/components/Input/Password.vue.d.ts +1 -1
  27. package/dist/components/Input/Textarea.vue.d.ts +7 -6
  28. package/dist/components/Kbd/Kbd.vue.d.ts +1 -1
  29. package/dist/components/Kbd/KbdGroup.vue.d.ts +2 -1
  30. package/dist/components/Modal/Confirm.vue.d.ts +6 -5
  31. package/dist/components/Modal/Modal.vue.d.ts +6 -5
  32. package/dist/components/OTP/OTP.vue.d.ts +7 -6
  33. package/dist/components/OTP/OTPItem.vue.d.ts +1 -1
  34. package/dist/components/Pagination/Pagination.vue.d.ts +3 -2
  35. package/dist/components/Popout/Popout.vue.d.ts +3 -2
  36. package/dist/components/Progress/Progress.vue.d.ts +5 -5
  37. package/dist/components/Radio/Radio.vue.d.ts +7 -6
  38. package/dist/components/Radio/RadioGroup.vue.d.ts +7 -6
  39. package/dist/components/Select/Select.vue.d.ts +4 -8
  40. package/dist/components/Sheet/Sheet.vue.d.ts +6 -5
  41. package/dist/components/Sidebar/Sidebar.vue.d.ts +70 -0
  42. package/dist/components/Skeleton/Skeleton.vue.d.ts +1 -1
  43. package/dist/components/Spinner/Spinner.vue.d.ts +1 -1
  44. package/dist/components/Switch/Switch.vue.d.ts +7 -6
  45. package/dist/components/Table/Cell.vue.d.ts +5 -2
  46. package/dist/components/Table/Head.vue.d.ts +3 -2
  47. package/dist/components/Table/Root.vue.d.ts +3 -2
  48. package/dist/components/Table/table.d.ts +2 -2
  49. package/dist/components/Tabs/Tab.vue.d.ts +3 -2
  50. package/dist/components/Tabs/Tabs.vue.d.ts +8 -7
  51. package/dist/components/Toast/toast.d.ts +6 -6
  52. package/dist/components/Tooltip/Tooltip.vue.d.ts +2 -1
  53. package/dist/index.d.ts +4 -1
  54. package/dist/internal/Backdrop/Backdrop.vue.d.ts +3 -2
  55. package/dist/{style.css → vui.css} +1 -1
  56. package/dist/vui.js +5938 -5502
  57. package/package.json +17 -17
  58. package/src/components/Tabs/Tabs.vue +3 -2
  59. package/src/index.ts +4 -0
@@ -7,6 +7,7 @@ declare function open(): void;
7
7
  declare function close(): void;
8
8
  declare function toggle(): void;
9
9
  declare function __VLS_template(): {
10
+ attrs: Partial<{}>;
10
11
  slots: {
11
12
  trigger?(_: {
12
13
  open: typeof open;
@@ -20,7 +21,7 @@ declare function __VLS_template(): {
20
21
  refs: {
21
22
  content: HTMLDivElement;
22
23
  };
23
- attrs: Partial<{}>;
24
+ rootEl: HTMLDivElement;
24
25
  };
25
26
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
26
27
  declare const __VLS_component: import('vue').DefineComponent<AccordionProps, {
@@ -36,7 +37,7 @@ declare const __VLS_component: import('vue').DefineComponent<AccordionProps, {
36
37
  onClose?: (() => any) | undefined;
37
38
  }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
38
39
  content: HTMLDivElement;
39
- }, any>;
40
+ }, HTMLDivElement>;
40
41
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
41
42
  export default _default;
42
43
  type __VLS_WithTemplateSlots<T, S> = T & {
@@ -7,6 +7,7 @@ interface Props {
7
7
  single?: boolean;
8
8
  }
9
9
  declare function __VLS_template(): {
10
+ attrs: Partial<{}>;
10
11
  slots: Readonly<{
11
12
  default: () => Array<VNode & {
12
13
  props: AccordionProps;
@@ -19,10 +20,12 @@ declare function __VLS_template(): {
19
20
  refs: {
20
21
  accordion: unknown[];
21
22
  };
22
- attrs: Partial<{}>;
23
+ rootEl: any;
23
24
  };
24
25
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
25
- declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
26
+ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
27
+ accordion: unknown[];
28
+ }, any>;
26
29
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
27
30
  export default _default;
28
31
  type __VLS_WithTemplateSlots<T, S> = T & {
@@ -16,16 +16,17 @@ interface Props {
16
16
  description?: string;
17
17
  }
18
18
  declare function __VLS_template(): {
19
+ attrs: Partial<{}>;
19
20
  slots: {
20
21
  default?(_: {}): any;
21
22
  default?(_: {}): any;
22
23
  end?(_: {}): any;
23
24
  };
24
25
  refs: {};
25
- attrs: Partial<{}>;
26
+ rootEl: HTMLDivElement;
26
27
  };
27
28
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
28
- declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
29
+ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
29
30
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
30
31
  export default _default;
31
32
  type __VLS_WithTemplateSlots<T, S> = T & {
@@ -7,14 +7,15 @@ interface Props {
7
7
  alt?: string;
8
8
  }
9
9
  declare function __VLS_template(): {
10
+ attrs: Partial<{}>;
10
11
  slots: {
11
12
  default?(_: {}): any;
12
13
  };
13
14
  refs: {};
14
- attrs: Partial<{}>;
15
+ rootEl: HTMLDivElement;
15
16
  };
16
17
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
17
- declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
18
+ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
18
19
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
19
20
  export default _default;
20
21
  type __VLS_WithTemplateSlots<T, S> = T & {
@@ -4,14 +4,15 @@ interface Props {
4
4
  filled?: boolean;
5
5
  }
6
6
  declare function __VLS_template(): {
7
+ attrs: Partial<{}>;
7
8
  slots: {
8
9
  default?(_: {}): any;
9
10
  };
10
11
  refs: {};
11
- attrs: Partial<{}>;
12
+ rootEl: HTMLDivElement;
12
13
  };
13
14
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
14
- declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
15
+ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
15
16
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
16
17
  export default _default;
17
18
  type __VLS_WithTemplateSlots<T, S> = T & {
@@ -3,15 +3,16 @@ export interface BreadcrumbItemProps {
3
3
  href?: string;
4
4
  }
5
5
  declare function __VLS_template(): {
6
+ attrs: Partial<{}>;
6
7
  slots: {
7
8
  default?(_: {}): any;
8
9
  default?(_: {}): any;
9
10
  };
10
11
  refs: {};
11
- attrs: Partial<{}>;
12
+ rootEl: HTMLLIElement;
12
13
  };
13
14
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
14
- declare const __VLS_component: import('vue').DefineComponent<BreadcrumbItemProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<BreadcrumbItemProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
15
+ declare const __VLS_component: import('vue').DefineComponent<BreadcrumbItemProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<BreadcrumbItemProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLLIElement>;
15
16
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
16
17
  export default _default;
17
18
  type __VLS_WithTemplateSlots<T, S> = T & {
@@ -4,6 +4,7 @@ interface Props {
4
4
  separator?: string;
5
5
  }
6
6
  declare function __VLS_template(): {
7
+ attrs: Partial<{}>;
7
8
  slots: Readonly<{
8
9
  default: () => Array<VNode & {
9
10
  props: BreadcrumbItemProps;
@@ -14,10 +15,10 @@ declare function __VLS_template(): {
14
15
  }>;
15
16
  };
16
17
  refs: {};
17
- attrs: Partial<{}>;
18
+ rootEl: HTMLUListElement;
18
19
  };
19
20
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
20
- declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
21
+ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLUListElement>;
21
22
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
22
23
  export default _default;
23
24
  type __VLS_WithTemplateSlots<T, S> = T & {
@@ -12,16 +12,17 @@ interface Props {
12
12
  plain?: boolean;
13
13
  }
14
14
  declare function __VLS_template(): {
15
+ attrs: Partial<{}>;
15
16
  slots: {
16
17
  start?(_: {}): any;
17
18
  default?(_: {}): any;
18
19
  end?(_: {}): any;
19
20
  };
20
21
  refs: {};
21
- attrs: Partial<{}>;
22
+ rootEl: HTMLButtonElement;
22
23
  };
23
24
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
24
- declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
25
+ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLButtonElement>;
25
26
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
26
27
  export default _default;
27
28
  type __VLS_WithTemplateSlots<T, S> = T & {
@@ -4,14 +4,15 @@ interface Props {
4
4
  gap?: Space | number;
5
5
  }
6
6
  declare function __VLS_template(): {
7
+ attrs: Partial<{}>;
7
8
  slots: {
8
9
  default?(_: {}): any;
9
10
  };
10
11
  refs: {};
11
- attrs: Partial<{}>;
12
+ rootEl: HTMLDivElement;
12
13
  };
13
14
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
14
- declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
15
+ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
15
16
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
16
17
  export default _default;
17
18
  type __VLS_WithTemplateSlots<T, S> = T & {
@@ -1,17 +1,17 @@
1
1
  import { VueDatePickerProps } from '@vuepic/vue-datepicker';
2
+ type __VLS_Props = VueDatePickerProps & {
3
+ expand?: boolean;
4
+ };
2
5
  declare function __VLS_template(): {
6
+ attrs: Partial<{}>;
3
7
  slots: {
4
8
  trigger?(_: {}): any;
5
9
  };
6
10
  refs: {};
7
- attrs: Partial<{}>;
11
+ rootEl: any;
8
12
  };
9
13
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
10
- declare const __VLS_component: import('vue').DefineComponent<VueDatePickerProps & {
11
- expand?: boolean;
12
- }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<VueDatePickerProps & {
13
- expand?: boolean;
14
- }> & Readonly<{}>, {
14
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
15
15
  expand: boolean;
16
16
  format: string | ((date: Date) => string) | ((dates: Date[]) => string);
17
17
  autoApply: boolean;
@@ -5,17 +5,18 @@ export interface Props {
5
5
  padding?: boolean;
6
6
  }
7
7
  declare function __VLS_template(): {
8
+ attrs: Partial<{}>;
8
9
  slots: {
9
10
  header?(_: {}): any;
10
- "header-end"?(_: {}): any;
11
+ 'header-end'?(_: {}): any;
11
12
  default?(_: {}): any;
12
13
  footer?(_: {}): any;
13
14
  };
14
15
  refs: {};
15
- attrs: Partial<{}>;
16
+ rootEl: HTMLDivElement;
16
17
  };
17
18
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
18
- declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
19
+ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
19
20
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
20
21
  export default _default;
21
22
  type __VLS_WithTemplateSlots<T, S> = T & {
@@ -6,23 +6,24 @@ interface Props {
6
6
  checked?: boolean;
7
7
  accent?: boolean;
8
8
  }
9
- declare let __VLS_typeProps: Props;
9
+ type __VLS_Props = Props;
10
10
  type __VLS_PublicProps = {
11
11
  modelValue?: boolean;
12
- } & typeof __VLS_typeProps;
12
+ } & __VLS_Props;
13
13
  declare function __VLS_template(): {
14
+ attrs: Partial<{}>;
14
15
  slots: Readonly<Record<string, any>> & Record<string, any>;
15
16
  refs: {};
16
- attrs: Partial<{}>;
17
+ rootEl: HTMLDivElement;
17
18
  };
18
19
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
19
20
  declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
20
21
  change: (checked: boolean) => any;
21
- "update:modelValue": (modelValue: boolean) => any;
22
+ "update:modelValue": (value: boolean) => any;
22
23
  }, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
23
24
  onChange?: ((checked: boolean) => any) | undefined;
24
- "onUpdate:modelValue"?: ((modelValue: boolean) => any) | undefined;
25
- }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
25
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
26
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
26
27
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
27
28
  export default _default;
28
29
  type __VLS_WithTemplateSlots<T, S> = T & {
@@ -13,6 +13,7 @@ interface Props {
13
13
  confirmTime?: number;
14
14
  }
15
15
  declare function __VLS_template(): {
16
+ attrs: Partial<{}>;
16
17
  slots: {
17
18
  default?(_: {
18
19
  copy: (text: string) => Promise<void>;
@@ -24,7 +25,7 @@ declare function __VLS_template(): {
24
25
  anchor: HTMLDivElement;
25
26
  tooltip: HTMLDivElement;
26
27
  };
27
- attrs: Partial<{}>;
28
+ rootEl: any;
28
29
  };
29
30
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
30
31
  declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
@@ -5,14 +5,15 @@ interface Props {
5
5
  margin?: string | number;
6
6
  }
7
7
  declare function __VLS_template(): {
8
+ attrs: Partial<{}>;
8
9
  slots: {
9
10
  default?(_: {}): any;
10
11
  };
11
12
  refs: {};
12
- attrs: Partial<{}>;
13
+ rootEl: HTMLDivElement;
13
14
  };
14
15
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
15
- declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
16
+ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
16
17
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
17
18
  export default _default;
18
19
  type __VLS_WithTemplateSlots<T, S> = T & {
@@ -26,22 +26,23 @@ interface Props {
26
26
  rootProps?: DrawerRootProps;
27
27
  portalProps?: DrawerPortalProps;
28
28
  }
29
- declare let __VLS_typeProps: Props;
29
+ type __VLS_Props = Props;
30
30
  type __VLS_PublicProps = {
31
31
  modelValue?: boolean;
32
- } & typeof __VLS_typeProps;
32
+ } & __VLS_Props;
33
33
  declare function __VLS_template(): {
34
+ attrs: Partial<{}>;
34
35
  slots: {
35
36
  default?(_: {}): any;
36
37
  };
37
38
  refs: {};
38
- attrs: Partial<{}>;
39
+ rootEl: any;
39
40
  };
40
41
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
41
42
  declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
42
- "update:modelValue": (modelValue: boolean) => any;
43
+ "update:modelValue": (value: boolean) => any;
43
44
  }, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
44
- "onUpdate:modelValue"?: ((modelValue: boolean) => any) | undefined;
45
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
45
46
  }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
46
47
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
47
48
  export default _default;
@@ -21,6 +21,7 @@ declare function open(): void;
21
21
  declare function close(): void;
22
22
  declare function toggle(): void;
23
23
  declare function __VLS_template(): {
24
+ attrs: Partial<{}>;
24
25
  slots: {
25
26
  trigger?(_: {
26
27
  open: typeof open;
@@ -61,7 +62,7 @@ declare function __VLS_template(): {
61
62
  $parent: import('vue').ComponentPublicInstance | null;
62
63
  $host: Element | null;
63
64
  $emit: (event: "clickOutside") => void;
64
- $el: any;
65
+ $el: HTMLDivElement;
65
66
  $options: import('vue').ComponentOptionsBase<Readonly<import('../Popout/Popout.vue').Props> & Readonly<{
66
67
  onClickOutside?: (() => any) | undefined;
67
68
  }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
@@ -98,7 +99,7 @@ declare function __VLS_template(): {
98
99
  };
99
100
  }) | null;
100
101
  };
101
- attrs: Partial<{}>;
102
+ rootEl: any;
102
103
  };
103
104
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
104
105
  declare const __VLS_component: import('vue').DefineComponent<Props, {
@@ -110,7 +111,69 @@ declare const __VLS_component: import('vue').DefineComponent<Props, {
110
111
  close: () => any;
111
112
  }, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
112
113
  onClose?: (() => any) | undefined;
113
- }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
114
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
115
+ anchor: HTMLDivElement;
116
+ dropdown: ({
117
+ $: import('vue').ComponentInternalInstance;
118
+ $data: {};
119
+ $props: {
120
+ readonly anchor: import('../../shared/types').PopoutMaybeElement<HTMLElement>;
121
+ readonly placement?: Placement | undefined;
122
+ readonly offset?: number | undefined;
123
+ readonly onClickOutside?: (() => any) | undefined;
124
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
125
+ $attrs: {
126
+ [x: string]: unknown;
127
+ };
128
+ $refs: {
129
+ [x: string]: unknown;
130
+ } & {
131
+ popout: HTMLDivElement;
132
+ };
133
+ $slots: Readonly<{
134
+ [name: string]: import('vue').Slot<any> | undefined;
135
+ }>;
136
+ $root: import('vue').ComponentPublicInstance | null;
137
+ $parent: import('vue').ComponentPublicInstance | null;
138
+ $host: Element | null;
139
+ $emit: (event: "clickOutside") => void;
140
+ $el: HTMLDivElement;
141
+ $options: import('vue').ComponentOptionsBase<Readonly<import('../Popout/Popout.vue').Props> & Readonly<{
142
+ onClickOutside?: (() => any) | undefined;
143
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
144
+ clickOutside: () => any;
145
+ }, string, {
146
+ offset: number;
147
+ }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
148
+ beforeCreate?: (() => void) | (() => void)[];
149
+ created?: (() => void) | (() => void)[];
150
+ beforeMount?: (() => void) | (() => void)[];
151
+ mounted?: (() => void) | (() => void)[];
152
+ beforeUpdate?: (() => void) | (() => void)[];
153
+ updated?: (() => void) | (() => void)[];
154
+ activated?: (() => void) | (() => void)[];
155
+ deactivated?: (() => void) | (() => void)[];
156
+ beforeDestroy?: (() => void) | (() => void)[];
157
+ beforeUnmount?: (() => void) | (() => void)[];
158
+ destroyed?: (() => void) | (() => void)[];
159
+ unmounted?: (() => void) | (() => void)[];
160
+ renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
161
+ renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
162
+ errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
163
+ };
164
+ $forceUpdate: () => void;
165
+ $nextTick: typeof import('vue').nextTick;
166
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
167
+ } & Readonly<{
168
+ offset: number;
169
+ }> & Omit<Readonly<import('../Popout/Popout.vue').Props> & Readonly<{
170
+ onClickOutside?: (() => any) | undefined;
171
+ }>, "offset"> & import('vue').ShallowUnwrapRef<{}> & {} & import('vue').ComponentCustomProperties & {} & {
172
+ $slots: {
173
+ default?(_: {}): any;
174
+ };
175
+ }) | null;
176
+ }, any>;
114
177
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
115
178
  export default _default;
116
179
  type __VLS_WithTemplateSlots<T, S> = T & {
@@ -4,15 +4,16 @@ interface Props {
4
4
  iconEnd?: string;
5
5
  }
6
6
  declare function __VLS_template(): {
7
+ attrs: Partial<{}>;
7
8
  slots: {
8
9
  default?(_: {}): any;
9
10
  hint?(_: {}): any;
10
11
  };
11
12
  refs: {};
12
- attrs: Partial<{}>;
13
+ rootEl: HTMLButtonElement;
13
14
  };
14
15
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
15
- declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
16
+ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLButtonElement>;
16
17
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
17
18
  export default _default;
18
19
  type __VLS_WithTemplateSlots<T, S> = T & {
@@ -1,17 +1,17 @@
1
+ type __VLS_Props = {
2
+ sticky?: boolean;
3
+ };
1
4
  declare function __VLS_template(): {
5
+ attrs: Partial<{}>;
2
6
  slots: {
3
7
  default?(_: {}): any;
4
8
  end?(_: {}): any;
5
9
  };
6
10
  refs: {};
7
- attrs: Partial<{}>;
11
+ rootEl: HTMLDivElement;
8
12
  };
9
13
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
10
- declare const __VLS_component: import('vue').DefineComponent<{
11
- sticky?: boolean;
12
- }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
13
- sticky?: boolean;
14
- }> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
14
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
15
15
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
16
16
  export default _default;
17
17
  type __VLS_WithTemplateSlots<T, S> = T & {
@@ -21,16 +21,17 @@ export interface FlexProps {
21
21
  expand?: boolean;
22
22
  }
23
23
  declare function __VLS_template(): {
24
+ attrs: Partial<{}>;
24
25
  slots: {
25
26
  default?(_: {}): any;
26
27
  };
27
28
  refs: {};
28
- attrs: Partial<{}>;
29
+ rootEl: HTMLDivElement;
29
30
  };
30
31
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
31
32
  declare const __VLS_component: import('vue').DefineComponent<FlexProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<FlexProps> & Readonly<{}>, {
32
33
  gap: Space | number;
33
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
34
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
34
35
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
35
36
  export default _default;
36
37
  type __VLS_WithTemplateSlots<T, S> = T & {
@@ -13,16 +13,17 @@ interface Props {
13
13
  alignBaseline?: boolean;
14
14
  }
15
15
  declare function __VLS_template(): {
16
+ attrs: Partial<{}>;
16
17
  slots: {
17
18
  default?(_: {}): any;
18
19
  };
19
20
  refs: {};
20
- attrs: Partial<{}>;
21
+ rootEl: HTMLDivElement;
21
22
  };
22
23
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
23
24
  declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {
24
25
  gap: Space | number;
25
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
26
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
26
27
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
27
28
  export default _default;
28
29
  type __VLS_WithTemplateSlots<T, S> = T & {
@@ -0,0 +1,11 @@
1
+ import { InputProps } from './Input.vue';
2
+ type __VLS_Props = InputProps;
3
+ type __VLS_PublicProps = {
4
+ modelValue?: string;
5
+ } & __VLS_Props;
6
+ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
7
+ "update:modelValue": (value: string) => any;
8
+ }, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
9
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
10
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
11
+ export default _default;
@@ -7,13 +7,13 @@ type Props = Omit<InputProps, 'type'> & {
7
7
  decrementEnabled?: boolean;
8
8
  hideDecrement?: boolean;
9
9
  };
10
- declare let __VLS_typeProps: Props;
10
+ type __VLS_Props = Props;
11
11
  type __VLS_PublicProps = {
12
12
  modelValue?: number;
13
- } & typeof __VLS_typeProps;
13
+ } & __VLS_Props;
14
14
  declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
15
- "update:modelValue": (modelValue: number) => any;
15
+ "update:modelValue": (value: number) => any;
16
16
  }, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
17
- "onUpdate:modelValue"?: ((modelValue: number) => any) | undefined;
18
- }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
17
+ "onUpdate:modelValue"?: ((value: number) => any) | undefined;
18
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
19
19
  export default _default;