@velkymx/vibeui 0.4.2 → 0.5.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.
- package/README.md +96 -78
- package/dist/components/VibeAccordion.vue.d.ts +12 -4
- package/dist/components/VibeBreadcrumb.vue.d.ts +8 -4
- package/dist/components/VibeCard.vue.d.ts +32 -21
- package/dist/components/VibeCarousel.vue.d.ts +7 -6
- package/dist/components/VibeDataTable.vue.d.ts +68 -255
- package/dist/components/VibeDropdown.vue.d.ts +13 -4
- package/dist/components/VibeFormCheckbox.vue.d.ts +4 -3
- package/dist/components/VibeFormDatepicker.vue.d.ts +5 -4
- package/dist/components/VibeFormInput.vue.d.ts +14 -15
- package/dist/components/VibeFormRadio.vue.d.ts +4 -3
- package/dist/components/VibeFormSelect.vue.d.ts +4 -3
- package/dist/components/VibeFormSpinbutton.vue.d.ts +5 -4
- package/dist/components/VibeFormSwitch.vue.d.ts +4 -3
- package/dist/components/VibeFormTextarea.vue.d.ts +4 -3
- package/dist/components/VibeFormWysiwyg.vue.d.ts +12 -13
- package/dist/components/VibeListGroup.vue.d.ts +15 -4
- package/dist/components/VibeModal.vue.d.ts +6 -2
- package/dist/components/VibeNav.vue.d.ts +15 -4
- package/dist/components/VibeNavbarNav.vue.d.ts +14 -1
- package/dist/components/VibePagination.vue.d.ts +32 -4
- package/dist/components/VibeProgress.vue.d.ts +13 -1
- package/dist/components/VibeTabContent.vue.d.ts +22 -2
- package/dist/components/VibeToast.vue.d.ts +6 -2
- package/dist/components/index.d.ts +4 -20
- package/dist/composables/useFormValidation.d.ts +10 -8
- package/dist/types.d.ts +16 -0
- package/dist/vibeui.css +1 -1
- package/dist/vibeui.es.js +1477 -1627
- package/dist/vibeui.umd.js +1 -1
- package/package.json +10 -1
- package/dist/components/VibeAccordionItem.vue.d.ts +0 -57
- package/dist/components/VibeBreadcrumbItem.vue.d.ts +0 -51
- package/dist/components/VibeCardBody.vue.d.ts +0 -34
- package/dist/components/VibeCardFooter.vue.d.ts +0 -34
- package/dist/components/VibeCardHeader.vue.d.ts +0 -34
- package/dist/components/VibeCardImg.vue.d.ts +0 -44
- package/dist/components/VibeCardText.vue.d.ts +0 -33
- package/dist/components/VibeCardTitle.vue.d.ts +0 -33
- package/dist/components/VibeCarouselSlide.vue.d.ts +0 -80
- package/dist/components/VibeDropdownItem.vue.d.ts +0 -81
- package/dist/components/VibeListGroupItem.vue.d.ts +0 -90
- package/dist/components/VibeNavItem.vue.d.ts +0 -80
- package/dist/components/VibePaginationItem.vue.d.ts +0 -62
- package/dist/components/VibeProgressBar.vue.d.ts +0 -88
- package/dist/components/VibeTabPane.vue.d.ts +0 -70
|
@@ -1,88 +0,0 @@
|
|
|
1
|
-
import { Variant } from '../types';
|
|
2
|
-
declare function __VLS_template(): {
|
|
3
|
-
attrs: Partial<{}>;
|
|
4
|
-
slots: {
|
|
5
|
-
default?(_: {}): any;
|
|
6
|
-
};
|
|
7
|
-
refs: {};
|
|
8
|
-
rootEl: HTMLDivElement;
|
|
9
|
-
};
|
|
10
|
-
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
11
|
-
declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
12
|
-
value: {
|
|
13
|
-
type: NumberConstructor;
|
|
14
|
-
default: number;
|
|
15
|
-
};
|
|
16
|
-
max: {
|
|
17
|
-
type: NumberConstructor;
|
|
18
|
-
default: number;
|
|
19
|
-
};
|
|
20
|
-
variant: {
|
|
21
|
-
type: () => Variant;
|
|
22
|
-
default: undefined;
|
|
23
|
-
};
|
|
24
|
-
striped: {
|
|
25
|
-
type: BooleanConstructor;
|
|
26
|
-
default: boolean;
|
|
27
|
-
};
|
|
28
|
-
animated: {
|
|
29
|
-
type: BooleanConstructor;
|
|
30
|
-
default: boolean;
|
|
31
|
-
};
|
|
32
|
-
label: {
|
|
33
|
-
type: StringConstructor;
|
|
34
|
-
default: undefined;
|
|
35
|
-
};
|
|
36
|
-
showValue: {
|
|
37
|
-
type: BooleanConstructor;
|
|
38
|
-
default: boolean;
|
|
39
|
-
};
|
|
40
|
-
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
41
|
-
"component-error": (...args: any[]) => void;
|
|
42
|
-
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
43
|
-
value: {
|
|
44
|
-
type: NumberConstructor;
|
|
45
|
-
default: number;
|
|
46
|
-
};
|
|
47
|
-
max: {
|
|
48
|
-
type: NumberConstructor;
|
|
49
|
-
default: number;
|
|
50
|
-
};
|
|
51
|
-
variant: {
|
|
52
|
-
type: () => Variant;
|
|
53
|
-
default: undefined;
|
|
54
|
-
};
|
|
55
|
-
striped: {
|
|
56
|
-
type: BooleanConstructor;
|
|
57
|
-
default: boolean;
|
|
58
|
-
};
|
|
59
|
-
animated: {
|
|
60
|
-
type: BooleanConstructor;
|
|
61
|
-
default: boolean;
|
|
62
|
-
};
|
|
63
|
-
label: {
|
|
64
|
-
type: StringConstructor;
|
|
65
|
-
default: undefined;
|
|
66
|
-
};
|
|
67
|
-
showValue: {
|
|
68
|
-
type: BooleanConstructor;
|
|
69
|
-
default: boolean;
|
|
70
|
-
};
|
|
71
|
-
}>> & Readonly<{
|
|
72
|
-
"onComponent-error"?: ((...args: any[]) => any) | undefined;
|
|
73
|
-
}>, {
|
|
74
|
-
variant: Variant;
|
|
75
|
-
label: string;
|
|
76
|
-
value: number;
|
|
77
|
-
max: number;
|
|
78
|
-
striped: boolean;
|
|
79
|
-
animated: boolean;
|
|
80
|
-
showValue: boolean;
|
|
81
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
82
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
83
|
-
export default _default;
|
|
84
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
85
|
-
new (): {
|
|
86
|
-
$slots: S;
|
|
87
|
-
};
|
|
88
|
-
};
|
|
@@ -1,70 +0,0 @@
|
|
|
1
|
-
import { PropType } from 'vue';
|
|
2
|
-
import { Tag } from '../types';
|
|
3
|
-
declare function __VLS_template(): {
|
|
4
|
-
attrs: Partial<{}>;
|
|
5
|
-
slots: {
|
|
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
|
-
id: {
|
|
14
|
-
type: StringConstructor;
|
|
15
|
-
required: true;
|
|
16
|
-
};
|
|
17
|
-
active: {
|
|
18
|
-
type: BooleanConstructor;
|
|
19
|
-
default: boolean;
|
|
20
|
-
};
|
|
21
|
-
fade: {
|
|
22
|
-
type: BooleanConstructor;
|
|
23
|
-
default: boolean;
|
|
24
|
-
};
|
|
25
|
-
tag: {
|
|
26
|
-
type: PropType<Tag>;
|
|
27
|
-
default: string;
|
|
28
|
-
};
|
|
29
|
-
ariaLabelledby: {
|
|
30
|
-
type: StringConstructor;
|
|
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
|
-
id: {
|
|
37
|
-
type: StringConstructor;
|
|
38
|
-
required: true;
|
|
39
|
-
};
|
|
40
|
-
active: {
|
|
41
|
-
type: BooleanConstructor;
|
|
42
|
-
default: boolean;
|
|
43
|
-
};
|
|
44
|
-
fade: {
|
|
45
|
-
type: BooleanConstructor;
|
|
46
|
-
default: boolean;
|
|
47
|
-
};
|
|
48
|
-
tag: {
|
|
49
|
-
type: PropType<Tag>;
|
|
50
|
-
default: string;
|
|
51
|
-
};
|
|
52
|
-
ariaLabelledby: {
|
|
53
|
-
type: StringConstructor;
|
|
54
|
-
default: undefined;
|
|
55
|
-
};
|
|
56
|
-
}>> & Readonly<{
|
|
57
|
-
"onComponent-error"?: ((...args: any[]) => any) | undefined;
|
|
58
|
-
}>, {
|
|
59
|
-
tag: Tag;
|
|
60
|
-
active: boolean;
|
|
61
|
-
fade: boolean;
|
|
62
|
-
ariaLabelledby: string;
|
|
63
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
64
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
65
|
-
export default _default;
|
|
66
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
67
|
-
new (): {
|
|
68
|
-
$slots: S;
|
|
69
|
-
};
|
|
70
|
-
};
|