sprintify-ui 0.0.93 → 0.0.95
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 +15422 -6148
- 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 +91 -327
- 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 +63 -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 +30 -111
- package/dist/types/src/components/BaseField.vue.d.ts +31 -124
- package/dist/types/src/components/BaseFieldI18n.vue.d.ts +1 -1
- 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 +10 -1
- package/dist/types/src/components/BaseInputError.vue.d.ts +8 -47
- package/dist/types/src/components/BaseInputPercent.vue.d.ts +1 -1
- 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/BaseLocaleForm.vue.d.ts +1 -1
- 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/BaseNavbarSideItem.vue.d.ts +3 -3
- 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/dist/types/src/composables/clickOutside.d.ts +8 -0
- package/dist/types/src/composables/modal.d.ts +1 -1
- package/dist/types/src/utils/scrollPreventer.d.ts +1 -2
- package/package.json +5 -1
- package/src/components/BaseAppDialogs.vue +1 -1
- package/src/components/BaseAutocomplete.vue +6 -25
- package/src/components/BaseButtonGroup.vue +2 -2
- package/src/components/BaseColor.stories.js +50 -0
- package/src/components/BaseColor.vue +91 -0
- package/src/components/BaseDropdown.stories.js +47 -9
- package/src/components/BaseDropdown.vue +27 -35
- 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/BaseLayoutSidebar.vue +4 -1
- package/src/components/BaseModalCenter.stories.js +5 -0
- package/src/components/BaseModalCenter.vue +14 -10
- package/src/components/BaseModalSide.vue +1 -4
- package/src/components/BaseRichText.stories.js +102 -0
- package/src/components/BaseRichText.vue +121 -0
- package/src/components/BaseSideNavigation.vue +4 -1
- package/src/components/BaseTable.vue +1 -0
- package/src/components/BaseTabs.vue +4 -1
- package/src/components/BaseTagAutocomplete.vue +1 -0
- package/src/components/BaseTextarea.vue +1 -1
- package/src/components/index.ts +4 -0
- package/src/composables/clickOutside.ts +57 -0
- package/src/composables/modal.ts +2 -6
- package/src/utils/scrollPreventer.ts +3 -13
|
@@ -1,142 +1,30 @@
|
|
|
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
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
type: PropType<"base" | "xs" | "sm" | "lg" | "xl">;
|
|
29
|
-
};
|
|
30
|
-
hasError: {
|
|
31
|
-
default: boolean;
|
|
32
|
-
type: BooleanConstructor;
|
|
33
|
-
};
|
|
34
|
-
required: {
|
|
35
|
-
default: boolean;
|
|
36
|
-
type: BooleanConstructor;
|
|
37
|
-
};
|
|
38
|
-
}>> & {
|
|
39
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
40
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "required" | "name" | "color" | "modelValue" | "hasError" | "size">;
|
|
41
|
-
$attrs: {
|
|
42
|
-
[x: string]: unknown;
|
|
43
|
-
};
|
|
44
|
-
$refs: {
|
|
45
|
-
[x: string]: unknown;
|
|
46
|
-
};
|
|
47
|
-
$slots: Readonly<{
|
|
48
|
-
[name: string]: import("vue").Slot | undefined;
|
|
49
|
-
}>;
|
|
50
|
-
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
|
|
51
|
-
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
|
|
52
|
-
$emit: (event: "update:modelValue", ...args: any[]) => void;
|
|
53
|
-
$el: any;
|
|
54
|
-
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
55
|
-
modelValue: {
|
|
56
|
-
default: boolean;
|
|
57
|
-
type: BooleanConstructor;
|
|
58
|
-
};
|
|
59
|
-
name: {
|
|
60
|
-
default: undefined;
|
|
61
|
-
type: StringConstructor;
|
|
62
|
-
};
|
|
63
|
-
color: {
|
|
64
|
-
default: string;
|
|
65
|
-
type: PropType<"dark" | "light" | "danger" | "success" | "warning" | "info" | "primary">;
|
|
66
|
-
};
|
|
67
|
-
size: {
|
|
68
|
-
default: string;
|
|
69
|
-
type: PropType<"base" | "xs" | "sm" | "lg" | "xl">;
|
|
70
|
-
};
|
|
71
|
-
hasError: {
|
|
72
|
-
default: boolean;
|
|
73
|
-
type: BooleanConstructor;
|
|
74
|
-
};
|
|
75
|
-
required: {
|
|
76
|
-
default: boolean;
|
|
77
|
-
type: BooleanConstructor;
|
|
78
|
-
};
|
|
79
|
-
}>> & {
|
|
80
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
81
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], string, {
|
|
82
|
-
required: boolean;
|
|
83
|
-
name: string;
|
|
84
|
-
color: "dark" | "light" | "danger" | "success" | "warning" | "info" | "primary";
|
|
85
|
-
modelValue: boolean;
|
|
86
|
-
hasError: boolean;
|
|
87
|
-
size: "base" | "xs" | "sm" | "lg" | "xl";
|
|
88
|
-
}, {}, string> & {
|
|
89
|
-
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
90
|
-
created?: ((() => void) | (() => void)[]) | undefined;
|
|
91
|
-
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
92
|
-
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
93
|
-
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
94
|
-
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
95
|
-
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
96
|
-
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
97
|
-
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
98
|
-
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
99
|
-
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
100
|
-
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
101
|
-
renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
102
|
-
renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
103
|
-
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;
|
|
104
|
-
};
|
|
105
|
-
$forceUpdate: () => void;
|
|
106
|
-
$nextTick: typeof import("vue").nextTick;
|
|
107
|
-
$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;
|
|
108
|
-
} & Readonly<import("vue").ExtractPropTypes<{
|
|
109
|
-
modelValue: {
|
|
110
|
-
default: boolean;
|
|
111
|
-
type: BooleanConstructor;
|
|
112
|
-
};
|
|
113
|
-
name: {
|
|
114
|
-
default: undefined;
|
|
115
|
-
type: StringConstructor;
|
|
116
|
-
};
|
|
117
|
-
color: {
|
|
118
|
-
default: string;
|
|
119
|
-
type: PropType<"dark" | "light" | "danger" | "success" | "warning" | "info" | "primary">;
|
|
120
|
-
};
|
|
121
|
-
size: {
|
|
122
|
-
default: string;
|
|
123
|
-
type: PropType<"base" | "xs" | "sm" | "lg" | "xl">;
|
|
124
|
-
};
|
|
125
|
-
hasError: {
|
|
126
|
-
default: boolean;
|
|
127
|
-
type: BooleanConstructor;
|
|
128
|
-
};
|
|
129
|
-
required: {
|
|
130
|
-
default: boolean;
|
|
131
|
-
type: BooleanConstructor;
|
|
132
|
-
};
|
|
133
|
-
}>> & {
|
|
134
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
135
|
-
} & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
|
|
136
|
-
__isFragment?: undefined;
|
|
137
|
-
__isTeleport?: undefined;
|
|
138
|
-
__isSuspense?: undefined;
|
|
139
|
-
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
2
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
3
|
+
modelValue: {
|
|
4
|
+
default: boolean;
|
|
5
|
+
type: BooleanConstructor;
|
|
6
|
+
};
|
|
7
|
+
name: {
|
|
8
|
+
default: undefined;
|
|
9
|
+
type: StringConstructor;
|
|
10
|
+
};
|
|
11
|
+
color: {
|
|
12
|
+
default: string;
|
|
13
|
+
type: PropType<"dark" | "light" | "danger" | "success" | "warning" | "info" | "primary">;
|
|
14
|
+
};
|
|
15
|
+
size: {
|
|
16
|
+
default: string;
|
|
17
|
+
type: PropType<"base" | "xs" | "sm" | "lg" | "xl">;
|
|
18
|
+
};
|
|
19
|
+
hasError: {
|
|
20
|
+
default: boolean;
|
|
21
|
+
type: BooleanConstructor;
|
|
22
|
+
};
|
|
23
|
+
required: {
|
|
24
|
+
default: boolean;
|
|
25
|
+
type: BooleanConstructor;
|
|
26
|
+
};
|
|
27
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
140
28
|
modelValue: {
|
|
141
29
|
default: boolean;
|
|
142
30
|
type: BooleanConstructor;
|
|
@@ -163,16 +51,19 @@ declare const _default: {
|
|
|
163
51
|
};
|
|
164
52
|
}>> & {
|
|
165
53
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
166
|
-
}, {
|
|
54
|
+
}, {
|
|
167
55
|
required: boolean;
|
|
168
56
|
name: string;
|
|
169
57
|
color: "dark" | "light" | "danger" | "success" | "warning" | "info" | "primary";
|
|
170
58
|
modelValue: boolean;
|
|
171
59
|
hasError: boolean;
|
|
172
60
|
size: "base" | "xs" | "sm" | "lg" | "xl";
|
|
173
|
-
}
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
};
|
|
177
|
-
});
|
|
61
|
+
}>, {
|
|
62
|
+
default: (_: {}) => any;
|
|
63
|
+
}>;
|
|
178
64
|
export default _default;
|
|
65
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
66
|
+
new (): {
|
|
67
|
+
$slots: S;
|
|
68
|
+
};
|
|
69
|
+
};
|
|
@@ -1,115 +1,23 @@
|
|
|
1
1
|
import { PropType } from 'vue';
|
|
2
2
|
import { RouteLocationRaw } from 'vue-router';
|
|
3
|
-
declare const _default: {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
color: {
|
|
22
|
-
default: string;
|
|
23
|
-
type: PropType<"danger" | "success" | "warning" | "info">;
|
|
24
|
-
};
|
|
25
|
-
closable: {
|
|
26
|
-
default: boolean;
|
|
27
|
-
type: BooleanConstructor;
|
|
28
|
-
};
|
|
29
|
-
}>> & {
|
|
30
|
-
onClose?: ((...args: any[]) => any) | undefined;
|
|
31
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "to" | "color" | "action" | "closable">;
|
|
32
|
-
$attrs: {
|
|
33
|
-
[x: string]: unknown;
|
|
34
|
-
};
|
|
35
|
-
$refs: {
|
|
36
|
-
[x: string]: unknown;
|
|
37
|
-
};
|
|
38
|
-
$slots: Readonly<{
|
|
39
|
-
[name: string]: import("vue").Slot | undefined;
|
|
40
|
-
}>;
|
|
41
|
-
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
|
|
42
|
-
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
|
|
43
|
-
$emit: (event: "close", ...args: any[]) => void;
|
|
44
|
-
$el: any;
|
|
45
|
-
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
46
|
-
to: {
|
|
47
|
-
default: undefined;
|
|
48
|
-
type: PropType<RouteLocationRaw | undefined>;
|
|
49
|
-
};
|
|
50
|
-
action: {
|
|
51
|
-
default: undefined;
|
|
52
|
-
type: PropType<() => Promise<void> | void>;
|
|
53
|
-
};
|
|
54
|
-
color: {
|
|
55
|
-
default: string;
|
|
56
|
-
type: PropType<"danger" | "success" | "warning" | "info">;
|
|
57
|
-
};
|
|
58
|
-
closable: {
|
|
59
|
-
default: boolean;
|
|
60
|
-
type: BooleanConstructor;
|
|
61
|
-
};
|
|
62
|
-
}>> & {
|
|
63
|
-
onClose?: ((...args: any[]) => any) | undefined;
|
|
64
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "close"[], string, {
|
|
65
|
-
to: RouteLocationRaw | undefined;
|
|
66
|
-
color: "danger" | "success" | "warning" | "info";
|
|
67
|
-
action: () => Promise<void> | void;
|
|
68
|
-
closable: boolean;
|
|
69
|
-
}, {}, string> & {
|
|
70
|
-
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
71
|
-
created?: ((() => void) | (() => void)[]) | undefined;
|
|
72
|
-
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
73
|
-
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
74
|
-
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
75
|
-
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
76
|
-
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
77
|
-
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
78
|
-
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
79
|
-
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
80
|
-
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
81
|
-
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
82
|
-
renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
83
|
-
renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
84
|
-
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;
|
|
85
|
-
};
|
|
86
|
-
$forceUpdate: () => void;
|
|
87
|
-
$nextTick: typeof import("vue").nextTick;
|
|
88
|
-
$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;
|
|
89
|
-
} & Readonly<import("vue").ExtractPropTypes<{
|
|
90
|
-
to: {
|
|
91
|
-
default: undefined;
|
|
92
|
-
type: PropType<RouteLocationRaw | undefined>;
|
|
93
|
-
};
|
|
94
|
-
action: {
|
|
95
|
-
default: undefined;
|
|
96
|
-
type: PropType<() => Promise<void> | void>;
|
|
97
|
-
};
|
|
98
|
-
color: {
|
|
99
|
-
default: string;
|
|
100
|
-
type: PropType<"danger" | "success" | "warning" | "info">;
|
|
101
|
-
};
|
|
102
|
-
closable: {
|
|
103
|
-
default: boolean;
|
|
104
|
-
type: BooleanConstructor;
|
|
105
|
-
};
|
|
106
|
-
}>> & {
|
|
107
|
-
onClose?: ((...args: any[]) => any) | undefined;
|
|
108
|
-
} & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
|
|
109
|
-
__isFragment?: undefined;
|
|
110
|
-
__isTeleport?: undefined;
|
|
111
|
-
__isSuspense?: undefined;
|
|
112
|
-
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
3
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
4
|
+
to: {
|
|
5
|
+
default: undefined;
|
|
6
|
+
type: PropType<RouteLocationRaw | undefined>;
|
|
7
|
+
};
|
|
8
|
+
action: {
|
|
9
|
+
default: undefined;
|
|
10
|
+
type: PropType<() => Promise<void> | void>;
|
|
11
|
+
};
|
|
12
|
+
color: {
|
|
13
|
+
default: string;
|
|
14
|
+
type: PropType<"danger" | "success" | "warning" | "info">;
|
|
15
|
+
};
|
|
16
|
+
closable: {
|
|
17
|
+
default: boolean;
|
|
18
|
+
type: BooleanConstructor;
|
|
19
|
+
};
|
|
20
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "close"[], "close", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
113
21
|
to: {
|
|
114
22
|
default: undefined;
|
|
115
23
|
type: PropType<RouteLocationRaw | undefined>;
|
|
@@ -128,14 +36,17 @@ declare const _default: {
|
|
|
128
36
|
};
|
|
129
37
|
}>> & {
|
|
130
38
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
131
|
-
}, {
|
|
39
|
+
}, {
|
|
132
40
|
to: RouteLocationRaw | undefined;
|
|
133
41
|
color: "danger" | "success" | "warning" | "info";
|
|
134
42
|
action: () => Promise<void> | void;
|
|
135
43
|
closable: boolean;
|
|
136
|
-
}
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
};
|
|
140
|
-
});
|
|
44
|
+
}>, {
|
|
45
|
+
default: (_: {}) => any;
|
|
46
|
+
}>;
|
|
141
47
|
export default _default;
|
|
48
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
49
|
+
new (): {
|
|
50
|
+
$slots: S;
|
|
51
|
+
};
|
|
52
|
+
};
|
|
@@ -1,93 +1,6 @@
|
|
|
1
1
|
import { PropType } from 'vue';
|
|
2
2
|
import { RouteLocationRaw } from 'vue-router';
|
|
3
|
-
declare const _default: {
|
|
4
|
-
new (...args: any[]): {
|
|
5
|
-
$: import("vue").ComponentInternalInstance;
|
|
6
|
-
$data: {};
|
|
7
|
-
$props: Partial<{
|
|
8
|
-
disabled: boolean;
|
|
9
|
-
activeStrategy: "default" | "exact";
|
|
10
|
-
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
11
|
-
to: {
|
|
12
|
-
required: true;
|
|
13
|
-
type: PropType<RouteLocationRaw>;
|
|
14
|
-
};
|
|
15
|
-
disabled: {
|
|
16
|
-
default: boolean;
|
|
17
|
-
type: BooleanConstructor;
|
|
18
|
-
};
|
|
19
|
-
activeStrategy: {
|
|
20
|
-
default: string;
|
|
21
|
-
type: PropType<"default" | "exact">;
|
|
22
|
-
};
|
|
23
|
-
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "disabled" | "activeStrategy">;
|
|
24
|
-
$attrs: {
|
|
25
|
-
[x: string]: unknown;
|
|
26
|
-
};
|
|
27
|
-
$refs: {
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
30
|
-
$slots: Readonly<{
|
|
31
|
-
[name: string]: import("vue").Slot | undefined;
|
|
32
|
-
}>;
|
|
33
|
-
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
|
|
34
|
-
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
|
|
35
|
-
$emit: (event: string, ...args: any[]) => void;
|
|
36
|
-
$el: any;
|
|
37
|
-
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
38
|
-
to: {
|
|
39
|
-
required: true;
|
|
40
|
-
type: PropType<RouteLocationRaw>;
|
|
41
|
-
};
|
|
42
|
-
disabled: {
|
|
43
|
-
default: boolean;
|
|
44
|
-
type: BooleanConstructor;
|
|
45
|
-
};
|
|
46
|
-
activeStrategy: {
|
|
47
|
-
default: string;
|
|
48
|
-
type: PropType<"default" | "exact">;
|
|
49
|
-
};
|
|
50
|
-
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
51
|
-
disabled: boolean;
|
|
52
|
-
activeStrategy: "default" | "exact";
|
|
53
|
-
}, {}, string> & {
|
|
54
|
-
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
55
|
-
created?: ((() => void) | (() => void)[]) | undefined;
|
|
56
|
-
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
57
|
-
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
58
|
-
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
59
|
-
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
60
|
-
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
61
|
-
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
62
|
-
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
63
|
-
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
64
|
-
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
65
|
-
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
66
|
-
renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
67
|
-
renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
68
|
-
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;
|
|
69
|
-
};
|
|
70
|
-
$forceUpdate: () => void;
|
|
71
|
-
$nextTick: typeof import("vue").nextTick;
|
|
72
|
-
$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;
|
|
73
|
-
} & Readonly<import("vue").ExtractPropTypes<{
|
|
74
|
-
to: {
|
|
75
|
-
required: true;
|
|
76
|
-
type: PropType<RouteLocationRaw>;
|
|
77
|
-
};
|
|
78
|
-
disabled: {
|
|
79
|
-
default: boolean;
|
|
80
|
-
type: BooleanConstructor;
|
|
81
|
-
};
|
|
82
|
-
activeStrategy: {
|
|
83
|
-
default: string;
|
|
84
|
-
type: PropType<"default" | "exact">;
|
|
85
|
-
};
|
|
86
|
-
}>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
|
|
87
|
-
__isFragment?: undefined;
|
|
88
|
-
__isTeleport?: undefined;
|
|
89
|
-
__isSuspense?: undefined;
|
|
90
|
-
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
3
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
91
4
|
to: {
|
|
92
5
|
required: true;
|
|
93
6
|
type: PropType<RouteLocationRaw>;
|
|
@@ -100,12 +13,28 @@ declare const _default: {
|
|
|
100
13
|
default: string;
|
|
101
14
|
type: PropType<"default" | "exact">;
|
|
102
15
|
};
|
|
103
|
-
}
|
|
16
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
17
|
+
to: {
|
|
18
|
+
required: true;
|
|
19
|
+
type: PropType<RouteLocationRaw>;
|
|
20
|
+
};
|
|
21
|
+
disabled: {
|
|
22
|
+
default: boolean;
|
|
23
|
+
type: BooleanConstructor;
|
|
24
|
+
};
|
|
25
|
+
activeStrategy: {
|
|
26
|
+
default: string;
|
|
27
|
+
type: PropType<"default" | "exact">;
|
|
28
|
+
};
|
|
29
|
+
}>>, {
|
|
104
30
|
disabled: boolean;
|
|
105
31
|
activeStrategy: "default" | "exact";
|
|
106
|
-
}
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
};
|
|
110
|
-
});
|
|
32
|
+
}>, {
|
|
33
|
+
default: (_: {}) => any;
|
|
34
|
+
}>;
|
|
111
35
|
export default _default;
|
|
36
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
37
|
+
new (): {
|
|
38
|
+
$slots: S;
|
|
39
|
+
};
|
|
40
|
+
};
|