@velkymx/vibeui 0.3.0 → 0.4.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 (70) hide show
  1. package/README.md +362 -1
  2. package/dist/App.vue.d.ts +2 -0
  3. package/dist/components/HelloWorld.vue.d.ts +5 -0
  4. package/dist/components/VibeAccordion.vue.d.ts +51 -0
  5. package/dist/components/VibeAccordionItem.vue.d.ts +57 -0
  6. package/dist/components/VibeAlert.vue.d.ts +61 -0
  7. package/dist/components/VibeBadge.vue.d.ts +52 -0
  8. package/dist/components/VibeBreadcrumb.vue.d.ts +43 -0
  9. package/dist/components/VibeBreadcrumbItem.vue.d.ts +51 -0
  10. package/dist/components/VibeButton.vue.d.ts +99 -0
  11. package/dist/components/VibeButtonGroup.vue.d.ts +61 -0
  12. package/dist/components/VibeCard.vue.d.ts +126 -0
  13. package/dist/components/VibeCardBody.vue.d.ts +34 -0
  14. package/dist/components/VibeCardFooter.vue.d.ts +34 -0
  15. package/dist/components/VibeCardHeader.vue.d.ts +34 -0
  16. package/dist/components/VibeCardImg.vue.d.ts +44 -0
  17. package/dist/components/VibeCardText.vue.d.ts +33 -0
  18. package/dist/components/VibeCardTitle.vue.d.ts +33 -0
  19. package/dist/components/VibeCarousel.vue.d.ts +137 -0
  20. package/dist/components/VibeCarouselSlide.vue.d.ts +80 -0
  21. package/dist/components/VibeCloseButton.vue.d.ts +38 -0
  22. package/dist/components/VibeCol.vue.d.ts +206 -0
  23. package/dist/components/VibeCollapse.vue.d.ts +70 -0
  24. package/dist/components/VibeContainer.vue.d.ts +44 -0
  25. package/dist/components/VibeDataTable.vue.d.ts +261 -0
  26. package/dist/components/VibeDropdown.vue.d.ts +96 -0
  27. package/dist/components/VibeDropdownItem.vue.d.ts +81 -0
  28. package/dist/components/VibeFormCheckbox.vue.d.ts +134 -0
  29. package/dist/components/VibeFormDatepicker.vue.d.ts +154 -0
  30. package/dist/components/VibeFormGroup.vue.d.ts +112 -0
  31. package/dist/components/VibeFormInput.vue.d.ts +154 -0
  32. package/dist/components/VibeFormRadio.vue.d.ts +132 -0
  33. package/dist/components/VibeFormSelect.vue.d.ts +167 -0
  34. package/dist/components/VibeFormSpinbutton.vue.d.ts +176 -0
  35. package/dist/components/VibeFormSwitch.vue.d.ts +107 -0
  36. package/dist/components/VibeFormTextarea.vue.d.ts +163 -0
  37. package/dist/components/VibeFormWysiwyg.vue.d.ts +156 -0
  38. package/dist/components/VibeIcon.vue.d.ts +83 -0
  39. package/dist/components/VibeListGroup.vue.d.ts +63 -0
  40. package/dist/components/VibeListGroupItem.vue.d.ts +90 -0
  41. package/dist/components/VibeModal.vue.d.ts +126 -0
  42. package/dist/components/VibeNav.vue.d.ts +81 -0
  43. package/dist/components/VibeNavItem.vue.d.ts +80 -0
  44. package/dist/components/VibeNavbar.vue.d.ts +71 -0
  45. package/dist/components/VibeNavbarBrand.vue.d.ts +42 -0
  46. package/dist/components/VibeNavbarNav.vue.d.ts +36 -0
  47. package/dist/components/VibeNavbarToggle.vue.d.ts +26 -0
  48. package/dist/components/VibeOffcanvas.vue.d.ts +89 -0
  49. package/dist/components/VibePagination.vue.d.ts +72 -0
  50. package/dist/components/VibePaginationItem.vue.d.ts +62 -0
  51. package/dist/components/VibePlaceholder.vue.d.ts +70 -0
  52. package/dist/components/VibePopover.vue.d.ts +69 -0
  53. package/dist/components/VibeProgress.vue.d.ts +33 -0
  54. package/dist/components/VibeProgressBar.vue.d.ts +88 -0
  55. package/dist/components/VibeRow.vue.d.ts +269 -0
  56. package/dist/components/VibeScrollspy.vue.d.ts +71 -0
  57. package/dist/components/VibeSpinner.vue.d.ts +55 -0
  58. package/dist/components/VibeTabContent.vue.d.ts +44 -0
  59. package/dist/components/VibeTabPane.vue.d.ts +70 -0
  60. package/dist/components/VibeToast.vue.d.ts +90 -0
  61. package/dist/components/VibeTooltip.vue.d.ts +60 -0
  62. package/dist/components/index.d.ts +63 -0
  63. package/dist/composables/useFormValidation.d.ts +26 -0
  64. package/dist/index.d.ts +3 -0
  65. package/dist/main.d.ts +0 -0
  66. package/dist/types/index.d.ts +2 -0
  67. package/dist/types.d.ts +100 -0
  68. package/dist/vibeui.es.js +1262 -1018
  69. package/dist/vibeui.umd.js +1 -1
  70. package/package.json +9 -4
@@ -0,0 +1,126 @@
1
+ import { Size } from '../types';
2
+ declare function __VLS_template(): {
3
+ attrs: Partial<{}>;
4
+ slots: {
5
+ header?(_: {}): any;
6
+ default?(_: {}): any;
7
+ footer?(_: {}): any;
8
+ };
9
+ refs: {};
10
+ rootEl: HTMLDivElement;
11
+ };
12
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
13
+ declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
14
+ id: {
15
+ type: StringConstructor;
16
+ required: true;
17
+ };
18
+ modelValue: {
19
+ type: BooleanConstructor;
20
+ default: boolean;
21
+ };
22
+ title: {
23
+ type: StringConstructor;
24
+ default: string;
25
+ };
26
+ size: {
27
+ type: () => Size | "xl";
28
+ default: undefined;
29
+ };
30
+ centered: {
31
+ type: BooleanConstructor;
32
+ default: boolean;
33
+ };
34
+ scrollable: {
35
+ type: BooleanConstructor;
36
+ default: boolean;
37
+ };
38
+ fullscreen: {
39
+ type: (StringConstructor | BooleanConstructor)[];
40
+ default: boolean;
41
+ };
42
+ staticBackdrop: {
43
+ type: BooleanConstructor;
44
+ default: boolean;
45
+ };
46
+ hideHeader: {
47
+ type: BooleanConstructor;
48
+ default: boolean;
49
+ };
50
+ hideFooter: {
51
+ type: BooleanConstructor;
52
+ default: boolean;
53
+ };
54
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
55
+ "update:modelValue": (...args: any[]) => void;
56
+ "component-error": (...args: any[]) => void;
57
+ show: (...args: any[]) => void;
58
+ shown: (...args: any[]) => void;
59
+ hide: (...args: any[]) => void;
60
+ hidden: (...args: any[]) => void;
61
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
62
+ id: {
63
+ type: StringConstructor;
64
+ required: true;
65
+ };
66
+ modelValue: {
67
+ type: BooleanConstructor;
68
+ default: boolean;
69
+ };
70
+ title: {
71
+ type: StringConstructor;
72
+ default: string;
73
+ };
74
+ size: {
75
+ type: () => Size | "xl";
76
+ default: undefined;
77
+ };
78
+ centered: {
79
+ type: BooleanConstructor;
80
+ default: boolean;
81
+ };
82
+ scrollable: {
83
+ type: BooleanConstructor;
84
+ default: boolean;
85
+ };
86
+ fullscreen: {
87
+ type: (StringConstructor | BooleanConstructor)[];
88
+ default: boolean;
89
+ };
90
+ staticBackdrop: {
91
+ type: BooleanConstructor;
92
+ default: boolean;
93
+ };
94
+ hideHeader: {
95
+ type: BooleanConstructor;
96
+ default: boolean;
97
+ };
98
+ hideFooter: {
99
+ type: BooleanConstructor;
100
+ default: boolean;
101
+ };
102
+ }>> & Readonly<{
103
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
104
+ "onComponent-error"?: ((...args: any[]) => any) | undefined;
105
+ onShow?: ((...args: any[]) => any) | undefined;
106
+ onShown?: ((...args: any[]) => any) | undefined;
107
+ onHide?: ((...args: any[]) => any) | undefined;
108
+ onHidden?: ((...args: any[]) => any) | undefined;
109
+ }>, {
110
+ modelValue: boolean;
111
+ title: string;
112
+ size: Size | "xl";
113
+ centered: boolean;
114
+ scrollable: boolean;
115
+ fullscreen: string | boolean;
116
+ staticBackdrop: boolean;
117
+ hideHeader: boolean;
118
+ hideFooter: boolean;
119
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
120
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
121
+ export default _default;
122
+ type __VLS_WithTemplateSlots<T, S> = T & {
123
+ new (): {
124
+ $slots: S;
125
+ };
126
+ };
@@ -0,0 +1,81 @@
1
+ import { Tag, NavItem } from '../types';
2
+ declare function __VLS_template(): any;
3
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
4
+ declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
5
+ tabs: {
6
+ type: BooleanConstructor;
7
+ default: boolean;
8
+ };
9
+ pills: {
10
+ type: BooleanConstructor;
11
+ default: boolean;
12
+ };
13
+ fill: {
14
+ type: BooleanConstructor;
15
+ default: boolean;
16
+ };
17
+ justified: {
18
+ type: BooleanConstructor;
19
+ default: boolean;
20
+ };
21
+ vertical: {
22
+ type: BooleanConstructor;
23
+ default: boolean;
24
+ };
25
+ tag: {
26
+ type: () => Tag | "ul";
27
+ default: string;
28
+ };
29
+ items: {
30
+ type: () => NavItem[];
31
+ default: undefined;
32
+ };
33
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
34
+ "component-error": (...args: any[]) => void;
35
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
36
+ tabs: {
37
+ type: BooleanConstructor;
38
+ default: boolean;
39
+ };
40
+ pills: {
41
+ type: BooleanConstructor;
42
+ default: boolean;
43
+ };
44
+ fill: {
45
+ type: BooleanConstructor;
46
+ default: boolean;
47
+ };
48
+ justified: {
49
+ type: BooleanConstructor;
50
+ default: boolean;
51
+ };
52
+ vertical: {
53
+ type: BooleanConstructor;
54
+ default: boolean;
55
+ };
56
+ tag: {
57
+ type: () => Tag | "ul";
58
+ default: string;
59
+ };
60
+ items: {
61
+ type: () => NavItem[];
62
+ default: undefined;
63
+ };
64
+ }>> & Readonly<{
65
+ "onComponent-error"?: ((...args: any[]) => any) | undefined;
66
+ }>, {
67
+ fill: boolean;
68
+ tag: "ul" | Tag;
69
+ vertical: boolean;
70
+ items: NavItem[];
71
+ tabs: boolean;
72
+ pills: boolean;
73
+ justified: boolean;
74
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
75
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
76
+ export default _default;
77
+ type __VLS_WithTemplateSlots<T, S> = T & {
78
+ new (): {
79
+ $slots: S;
80
+ };
81
+ };
@@ -0,0 +1,80 @@
1
+ declare function __VLS_template(): {
2
+ attrs: Partial<{}>;
3
+ slots: {
4
+ default?(_: {}): any;
5
+ };
6
+ refs: {};
7
+ rootEl: HTMLLIElement;
8
+ };
9
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
10
+ declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
11
+ active: {
12
+ type: BooleanConstructor;
13
+ default: boolean;
14
+ };
15
+ disabled: {
16
+ type: BooleanConstructor;
17
+ default: boolean;
18
+ };
19
+ href: {
20
+ type: StringConstructor;
21
+ default: undefined;
22
+ };
23
+ to: {
24
+ type: (StringConstructor | ObjectConstructor)[];
25
+ default: undefined;
26
+ };
27
+ tab: {
28
+ type: BooleanConstructor;
29
+ default: boolean;
30
+ };
31
+ target: {
32
+ type: StringConstructor;
33
+ default: undefined;
34
+ };
35
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
36
+ "component-error": (...args: any[]) => void;
37
+ click: (...args: any[]) => void;
38
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
39
+ active: {
40
+ type: BooleanConstructor;
41
+ default: boolean;
42
+ };
43
+ disabled: {
44
+ type: BooleanConstructor;
45
+ default: boolean;
46
+ };
47
+ href: {
48
+ type: StringConstructor;
49
+ default: undefined;
50
+ };
51
+ to: {
52
+ type: (StringConstructor | ObjectConstructor)[];
53
+ default: undefined;
54
+ };
55
+ tab: {
56
+ type: BooleanConstructor;
57
+ default: boolean;
58
+ };
59
+ target: {
60
+ type: StringConstructor;
61
+ default: undefined;
62
+ };
63
+ }>> & Readonly<{
64
+ "onComponent-error"?: ((...args: any[]) => any) | undefined;
65
+ onClick?: ((...args: any[]) => any) | undefined;
66
+ }>, {
67
+ disabled: boolean;
68
+ href: string;
69
+ to: string | Record<string, any>;
70
+ active: boolean;
71
+ target: string;
72
+ tab: boolean;
73
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLLIElement>;
74
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
75
+ export default _default;
76
+ type __VLS_WithTemplateSlots<T, S> = T & {
77
+ new (): {
78
+ $slots: S;
79
+ };
80
+ };
@@ -0,0 +1,71 @@
1
+ import { Variant, Tag, NavbarPosition } from '../types';
2
+ declare function __VLS_template(): {
3
+ attrs: Partial<{}>;
4
+ slots: {
5
+ default?(_: {}): any;
6
+ default?(_: {}): any;
7
+ };
8
+ refs: {};
9
+ rootEl: any;
10
+ };
11
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
12
+ declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
13
+ variant: {
14
+ type: () => Variant | "dark" | "light";
15
+ default: string;
16
+ };
17
+ expand: {
18
+ type: (StringConstructor | BooleanConstructor)[];
19
+ default: string;
20
+ };
21
+ container: {
22
+ type: (StringConstructor | BooleanConstructor)[];
23
+ default: boolean;
24
+ };
25
+ position: {
26
+ type: () => NavbarPosition;
27
+ default: undefined;
28
+ };
29
+ tag: {
30
+ type: () => Tag | "nav";
31
+ default: string;
32
+ };
33
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
34
+ "component-error": (...args: any[]) => void;
35
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
36
+ variant: {
37
+ type: () => Variant | "dark" | "light";
38
+ default: string;
39
+ };
40
+ expand: {
41
+ type: (StringConstructor | BooleanConstructor)[];
42
+ default: string;
43
+ };
44
+ container: {
45
+ type: (StringConstructor | BooleanConstructor)[];
46
+ default: boolean;
47
+ };
48
+ position: {
49
+ type: () => NavbarPosition;
50
+ default: undefined;
51
+ };
52
+ tag: {
53
+ type: () => Tag | "nav";
54
+ default: string;
55
+ };
56
+ }>> & Readonly<{
57
+ "onComponent-error"?: ((...args: any[]) => any) | undefined;
58
+ }>, {
59
+ variant: Variant;
60
+ tag: Tag;
61
+ container: string | boolean;
62
+ expand: string | boolean;
63
+ position: NavbarPosition;
64
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
65
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
66
+ export default _default;
67
+ type __VLS_WithTemplateSlots<T, S> = T & {
68
+ new (): {
69
+ $slots: S;
70
+ };
71
+ };
@@ -0,0 +1,42 @@
1
+ declare function __VLS_template(): {
2
+ attrs: Partial<{}>;
3
+ slots: {
4
+ default?(_: {}): any;
5
+ };
6
+ refs: {};
7
+ rootEl: any;
8
+ };
9
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
10
+ declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
11
+ href: {
12
+ type: StringConstructor;
13
+ default: undefined;
14
+ };
15
+ to: {
16
+ type: (StringConstructor | ObjectConstructor)[];
17
+ default: undefined;
18
+ };
19
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
20
+ "component-error": (...args: any[]) => void;
21
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
22
+ href: {
23
+ type: StringConstructor;
24
+ default: undefined;
25
+ };
26
+ to: {
27
+ type: (StringConstructor | ObjectConstructor)[];
28
+ default: undefined;
29
+ };
30
+ }>> & Readonly<{
31
+ "onComponent-error"?: ((...args: any[]) => any) | undefined;
32
+ }>, {
33
+ href: string;
34
+ to: string | Record<string, any>;
35
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
36
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
37
+ export default _default;
38
+ type __VLS_WithTemplateSlots<T, S> = T & {
39
+ new (): {
40
+ $slots: S;
41
+ };
42
+ };
@@ -0,0 +1,36 @@
1
+ import { NavItem } from '../types';
2
+ declare function __VLS_template(): any;
3
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
4
+ declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
5
+ tag: {
6
+ type: StringConstructor;
7
+ default: string;
8
+ };
9
+ items: {
10
+ type: () => NavItem[];
11
+ default: undefined;
12
+ };
13
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
14
+ "component-error": (...args: any[]) => void;
15
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
16
+ tag: {
17
+ type: StringConstructor;
18
+ default: string;
19
+ };
20
+ items: {
21
+ type: () => NavItem[];
22
+ default: undefined;
23
+ };
24
+ }>> & Readonly<{
25
+ "onComponent-error"?: ((...args: any[]) => any) | undefined;
26
+ }>, {
27
+ tag: string;
28
+ items: NavItem[];
29
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
30
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
31
+ export default _default;
32
+ type __VLS_WithTemplateSlots<T, S> = T & {
33
+ new (): {
34
+ $slots: S;
35
+ };
36
+ };
@@ -0,0 +1,26 @@
1
+ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
2
+ target: {
3
+ type: StringConstructor;
4
+ required: true;
5
+ };
6
+ ariaLabel: {
7
+ type: StringConstructor;
8
+ default: string;
9
+ };
10
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
11
+ "component-error": (...args: any[]) => void;
12
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
13
+ target: {
14
+ type: StringConstructor;
15
+ required: true;
16
+ };
17
+ ariaLabel: {
18
+ type: StringConstructor;
19
+ default: string;
20
+ };
21
+ }>> & Readonly<{
22
+ "onComponent-error"?: ((...args: any[]) => any) | undefined;
23
+ }>, {
24
+ ariaLabel: string;
25
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLButtonElement>;
26
+ export default _default;
@@ -0,0 +1,89 @@
1
+ import { OffcanvasPlacement } from '../types';
2
+ declare function __VLS_template(): {
3
+ attrs: Partial<{}>;
4
+ slots: {
5
+ header?(_: {}): any;
6
+ default?(_: {}): any;
7
+ };
8
+ refs: {};
9
+ rootEl: HTMLDivElement;
10
+ };
11
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
12
+ declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
13
+ id: {
14
+ type: StringConstructor;
15
+ required: true;
16
+ };
17
+ modelValue: {
18
+ type: BooleanConstructor;
19
+ default: boolean;
20
+ };
21
+ title: {
22
+ type: StringConstructor;
23
+ default: string;
24
+ };
25
+ placement: {
26
+ type: () => OffcanvasPlacement;
27
+ default: string;
28
+ };
29
+ backdrop: {
30
+ type: (StringConstructor | BooleanConstructor)[];
31
+ default: boolean;
32
+ };
33
+ scroll: {
34
+ type: BooleanConstructor;
35
+ default: boolean;
36
+ };
37
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
38
+ "update:modelValue": (...args: any[]) => void;
39
+ "component-error": (...args: any[]) => void;
40
+ show: (...args: any[]) => void;
41
+ shown: (...args: any[]) => void;
42
+ hide: (...args: any[]) => void;
43
+ hidden: (...args: any[]) => void;
44
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
45
+ id: {
46
+ type: StringConstructor;
47
+ required: true;
48
+ };
49
+ modelValue: {
50
+ type: BooleanConstructor;
51
+ default: boolean;
52
+ };
53
+ title: {
54
+ type: StringConstructor;
55
+ default: string;
56
+ };
57
+ placement: {
58
+ type: () => OffcanvasPlacement;
59
+ default: string;
60
+ };
61
+ backdrop: {
62
+ type: (StringConstructor | BooleanConstructor)[];
63
+ default: boolean;
64
+ };
65
+ scroll: {
66
+ type: BooleanConstructor;
67
+ default: boolean;
68
+ };
69
+ }>> & Readonly<{
70
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
71
+ "onComponent-error"?: ((...args: any[]) => any) | undefined;
72
+ onShow?: ((...args: any[]) => any) | undefined;
73
+ onShown?: ((...args: any[]) => any) | undefined;
74
+ onHide?: ((...args: any[]) => any) | undefined;
75
+ onHidden?: ((...args: any[]) => any) | undefined;
76
+ }>, {
77
+ modelValue: boolean;
78
+ scroll: boolean;
79
+ title: string;
80
+ placement: OffcanvasPlacement;
81
+ backdrop: string | boolean;
82
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
83
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
84
+ export default _default;
85
+ type __VLS_WithTemplateSlots<T, S> = T & {
86
+ new (): {
87
+ $slots: S;
88
+ };
89
+ };
@@ -0,0 +1,72 @@
1
+ import { Size } from '../types';
2
+ declare function __VLS_template(): {
3
+ attrs: Partial<{}>;
4
+ slots: {
5
+ default?(_: {}): any;
6
+ };
7
+ refs: {};
8
+ rootEl: HTMLElement;
9
+ };
10
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
11
+ declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
12
+ size: {
13
+ type: () => Size;
14
+ default: undefined;
15
+ };
16
+ ariaLabel: {
17
+ type: StringConstructor;
18
+ default: string;
19
+ };
20
+ totalPages: {
21
+ type: NumberConstructor;
22
+ default: undefined;
23
+ };
24
+ currentPage: {
25
+ type: NumberConstructor;
26
+ default: number;
27
+ };
28
+ showPrevNext: {
29
+ type: BooleanConstructor;
30
+ default: boolean;
31
+ };
32
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
33
+ "component-error": (...args: any[]) => void;
34
+ "page-click": (...args: any[]) => void;
35
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
36
+ size: {
37
+ type: () => Size;
38
+ default: undefined;
39
+ };
40
+ ariaLabel: {
41
+ type: StringConstructor;
42
+ default: string;
43
+ };
44
+ totalPages: {
45
+ type: NumberConstructor;
46
+ default: undefined;
47
+ };
48
+ currentPage: {
49
+ type: NumberConstructor;
50
+ default: number;
51
+ };
52
+ showPrevNext: {
53
+ type: BooleanConstructor;
54
+ default: boolean;
55
+ };
56
+ }>> & Readonly<{
57
+ "onComponent-error"?: ((...args: any[]) => any) | undefined;
58
+ "onPage-click"?: ((...args: any[]) => any) | undefined;
59
+ }>, {
60
+ size: Size;
61
+ ariaLabel: string;
62
+ totalPages: number;
63
+ currentPage: number;
64
+ showPrevNext: boolean;
65
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLElement>;
66
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
67
+ export default _default;
68
+ type __VLS_WithTemplateSlots<T, S> = T & {
69
+ new (): {
70
+ $slots: S;
71
+ };
72
+ };
@@ -0,0 +1,62 @@
1
+ declare function __VLS_template(): {
2
+ attrs: Partial<{}>;
3
+ slots: {
4
+ default?(_: {}): any;
5
+ };
6
+ refs: {};
7
+ rootEl: HTMLLIElement;
8
+ };
9
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
10
+ declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
11
+ active: {
12
+ type: BooleanConstructor;
13
+ default: boolean;
14
+ };
15
+ disabled: {
16
+ type: BooleanConstructor;
17
+ default: boolean;
18
+ };
19
+ href: {
20
+ type: StringConstructor;
21
+ default: undefined;
22
+ };
23
+ to: {
24
+ type: (StringConstructor | ObjectConstructor)[];
25
+ default: undefined;
26
+ };
27
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
28
+ "component-error": (...args: any[]) => void;
29
+ click: (...args: any[]) => void;
30
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
31
+ active: {
32
+ type: BooleanConstructor;
33
+ default: boolean;
34
+ };
35
+ disabled: {
36
+ type: BooleanConstructor;
37
+ default: boolean;
38
+ };
39
+ href: {
40
+ type: StringConstructor;
41
+ default: undefined;
42
+ };
43
+ to: {
44
+ type: (StringConstructor | ObjectConstructor)[];
45
+ default: undefined;
46
+ };
47
+ }>> & Readonly<{
48
+ "onComponent-error"?: ((...args: any[]) => any) | undefined;
49
+ onClick?: ((...args: any[]) => any) | undefined;
50
+ }>, {
51
+ disabled: boolean;
52
+ href: string;
53
+ to: string | Record<string, any>;
54
+ active: boolean;
55
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLLIElement>;
56
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
57
+ export default _default;
58
+ type __VLS_WithTemplateSlots<T, S> = T & {
59
+ new (): {
60
+ $slots: S;
61
+ };
62
+ };