@point-hub/papp 0.0.5 → 0.0.7
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 +44 -0
- package/dist/components/base-accordion.vue.d.ts +36 -0
- package/dist/components/base-alert.vue.d.ts +62 -0
- package/dist/components/base-autocomplete.vue.d.ts +65 -0
- package/dist/components/base-avatar-group.vue.d.ts +9 -0
- package/dist/components/base-avatar.vue.d.ts +61 -0
- package/dist/components/base-badge.vue.d.ts +48 -0
- package/dist/components/base-breadcrumb.vue.d.ts +46 -0
- package/dist/components/base-button.vue.d.ts +65 -0
- package/dist/components/base-card.vue.d.ts +37 -0
- package/dist/components/base-checkbox.vue.d.ts +57 -0
- package/dist/components/base-datepicker.vue.d.ts +54 -0
- package/dist/components/base-divider.vue.d.ts +18 -0
- package/dist/components/base-dropdown-item.vue.d.ts +37 -0
- package/dist/components/base-dropdown.vue.d.ts +41 -0
- package/dist/components/base-file-upload.vue.d.ts +65 -0
- package/dist/components/base-form.vue.d.ts +47 -0
- package/dist/components/base-icon.vue.d.ts +31 -0
- package/dist/components/base-input-mask.vue.d.ts +54 -0
- package/dist/components/base-input-number.vue.d.ts +57 -0
- package/dist/components/base-input.vue.d.ts +66 -0
- package/dist/components/base-mask.vue.d.ts +16 -0
- package/dist/components/base-modal.vue.d.ts +43 -0
- package/dist/components/base-pagination.vue.d.ts +35 -0
- package/dist/components/base-popover.vue.d.ts +37 -0
- package/dist/components/base-progress.vue.d.ts +50 -0
- package/dist/components/base-radio.vue.d.ts +64 -0
- package/dist/components/base-range.vue.d.ts +47 -0
- package/dist/components/base-select.vue.d.ts +61 -0
- package/dist/components/base-spinner.vue.d.ts +36 -0
- package/dist/components/base-step.vue.d.ts +45 -0
- package/dist/components/base-switch.vue.d.ts +66 -0
- package/dist/components/base-tab-group.vue.d.ts +9 -0
- package/dist/components/base-tab-list.vue.d.ts +9 -0
- package/dist/components/base-tab-panel.vue.d.ts +9 -0
- package/dist/components/base-tab-panels.vue.d.ts +9 -0
- package/dist/components/base-tab.vue.d.ts +11 -0
- package/dist/components/base-table.vue.d.ts +9 -0
- package/dist/components/base-textarea.vue.d.ts +55 -0
- package/dist/components/base-timeline-content.vue.d.ts +10 -0
- package/dist/components/base-timeline.vue.d.ts +9 -0
- package/dist/components/base-toast.vue.d.ts +20 -0
- package/dist/components/base-tooltip.vue.d.ts +41 -0
- package/dist/components/base-treeview.vue.d.ts +44 -0
- package/dist/index.d.ts +3 -1
- package/dist/{papp.js → index.js} +1048 -997
- package/dist/{papp.umd.cjs → index.umd.cjs} +5 -5
- package/package.json +10 -9
- package/dist/papp.d.ts +0 -1
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
2
|
+
itemId: number;
|
|
3
|
+
title?: string;
|
|
4
|
+
content?: string;
|
|
5
|
+
}>, {
|
|
6
|
+
title: string;
|
|
7
|
+
content: string;
|
|
8
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
9
|
+
itemId: number;
|
|
10
|
+
title?: string;
|
|
11
|
+
content?: string;
|
|
12
|
+
}>, {
|
|
13
|
+
title: string;
|
|
14
|
+
content: string;
|
|
15
|
+
}>>>, {
|
|
16
|
+
title: string;
|
|
17
|
+
content: string;
|
|
18
|
+
}, {}>, {
|
|
19
|
+
title?(_: {}): any;
|
|
20
|
+
default?(_: {}): any;
|
|
21
|
+
}>;
|
|
22
|
+
export default _default;
|
|
23
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
24
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
25
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
26
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
27
|
+
} : {
|
|
28
|
+
type: import('vue').PropType<T[K]>;
|
|
29
|
+
required: true;
|
|
30
|
+
};
|
|
31
|
+
};
|
|
32
|
+
type __VLS_WithDefaults<P, D> = {
|
|
33
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
34
|
+
default: D[K];
|
|
35
|
+
}> : P[K];
|
|
36
|
+
};
|
|
37
|
+
type __VLS_Prettify<T> = {
|
|
38
|
+
[K in keyof T]: T[K];
|
|
39
|
+
} & {};
|
|
40
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
41
|
+
new (): {
|
|
42
|
+
$slots: S;
|
|
43
|
+
};
|
|
44
|
+
};
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
2
|
+
alwaysOpen?: boolean;
|
|
3
|
+
}>, {
|
|
4
|
+
alwaysOpen: boolean;
|
|
5
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
6
|
+
alwaysOpen?: boolean;
|
|
7
|
+
}>, {
|
|
8
|
+
alwaysOpen: boolean;
|
|
9
|
+
}>>>, {
|
|
10
|
+
alwaysOpen: boolean;
|
|
11
|
+
}, {}>, {
|
|
12
|
+
default?(_: {}): any;
|
|
13
|
+
}>;
|
|
14
|
+
export default _default;
|
|
15
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
16
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
17
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
18
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
19
|
+
} : {
|
|
20
|
+
type: import('vue').PropType<T[K]>;
|
|
21
|
+
required: true;
|
|
22
|
+
};
|
|
23
|
+
};
|
|
24
|
+
type __VLS_WithDefaults<P, D> = {
|
|
25
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
26
|
+
default: D[K];
|
|
27
|
+
}> : P[K];
|
|
28
|
+
};
|
|
29
|
+
type __VLS_Prettify<T> = {
|
|
30
|
+
[K in keyof T]: T[K];
|
|
31
|
+
} & {};
|
|
32
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
33
|
+
new (): {
|
|
34
|
+
$slots: S;
|
|
35
|
+
};
|
|
36
|
+
};
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
export type BaseAlertColorType = 'primary' | 'secondary' | 'info' | 'success' | 'warning' | 'danger';
|
|
2
|
+
export type BaseAlertIconType = 'info' | 'success' | 'warning' | 'danger';
|
|
3
|
+
export type BaseAlertVariantType = 'fill' | 'light' | 'outline';
|
|
4
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
5
|
+
title?: string;
|
|
6
|
+
icon?: BaseAlertIconType;
|
|
7
|
+
color?: BaseAlertColorType;
|
|
8
|
+
variant?: BaseAlertVariantType;
|
|
9
|
+
isClosed?: boolean;
|
|
10
|
+
isDismissable?: boolean;
|
|
11
|
+
}>, {
|
|
12
|
+
title: string;
|
|
13
|
+
color: string;
|
|
14
|
+
variant: string;
|
|
15
|
+
isClosed: boolean;
|
|
16
|
+
isDismissable: boolean;
|
|
17
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
18
|
+
title?: string;
|
|
19
|
+
icon?: BaseAlertIconType;
|
|
20
|
+
color?: BaseAlertColorType;
|
|
21
|
+
variant?: BaseAlertVariantType;
|
|
22
|
+
isClosed?: boolean;
|
|
23
|
+
isDismissable?: boolean;
|
|
24
|
+
}>, {
|
|
25
|
+
title: string;
|
|
26
|
+
color: string;
|
|
27
|
+
variant: string;
|
|
28
|
+
isClosed: boolean;
|
|
29
|
+
isDismissable: boolean;
|
|
30
|
+
}>>>, {
|
|
31
|
+
title: string;
|
|
32
|
+
color: BaseAlertColorType;
|
|
33
|
+
variant: BaseAlertVariantType;
|
|
34
|
+
isClosed: boolean;
|
|
35
|
+
isDismissable: boolean;
|
|
36
|
+
}, {}>, {
|
|
37
|
+
title?(_: {}): any;
|
|
38
|
+
default?(_: {}): any;
|
|
39
|
+
}>;
|
|
40
|
+
export default _default;
|
|
41
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
42
|
+
type __VLS_TypePropsToRuntimeProps<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
|
+
};
|
|
50
|
+
type __VLS_WithDefaults<P, D> = {
|
|
51
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
52
|
+
default: D[K];
|
|
53
|
+
}> : P[K];
|
|
54
|
+
};
|
|
55
|
+
type __VLS_Prettify<T> = {
|
|
56
|
+
[K in keyof T]: T[K];
|
|
57
|
+
} & {};
|
|
58
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
59
|
+
new (): {
|
|
60
|
+
$slots: S;
|
|
61
|
+
};
|
|
62
|
+
};
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
import { type BaseFormLayoutType } from './base-form.vue';
|
|
2
|
+
export type BaseAutocompleteBorderType = 'none' | 'simple' | 'full';
|
|
3
|
+
export interface BaseAutocompleteOptionInterface {
|
|
4
|
+
label: string;
|
|
5
|
+
[key: string]: any;
|
|
6
|
+
}
|
|
7
|
+
export interface Props {
|
|
8
|
+
modelValue: BaseAutocompleteOptionInterface | null;
|
|
9
|
+
id?: string;
|
|
10
|
+
options: BaseAutocompleteOptionInterface[];
|
|
11
|
+
label?: string;
|
|
12
|
+
description?: string;
|
|
13
|
+
placeholder?: string;
|
|
14
|
+
border?: BaseAutocompleteBorderType;
|
|
15
|
+
layout?: BaseFormLayoutType;
|
|
16
|
+
required?: boolean;
|
|
17
|
+
disabled?: boolean;
|
|
18
|
+
helpers?: string[];
|
|
19
|
+
errors?: string[];
|
|
20
|
+
}
|
|
21
|
+
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
22
|
+
modelValue: () => {
|
|
23
|
+
label: string;
|
|
24
|
+
};
|
|
25
|
+
border: string;
|
|
26
|
+
layout: string;
|
|
27
|
+
required: boolean;
|
|
28
|
+
disabled: boolean;
|
|
29
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
30
|
+
"update:modelValue": (value: BaseAutocompleteOptionInterface) => void;
|
|
31
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
32
|
+
modelValue: () => {
|
|
33
|
+
label: string;
|
|
34
|
+
};
|
|
35
|
+
border: string;
|
|
36
|
+
layout: string;
|
|
37
|
+
required: boolean;
|
|
38
|
+
disabled: boolean;
|
|
39
|
+
}>>> & {
|
|
40
|
+
"onUpdate:modelValue"?: (value: BaseAutocompleteOptionInterface) => any;
|
|
41
|
+
}, {
|
|
42
|
+
required: boolean;
|
|
43
|
+
disabled: boolean;
|
|
44
|
+
modelValue: BaseAutocompleteOptionInterface;
|
|
45
|
+
layout: BaseFormLayoutType;
|
|
46
|
+
border: BaseAutocompleteBorderType;
|
|
47
|
+
}, {}>;
|
|
48
|
+
export default _default;
|
|
49
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
50
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
51
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
52
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
53
|
+
} : {
|
|
54
|
+
type: import('vue').PropType<T[K]>;
|
|
55
|
+
required: true;
|
|
56
|
+
};
|
|
57
|
+
};
|
|
58
|
+
type __VLS_WithDefaults<P, D> = {
|
|
59
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
60
|
+
default: D[K];
|
|
61
|
+
}> : P[K];
|
|
62
|
+
};
|
|
63
|
+
type __VLS_Prettify<T> = {
|
|
64
|
+
[K in keyof T]: T[K];
|
|
65
|
+
} & {};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>, {
|
|
2
|
+
default?(_: {}): any;
|
|
3
|
+
}>;
|
|
4
|
+
export default _default;
|
|
5
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
6
|
+
new (): {
|
|
7
|
+
$slots: S;
|
|
8
|
+
};
|
|
9
|
+
};
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
export type BaseAvatarColorType = 'primary' | 'secondary' | 'info' | 'success' | 'warning' | 'danger';
|
|
2
|
+
export type BaseAvatarShapeType = 'square' | 'squircle' | 'circle';
|
|
3
|
+
export type BaseAvatarSizeType = 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl';
|
|
4
|
+
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
5
|
+
name: string;
|
|
6
|
+
src?: string;
|
|
7
|
+
color?: BaseAvatarColorType;
|
|
8
|
+
colorIndicator?: BaseAvatarColorType;
|
|
9
|
+
shape?: BaseAvatarShapeType;
|
|
10
|
+
size?: BaseAvatarSizeType;
|
|
11
|
+
indicator?: boolean;
|
|
12
|
+
animate?: boolean;
|
|
13
|
+
}>, {
|
|
14
|
+
color: string;
|
|
15
|
+
colorIndicator: string;
|
|
16
|
+
shape: string;
|
|
17
|
+
size: string;
|
|
18
|
+
indicator: boolean;
|
|
19
|
+
animate: boolean;
|
|
20
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
21
|
+
name: string;
|
|
22
|
+
src?: string;
|
|
23
|
+
color?: BaseAvatarColorType;
|
|
24
|
+
colorIndicator?: BaseAvatarColorType;
|
|
25
|
+
shape?: BaseAvatarShapeType;
|
|
26
|
+
size?: BaseAvatarSizeType;
|
|
27
|
+
indicator?: boolean;
|
|
28
|
+
animate?: boolean;
|
|
29
|
+
}>, {
|
|
30
|
+
color: string;
|
|
31
|
+
colorIndicator: string;
|
|
32
|
+
shape: string;
|
|
33
|
+
size: string;
|
|
34
|
+
indicator: boolean;
|
|
35
|
+
animate: boolean;
|
|
36
|
+
}>>>, {
|
|
37
|
+
color: BaseAvatarColorType;
|
|
38
|
+
animate: boolean;
|
|
39
|
+
colorIndicator: BaseAvatarColorType;
|
|
40
|
+
shape: BaseAvatarShapeType;
|
|
41
|
+
size: BaseAvatarSizeType;
|
|
42
|
+
indicator: boolean;
|
|
43
|
+
}, {}>;
|
|
44
|
+
export default _default;
|
|
45
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
46
|
+
type __VLS_TypePropsToRuntimeProps<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
|
+
};
|
|
54
|
+
type __VLS_WithDefaults<P, D> = {
|
|
55
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
56
|
+
default: D[K];
|
|
57
|
+
}> : P[K];
|
|
58
|
+
};
|
|
59
|
+
type __VLS_Prettify<T> = {
|
|
60
|
+
[K in keyof T]: T[K];
|
|
61
|
+
} & {};
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
export type BaseBadgeColorType = 'primary' | 'secondary' | 'info' | 'success' | 'warning' | 'danger';
|
|
2
|
+
export type BaseBadgeVariantType = 'fill' | 'light' | 'outline';
|
|
3
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
4
|
+
color?: BaseBadgeColorType;
|
|
5
|
+
variant?: BaseBadgeVariantType;
|
|
6
|
+
withDot?: boolean;
|
|
7
|
+
}>, {
|
|
8
|
+
color: string;
|
|
9
|
+
variant: string;
|
|
10
|
+
withDot: boolean;
|
|
11
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
12
|
+
color?: BaseBadgeColorType;
|
|
13
|
+
variant?: BaseBadgeVariantType;
|
|
14
|
+
withDot?: boolean;
|
|
15
|
+
}>, {
|
|
16
|
+
color: string;
|
|
17
|
+
variant: string;
|
|
18
|
+
withDot: boolean;
|
|
19
|
+
}>>>, {
|
|
20
|
+
color: BaseBadgeColorType;
|
|
21
|
+
variant: BaseBadgeVariantType;
|
|
22
|
+
withDot: boolean;
|
|
23
|
+
}, {}>, {
|
|
24
|
+
default?(_: {}): any;
|
|
25
|
+
}>;
|
|
26
|
+
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
|
+
type __VLS_WithDefaults<P, D> = {
|
|
37
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
38
|
+
default: D[K];
|
|
39
|
+
}> : P[K];
|
|
40
|
+
};
|
|
41
|
+
type __VLS_Prettify<T> = {
|
|
42
|
+
[K in keyof T]: T[K];
|
|
43
|
+
} & {};
|
|
44
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
45
|
+
new (): {
|
|
46
|
+
$slots: S;
|
|
47
|
+
};
|
|
48
|
+
};
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
export interface BaseBreadcrumbItemInterface {
|
|
2
|
+
name: string;
|
|
3
|
+
path?: string;
|
|
4
|
+
}
|
|
5
|
+
export type BaseBreadcrumbSeparatoryType = 'angle' | 'arrow' | 'slash';
|
|
6
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
7
|
+
items: BaseBreadcrumbItemInterface[];
|
|
8
|
+
separator: BaseBreadcrumbSeparatoryType;
|
|
9
|
+
}>, {
|
|
10
|
+
separator: string;
|
|
11
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
12
|
+
items: BaseBreadcrumbItemInterface[];
|
|
13
|
+
separator: BaseBreadcrumbSeparatoryType;
|
|
14
|
+
}>, {
|
|
15
|
+
separator: string;
|
|
16
|
+
}>>>, {
|
|
17
|
+
separator: BaseBreadcrumbSeparatoryType;
|
|
18
|
+
}, {}>, {
|
|
19
|
+
default?(_: {
|
|
20
|
+
index: number;
|
|
21
|
+
item: BaseBreadcrumbItemInterface;
|
|
22
|
+
}): any;
|
|
23
|
+
}>;
|
|
24
|
+
export default _default;
|
|
25
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
26
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
27
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
28
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
29
|
+
} : {
|
|
30
|
+
type: import('vue').PropType<T[K]>;
|
|
31
|
+
required: true;
|
|
32
|
+
};
|
|
33
|
+
};
|
|
34
|
+
type __VLS_WithDefaults<P, D> = {
|
|
35
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
36
|
+
default: D[K];
|
|
37
|
+
}> : P[K];
|
|
38
|
+
};
|
|
39
|
+
type __VLS_Prettify<T> = {
|
|
40
|
+
[K in keyof T]: T[K];
|
|
41
|
+
} & {};
|
|
42
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
43
|
+
new (): {
|
|
44
|
+
$slots: S;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
export type BaseButtonColorType = 'primary' | 'secondary' | 'info' | 'success' | 'warning' | 'danger';
|
|
2
|
+
export type BaseButtonVariantType = 'fill' | 'light' | 'outline' | 'text';
|
|
3
|
+
export type BaseButtonShapeType = 'sharp' | 'round' | 'pill';
|
|
4
|
+
export type BaseButtonSizeType = 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl';
|
|
5
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
6
|
+
size?: BaseButtonSizeType;
|
|
7
|
+
color?: BaseButtonColorType;
|
|
8
|
+
variant?: BaseButtonVariantType;
|
|
9
|
+
shape?: BaseButtonShapeType;
|
|
10
|
+
isBlock?: boolean;
|
|
11
|
+
isLoading?: boolean;
|
|
12
|
+
}>, {
|
|
13
|
+
size: string;
|
|
14
|
+
color: string;
|
|
15
|
+
shape: string;
|
|
16
|
+
variant: string;
|
|
17
|
+
isBlock: boolean;
|
|
18
|
+
isLoading: boolean;
|
|
19
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
20
|
+
size?: BaseButtonSizeType;
|
|
21
|
+
color?: BaseButtonColorType;
|
|
22
|
+
variant?: BaseButtonVariantType;
|
|
23
|
+
shape?: BaseButtonShapeType;
|
|
24
|
+
isBlock?: boolean;
|
|
25
|
+
isLoading?: boolean;
|
|
26
|
+
}>, {
|
|
27
|
+
size: string;
|
|
28
|
+
color: string;
|
|
29
|
+
shape: string;
|
|
30
|
+
variant: string;
|
|
31
|
+
isBlock: boolean;
|
|
32
|
+
isLoading: boolean;
|
|
33
|
+
}>>>, {
|
|
34
|
+
color: BaseButtonColorType;
|
|
35
|
+
variant: BaseButtonVariantType;
|
|
36
|
+
shape: BaseButtonShapeType;
|
|
37
|
+
size: BaseButtonSizeType;
|
|
38
|
+
isBlock: boolean;
|
|
39
|
+
isLoading: boolean;
|
|
40
|
+
}, {}>, {
|
|
41
|
+
default?(_: {}): any;
|
|
42
|
+
}>;
|
|
43
|
+
export default _default;
|
|
44
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
45
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
46
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
47
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
48
|
+
} : {
|
|
49
|
+
type: import('vue').PropType<T[K]>;
|
|
50
|
+
required: true;
|
|
51
|
+
};
|
|
52
|
+
};
|
|
53
|
+
type __VLS_WithDefaults<P, D> = {
|
|
54
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
55
|
+
default: D[K];
|
|
56
|
+
}> : P[K];
|
|
57
|
+
};
|
|
58
|
+
type __VLS_Prettify<T> = {
|
|
59
|
+
[K in keyof T]: T[K];
|
|
60
|
+
} & {};
|
|
61
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
62
|
+
new (): {
|
|
63
|
+
$slots: S;
|
|
64
|
+
};
|
|
65
|
+
};
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
2
|
+
shadow?: boolean;
|
|
3
|
+
}>, {
|
|
4
|
+
shadow: boolean;
|
|
5
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
6
|
+
shadow?: boolean;
|
|
7
|
+
}>, {
|
|
8
|
+
shadow: boolean;
|
|
9
|
+
}>>>, {
|
|
10
|
+
shadow: boolean;
|
|
11
|
+
}, {}>, {
|
|
12
|
+
header?(_: {}): any;
|
|
13
|
+
default?(_: {}): any;
|
|
14
|
+
}>;
|
|
15
|
+
export default _default;
|
|
16
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
17
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
18
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
19
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
20
|
+
} : {
|
|
21
|
+
type: import('vue').PropType<T[K]>;
|
|
22
|
+
required: true;
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
type __VLS_WithDefaults<P, D> = {
|
|
26
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
27
|
+
default: D[K];
|
|
28
|
+
}> : P[K];
|
|
29
|
+
};
|
|
30
|
+
type __VLS_Prettify<T> = {
|
|
31
|
+
[K in keyof T]: T[K];
|
|
32
|
+
} & {};
|
|
33
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
34
|
+
new (): {
|
|
35
|
+
$slots: S;
|
|
36
|
+
};
|
|
37
|
+
};
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
import { type BaseFormLayoutType } from './base-form.vue';
|
|
2
|
+
export type BaseCheckboxThemeType = 'primary' | 'secondary' | 'info' | 'success' | 'warning' | 'danger';
|
|
3
|
+
export interface Props {
|
|
4
|
+
modelValue: boolean;
|
|
5
|
+
id?: string;
|
|
6
|
+
label?: string;
|
|
7
|
+
text?: string;
|
|
8
|
+
description?: string;
|
|
9
|
+
placeholder?: string;
|
|
10
|
+
layout?: BaseFormLayoutType;
|
|
11
|
+
theme?: BaseCheckboxThemeType;
|
|
12
|
+
required?: boolean;
|
|
13
|
+
disabled?: boolean;
|
|
14
|
+
helpers?: string[];
|
|
15
|
+
errors?: string[];
|
|
16
|
+
}
|
|
17
|
+
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
18
|
+
modelValue: boolean;
|
|
19
|
+
theme: string;
|
|
20
|
+
layout: string;
|
|
21
|
+
required: boolean;
|
|
22
|
+
disabled: boolean;
|
|
23
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
24
|
+
"update:modelValue": (value: boolean) => void;
|
|
25
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
26
|
+
modelValue: boolean;
|
|
27
|
+
theme: string;
|
|
28
|
+
layout: string;
|
|
29
|
+
required: boolean;
|
|
30
|
+
disabled: boolean;
|
|
31
|
+
}>>> & {
|
|
32
|
+
"onUpdate:modelValue"?: (value: boolean) => any;
|
|
33
|
+
}, {
|
|
34
|
+
required: boolean;
|
|
35
|
+
disabled: boolean;
|
|
36
|
+
modelValue: boolean;
|
|
37
|
+
theme: BaseCheckboxThemeType;
|
|
38
|
+
layout: BaseFormLayoutType;
|
|
39
|
+
}, {}>;
|
|
40
|
+
export default _default;
|
|
41
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
42
|
+
type __VLS_TypePropsToRuntimeProps<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
|
+
};
|
|
50
|
+
type __VLS_WithDefaults<P, D> = {
|
|
51
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
52
|
+
default: D[K];
|
|
53
|
+
}> : P[K];
|
|
54
|
+
};
|
|
55
|
+
type __VLS_Prettify<T> = {
|
|
56
|
+
[K in keyof T]: T[K];
|
|
57
|
+
} & {};
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
import { type BaseFormLayoutType } from './base-form.vue';
|
|
2
|
+
export type BaseDatepickerBorderType = 'simple' | 'full' | 'none';
|
|
3
|
+
export interface Props {
|
|
4
|
+
modelValue: string;
|
|
5
|
+
id?: string;
|
|
6
|
+
label?: string;
|
|
7
|
+
description?: string;
|
|
8
|
+
border?: BaseDatepickerBorderType;
|
|
9
|
+
layout?: BaseFormLayoutType;
|
|
10
|
+
required?: boolean;
|
|
11
|
+
disabled?: boolean;
|
|
12
|
+
helpers?: string[];
|
|
13
|
+
errors?: string[];
|
|
14
|
+
}
|
|
15
|
+
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
16
|
+
border: string;
|
|
17
|
+
layout: string;
|
|
18
|
+
required: boolean;
|
|
19
|
+
disabled: boolean;
|
|
20
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
21
|
+
isoValue: (value: string) => void;
|
|
22
|
+
"update:modelValue": (value: string) => void;
|
|
23
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
24
|
+
border: string;
|
|
25
|
+
layout: string;
|
|
26
|
+
required: boolean;
|
|
27
|
+
disabled: boolean;
|
|
28
|
+
}>>> & {
|
|
29
|
+
"onUpdate:modelValue"?: (value: string) => any;
|
|
30
|
+
onIsoValue?: (value: string) => any;
|
|
31
|
+
}, {
|
|
32
|
+
required: boolean;
|
|
33
|
+
disabled: boolean;
|
|
34
|
+
layout: BaseFormLayoutType;
|
|
35
|
+
border: BaseDatepickerBorderType;
|
|
36
|
+
}, {}>;
|
|
37
|
+
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
|
+
type __VLS_WithDefaults<P, D> = {
|
|
48
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
49
|
+
default: D[K];
|
|
50
|
+
}> : P[K];
|
|
51
|
+
};
|
|
52
|
+
type __VLS_Prettify<T> = {
|
|
53
|
+
[K in keyof T]: T[K];
|
|
54
|
+
} & {};
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
export type BaseDividerOrientation = 'horizontal' | 'vertical';
|
|
2
|
+
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
3
|
+
text?: string;
|
|
4
|
+
orientation: BaseDividerOrientation;
|
|
5
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
6
|
+
text?: string;
|
|
7
|
+
orientation: BaseDividerOrientation;
|
|
8
|
+
}>>>, {}, {}>;
|
|
9
|
+
export default _default;
|
|
10
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
11
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
12
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
13
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
14
|
+
} : {
|
|
15
|
+
type: import('vue').PropType<T[K]>;
|
|
16
|
+
required: true;
|
|
17
|
+
};
|
|
18
|
+
};
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
export interface Props {
|
|
2
|
+
text?: string;
|
|
3
|
+
}
|
|
4
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
5
|
+
text: string;
|
|
6
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
7
|
+
text: string;
|
|
8
|
+
}>>>, {
|
|
9
|
+
text: string;
|
|
10
|
+
}, {}>, {
|
|
11
|
+
default?(_: {
|
|
12
|
+
active: any;
|
|
13
|
+
}): any;
|
|
14
|
+
}>;
|
|
15
|
+
export default _default;
|
|
16
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
17
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
18
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
19
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
20
|
+
} : {
|
|
21
|
+
type: import('vue').PropType<T[K]>;
|
|
22
|
+
required: true;
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
type __VLS_WithDefaults<P, D> = {
|
|
26
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
27
|
+
default: D[K];
|
|
28
|
+
}> : P[K];
|
|
29
|
+
};
|
|
30
|
+
type __VLS_Prettify<T> = {
|
|
31
|
+
[K in keyof T]: T[K];
|
|
32
|
+
} & {};
|
|
33
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
34
|
+
new (): {
|
|
35
|
+
$slots: S;
|
|
36
|
+
};
|
|
37
|
+
};
|