@point-hub/papp 0.0.44 → 0.0.46
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/dist/components/base-accordion-item.vue.d.ts +7 -5
- package/dist/components/base-accordion.vue.d.ts +6 -4
- package/dist/components/base-alert.vue.d.ts +7 -5
- package/dist/components/base-autocomplete.vue.d.ts +2 -2
- package/dist/components/base-avatar-group.vue.d.ts +4 -2
- package/dist/components/base-badge.vue.d.ts +6 -4
- package/dist/components/base-breadcrumb.vue.d.ts +9 -7
- package/dist/components/base-button.vue.d.ts +6 -4
- package/dist/components/base-card.vue.d.ts +31 -34
- package/dist/components/base-checkbox.vue.d.ts +1 -1
- package/dist/components/base-datepicker.vue.d.ts +2 -2
- package/dist/components/base-dropdown-item.vue.d.ts +8 -6
- package/dist/components/base-dropdown.vue.d.ts +7 -5
- package/dist/components/base-file-upload.vue.d.ts +10 -8
- package/dist/components/base-form.vue.d.ts +8 -6
- package/dist/components/base-input-mask.vue.d.ts +1 -1
- package/dist/components/base-input-number.vue.d.ts +1 -1
- package/dist/components/base-input.vue.d.ts +8 -6
- package/dist/components/base-link.vue.d.ts +6 -4
- package/dist/components/base-modal.vue.d.ts +6 -4
- package/dist/components/base-popover.vue.d.ts +7 -5
- package/dist/components/base-progress.vue.d.ts +6 -4
- package/dist/components/base-radio.vue.d.ts +10 -8
- package/dist/components/base-switch.vue.d.ts +6 -4
- package/dist/components/base-tab-group.vue.d.ts +4 -2
- package/dist/components/base-tab-list.vue.d.ts +4 -2
- package/dist/components/base-tab-panel.vue.d.ts +4 -2
- package/dist/components/base-tab-panels.vue.d.ts +4 -2
- package/dist/components/base-tab.vue.d.ts +4 -2
- package/dist/components/base-table.vue.d.ts +4 -2
- package/dist/components/base-textarea.vue.d.ts +1 -1
- package/dist/components/base-timeline-content.vue.d.ts +4 -2
- package/dist/components/base-timeline.vue.d.ts +4 -2
- package/dist/components/base-toast.vue.d.ts +9 -7
- package/dist/components/base-tooltip.vue.d.ts +7 -5
- package/dist/components/base-treeview.vue.d.ts +9 -7
- package/dist/index.js +1794 -1936
- package/dist/index.umd.cjs +8 -8
- package/dist/style.css +1 -1
- package/package.json +23 -23
|
@@ -1,4 +1,8 @@
|
|
|
1
|
-
declare
|
|
1
|
+
declare function __VLS_template(): {
|
|
2
|
+
title?(_: {}): any;
|
|
3
|
+
default?(_: {}): any;
|
|
4
|
+
};
|
|
5
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
2
6
|
itemId: number;
|
|
3
7
|
title?: string;
|
|
4
8
|
content?: string;
|
|
@@ -15,10 +19,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
15
19
|
}>>>, {
|
|
16
20
|
title: string;
|
|
17
21
|
content: string;
|
|
18
|
-
}, {}
|
|
19
|
-
|
|
20
|
-
default?(_: {}): any;
|
|
21
|
-
}>;
|
|
22
|
+
}, {}>;
|
|
23
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
22
24
|
export default _default;
|
|
23
25
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
24
26
|
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
@@ -1,4 +1,7 @@
|
|
|
1
|
-
declare
|
|
1
|
+
declare function __VLS_template(): {
|
|
2
|
+
default?(_: {}): any;
|
|
3
|
+
};
|
|
4
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
2
5
|
alwaysOpen?: boolean;
|
|
3
6
|
}>, {
|
|
4
7
|
alwaysOpen: boolean;
|
|
@@ -8,9 +11,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
8
11
|
alwaysOpen: boolean;
|
|
9
12
|
}>>>, {
|
|
10
13
|
alwaysOpen: boolean;
|
|
11
|
-
}, {}
|
|
12
|
-
|
|
13
|
-
}>;
|
|
14
|
+
}, {}>;
|
|
15
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
14
16
|
export default _default;
|
|
15
17
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
16
18
|
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
export type BaseAlertColorType = 'primary' | 'secondary' | 'info' | 'success' | 'warning' | 'danger';
|
|
2
2
|
export type BaseAlertIconType = 'info' | 'success' | 'warning' | 'danger';
|
|
3
3
|
export type BaseAlertVariantType = 'fill' | 'light' | 'outline';
|
|
4
|
-
declare
|
|
4
|
+
declare function __VLS_template(): {
|
|
5
|
+
title?(_: {}): any;
|
|
6
|
+
default?(_: {}): any;
|
|
7
|
+
};
|
|
8
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
5
9
|
title?: string;
|
|
6
10
|
icon?: BaseAlertIconType;
|
|
7
11
|
color?: BaseAlertColorType;
|
|
@@ -33,10 +37,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
33
37
|
variant: BaseAlertVariantType;
|
|
34
38
|
isClosed: boolean;
|
|
35
39
|
isDismissable: boolean;
|
|
36
|
-
}, {}
|
|
37
|
-
|
|
38
|
-
default?(_: {}): any;
|
|
39
|
-
}>;
|
|
40
|
+
}, {}>;
|
|
41
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
40
42
|
export default _default;
|
|
41
43
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
42
44
|
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
@@ -29,7 +29,7 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
29
29
|
required: boolean;
|
|
30
30
|
disabled: boolean;
|
|
31
31
|
}>, {
|
|
32
|
-
inputRef: import("vue").Ref<any>;
|
|
32
|
+
inputRef: import("vue").Ref<any, any>;
|
|
33
33
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
34
34
|
"update:modelValue": (value: BaseAutocompleteOptionInterface) => void;
|
|
35
35
|
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
@@ -46,7 +46,7 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
46
46
|
}, {
|
|
47
47
|
required: boolean;
|
|
48
48
|
disabled: boolean;
|
|
49
|
-
modelValue: BaseAutocompleteOptionInterface;
|
|
49
|
+
modelValue: BaseAutocompleteOptionInterface | null;
|
|
50
50
|
layout: BaseFormLayoutType;
|
|
51
51
|
border: BaseAutocompleteBorderType;
|
|
52
52
|
autofocus: boolean;
|
|
@@ -1,6 +1,8 @@
|
|
|
1
|
-
declare
|
|
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,9 @@
|
|
|
1
1
|
export type BaseBadgeColorType = 'primary' | 'secondary' | 'info' | 'success' | 'warning' | 'danger';
|
|
2
2
|
export type BaseBadgeVariantType = 'filled' | 'light' | 'outlined';
|
|
3
|
-
declare
|
|
3
|
+
declare function __VLS_template(): {
|
|
4
|
+
default?(_: {}): any;
|
|
5
|
+
};
|
|
6
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
4
7
|
color?: BaseBadgeColorType;
|
|
5
8
|
variant?: BaseBadgeVariantType;
|
|
6
9
|
withDot?: boolean;
|
|
@@ -20,9 +23,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
20
23
|
color: BaseBadgeColorType;
|
|
21
24
|
variant: BaseBadgeVariantType;
|
|
22
25
|
withDot: boolean;
|
|
23
|
-
}, {}
|
|
24
|
-
|
|
25
|
-
}>;
|
|
26
|
+
}, {}>;
|
|
27
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
26
28
|
export default _default;
|
|
27
29
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
28
30
|
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
@@ -3,7 +3,13 @@ export interface BaseBreadcrumbItemInterface {
|
|
|
3
3
|
path?: string;
|
|
4
4
|
}
|
|
5
5
|
export type BaseBreadcrumbSeparatoryType = 'angle' | 'arrow' | 'slash';
|
|
6
|
-
declare
|
|
6
|
+
declare function __VLS_template(): {
|
|
7
|
+
default?(_: {
|
|
8
|
+
index: number;
|
|
9
|
+
item: BaseBreadcrumbItemInterface;
|
|
10
|
+
}): any;
|
|
11
|
+
};
|
|
12
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
7
13
|
items: BaseBreadcrumbItemInterface[];
|
|
8
14
|
separator: BaseBreadcrumbSeparatoryType;
|
|
9
15
|
}>, {
|
|
@@ -15,12 +21,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
15
21
|
separator: string;
|
|
16
22
|
}>>>, {
|
|
17
23
|
separator: BaseBreadcrumbSeparatoryType;
|
|
18
|
-
}, {}
|
|
19
|
-
|
|
20
|
-
index: number;
|
|
21
|
-
item: BaseBreadcrumbItemInterface;
|
|
22
|
-
}): any;
|
|
23
|
-
}>;
|
|
24
|
+
}, {}>;
|
|
25
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
24
26
|
export default _default;
|
|
25
27
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
26
28
|
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
@@ -3,7 +3,10 @@ export type BaseButtonVariantType = 'filled' | 'light' | 'outlined' | 'text';
|
|
|
3
3
|
export type BaseButtonShapeType = 'sharp' | 'rounded' | 'pill';
|
|
4
4
|
export type BaseButtonSizeType = 'none' | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl';
|
|
5
5
|
export type BaseButtonType = 'submit' | 'button' | 'reset';
|
|
6
|
-
declare
|
|
6
|
+
declare function __VLS_template(): {
|
|
7
|
+
default?(_: {}): any;
|
|
8
|
+
};
|
|
9
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
7
10
|
type?: BaseButtonType;
|
|
8
11
|
size?: BaseButtonSizeType;
|
|
9
12
|
color?: BaseButtonColorType;
|
|
@@ -43,9 +46,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
43
46
|
shape: BaseButtonShapeType;
|
|
44
47
|
isBlock: boolean;
|
|
45
48
|
isLoading: boolean;
|
|
46
|
-
}, {}
|
|
47
|
-
|
|
48
|
-
}>;
|
|
49
|
+
}, {}>;
|
|
50
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
49
51
|
export default _default;
|
|
50
52
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
51
53
|
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
@@ -1,41 +1,38 @@
|
|
|
1
1
|
export type BaseCardShapeType = 'sharp' | 'round';
|
|
2
|
-
declare
|
|
3
|
-
shadow?: boolean;
|
|
4
|
-
shape?: BaseCardShapeType;
|
|
5
|
-
}>, {
|
|
6
|
-
shadow: boolean;
|
|
7
|
-
shape: string;
|
|
8
|
-
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
9
|
-
shadow?: boolean;
|
|
10
|
-
shape?: BaseCardShapeType;
|
|
11
|
-
}>, {
|
|
12
|
-
shadow: boolean;
|
|
13
|
-
shape: string;
|
|
14
|
-
}>>>, {
|
|
15
|
-
shape: BaseCardShapeType;
|
|
16
|
-
shadow: boolean;
|
|
17
|
-
}, {}>, {
|
|
2
|
+
declare function __VLS_template(): {
|
|
18
3
|
header?(_: {}): any;
|
|
19
4
|
default?(_: {}): any;
|
|
20
|
-
}>;
|
|
21
|
-
export default _default;
|
|
22
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
23
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
24
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
25
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
26
|
-
} : {
|
|
27
|
-
type: import('vue').PropType<T[K]>;
|
|
28
|
-
required: true;
|
|
29
|
-
};
|
|
30
|
-
};
|
|
31
|
-
type __VLS_WithDefaults<P, D> = {
|
|
32
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
33
|
-
default: D[K];
|
|
34
|
-
}> : P[K];
|
|
35
5
|
};
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
6
|
+
declare const __VLS_component: import("vue").DefineComponent<{
|
|
7
|
+
bgColor: import("vue").PropType<"string">;
|
|
8
|
+
titleColor: import("vue").PropType<"string">;
|
|
9
|
+
bodyColor: import("vue").PropType<"string">;
|
|
10
|
+
shape: {
|
|
11
|
+
type: import("vue").PropType<BaseCardShapeType>;
|
|
12
|
+
default: string;
|
|
13
|
+
};
|
|
14
|
+
shadow: {
|
|
15
|
+
type: import("vue").PropType<boolean>;
|
|
16
|
+
default: boolean;
|
|
17
|
+
};
|
|
18
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
19
|
+
bgColor: import("vue").PropType<"string">;
|
|
20
|
+
titleColor: import("vue").PropType<"string">;
|
|
21
|
+
bodyColor: import("vue").PropType<"string">;
|
|
22
|
+
shape: {
|
|
23
|
+
type: import("vue").PropType<BaseCardShapeType>;
|
|
24
|
+
default: string;
|
|
25
|
+
};
|
|
26
|
+
shadow: {
|
|
27
|
+
type: import("vue").PropType<boolean>;
|
|
28
|
+
default: boolean;
|
|
29
|
+
};
|
|
30
|
+
}>>, {
|
|
31
|
+
shape: BaseCardShapeType;
|
|
32
|
+
shadow: boolean;
|
|
33
|
+
}, {}>;
|
|
34
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
35
|
+
export default _default;
|
|
39
36
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
40
37
|
new (): {
|
|
41
38
|
$slots: S;
|
|
@@ -21,7 +21,7 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
21
21
|
required: boolean;
|
|
22
22
|
disabled: boolean;
|
|
23
23
|
}>, {
|
|
24
|
-
inputRef: import("vue").Ref<any>;
|
|
24
|
+
inputRef: import("vue").Ref<any, any>;
|
|
25
25
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
26
26
|
"update:modelValue": (value: boolean) => void;
|
|
27
27
|
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
@@ -20,8 +20,8 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
20
20
|
required: boolean;
|
|
21
21
|
disabled: boolean;
|
|
22
22
|
}>, {
|
|
23
|
-
inputRef: import("vue").Ref<any>;
|
|
24
|
-
dateRef: import("vue").Ref<any>;
|
|
23
|
+
inputRef: import("vue").Ref<any, any>;
|
|
24
|
+
dateRef: import("vue").Ref<any, any>;
|
|
25
25
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
26
26
|
isoValue: (value: string) => void;
|
|
27
27
|
"update:modelValue": (value: string) => void;
|
|
@@ -1,17 +1,19 @@
|
|
|
1
1
|
export interface Props {
|
|
2
2
|
text?: string;
|
|
3
3
|
}
|
|
4
|
-
declare
|
|
4
|
+
declare function __VLS_template(): {
|
|
5
|
+
default?(_: {
|
|
6
|
+
active: any;
|
|
7
|
+
}): any;
|
|
8
|
+
};
|
|
9
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
5
10
|
text: string;
|
|
6
11
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
7
12
|
text: string;
|
|
8
13
|
}>>>, {
|
|
9
14
|
text: string;
|
|
10
|
-
}, {}
|
|
11
|
-
|
|
12
|
-
active: any;
|
|
13
|
-
}): any;
|
|
14
|
-
}>;
|
|
15
|
+
}, {}>;
|
|
16
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
15
17
|
export default _default;
|
|
16
18
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
17
19
|
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
@@ -3,7 +3,11 @@ export interface Props {
|
|
|
3
3
|
position?: BaseDropdownPosition;
|
|
4
4
|
text?: string;
|
|
5
5
|
}
|
|
6
|
-
declare
|
|
6
|
+
declare function __VLS_template(): {
|
|
7
|
+
trigger?(_: {}): any;
|
|
8
|
+
default?(_: {}): any;
|
|
9
|
+
};
|
|
10
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
7
11
|
position: string;
|
|
8
12
|
text: string;
|
|
9
13
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
@@ -12,10 +16,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
12
16
|
}>>>, {
|
|
13
17
|
text: string;
|
|
14
18
|
position: BaseDropdownPosition;
|
|
15
|
-
}, {}
|
|
16
|
-
|
|
17
|
-
default?(_: {}): any;
|
|
18
|
-
}>;
|
|
19
|
+
}, {}>;
|
|
20
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
19
21
|
export default _default;
|
|
20
22
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
21
23
|
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
@@ -14,7 +14,12 @@ export interface Props {
|
|
|
14
14
|
helpers?: string[];
|
|
15
15
|
errors?: string[];
|
|
16
16
|
}
|
|
17
|
-
declare
|
|
17
|
+
declare function __VLS_template(): {
|
|
18
|
+
default?(_: {
|
|
19
|
+
fileRef: any;
|
|
20
|
+
}): any;
|
|
21
|
+
};
|
|
22
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
18
23
|
border: string;
|
|
19
24
|
layout: string;
|
|
20
25
|
multiple: boolean;
|
|
@@ -22,8 +27,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
22
27
|
required: boolean;
|
|
23
28
|
disabled: boolean;
|
|
24
29
|
}>, {
|
|
25
|
-
fileRef: import("vue").Ref<any>;
|
|
26
|
-
inputRef: import("vue").Ref<any>;
|
|
30
|
+
fileRef: import("vue").Ref<any, any>;
|
|
31
|
+
inputRef: import("vue").Ref<any, any>;
|
|
27
32
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
28
33
|
change: (event: any) => void;
|
|
29
34
|
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
@@ -42,11 +47,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
42
47
|
border: BaseFileUploadBorderType;
|
|
43
48
|
autofocus: boolean;
|
|
44
49
|
multiple: boolean;
|
|
45
|
-
}, {}
|
|
46
|
-
|
|
47
|
-
fileRef: any;
|
|
48
|
-
}): any;
|
|
49
|
-
}>;
|
|
50
|
+
}, {}>;
|
|
51
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
50
52
|
export default _default;
|
|
51
53
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
52
54
|
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
@@ -8,7 +8,12 @@ export interface Props {
|
|
|
8
8
|
helpers?: string[];
|
|
9
9
|
errors?: string[];
|
|
10
10
|
}
|
|
11
|
-
declare
|
|
11
|
+
declare function __VLS_template(): {
|
|
12
|
+
default?(_: {}): any;
|
|
13
|
+
helper?(_: {}): any;
|
|
14
|
+
error?(_: {}): any;
|
|
15
|
+
};
|
|
16
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
12
17
|
layout: string;
|
|
13
18
|
required: boolean;
|
|
14
19
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
@@ -17,11 +22,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
17
22
|
}>>>, {
|
|
18
23
|
required: boolean;
|
|
19
24
|
layout: BaseFormLayoutType;
|
|
20
|
-
}, {}
|
|
21
|
-
|
|
22
|
-
helper?(_: {}): any;
|
|
23
|
-
error?(_: {}): any;
|
|
24
|
-
}>;
|
|
25
|
+
}, {}>;
|
|
26
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
25
27
|
export default _default;
|
|
26
28
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
27
29
|
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
@@ -22,7 +22,7 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
22
22
|
required: boolean;
|
|
23
23
|
disabled: boolean;
|
|
24
24
|
}>, {
|
|
25
|
-
inputRef: import("vue").Ref<any>;
|
|
25
|
+
inputRef: import("vue").Ref<any, any>;
|
|
26
26
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
27
27
|
"update:modelValue": (value: string | number | boolean) => void;
|
|
28
28
|
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
@@ -23,7 +23,7 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
23
23
|
required: boolean;
|
|
24
24
|
disabled: boolean;
|
|
25
25
|
}>, {
|
|
26
|
-
inputRef: import("vue").Ref<any>;
|
|
26
|
+
inputRef: import("vue").Ref<any, any>;
|
|
27
27
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
28
28
|
"update:modelValue": (value: number) => void;
|
|
29
29
|
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
@@ -16,7 +16,11 @@ export interface Props {
|
|
|
16
16
|
helpers?: string[];
|
|
17
17
|
errors?: string[];
|
|
18
18
|
}
|
|
19
|
-
declare
|
|
19
|
+
declare function __VLS_template(): {
|
|
20
|
+
suffix?(_: {}): any;
|
|
21
|
+
prefix?(_: {}): any;
|
|
22
|
+
};
|
|
23
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
20
24
|
border: string;
|
|
21
25
|
layout: string;
|
|
22
26
|
type: string;
|
|
@@ -24,7 +28,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
24
28
|
required: boolean;
|
|
25
29
|
disabled: boolean;
|
|
26
30
|
}>, {
|
|
27
|
-
inputRef: import("vue").Ref<any>;
|
|
31
|
+
inputRef: import("vue").Ref<any, any>;
|
|
28
32
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
29
33
|
"update:modelValue": (value: string) => void;
|
|
30
34
|
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
@@ -43,10 +47,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
43
47
|
layout: BaseFormLayoutType;
|
|
44
48
|
border: BaseInputBorderType;
|
|
45
49
|
autofocus: boolean;
|
|
46
|
-
}, {}
|
|
47
|
-
|
|
48
|
-
prefix?(_: {}): any;
|
|
49
|
-
}>;
|
|
50
|
+
}, {}>;
|
|
51
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
50
52
|
export default _default;
|
|
51
53
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
52
54
|
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
@@ -2,7 +2,10 @@ export type BaseButtonColorType = 'none' | 'primary' | 'secondary' | 'info' | 's
|
|
|
2
2
|
export type BaseButtonVariantType = 'filled' | 'light' | 'outlined' | 'text';
|
|
3
3
|
export type BaseButtonShapeType = 'sharp' | 'rounded' | 'pill';
|
|
4
4
|
export type BaseButtonSizeType = 'none' | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl';
|
|
5
|
-
declare
|
|
5
|
+
declare function __VLS_template(): {
|
|
6
|
+
default?(_: {}): any;
|
|
7
|
+
};
|
|
8
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
6
9
|
href: string;
|
|
7
10
|
size?: BaseButtonSizeType;
|
|
8
11
|
color?: BaseButtonColorType;
|
|
@@ -34,9 +37,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
34
37
|
variant: BaseButtonVariantType;
|
|
35
38
|
shape: BaseButtonShapeType;
|
|
36
39
|
isBlock: boolean;
|
|
37
|
-
}, {}
|
|
38
|
-
|
|
39
|
-
}>;
|
|
40
|
+
}, {}>;
|
|
41
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
40
42
|
export default _default;
|
|
41
43
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
42
44
|
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
export type BaseModalSizeType = 'sm' | 'md' | 'lg' | 'xl' | '2xl' | 'full' | 'maximize';
|
|
2
|
-
declare
|
|
2
|
+
declare function __VLS_template(): {
|
|
3
|
+
default?(_: {}): any;
|
|
4
|
+
};
|
|
5
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
3
6
|
isOpen: boolean;
|
|
4
7
|
size?: BaseModalSizeType;
|
|
5
8
|
}>, {
|
|
@@ -15,9 +18,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
15
18
|
onOnClose?: (...args: any[]) => any;
|
|
16
19
|
}, {
|
|
17
20
|
size: BaseModalSizeType;
|
|
18
|
-
}, {}
|
|
19
|
-
|
|
20
|
-
}>;
|
|
21
|
+
}, {}>;
|
|
22
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
21
23
|
export default _default;
|
|
22
24
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
23
25
|
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
@@ -2,7 +2,11 @@ export type BasePopoverPlacementType = 'auto' | 'auto-start' | 'auto-end' | 'top
|
|
|
2
2
|
export interface Props {
|
|
3
3
|
placement?: BasePopoverPlacementType;
|
|
4
4
|
}
|
|
5
|
-
declare
|
|
5
|
+
declare function __VLS_template(): {
|
|
6
|
+
default?(_: {}): any;
|
|
7
|
+
content?(_: any): any;
|
|
8
|
+
};
|
|
9
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
6
10
|
placement: string;
|
|
7
11
|
}>, {
|
|
8
12
|
toggle: (val: boolean) => void;
|
|
@@ -10,10 +14,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
10
14
|
placement: string;
|
|
11
15
|
}>>>, {
|
|
12
16
|
placement: BasePopoverPlacementType;
|
|
13
|
-
}, {}
|
|
14
|
-
|
|
15
|
-
content?(_: any): any;
|
|
16
|
-
}>;
|
|
17
|
+
}, {}>;
|
|
18
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
17
19
|
export default _default;
|
|
18
20
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
19
21
|
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
@@ -6,7 +6,10 @@ export interface Props {
|
|
|
6
6
|
size?: BaseProgressSizeType;
|
|
7
7
|
isIndeterminate?: boolean;
|
|
8
8
|
}
|
|
9
|
-
declare
|
|
9
|
+
declare function __VLS_template(): {
|
|
10
|
+
default?(_: {}): any;
|
|
11
|
+
};
|
|
12
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
10
13
|
color: string;
|
|
11
14
|
size: string;
|
|
12
15
|
isIndeterminate: boolean;
|
|
@@ -22,9 +25,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
22
25
|
size: BaseProgressSizeType;
|
|
23
26
|
color: BaseProgressColorType;
|
|
24
27
|
isIndeterminate: boolean;
|
|
25
|
-
}, {}
|
|
26
|
-
|
|
27
|
-
}>;
|
|
28
|
+
}, {}>;
|
|
29
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
28
30
|
export default _default;
|
|
29
31
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
30
32
|
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
@@ -13,7 +13,14 @@ export interface Props {
|
|
|
13
13
|
errors?: string[];
|
|
14
14
|
options: Record<string, any>[];
|
|
15
15
|
}
|
|
16
|
-
declare
|
|
16
|
+
declare function __VLS_template(): {
|
|
17
|
+
default?(_: {
|
|
18
|
+
active: any;
|
|
19
|
+
checked: any;
|
|
20
|
+
option: Record<string, any>;
|
|
21
|
+
}): any;
|
|
22
|
+
};
|
|
23
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
17
24
|
layout: string;
|
|
18
25
|
optionsLayout: string;
|
|
19
26
|
required: boolean;
|
|
@@ -32,13 +39,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
32
39
|
disabled: boolean;
|
|
33
40
|
layout: BaseFormLayoutType;
|
|
34
41
|
optionsLayout: BaseRadioOptionsLayout;
|
|
35
|
-
}, {}
|
|
36
|
-
|
|
37
|
-
active: any;
|
|
38
|
-
checked: any;
|
|
39
|
-
option: Record<string, any>;
|
|
40
|
-
}): any;
|
|
41
|
-
}>;
|
|
42
|
+
}, {}>;
|
|
43
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
42
44
|
export default _default;
|
|
43
45
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
44
46
|
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
@@ -16,7 +16,10 @@ export interface Props {
|
|
|
16
16
|
helpers?: string[];
|
|
17
17
|
errors?: string[];
|
|
18
18
|
}
|
|
19
|
-
declare
|
|
19
|
+
declare function __VLS_template(): {
|
|
20
|
+
label?(_: {}): any;
|
|
21
|
+
};
|
|
22
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
20
23
|
layout: string;
|
|
21
24
|
required: boolean;
|
|
22
25
|
disabled: boolean;
|
|
@@ -38,9 +41,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
38
41
|
disabled: boolean;
|
|
39
42
|
layout: BaseFormLayoutType;
|
|
40
43
|
textPosition: BaseSwitchTextPosition;
|
|
41
|
-
}, {}
|
|
42
|
-
|
|
43
|
-
}>;
|
|
44
|
+
}, {}>;
|
|
45
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
44
46
|
export default _default;
|
|
45
47
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
46
48
|
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
@@ -1,6 +1,8 @@
|
|
|
1
|
-
declare
|
|
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,8 @@
|
|
|
1
|
-
declare
|
|
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 (): {
|