@halo-dev/components 2.18.0 → 2.19.0

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 (55) hide show
  1. package/dist/components/alert/Alert.stories.d.ts +0 -1
  2. package/dist/components/alert/Alert.vue.d.ts +28 -26
  3. package/dist/components/avatar/Avatar.stories.d.ts +0 -1
  4. package/dist/components/avatar/Avatar.vue.d.ts +11 -12
  5. package/dist/components/avatar/AvatarGroup.stories.d.ts +0 -1
  6. package/dist/components/avatar/AvatarGroup.vue.d.ts +16 -15
  7. package/dist/components/avatar/interface.d.ts +0 -1
  8. package/dist/components/button/Button.stories.d.ts +0 -1
  9. package/dist/components/button/Button.vue.d.ts +29 -28
  10. package/dist/components/card/Card.stories.d.ts +0 -1
  11. package/dist/components/card/Card.vue.d.ts +16 -14
  12. package/dist/components/description/Description.vue.d.ts +4 -2
  13. package/dist/components/description/DescriptionItem.vue.d.ts +20 -18
  14. package/dist/components/dialog/Dialog.stories.d.ts +0 -1
  15. package/dist/components/dialog/Dialog.vue.d.ts +31 -32
  16. package/dist/components/dialog/dialog-manager.d.ts +0 -1
  17. package/dist/components/dropdown/Draopdown.stories.d.ts +0 -1
  18. package/dist/components/dropdown/Dropdown.vue.d.ts +23 -22
  19. package/dist/components/dropdown/DropdownItem.vue.d.ts +22 -20
  20. package/dist/components/dropdown/symbols.d.ts +0 -1
  21. package/dist/components/empty/Empty.stories.d.ts +0 -1
  22. package/dist/components/empty/Empty.vue.d.ts +18 -16
  23. package/dist/components/entity/Entity.vue.d.ts +23 -21
  24. package/dist/components/entity/EntityField.vue.d.ts +26 -25
  25. package/dist/components/header/PageHeader.vue.d.ts +14 -12
  26. package/dist/components/loading/Loading.stories.d.ts +0 -1
  27. package/dist/components/menu/Menu.stories.d.ts +0 -1
  28. package/dist/components/menu/Menu.vue.d.ts +14 -12
  29. package/dist/components/menu/MenuItem.vue.d.ts +23 -21
  30. package/dist/components/menu/MenuLabel.vue.d.ts +4 -2
  31. package/dist/components/modal/Modal.stories.d.ts +0 -1
  32. package/dist/components/modal/Modal.vue.d.ts +38 -36
  33. package/dist/components/pagination/Pagination.stories.d.ts +0 -1
  34. package/dist/components/pagination/Pagination.vue.d.ts +27 -27
  35. package/dist/components/space/Space.stories.d.ts +0 -1
  36. package/dist/components/space/Space.vue.d.ts +23 -22
  37. package/dist/components/status/StatusDot.stories.d.ts +0 -1
  38. package/dist/components/status/StatusDot.vue.d.ts +22 -21
  39. package/dist/components/switch/Switch.stories.d.ts +0 -1
  40. package/dist/components/switch/Switch.vue.d.ts +22 -20
  41. package/dist/components/tabs/TabItem.vue.d.ts +16 -14
  42. package/dist/components/tabs/Tabbar.stories.d.ts +0 -1
  43. package/dist/components/tabs/Tabbar.vue.d.ts +23 -24
  44. package/dist/components/tabs/Tabs.stories.d.ts +0 -1
  45. package/dist/components/tabs/Tabs.vue.d.ts +27 -26
  46. package/dist/components/tag/Tag.stories.d.ts +0 -1
  47. package/dist/components/tag/Tag.vue.d.ts +24 -23
  48. package/dist/components/toast/Toast.vue.d.ts +30 -29
  49. package/dist/components/toast/toast-manager.d.ts +0 -1
  50. package/dist/halo-components.es.js +17 -32
  51. package/dist/halo-components.es.js.map +1 -1
  52. package/dist/halo-components.iife.js.map +1 -1
  53. package/dist/icons/icons.d.ts +0 -1
  54. package/dist/index.d.ts +0 -1
  55. package/package.json +2 -2
@@ -1,5 +1,4 @@
1
1
  import { InjectionKey } from 'vue';
2
-
3
2
  export declare const DropdownContextInjectionKey: InjectionKey<{
4
3
  hide: () => void;
5
4
  }>;
@@ -1,6 +1,5 @@
1
1
  import { Meta, StoryObj } from '@storybook/vue3';
2
2
  import { VEmpty } from '.';
3
-
4
3
  declare const meta: Meta<typeof VEmpty>;
5
4
  export default meta;
6
5
  type Story = StoryObj<typeof VEmpty>;
@@ -1,19 +1,26 @@
1
- declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<{
2
- title?: string | undefined;
3
- message?: string | undefined;
4
- image?: string | undefined;
5
- }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
6
- title?: string | undefined;
7
- message?: string | undefined;
8
- image?: string | undefined;
9
- }>>>, {}, {}>, {
1
+ declare function __VLS_template(): {
10
2
  image?(_: {}): any;
11
3
  message?(_: {}): any;
12
4
  actions?(_: {}): any;
13
- }>;
5
+ };
6
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_TypePropsToOption<{
7
+ title?: string;
8
+ message?: string;
9
+ image?: string;
10
+ }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToOption<{
11
+ title?: string;
12
+ message?: string;
13
+ image?: string;
14
+ }>>>, {}, {}>;
15
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
14
16
  export default _default;
17
+ type __VLS_WithTemplateSlots<T, S> = T & {
18
+ new (): {
19
+ $slots: S;
20
+ };
21
+ };
15
22
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
16
- type __VLS_TypePropsToRuntimeProps<T> = {
23
+ type __VLS_TypePropsToOption<T> = {
17
24
  [K in keyof T]-?: {} extends Pick<T, K> ? {
18
25
  type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
19
26
  } : {
@@ -21,8 +28,3 @@ type __VLS_TypePropsToRuntimeProps<T> = {
21
28
  required: true;
22
29
  };
23
30
  };
24
- type __VLS_WithTemplateSlots<T, S> = T & {
25
- new (): {
26
- $slots: S;
27
- };
28
- };
@@ -1,31 +1,24 @@
1
- declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
2
- isSelected?: boolean | undefined;
3
- }>, {
4
- isSelected: boolean;
5
- }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
6
- isSelected?: boolean | undefined;
7
- }>, {
8
- isSelected: boolean;
9
- }>>>, {
10
- isSelected: boolean;
11
- }, {}>, {
1
+ declare function __VLS_template(): {
12
2
  prepend?(_: {}): any;
13
3
  checkbox?(_: {}): any;
14
4
  start?(_: {}): any;
15
5
  end?(_: {}): any;
16
6
  dropdownItems?(_: {}): any;
17
7
  footer?(_: {}): any;
18
- }>;
19
- export default _default;
20
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
21
- type __VLS_TypePropsToRuntimeProps<T> = {
22
- [K in keyof T]-?: {} extends Pick<T, K> ? {
23
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
24
- } : {
25
- type: import('vue').PropType<T[K]>;
26
- required: true;
27
- };
28
8
  };
9
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<{
10
+ isSelected?: boolean;
11
+ }>, {
12
+ isSelected: boolean;
13
+ }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
14
+ isSelected?: boolean;
15
+ }>, {
16
+ isSelected: boolean;
17
+ }>>>, {
18
+ isSelected: boolean;
19
+ }, {}>;
20
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
21
+ export default _default;
29
22
  type __VLS_WithDefaults<P, D> = {
30
23
  [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
31
24
  default: D[K];
@@ -39,3 +32,12 @@ type __VLS_WithTemplateSlots<T, S> = T & {
39
32
  $slots: S;
40
33
  };
41
34
  };
35
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
36
+ type __VLS_TypePropsToOption<T> = {
37
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
38
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
39
+ } : {
40
+ type: import('vue').PropType<T[K]>;
41
+ required: true;
42
+ };
43
+ };
@@ -1,10 +1,14 @@
1
1
  import { RouteLocationRaw } from 'vue-router';
2
-
3
- declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
4
- title?: string | undefined;
5
- description?: string | undefined;
6
- route?: RouteLocationRaw | undefined;
7
- width?: string | number | undefined;
2
+ declare function __VLS_template(): {
3
+ title?(_: {}): any;
4
+ extra?(_: {}): any;
5
+ description?(_: {}): any;
6
+ };
7
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<{
8
+ title?: string;
9
+ description?: string;
10
+ route?: RouteLocationRaw;
11
+ width?: string | number;
8
12
  }>, {
9
13
  title: undefined;
10
14
  description: undefined;
@@ -12,11 +16,11 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
12
16
  width: undefined;
13
17
  }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
14
18
  click: () => void;
15
- }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
16
- title?: string | undefined;
17
- description?: string | undefined;
18
- route?: RouteLocationRaw | undefined;
19
- width?: string | number | undefined;
19
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
20
+ title?: string;
21
+ description?: string;
22
+ route?: RouteLocationRaw;
23
+ width?: string | number;
20
24
  }>, {
21
25
  title: undefined;
22
26
  description: undefined;
@@ -29,21 +33,9 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
29
33
  description: string;
30
34
  width: string | number;
31
35
  route: RouteLocationRaw;
32
- }, {}>, {
33
- title?(_: {}): any;
34
- extra?(_: {}): any;
35
- description?(_: {}): any;
36
- }>;
36
+ }, {}>;
37
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
37
38
  export default _default;
38
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
39
- type __VLS_TypePropsToRuntimeProps<T> = {
40
- [K in keyof T]-?: {} extends Pick<T, K> ? {
41
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
42
- } : {
43
- type: import('vue').PropType<T[K]>;
44
- required: true;
45
- };
46
- };
47
39
  type __VLS_WithDefaults<P, D> = {
48
40
  [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
49
41
  default: D[K];
@@ -57,3 +49,12 @@ type __VLS_WithTemplateSlots<T, S> = T & {
57
49
  $slots: S;
58
50
  };
59
51
  };
52
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
53
+ type __VLS_TypePropsToOption<T> = {
54
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
55
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
56
+ } : {
57
+ type: import('vue').PropType<T[K]>;
58
+ required: true;
59
+ };
60
+ };
@@ -1,14 +1,21 @@
1
- declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<{
2
- title?: string | undefined;
3
- }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
4
- title?: string | undefined;
5
- }>>>, {}, {}>, {
1
+ declare function __VLS_template(): {
6
2
  icon?(_: {}): any;
7
3
  actions?(_: {}): any;
8
- }>;
4
+ };
5
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_TypePropsToOption<{
6
+ title?: string;
7
+ }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToOption<{
8
+ title?: string;
9
+ }>>>, {}, {}>;
10
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
9
11
  export default _default;
12
+ type __VLS_WithTemplateSlots<T, S> = T & {
13
+ new (): {
14
+ $slots: S;
15
+ };
16
+ };
10
17
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
11
- type __VLS_TypePropsToRuntimeProps<T> = {
18
+ type __VLS_TypePropsToOption<T> = {
12
19
  [K in keyof T]-?: {} extends Pick<T, K> ? {
13
20
  type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
14
21
  } : {
@@ -16,8 +23,3 @@ type __VLS_TypePropsToRuntimeProps<T> = {
16
23
  required: true;
17
24
  };
18
25
  };
19
- type __VLS_WithTemplateSlots<T, S> = T & {
20
- new (): {
21
- $slots: S;
22
- };
23
- };
@@ -1,6 +1,5 @@
1
1
  import { Meta, StoryObj } from '@storybook/vue3';
2
2
  import { VLoading } from '.';
3
-
4
3
  declare const meta: Meta<typeof VLoading>;
5
4
  export default meta;
6
5
  type Story = StoryObj<typeof VLoading>;
@@ -1,6 +1,5 @@
1
1
  import { Meta, StoryObj } from '@storybook/vue3';
2
2
  import { VMenu } from './index';
3
-
4
3
  declare const meta: Meta<typeof VMenu>;
5
4
  export default meta;
6
5
  type Story = StoryObj<typeof VMenu>;
@@ -1,13 +1,20 @@
1
- declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<{
2
- openIds?: string[] | undefined;
3
- }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
4
- openIds?: string[] | undefined;
5
- }>>>, {}, {}>, {
1
+ declare function __VLS_template(): {
6
2
  default?(_: {}): any;
7
- }>;
3
+ };
4
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_TypePropsToOption<{
5
+ openIds?: string[];
6
+ }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToOption<{
7
+ openIds?: string[];
8
+ }>>>, {}, {}>;
9
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
8
10
  export default _default;
11
+ type __VLS_WithTemplateSlots<T, S> = T & {
12
+ new (): {
13
+ $slots: S;
14
+ };
15
+ };
9
16
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
10
- type __VLS_TypePropsToRuntimeProps<T> = {
17
+ type __VLS_TypePropsToOption<T> = {
11
18
  [K in keyof T]-?: {} extends Pick<T, K> ? {
12
19
  type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
13
20
  } : {
@@ -15,8 +22,3 @@ type __VLS_TypePropsToRuntimeProps<T> = {
15
22
  required: true;
16
23
  };
17
24
  };
18
- type __VLS_WithTemplateSlots<T, S> = T & {
19
- new (): {
20
- $slots: S;
21
- };
22
- };
@@ -1,17 +1,21 @@
1
- declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
2
- id?: string | undefined;
3
- title?: string | undefined;
4
- active?: boolean | undefined;
1
+ declare function __VLS_template(): {
2
+ icon?(_: {}): any;
3
+ default?(_: {}): any;
4
+ };
5
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<{
6
+ id?: string;
7
+ title?: string;
8
+ active?: boolean;
5
9
  }>, {
6
10
  id: string;
7
11
  title: string;
8
12
  active: boolean;
9
13
  }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
10
14
  select: (id: string) => void;
11
- }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
12
- id?: string | undefined;
13
- title?: string | undefined;
14
- active?: boolean | undefined;
15
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
16
+ id?: string;
17
+ title?: string;
18
+ active?: boolean;
15
19
  }>, {
16
20
  id: string;
17
21
  title: string;
@@ -22,20 +26,9 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
22
26
  title: string;
23
27
  id: string;
24
28
  active: boolean;
25
- }, {}>, {
26
- icon?(_: {}): any;
27
- default?(_: {}): any;
28
- }>;
29
+ }, {}>;
30
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
29
31
  export default _default;
30
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
31
- type __VLS_TypePropsToRuntimeProps<T> = {
32
- [K in keyof T]-?: {} extends Pick<T, K> ? {
33
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
34
- } : {
35
- type: import('vue').PropType<T[K]>;
36
- required: true;
37
- };
38
- };
39
32
  type __VLS_WithDefaults<P, D> = {
40
33
  [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
41
34
  default: D[K];
@@ -49,3 +42,12 @@ type __VLS_WithTemplateSlots<T, S> = T & {
49
42
  $slots: S;
50
43
  };
51
44
  };
45
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
46
+ type __VLS_TypePropsToOption<T> = {
47
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
48
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
49
+ } : {
50
+ type: import('vue').PropType<T[K]>;
51
+ required: true;
52
+ };
53
+ };
@@ -1,6 +1,8 @@
1
- declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{}>>, {}, {}>, {
1
+ declare function __VLS_template(): {
2
2
  default?(_: {}): any;
3
- }>;
3
+ };
4
+ declare const __VLS_component: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{}>>, {}, {}>;
5
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
4
6
  export default _default;
5
7
  type __VLS_WithTemplateSlots<T, S> = T & {
6
8
  new (): {
@@ -1,6 +1,5 @@
1
1
  import { Meta, StoryObj } from '@storybook/vue3';
2
2
  import { VModal } from '.';
3
-
4
3
  declare const meta: Meta<typeof VModal>;
5
4
  export default meta;
6
5
  type Story = StoryObj<typeof VModal>;
@@ -1,14 +1,21 @@
1
1
  declare function handleClose(): void;
2
- declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
3
- visible?: boolean | undefined;
4
- title?: string | undefined;
5
- width?: number | undefined;
6
- height?: string | undefined;
7
- fullscreen?: boolean | undefined;
8
- bodyClass?: string[] | undefined;
9
- mountToBody?: boolean | undefined;
10
- centered?: boolean | undefined;
11
- layerClosable?: boolean | undefined;
2
+ declare function __VLS_template(): {
3
+ header?(_: {}): any;
4
+ center?(_: {}): any;
5
+ actions?(_: {}): any;
6
+ default?(_: {}): any;
7
+ footer?(_: {}): any;
8
+ };
9
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<{
10
+ visible?: boolean;
11
+ title?: string;
12
+ width?: number;
13
+ height?: string;
14
+ fullscreen?: boolean;
15
+ bodyClass?: string[];
16
+ mountToBody?: boolean;
17
+ centered?: boolean;
18
+ layerClosable?: boolean;
12
19
  }>, {
13
20
  visible: undefined;
14
21
  title: undefined;
@@ -24,16 +31,16 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
24
31
  }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
25
32
  "update:visible": (value: boolean) => void;
26
33
  close: () => void;
27
- }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
28
- visible?: boolean | undefined;
29
- title?: string | undefined;
30
- width?: number | undefined;
31
- height?: string | undefined;
32
- fullscreen?: boolean | undefined;
33
- bodyClass?: string[] | undefined;
34
- mountToBody?: boolean | undefined;
35
- centered?: boolean | undefined;
36
- layerClosable?: boolean | undefined;
34
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
35
+ visible?: boolean;
36
+ title?: string;
37
+ width?: number;
38
+ height?: string;
39
+ fullscreen?: boolean;
40
+ bodyClass?: string[];
41
+ mountToBody?: boolean;
42
+ centered?: boolean;
43
+ layerClosable?: boolean;
37
44
  }>, {
38
45
  visible: undefined;
39
46
  title: undefined;
@@ -57,23 +64,9 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
57
64
  mountToBody: boolean;
58
65
  centered: boolean;
59
66
  layerClosable: boolean;
60
- }, {}>, {
61
- header?(_: {}): any;
62
- center?(_: {}): any;
63
- actions?(_: {}): any;
64
- default?(_: {}): any;
65
- footer?(_: {}): any;
66
- }>;
67
+ }, {}>;
68
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
67
69
  export default _default;
68
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
69
- type __VLS_TypePropsToRuntimeProps<T> = {
70
- [K in keyof T]-?: {} extends Pick<T, K> ? {
71
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
72
- } : {
73
- type: import('vue').PropType<T[K]>;
74
- required: true;
75
- };
76
- };
77
70
  type __VLS_WithDefaults<P, D> = {
78
71
  [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
79
72
  default: D[K];
@@ -87,3 +80,12 @@ type __VLS_WithTemplateSlots<T, S> = T & {
87
80
  $slots: S;
88
81
  };
89
82
  };
83
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
84
+ type __VLS_TypePropsToOption<T> = {
85
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
86
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
87
+ } : {
88
+ type: import('vue').PropType<T[K]>;
89
+ required: true;
90
+ };
91
+ };
@@ -1,6 +1,5 @@
1
1
  import { Meta, StoryObj } from '@storybook/vue3';
2
2
  import { VPagination } from '.';
3
-
4
3
  declare const meta: Meta<typeof VPagination>;
5
4
  export default meta;
6
5
  type Story = StoryObj<typeof VPagination>;
@@ -1,12 +1,12 @@
1
- declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
2
- page?: number | undefined;
3
- size?: number | undefined;
4
- total?: number | undefined;
5
- sizeOptions?: number[] | undefined;
6
- showTotal?: boolean | undefined;
7
- pageLabel?: string | undefined;
8
- sizeLabel?: string | undefined;
9
- totalLabel?: string | undefined;
1
+ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<{
2
+ page?: number;
3
+ size?: number;
4
+ total?: number;
5
+ sizeOptions?: number[];
6
+ showTotal?: boolean;
7
+ pageLabel?: string;
8
+ sizeLabel?: string;
9
+ totalLabel?: string;
10
10
  }>, {
11
11
  page: number;
12
12
  size: number;
@@ -23,15 +23,15 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
23
23
  page: number;
24
24
  size: number;
25
25
  }) => void;
26
- }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
27
- page?: number | undefined;
28
- size?: number | undefined;
29
- total?: number | undefined;
30
- sizeOptions?: number[] | undefined;
31
- showTotal?: boolean | undefined;
32
- pageLabel?: string | undefined;
33
- sizeLabel?: string | undefined;
34
- totalLabel?: string | undefined;
26
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
27
+ page?: number;
28
+ size?: number;
29
+ total?: number;
30
+ sizeOptions?: number[];
31
+ showTotal?: boolean;
32
+ pageLabel?: string;
33
+ sizeLabel?: string;
34
+ totalLabel?: string;
35
35
  }>, {
36
36
  page: number;
37
37
  size: number;
@@ -59,15 +59,6 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
59
59
  totalLabel: string;
60
60
  }, {}>;
61
61
  export default _default;
62
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
63
- type __VLS_TypePropsToRuntimeProps<T> = {
64
- [K in keyof T]-?: {} extends Pick<T, K> ? {
65
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
66
- } : {
67
- type: import('vue').PropType<T[K]>;
68
- required: true;
69
- };
70
- };
71
62
  type __VLS_WithDefaults<P, D> = {
72
63
  [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
73
64
  default: D[K];
@@ -76,3 +67,12 @@ type __VLS_WithDefaults<P, D> = {
76
67
  type __VLS_Prettify<T> = {
77
68
  [K in keyof T]: T[K];
78
69
  } & {};
70
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
71
+ type __VLS_TypePropsToOption<T> = {
72
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
73
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
74
+ } : {
75
+ type: import('vue').PropType<T[K]>;
76
+ required: true;
77
+ };
78
+ };
@@ -1,6 +1,5 @@
1
1
  import { Meta, StoryObj } from '@storybook/vue3';
2
2
  import { VSpace } from '.';
3
-
4
3
  declare const meta: Meta<typeof VSpace>;
5
4
  export default meta;
6
5
  type Story = StoryObj<typeof VSpace>;
@@ -1,38 +1,30 @@
1
1
  import { Align, Direction, Spacing } from './interface';
2
-
3
- declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
4
- spacing?: Spacing | undefined;
5
- direction?: Direction | undefined;
6
- align?: Align | undefined;
2
+ declare function __VLS_template(): {
3
+ default?(_: {}): any;
4
+ };
5
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<{
6
+ spacing?: Spacing;
7
+ direction?: Direction;
8
+ align?: Align;
7
9
  }>, {
8
10
  spacing: string;
9
11
  direction: string;
10
12
  align: string;
11
- }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
12
- spacing?: Spacing | undefined;
13
- direction?: Direction | undefined;
14
- align?: Align | undefined;
13
+ }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
14
+ spacing?: Spacing;
15
+ direction?: Direction;
16
+ align?: Align;
15
17
  }>, {
16
18
  spacing: string;
17
19
  direction: string;
18
20
  align: string;
19
21
  }>>>, {
20
- spacing: Spacing;
21
22
  direction: Direction;
23
+ spacing: Spacing;
22
24
  align: Align;
23
- }, {}>, {
24
- default?(_: {}): any;
25
- }>;
25
+ }, {}>;
26
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
26
27
  export default _default;
27
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
28
- type __VLS_TypePropsToRuntimeProps<T> = {
29
- [K in keyof T]-?: {} extends Pick<T, K> ? {
30
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
31
- } : {
32
- type: import('vue').PropType<T[K]>;
33
- required: true;
34
- };
35
- };
36
28
  type __VLS_WithDefaults<P, D> = {
37
29
  [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
38
30
  default: D[K];
@@ -46,3 +38,12 @@ type __VLS_WithTemplateSlots<T, S> = T & {
46
38
  $slots: S;
47
39
  };
48
40
  };
41
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
42
+ type __VLS_TypePropsToOption<T> = {
43
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
44
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
45
+ } : {
46
+ type: import('vue').PropType<T[K]>;
47
+ required: true;
48
+ };
49
+ };
@@ -1,6 +1,5 @@
1
1
  import { Meta, StoryObj } from '@storybook/vue3';
2
2
  import { VStatusDot } from '.';
3
-
4
3
  declare const meta: Meta<typeof VStatusDot>;
5
4
  export default meta;
6
5
  type Story = StoryObj<typeof VStatusDot>;