sprintify-ui 0.0.93 → 0.0.94
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/sprintify-ui.es.js +15388 -6135
- package/dist/style.css +1 -1
- package/dist/types/src/components/BaseActionItem.vue.d.ts +25 -102
- package/dist/types/src/components/BaseApp.vue.d.ts +8 -47
- package/dist/types/src/components/BaseAutocomplete.vue.d.ts +90 -326
- package/dist/types/src/components/BaseAutocompleteFetch.vue.d.ts +85 -290
- package/dist/types/src/components/BaseBadge.vue.d.ts +27 -110
- package/dist/types/src/components/BaseBelongsTo.vue.d.ts +89 -294
- package/dist/types/src/components/BaseButtonGroup.vue.d.ts +71 -254
- package/dist/types/src/components/BaseCard.vue.d.ts +15 -68
- package/dist/types/src/components/BaseClipboard.vue.d.ts +15 -68
- package/dist/types/src/components/BaseColor.vue.d.ts +79 -0
- package/dist/types/src/components/BaseDataIterator.vue.d.ts +82 -258
- package/dist/types/src/components/BaseDataTable.vue.d.ts +158 -509
- package/dist/types/src/components/BaseDescriptionList.vue.d.ts +8 -47
- package/dist/types/src/components/BaseDescriptionListItem.vue.d.ts +9 -48
- package/dist/types/src/components/BaseDialog.vue.d.ts +31 -131
- package/dist/types/src/components/BaseDropdown.vue.d.ts +28 -110
- package/dist/types/src/components/BaseField.vue.d.ts +31 -124
- package/dist/types/src/components/BaseFileUploader.vue.d.ts +54 -192
- package/dist/types/src/components/BaseForm.vue.d.ts +62 -226
- package/dist/types/src/components/BaseHasMany.vue.d.ts +66 -219
- package/dist/types/src/components/BaseInput.vue.d.ts +9 -0
- package/dist/types/src/components/BaseInputError.vue.d.ts +8 -47
- package/dist/types/src/components/BaseLayoutSidebar.vue.d.ts +25 -98
- package/dist/types/src/components/BaseLayoutSidebarConfigurable.vue.d.ts +39 -155
- package/dist/types/src/components/BaseLayoutStacked.vue.d.ts +17 -70
- package/dist/types/src/components/BaseLayoutStackedConfigurable.vue.d.ts +39 -155
- package/dist/types/src/components/BaseMediaLibrary.vue.d.ts +63 -234
- package/dist/types/src/components/BaseMenu.vue.d.ts +32 -105
- package/dist/types/src/components/BaseModalCenter.vue.d.ts +42 -132
- package/dist/types/src/components/BaseModalSide.vue.d.ts +29 -118
- package/dist/types/src/components/BaseNavbar.vue.d.ts +24 -87
- package/dist/types/src/components/BaseRadioGroup.vue.d.ts +53 -194
- package/dist/types/src/components/BaseReadMore.vue.d.ts +15 -68
- package/dist/types/src/components/BaseRichText.vue.d.ts +92 -0
- package/dist/types/src/components/BaseSelect.vue.d.ts +35 -144
- package/dist/types/src/components/BaseSideNavigation.vue.d.ts +8 -47
- package/dist/types/src/components/BaseSideNavigationItem.vue.d.ts +23 -94
- package/dist/types/src/components/BaseSkeleton.vue.d.ts +19 -82
- package/dist/types/src/components/BaseSwitch.vue.d.ts +35 -144
- package/dist/types/src/components/BaseSystemAlert.vue.d.ts +27 -116
- package/dist/types/src/components/BaseTabItem.vue.d.ts +23 -94
- package/dist/types/src/components/BaseTable.vue.d.ts +101 -361
- package/dist/types/src/components/BaseTableColumn.vue.d.ts +1 -1
- package/dist/types/src/components/BaseTabs.vue.d.ts +8 -47
- package/dist/types/src/components/BaseTagAutocomplete.vue.d.ts +66 -236
- package/dist/types/src/components/BaseTagAutocompleteFetch.vue.d.ts +62 -212
- package/dist/types/src/components/index.d.ts +3 -1
- package/package.json +5 -1
- package/src/components/BaseButtonGroup.vue +2 -2
- package/src/components/BaseColor.stories.js +52 -0
- package/src/components/BaseColor.vue +98 -0
- package/src/components/BaseForm.vue +3 -3
- package/src/components/BaseInput.stories.js +52 -0
- package/src/components/BaseInput.vue +38 -1
- package/src/components/BaseModalCenter.stories.js +5 -0
- package/src/components/BaseModalCenter.vue +13 -5
- package/src/components/BaseRichText.stories.js +102 -0
- package/src/components/BaseRichText.vue +121 -0
- package/src/components/BaseTextarea.vue +1 -1
- package/src/components/index.ts +4 -0
|
@@ -1,48 +1,9 @@
|
|
|
1
|
-
declare const _default: {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
$data: {};
|
|
5
|
-
$props: Partial<{}> & Omit<Readonly<import("vue").ExtractPropTypes<{}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
|
|
6
|
-
$attrs: {
|
|
7
|
-
[x: string]: unknown;
|
|
8
|
-
};
|
|
9
|
-
$refs: {
|
|
10
|
-
[x: string]: unknown;
|
|
11
|
-
};
|
|
12
|
-
$slots: Readonly<{
|
|
13
|
-
[name: string]: import("vue").Slot | undefined;
|
|
14
|
-
}>;
|
|
15
|
-
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
|
|
16
|
-
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
|
|
17
|
-
$emit: (event: string, ...args: any[]) => void;
|
|
18
|
-
$el: any;
|
|
19
|
-
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & {
|
|
20
|
-
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
21
|
-
created?: ((() => void) | (() => void)[]) | undefined;
|
|
22
|
-
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
23
|
-
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
24
|
-
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
25
|
-
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
26
|
-
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
27
|
-
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
28
|
-
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
29
|
-
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
30
|
-
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
31
|
-
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
32
|
-
renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
33
|
-
renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
34
|
-
errorCaptured?: (((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null, info: string) => boolean | void)[]) | undefined;
|
|
35
|
-
};
|
|
36
|
-
$forceUpdate: () => void;
|
|
37
|
-
$nextTick: typeof import("vue").nextTick;
|
|
38
|
-
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
|
|
39
|
-
} & Readonly<import("vue").ExtractPropTypes<{}>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
|
|
40
|
-
__isFragment?: undefined;
|
|
41
|
-
__isTeleport?: undefined;
|
|
42
|
-
__isSuspense?: undefined;
|
|
43
|
-
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
44
|
-
$slots: {
|
|
45
|
-
default: (_: {}) => any;
|
|
46
|
-
};
|
|
47
|
-
});
|
|
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
|
+
}>;
|
|
48
4
|
export default _default;
|
|
5
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
6
|
+
new (): {
|
|
7
|
+
$slots: S;
|
|
8
|
+
};
|
|
9
|
+
};
|
|
@@ -1,49 +1,10 @@
|
|
|
1
|
-
declare const _default: {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
$props: Partial<{}> & Omit<Readonly<import("vue").ExtractPropTypes<{}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
|
|
6
|
-
$attrs: {
|
|
7
|
-
[x: string]: unknown;
|
|
8
|
-
};
|
|
9
|
-
$refs: {
|
|
10
|
-
[x: string]: unknown;
|
|
11
|
-
};
|
|
12
|
-
$slots: Readonly<{
|
|
13
|
-
[name: string]: import("vue").Slot | undefined;
|
|
14
|
-
}>;
|
|
15
|
-
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
|
|
16
|
-
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
|
|
17
|
-
$emit: (event: string, ...args: any[]) => void;
|
|
18
|
-
$el: any;
|
|
19
|
-
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & {
|
|
20
|
-
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
21
|
-
created?: ((() => void) | (() => void)[]) | undefined;
|
|
22
|
-
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
23
|
-
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
24
|
-
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
25
|
-
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
26
|
-
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
27
|
-
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
28
|
-
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
29
|
-
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
30
|
-
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
31
|
-
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
32
|
-
renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
33
|
-
renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
34
|
-
errorCaptured?: (((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null, info: string) => boolean | void)[]) | undefined;
|
|
35
|
-
};
|
|
36
|
-
$forceUpdate: () => void;
|
|
37
|
-
$nextTick: typeof import("vue").nextTick;
|
|
38
|
-
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
|
|
39
|
-
} & Readonly<import("vue").ExtractPropTypes<{}>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
|
|
40
|
-
__isFragment?: undefined;
|
|
41
|
-
__isTeleport?: undefined;
|
|
42
|
-
__isSuspense?: undefined;
|
|
43
|
-
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
44
|
-
$slots: {
|
|
45
|
-
left: (_: {}) => any;
|
|
46
|
-
right: (_: {}) => any;
|
|
47
|
-
};
|
|
48
|
-
});
|
|
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
|
+
left: (_: {}) => any;
|
|
3
|
+
right: (_: {}) => any;
|
|
4
|
+
}>;
|
|
49
5
|
export default _default;
|
|
6
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
7
|
+
new (): {
|
|
8
|
+
$slots: S;
|
|
9
|
+
};
|
|
10
|
+
};
|
|
@@ -1,129 +1,26 @@
|
|
|
1
1
|
import { PropType } from 'vue';
|
|
2
|
-
declare const _default: {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
confirmText: {
|
|
25
|
-
default(): string;
|
|
26
|
-
type: StringConstructor;
|
|
27
|
-
};
|
|
28
|
-
cancelText: {
|
|
29
|
-
default(): string;
|
|
30
|
-
type: StringConstructor;
|
|
31
|
-
};
|
|
32
|
-
}>> & {
|
|
33
|
-
onCancel?: ((...args: any[]) => any) | undefined;
|
|
34
|
-
onConfirm?: ((...args: any[]) => any) | undefined;
|
|
35
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "title" | "message" | "confirmText" | "cancelText">;
|
|
36
|
-
$attrs: {
|
|
37
|
-
[x: string]: unknown;
|
|
38
|
-
};
|
|
39
|
-
$refs: {
|
|
40
|
-
[x: string]: unknown;
|
|
41
|
-
};
|
|
42
|
-
$slots: Readonly<{
|
|
43
|
-
[name: string]: import("vue").Slot | undefined;
|
|
44
|
-
}>;
|
|
45
|
-
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
|
|
46
|
-
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
|
|
47
|
-
$emit: (event: "cancel" | "confirm", ...args: any[]) => void;
|
|
48
|
-
$el: any;
|
|
49
|
-
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
50
|
-
color: {
|
|
51
|
-
required: true;
|
|
52
|
-
type: PropType<"danger" | "success" | "warning" | "info">;
|
|
53
|
-
};
|
|
54
|
-
title: {
|
|
55
|
-
default: string;
|
|
56
|
-
type: StringConstructor;
|
|
57
|
-
};
|
|
58
|
-
message: {
|
|
59
|
-
default: string;
|
|
60
|
-
type: StringConstructor;
|
|
61
|
-
};
|
|
62
|
-
confirmText: {
|
|
63
|
-
default(): string;
|
|
64
|
-
type: StringConstructor;
|
|
65
|
-
};
|
|
66
|
-
cancelText: {
|
|
67
|
-
default(): string;
|
|
68
|
-
type: StringConstructor;
|
|
69
|
-
};
|
|
70
|
-
}>> & {
|
|
71
|
-
onCancel?: ((...args: any[]) => any) | undefined;
|
|
72
|
-
onConfirm?: ((...args: any[]) => any) | undefined;
|
|
73
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("cancel" | "confirm")[], string, {
|
|
74
|
-
title: string;
|
|
75
|
-
message: string;
|
|
76
|
-
confirmText: string;
|
|
77
|
-
cancelText: string;
|
|
78
|
-
}, {}, string> & {
|
|
79
|
-
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
80
|
-
created?: ((() => void) | (() => void)[]) | undefined;
|
|
81
|
-
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
82
|
-
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
83
|
-
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
84
|
-
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
85
|
-
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
86
|
-
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
87
|
-
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
88
|
-
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
89
|
-
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
90
|
-
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
91
|
-
renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
92
|
-
renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
93
|
-
errorCaptured?: (((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null, info: string) => boolean | void)[]) | undefined;
|
|
94
|
-
};
|
|
95
|
-
$forceUpdate: () => void;
|
|
96
|
-
$nextTick: typeof import("vue").nextTick;
|
|
97
|
-
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
|
|
98
|
-
} & Readonly<import("vue").ExtractPropTypes<{
|
|
99
|
-
color: {
|
|
100
|
-
required: true;
|
|
101
|
-
type: PropType<"danger" | "success" | "warning" | "info">;
|
|
102
|
-
};
|
|
103
|
-
title: {
|
|
104
|
-
default: string;
|
|
105
|
-
type: StringConstructor;
|
|
106
|
-
};
|
|
107
|
-
message: {
|
|
108
|
-
default: string;
|
|
109
|
-
type: StringConstructor;
|
|
110
|
-
};
|
|
111
|
-
confirmText: {
|
|
112
|
-
default(): string;
|
|
113
|
-
type: StringConstructor;
|
|
114
|
-
};
|
|
115
|
-
cancelText: {
|
|
116
|
-
default(): string;
|
|
117
|
-
type: StringConstructor;
|
|
118
|
-
};
|
|
119
|
-
}>> & {
|
|
120
|
-
onCancel?: ((...args: any[]) => any) | undefined;
|
|
121
|
-
onConfirm?: ((...args: any[]) => any) | undefined;
|
|
122
|
-
} & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
|
|
123
|
-
__isFragment?: undefined;
|
|
124
|
-
__isTeleport?: undefined;
|
|
125
|
-
__isSuspense?: undefined;
|
|
126
|
-
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
2
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
3
|
+
color: {
|
|
4
|
+
required: true;
|
|
5
|
+
type: PropType<"danger" | "success" | "warning" | "info">;
|
|
6
|
+
};
|
|
7
|
+
title: {
|
|
8
|
+
default: string;
|
|
9
|
+
type: StringConstructor;
|
|
10
|
+
};
|
|
11
|
+
message: {
|
|
12
|
+
default: string;
|
|
13
|
+
type: StringConstructor;
|
|
14
|
+
};
|
|
15
|
+
confirmText: {
|
|
16
|
+
default(): string;
|
|
17
|
+
type: StringConstructor;
|
|
18
|
+
};
|
|
19
|
+
cancelText: {
|
|
20
|
+
default(): string;
|
|
21
|
+
type: StringConstructor;
|
|
22
|
+
};
|
|
23
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("cancel" | "confirm")[], "cancel" | "confirm", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
127
24
|
color: {
|
|
128
25
|
required: true;
|
|
129
26
|
type: PropType<"danger" | "success" | "warning" | "info">;
|
|
@@ -147,14 +44,17 @@ declare const _default: {
|
|
|
147
44
|
}>> & {
|
|
148
45
|
onCancel?: ((...args: any[]) => any) | undefined;
|
|
149
46
|
onConfirm?: ((...args: any[]) => any) | undefined;
|
|
150
|
-
}, {
|
|
47
|
+
}, {
|
|
151
48
|
title: string;
|
|
152
49
|
message: string;
|
|
153
50
|
confirmText: string;
|
|
154
51
|
cancelText: string;
|
|
155
|
-
}
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
};
|
|
159
|
-
});
|
|
52
|
+
}>, {
|
|
53
|
+
default: (_: {}) => any;
|
|
54
|
+
}>;
|
|
160
55
|
export default _default;
|
|
56
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
57
|
+
new (): {
|
|
58
|
+
$slots: S;
|
|
59
|
+
};
|
|
60
|
+
};
|
|
@@ -1,103 +1,18 @@
|
|
|
1
1
|
import { PropType } from 'vue';
|
|
2
|
-
declare const _default: {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
default: number;
|
|
17
|
-
type: NumberConstructor;
|
|
18
|
-
};
|
|
19
|
-
animated: {
|
|
20
|
-
default: boolean;
|
|
21
|
-
type: BooleanConstructor;
|
|
22
|
-
};
|
|
23
|
-
}>> & {
|
|
24
|
-
onOpen?: ((...args: any[]) => any) | undefined;
|
|
25
|
-
onClose?: ((...args: any[]) => any) | undefined;
|
|
26
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "padding" | "placement" | "animated">;
|
|
27
|
-
$attrs: {
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
30
|
-
$refs: {
|
|
31
|
-
[x: string]: unknown;
|
|
32
|
-
};
|
|
33
|
-
$slots: Readonly<{
|
|
34
|
-
[name: string]: import("vue").Slot | undefined;
|
|
35
|
-
}>;
|
|
36
|
-
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
|
|
37
|
-
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
|
|
38
|
-
$emit: (event: "open" | "close", ...args: any[]) => void;
|
|
39
|
-
$el: any;
|
|
40
|
-
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
41
|
-
placement: {
|
|
42
|
-
type: PropType<"bottom-start" | "bottom-end" | "top-start" | "top-end">;
|
|
43
|
-
default(): string;
|
|
44
|
-
};
|
|
45
|
-
padding: {
|
|
46
|
-
default: number;
|
|
47
|
-
type: NumberConstructor;
|
|
48
|
-
};
|
|
49
|
-
animated: {
|
|
50
|
-
default: boolean;
|
|
51
|
-
type: BooleanConstructor;
|
|
52
|
-
};
|
|
53
|
-
}>> & {
|
|
54
|
-
onOpen?: ((...args: any[]) => any) | undefined;
|
|
55
|
-
onClose?: ((...args: any[]) => any) | undefined;
|
|
56
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("open" | "close")[], string, {
|
|
57
|
-
padding: number;
|
|
58
|
-
placement: "bottom-start" | "bottom-end" | "top-start" | "top-end";
|
|
59
|
-
animated: boolean;
|
|
60
|
-
}, {}, string> & {
|
|
61
|
-
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
62
|
-
created?: ((() => void) | (() => void)[]) | undefined;
|
|
63
|
-
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
64
|
-
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
65
|
-
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
66
|
-
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
67
|
-
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
68
|
-
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
69
|
-
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
70
|
-
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
71
|
-
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
72
|
-
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
73
|
-
renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
74
|
-
renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
75
|
-
errorCaptured?: (((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null, info: string) => boolean | void)[]) | undefined;
|
|
76
|
-
};
|
|
77
|
-
$forceUpdate: () => void;
|
|
78
|
-
$nextTick: typeof import("vue").nextTick;
|
|
79
|
-
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
|
|
80
|
-
} & Readonly<import("vue").ExtractPropTypes<{
|
|
81
|
-
placement: {
|
|
82
|
-
type: PropType<"bottom-start" | "bottom-end" | "top-start" | "top-end">;
|
|
83
|
-
default(): string;
|
|
84
|
-
};
|
|
85
|
-
padding: {
|
|
86
|
-
default: number;
|
|
87
|
-
type: NumberConstructor;
|
|
88
|
-
};
|
|
89
|
-
animated: {
|
|
90
|
-
default: boolean;
|
|
91
|
-
type: BooleanConstructor;
|
|
92
|
-
};
|
|
93
|
-
}>> & {
|
|
94
|
-
onOpen?: ((...args: any[]) => any) | undefined;
|
|
95
|
-
onClose?: ((...args: any[]) => any) | undefined;
|
|
96
|
-
} & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
|
|
97
|
-
__isFragment?: undefined;
|
|
98
|
-
__isTeleport?: undefined;
|
|
99
|
-
__isSuspense?: undefined;
|
|
100
|
-
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
2
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
3
|
+
placement: {
|
|
4
|
+
type: PropType<"bottom-start" | "bottom-end" | "top-start" | "top-end">;
|
|
5
|
+
default(): string;
|
|
6
|
+
};
|
|
7
|
+
padding: {
|
|
8
|
+
default: number;
|
|
9
|
+
type: NumberConstructor;
|
|
10
|
+
};
|
|
11
|
+
animated: {
|
|
12
|
+
default: boolean;
|
|
13
|
+
type: BooleanConstructor;
|
|
14
|
+
};
|
|
15
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("open" | "close")[], "open" | "close", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
101
16
|
placement: {
|
|
102
17
|
type: PropType<"bottom-start" | "bottom-end" | "top-start" | "top-end">;
|
|
103
18
|
default(): string;
|
|
@@ -113,18 +28,21 @@ declare const _default: {
|
|
|
113
28
|
}>> & {
|
|
114
29
|
onOpen?: ((...args: any[]) => any) | undefined;
|
|
115
30
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
116
|
-
}, {
|
|
31
|
+
}, {
|
|
117
32
|
padding: number;
|
|
118
33
|
placement: "bottom-start" | "bottom-end" | "top-start" | "top-end";
|
|
119
34
|
animated: boolean;
|
|
120
|
-
}
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
};
|
|
129
|
-
});
|
|
35
|
+
}>, {
|
|
36
|
+
button: (_: {}) => any;
|
|
37
|
+
dropdown: (_: {
|
|
38
|
+
close: () => void;
|
|
39
|
+
open: () => void;
|
|
40
|
+
toggle: () => void;
|
|
41
|
+
}) => any;
|
|
42
|
+
}>;
|
|
130
43
|
export default _default;
|
|
44
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
45
|
+
new (): {
|
|
46
|
+
$slots: S;
|
|
47
|
+
};
|
|
48
|
+
};
|
|
@@ -1,122 +1,5 @@
|
|
|
1
1
|
import { PropType } from 'vue';
|
|
2
|
-
declare const _default: {
|
|
3
|
-
new (...args: any[]): {
|
|
4
|
-
$: import("vue").ComponentInternalInstance;
|
|
5
|
-
$data: {};
|
|
6
|
-
$props: Partial<{
|
|
7
|
-
required: boolean;
|
|
8
|
-
name: string;
|
|
9
|
-
label: string;
|
|
10
|
-
errorType: "default" | "alert";
|
|
11
|
-
labelClass: string | string[] | Record<string, boolean>;
|
|
12
|
-
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
13
|
-
name: {
|
|
14
|
-
default: string;
|
|
15
|
-
type: StringConstructor;
|
|
16
|
-
};
|
|
17
|
-
label: {
|
|
18
|
-
type: StringConstructor;
|
|
19
|
-
default: string;
|
|
20
|
-
};
|
|
21
|
-
required: {
|
|
22
|
-
type: BooleanConstructor;
|
|
23
|
-
default: boolean;
|
|
24
|
-
};
|
|
25
|
-
errorType: {
|
|
26
|
-
type: PropType<"default" | "alert">;
|
|
27
|
-
default: string;
|
|
28
|
-
};
|
|
29
|
-
labelClass: {
|
|
30
|
-
default: string;
|
|
31
|
-
type: PropType<string | string[] | Record<string, boolean>>;
|
|
32
|
-
};
|
|
33
|
-
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "required" | "name" | "label" | "errorType" | "labelClass">;
|
|
34
|
-
$attrs: {
|
|
35
|
-
[x: string]: unknown;
|
|
36
|
-
};
|
|
37
|
-
$refs: {
|
|
38
|
-
[x: string]: unknown;
|
|
39
|
-
};
|
|
40
|
-
$slots: Readonly<{
|
|
41
|
-
[name: string]: import("vue").Slot | undefined;
|
|
42
|
-
}>;
|
|
43
|
-
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
|
|
44
|
-
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
|
|
45
|
-
$emit: (event: string, ...args: any[]) => void;
|
|
46
|
-
$el: any;
|
|
47
|
-
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
48
|
-
name: {
|
|
49
|
-
default: string;
|
|
50
|
-
type: StringConstructor;
|
|
51
|
-
};
|
|
52
|
-
label: {
|
|
53
|
-
type: StringConstructor;
|
|
54
|
-
default: string;
|
|
55
|
-
};
|
|
56
|
-
required: {
|
|
57
|
-
type: BooleanConstructor;
|
|
58
|
-
default: boolean;
|
|
59
|
-
};
|
|
60
|
-
errorType: {
|
|
61
|
-
type: PropType<"default" | "alert">;
|
|
62
|
-
default: string;
|
|
63
|
-
};
|
|
64
|
-
labelClass: {
|
|
65
|
-
default: string;
|
|
66
|
-
type: PropType<string | string[] | Record<string, boolean>>;
|
|
67
|
-
};
|
|
68
|
-
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
69
|
-
required: boolean;
|
|
70
|
-
name: string;
|
|
71
|
-
label: string;
|
|
72
|
-
errorType: "default" | "alert";
|
|
73
|
-
labelClass: string | string[] | Record<string, boolean>;
|
|
74
|
-
}, {}, string> & {
|
|
75
|
-
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
76
|
-
created?: ((() => void) | (() => void)[]) | undefined;
|
|
77
|
-
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
78
|
-
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
79
|
-
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
80
|
-
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
81
|
-
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
82
|
-
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
83
|
-
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
84
|
-
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
85
|
-
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
86
|
-
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
87
|
-
renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
88
|
-
renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
89
|
-
errorCaptured?: (((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null, info: string) => boolean | void)[]) | undefined;
|
|
90
|
-
};
|
|
91
|
-
$forceUpdate: () => void;
|
|
92
|
-
$nextTick: typeof import("vue").nextTick;
|
|
93
|
-
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
|
|
94
|
-
} & Readonly<import("vue").ExtractPropTypes<{
|
|
95
|
-
name: {
|
|
96
|
-
default: string;
|
|
97
|
-
type: StringConstructor;
|
|
98
|
-
};
|
|
99
|
-
label: {
|
|
100
|
-
type: StringConstructor;
|
|
101
|
-
default: string;
|
|
102
|
-
};
|
|
103
|
-
required: {
|
|
104
|
-
type: BooleanConstructor;
|
|
105
|
-
default: boolean;
|
|
106
|
-
};
|
|
107
|
-
errorType: {
|
|
108
|
-
type: PropType<"default" | "alert">;
|
|
109
|
-
default: string;
|
|
110
|
-
};
|
|
111
|
-
labelClass: {
|
|
112
|
-
default: string;
|
|
113
|
-
type: PropType<string | string[] | Record<string, boolean>>;
|
|
114
|
-
};
|
|
115
|
-
}>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
|
|
116
|
-
__isFragment?: undefined;
|
|
117
|
-
__isTeleport?: undefined;
|
|
118
|
-
__isSuspense?: undefined;
|
|
119
|
-
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
2
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
120
3
|
name: {
|
|
121
4
|
default: string;
|
|
122
5
|
type: StringConstructor;
|
|
@@ -137,15 +20,39 @@ declare const _default: {
|
|
|
137
20
|
default: string;
|
|
138
21
|
type: PropType<string | string[] | Record<string, boolean>>;
|
|
139
22
|
};
|
|
140
|
-
}
|
|
23
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
24
|
+
name: {
|
|
25
|
+
default: string;
|
|
26
|
+
type: StringConstructor;
|
|
27
|
+
};
|
|
28
|
+
label: {
|
|
29
|
+
type: StringConstructor;
|
|
30
|
+
default: string;
|
|
31
|
+
};
|
|
32
|
+
required: {
|
|
33
|
+
type: BooleanConstructor;
|
|
34
|
+
default: boolean;
|
|
35
|
+
};
|
|
36
|
+
errorType: {
|
|
37
|
+
type: PropType<"default" | "alert">;
|
|
38
|
+
default: string;
|
|
39
|
+
};
|
|
40
|
+
labelClass: {
|
|
41
|
+
default: string;
|
|
42
|
+
type: PropType<string | string[] | Record<string, boolean>>;
|
|
43
|
+
};
|
|
44
|
+
}>>, {
|
|
141
45
|
required: boolean;
|
|
142
46
|
name: string;
|
|
143
47
|
label: string;
|
|
144
48
|
errorType: "default" | "alert";
|
|
145
49
|
labelClass: string | string[] | Record<string, boolean>;
|
|
146
|
-
}
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
};
|
|
150
|
-
});
|
|
50
|
+
}>, {
|
|
51
|
+
default: (_: {}) => any;
|
|
52
|
+
}>;
|
|
151
53
|
export default _default;
|
|
54
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
55
|
+
new (): {
|
|
56
|
+
$slots: S;
|
|
57
|
+
};
|
|
58
|
+
};
|