energy-components 1.1.2 → 1.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/accordion.es.js +11 -11
- package/dist/components/button.es.js +1 -1
- package/dist/components/card.es.js +21 -9
- package/dist/components/checkbox.es.js +1 -1
- package/dist/components/datepicker.es.js +2008 -2008
- package/dist/components/dropdown.es.js +97 -97
- package/dist/components/{icon-svg-CEZ-L3iv.js → icon-svg-GoL3_ayS.js} +699 -665
- package/dist/components/iconList.es.js +1 -1
- package/dist/components/iconSvg.es.js +1 -1
- package/dist/components/index.es.js +50 -47
- package/dist/components/infoBox.es.js +1 -1
- package/dist/components/link.es.js +1 -1
- package/dist/components/modal.es.js +28 -26
- package/dist/components/multiselect.es.js +2 -2
- package/dist/components/overlay.es.js +3 -3
- package/dist/components/persistentToast.es.js +8 -8
- package/dist/components/quantitySelector.es.js +160 -0
- package/dist/components/radioButton.es.js +1 -1
- package/dist/components/sidebar.es.js +11 -11
- package/dist/components/style/breadcrumbs.css +1 -1
- package/dist/components/style/button.css +1 -1
- package/dist/components/style/card.css +1 -1
- package/dist/components/style/datepicker.css +1 -1
- package/dist/components/style/floatingActionButton.css +1 -1
- package/dist/components/style/link.css +1 -1
- package/dist/components/style/modal.css +1 -1
- package/dist/components/style/quantitySelector.css +1 -0
- package/dist/components/style/tag.css +1 -1
- package/dist/components/style/textArea.css +1 -1
- package/dist/components/style/textField.css +1 -1
- package/dist/components/style/tooltip.css +1 -1
- package/dist/components/switch.es.js +1 -1
- package/dist/components/tabBar.es.js +27 -27
- package/dist/components/tag.es.js +1 -1
- package/dist/components/textArea.es.js +75 -75
- package/dist/components/textField.es.js +11 -11
- package/dist/components/tooltip.es.js +255 -252
- package/dist/energy-components.es.js +4262 -4056
- package/dist/energy-components.umd.js +1 -1
- package/dist/style.css +1 -1
- package/dist/types/src/components/buttons/action-button/action-button.vue.d.ts +4 -4
- package/dist/types/src/components/buttons/button/button.vue.d.ts +11 -18
- package/dist/types/src/components/buttons/floating-action-button/floating-action-button.vue.d.ts +4 -4
- package/dist/types/src/components/content/accordion/accordion.vue.d.ts +20 -24
- package/dist/types/src/components/content/acordion-group/accordion-group.vue.d.ts +8 -15
- package/dist/types/src/components/content/card/card.vue.d.ts +26 -15
- package/dist/types/src/components/content/divider/divider.vue.d.ts +4 -4
- package/dist/types/src/components/content/tag/tag.vue.d.ts +4 -4
- package/dist/types/src/components/feedback/indicator/indicator.vue.d.ts +7 -4
- package/dist/types/src/components/feedback/info-box/info-box.vue.d.ts +7 -4
- package/dist/types/src/components/feedback/persistent-toast/persistent-toast.vue.d.ts +13 -19
- package/dist/types/src/components/icon-svg/icon-list.vue.d.ts +1 -1
- package/dist/types/src/components/icon-svg/icon-svg.vue.d.ts +4 -4
- package/dist/types/src/components/index.d.ts +1 -0
- package/dist/types/src/components/input/checkbox/checkbox.vue.d.ts +13 -20
- package/dist/types/src/components/input/dropdown/dropdown.vue.d.ts +26 -36
- package/dist/types/src/components/input/quantity-selector/quantity-selector.vue.d.ts +93 -0
- package/dist/types/src/components/input/radio-button/radio-button.vue.d.ts +4 -4
- package/dist/types/src/components/input/radio-button/radio-group.vue.d.ts +13 -20
- package/dist/types/src/components/input/switch/switch.vue.d.ts +13 -19
- package/dist/types/src/components/input/text-area/text-area.vue.d.ts +16 -25
- package/dist/types/src/components/input/text-field/text-field.vue.d.ts +15 -23
- package/dist/types/src/components/layout/sidebar/sidebar.vue.d.ts +16 -21
- package/dist/types/src/components/navigation/breadcrumbs/breadcrumbs.vue.d.ts +6 -6
- package/dist/types/src/components/navigation/link/link.vue.d.ts +11 -17
- package/dist/types/src/components/navigation/pagination/pagination.vue.d.ts +6 -6
- package/dist/types/src/components/navigation/tab-bar/tab-bar.vue.d.ts +24 -27
- package/dist/types/src/components/overlay/modal/modal.vue.d.ts +92 -58
- package/dist/types/src/components/overlay/overlay/overlay.vue.d.ts +11 -18
- package/dist/types/src/components/overlay/tooltip/tooltip.vue.d.ts +19 -22
- package/dist/types/src/composables/breakpoints.d.ts +1 -1
- package/dist/types/src/helpers/mobileMockup.vue.d.ts +1 -1
- package/dist/types/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{
|
|
1
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
2
|
/**
|
|
3
3
|
* El número total de páginas en la paginación.
|
|
4
4
|
*/
|
|
@@ -27,8 +27,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
27
27
|
type: BooleanConstructor;
|
|
28
28
|
default: boolean;
|
|
29
29
|
};
|
|
30
|
-
}
|
|
31
|
-
pageChanged: (value: number) =>
|
|
30
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
31
|
+
pageChanged: (value: number) => any;
|
|
32
32
|
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
33
33
|
/**
|
|
34
34
|
* El número total de páginas en la paginación.
|
|
@@ -58,10 +58,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
58
58
|
type: BooleanConstructor;
|
|
59
59
|
default: boolean;
|
|
60
60
|
};
|
|
61
|
-
}>> & {
|
|
61
|
+
}>> & Readonly<{
|
|
62
62
|
onPageChanged?: ((value: number) => any) | undefined;
|
|
63
|
-
}
|
|
63
|
+
}>, {
|
|
64
64
|
jumpTo: boolean;
|
|
65
65
|
selected: boolean;
|
|
66
|
-
}, {}>;
|
|
66
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, HTMLUListElement>;
|
|
67
67
|
export default _default;
|
|
@@ -4,21 +4,19 @@ interface RDSTab {
|
|
|
4
4
|
title: string;
|
|
5
5
|
icon?: string;
|
|
6
6
|
}
|
|
7
|
-
declare
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
refs: __VLS_PickRefsExpose<typeof __VLS_refs>;
|
|
18
|
-
attrs: Partial<typeof __VLS_inheritedAttrs>;
|
|
7
|
+
declare function __VLS_template(): {
|
|
8
|
+
attrs: Partial<{}>;
|
|
9
|
+
slots: Partial<Record<string, (_: {
|
|
10
|
+
tab: string | RDSTab | undefined;
|
|
11
|
+
}) => any>>;
|
|
12
|
+
refs: {
|
|
13
|
+
tabsListWrapper: HTMLDivElement;
|
|
14
|
+
tabsList: HTMLUListElement;
|
|
15
|
+
};
|
|
16
|
+
rootEl: HTMLDivElement;
|
|
19
17
|
};
|
|
20
|
-
type
|
|
21
|
-
declare const __VLS_component: import("vue").DefineComponent<{
|
|
18
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
19
|
+
declare const __VLS_component: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
22
20
|
/**
|
|
23
21
|
* Pestaña activa
|
|
24
22
|
*/
|
|
@@ -62,9 +60,10 @@ declare const __VLS_component: import("vue").DefineComponent<{
|
|
|
62
60
|
type: PropType<(id: string, tab: RDSTab) => Promise<boolean>>;
|
|
63
61
|
default: (id: string, tab: RDSTab) => Promise<boolean> | undefined;
|
|
64
62
|
};
|
|
65
|
-
}
|
|
66
|
-
|
|
67
|
-
|
|
63
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
64
|
+
"update:activeTab": (value: string) => any;
|
|
65
|
+
} & {
|
|
66
|
+
activeTabChanged: (id: string) => any;
|
|
68
67
|
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
69
68
|
/**
|
|
70
69
|
* Pestaña activa
|
|
@@ -109,22 +108,20 @@ declare const __VLS_component: import("vue").DefineComponent<{
|
|
|
109
108
|
type: PropType<(id: string, tab: RDSTab) => Promise<boolean>>;
|
|
110
109
|
default: (id: string, tab: RDSTab) => Promise<boolean> | undefined;
|
|
111
110
|
};
|
|
112
|
-
}>> & {
|
|
111
|
+
}>> & Readonly<{
|
|
113
112
|
onActiveTabChanged?: ((id: string) => any) | undefined;
|
|
114
|
-
"onUpdate:activeTab"?: ((
|
|
115
|
-
}
|
|
113
|
+
"onUpdate:activeTab"?: ((value: string) => any) | undefined;
|
|
114
|
+
}>, {
|
|
116
115
|
divider: boolean;
|
|
117
116
|
fluid: boolean;
|
|
118
117
|
backgroundAlternative: boolean;
|
|
119
118
|
beforeTabChange: (id: string, tab: RDSTab) => Promise<boolean>;
|
|
120
|
-
}, {}
|
|
121
|
-
|
|
119
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {
|
|
120
|
+
tabsListWrapper: HTMLDivElement;
|
|
121
|
+
tabsList: HTMLUListElement;
|
|
122
|
+
}, HTMLDivElement>;
|
|
123
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
122
124
|
export default _default;
|
|
123
|
-
type __VLS_PickRefsExpose<T> = T extends object ? {
|
|
124
|
-
[K in keyof T]: (T[K] extends any[] ? Parameters<T[K][0]['expose']>[0][] : T[K] extends {
|
|
125
|
-
expose?: (exposed: infer E) => void;
|
|
126
|
-
} ? E : T[K]) | null;
|
|
127
|
-
} : never;
|
|
128
125
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
129
126
|
new (): {
|
|
130
127
|
$slots: S;
|
|
@@ -1,39 +1,19 @@
|
|
|
1
|
-
declare
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
emit?: ((event: string, ...args: any[]) => void) | undefined;
|
|
11
|
-
} & {
|
|
12
|
-
props?: (Partial<{
|
|
13
|
-
teleport: string;
|
|
14
|
-
}> & Omit<{
|
|
15
|
-
readonly teleport: string;
|
|
16
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
|
17
|
-
teleport: {
|
|
18
|
-
type: StringConstructor;
|
|
19
|
-
default: string;
|
|
20
|
-
required: true;
|
|
21
|
-
};
|
|
22
|
-
}>>, "teleport"> & Record<string, unknown>) | undefined;
|
|
23
|
-
expose?(exposed: {
|
|
1
|
+
declare function __VLS_template(): {
|
|
2
|
+
attrs: Partial<{}>;
|
|
3
|
+
slots: {
|
|
4
|
+
header?(_: {}): any;
|
|
5
|
+
body?(_: {}): any;
|
|
6
|
+
footer?(_: {}): any;
|
|
7
|
+
};
|
|
8
|
+
refs: {
|
|
9
|
+
overlay: ({
|
|
24
10
|
$: import("vue").ComponentInternalInstance;
|
|
25
11
|
$data: {};
|
|
26
12
|
$props: Partial<{
|
|
27
13
|
teleport: string;
|
|
28
14
|
}> & Omit<{
|
|
29
15
|
readonly teleport: string;
|
|
30
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps
|
|
31
|
-
teleport: {
|
|
32
|
-
type: StringConstructor;
|
|
33
|
-
default: string;
|
|
34
|
-
required: true;
|
|
35
|
-
};
|
|
36
|
-
}>>, "teleport">;
|
|
16
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "teleport">;
|
|
37
17
|
$attrs: {
|
|
38
18
|
[x: string]: unknown;
|
|
39
19
|
};
|
|
@@ -45,6 +25,7 @@ declare const __VLS_refs: {
|
|
|
45
25
|
}>;
|
|
46
26
|
$root: import("vue").ComponentPublicInstance | null;
|
|
47
27
|
$parent: import("vue").ComponentPublicInstance | null;
|
|
28
|
+
$host: Element | null;
|
|
48
29
|
$emit: (event: string, ...args: any[]) => void;
|
|
49
30
|
$el: any;
|
|
50
31
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -53,9 +34,9 @@ declare const __VLS_refs: {
|
|
|
53
34
|
default: string;
|
|
54
35
|
required: true;
|
|
55
36
|
};
|
|
56
|
-
}
|
|
37
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
57
38
|
teleport: string;
|
|
58
|
-
}, {}, string, {}> & {
|
|
39
|
+
}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & {
|
|
59
40
|
beforeCreate?: (() => void) | (() => void)[];
|
|
60
41
|
created?: (() => void) | (() => void)[];
|
|
61
42
|
beforeMount?: (() => void) | (() => void)[];
|
|
@@ -74,31 +55,25 @@ declare const __VLS_refs: {
|
|
|
74
55
|
};
|
|
75
56
|
$forceUpdate: () => void;
|
|
76
57
|
$nextTick: typeof import("vue").nextTick;
|
|
77
|
-
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, (
|
|
78
|
-
} &
|
|
58
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import("@vue/reactivity").OnCleanup]) => any : (...args: [any, any, import("@vue/reactivity").OnCleanup]) => any, options?: import("vue").WatchOptions): import("vue").WatchStopHandle;
|
|
59
|
+
} & Readonly<{
|
|
60
|
+
teleport: string;
|
|
61
|
+
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
79
62
|
teleport: {
|
|
80
63
|
type: StringConstructor;
|
|
81
64
|
default: string;
|
|
82
65
|
required: true;
|
|
83
66
|
};
|
|
84
|
-
}
|
|
67
|
+
}>> & Readonly<{}>, "teleport"> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
|
|
85
68
|
$slots: {
|
|
86
69
|
default?(_: {}): any;
|
|
87
70
|
};
|
|
88
|
-
})
|
|
89
|
-
}>;
|
|
90
|
-
};
|
|
91
|
-
declare const __VLS_templateResult: {
|
|
92
|
-
slots: {
|
|
93
|
-
header?(_: {}): any;
|
|
94
|
-
body?(_: {}): any;
|
|
95
|
-
footer?(_: {}): any;
|
|
71
|
+
}) | null;
|
|
96
72
|
};
|
|
97
|
-
|
|
98
|
-
attrs: Partial<typeof __VLS_inheritedAttrs>;
|
|
73
|
+
rootEl: any;
|
|
99
74
|
};
|
|
100
|
-
type
|
|
101
|
-
declare const __VLS_component: import("vue").DefineComponent<{
|
|
75
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
76
|
+
declare const __VLS_component: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
102
77
|
/**
|
|
103
78
|
* Define el estado del modal
|
|
104
79
|
*/
|
|
@@ -145,8 +120,8 @@ declare const __VLS_component: import("vue").DefineComponent<{
|
|
|
145
120
|
default: number;
|
|
146
121
|
validator: (value: string | number) => boolean;
|
|
147
122
|
};
|
|
148
|
-
}
|
|
149
|
-
onCloseRequest: () =>
|
|
123
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
124
|
+
onCloseRequest: () => any;
|
|
150
125
|
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
151
126
|
/**
|
|
152
127
|
* Define el estado del modal
|
|
@@ -194,23 +169,82 @@ declare const __VLS_component: import("vue").DefineComponent<{
|
|
|
194
169
|
default: number;
|
|
195
170
|
validator: (value: string | number) => boolean;
|
|
196
171
|
};
|
|
197
|
-
}>> & {
|
|
172
|
+
}>> & Readonly<{
|
|
198
173
|
onOnCloseRequest?: (() => any) | undefined;
|
|
199
|
-
}
|
|
174
|
+
}>, {
|
|
200
175
|
open: boolean;
|
|
201
176
|
width: string | number;
|
|
202
177
|
teleport: string;
|
|
203
178
|
showClose: boolean;
|
|
204
179
|
preventClose: boolean;
|
|
205
180
|
maxWidth: string | number;
|
|
206
|
-
}, {}
|
|
207
|
-
|
|
181
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {
|
|
182
|
+
overlay: ({
|
|
183
|
+
$: import("vue").ComponentInternalInstance;
|
|
184
|
+
$data: {};
|
|
185
|
+
$props: Partial<{
|
|
186
|
+
teleport: string;
|
|
187
|
+
}> & Omit<{
|
|
188
|
+
readonly teleport: string;
|
|
189
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "teleport">;
|
|
190
|
+
$attrs: {
|
|
191
|
+
[x: string]: unknown;
|
|
192
|
+
};
|
|
193
|
+
$refs: {
|
|
194
|
+
[x: string]: unknown;
|
|
195
|
+
};
|
|
196
|
+
$slots: Readonly<{
|
|
197
|
+
[name: string]: import("vue").Slot<any> | undefined;
|
|
198
|
+
}>;
|
|
199
|
+
$root: import("vue").ComponentPublicInstance | null;
|
|
200
|
+
$parent: import("vue").ComponentPublicInstance | null;
|
|
201
|
+
$host: Element | null;
|
|
202
|
+
$emit: (event: string, ...args: any[]) => void;
|
|
203
|
+
$el: any;
|
|
204
|
+
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
205
|
+
teleport: {
|
|
206
|
+
type: StringConstructor;
|
|
207
|
+
default: string;
|
|
208
|
+
required: true;
|
|
209
|
+
};
|
|
210
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
211
|
+
teleport: string;
|
|
212
|
+
}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & {
|
|
213
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
214
|
+
created?: (() => void) | (() => void)[];
|
|
215
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
216
|
+
mounted?: (() => void) | (() => void)[];
|
|
217
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
218
|
+
updated?: (() => void) | (() => void)[];
|
|
219
|
+
activated?: (() => void) | (() => void)[];
|
|
220
|
+
deactivated?: (() => void) | (() => void)[];
|
|
221
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
222
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
223
|
+
destroyed?: (() => void) | (() => void)[];
|
|
224
|
+
unmounted?: (() => void) | (() => void)[];
|
|
225
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
226
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
227
|
+
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
228
|
+
};
|
|
229
|
+
$forceUpdate: () => void;
|
|
230
|
+
$nextTick: typeof import("vue").nextTick;
|
|
231
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import("@vue/reactivity").OnCleanup]) => any : (...args: [any, any, import("@vue/reactivity").OnCleanup]) => any, options?: import("vue").WatchOptions): import("vue").WatchStopHandle;
|
|
232
|
+
} & Readonly<{
|
|
233
|
+
teleport: string;
|
|
234
|
+
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
235
|
+
teleport: {
|
|
236
|
+
type: StringConstructor;
|
|
237
|
+
default: string;
|
|
238
|
+
required: true;
|
|
239
|
+
};
|
|
240
|
+
}>> & Readonly<{}>, "teleport"> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
|
|
241
|
+
$slots: {
|
|
242
|
+
default?(_: {}): any;
|
|
243
|
+
};
|
|
244
|
+
}) | null;
|
|
245
|
+
}, any>;
|
|
246
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
208
247
|
export default _default;
|
|
209
|
-
type __VLS_PickRefsExpose<T> = T extends object ? {
|
|
210
|
-
[K in keyof T]: (T[K] extends any[] ? Parameters<T[K][0]['expose']>[0][] : T[K] extends {
|
|
211
|
-
expose?: (exposed: infer E) => void;
|
|
212
|
-
} ? E : T[K]) | null;
|
|
213
|
-
} : never;
|
|
214
248
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
215
249
|
new (): {
|
|
216
250
|
$slots: S;
|
|
@@ -1,15 +1,13 @@
|
|
|
1
|
-
declare
|
|
2
|
-
|
|
3
|
-
declare const __VLS_refs: {};
|
|
4
|
-
declare const __VLS_templateResult: {
|
|
1
|
+
declare function __VLS_template(): {
|
|
2
|
+
attrs: Partial<{}>;
|
|
5
3
|
slots: {
|
|
6
|
-
default?(_:
|
|
4
|
+
default?(_: {}): any;
|
|
7
5
|
};
|
|
8
|
-
refs:
|
|
9
|
-
|
|
6
|
+
refs: {};
|
|
7
|
+
rootEl: any;
|
|
10
8
|
};
|
|
11
|
-
type
|
|
12
|
-
declare const __VLS_component: import("vue").DefineComponent<{
|
|
9
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
10
|
+
declare const __VLS_component: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
13
11
|
/**
|
|
14
12
|
* Indica el punto de anclaje del overlay, para que funcione debe de estar montado en el DOM
|
|
15
13
|
* [Documentación de Teleport](https://vuejs.org/guide/built-ins/teleport.html#teleport)
|
|
@@ -19,7 +17,7 @@ declare const __VLS_component: import("vue").DefineComponent<{
|
|
|
19
17
|
default: string;
|
|
20
18
|
required: true;
|
|
21
19
|
};
|
|
22
|
-
}
|
|
20
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
23
21
|
/**
|
|
24
22
|
* Indica el punto de anclaje del overlay, para que funcione debe de estar montado en el DOM
|
|
25
23
|
* [Documentación de Teleport](https://vuejs.org/guide/built-ins/teleport.html#teleport)
|
|
@@ -29,16 +27,11 @@ declare const __VLS_component: import("vue").DefineComponent<{
|
|
|
29
27
|
default: string;
|
|
30
28
|
required: true;
|
|
31
29
|
};
|
|
32
|
-
}
|
|
30
|
+
}>> & Readonly<{}>, {
|
|
33
31
|
teleport: string;
|
|
34
|
-
}, {}>;
|
|
35
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component,
|
|
32
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
33
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
36
34
|
export default _default;
|
|
37
|
-
type __VLS_PickRefsExpose<T> = T extends object ? {
|
|
38
|
-
[K in keyof T]: (T[K] extends any[] ? Parameters<T[K][0]['expose']>[0][] : T[K] extends {
|
|
39
|
-
expose?: (exposed: infer E) => void;
|
|
40
|
-
} ? E : T[K]) | null;
|
|
41
|
-
} : never;
|
|
42
35
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
43
36
|
new (): {
|
|
44
37
|
$slots: S;
|
|
@@ -1,19 +1,17 @@
|
|
|
1
|
-
declare
|
|
2
|
-
|
|
3
|
-
declare const __VLS_refs: {
|
|
4
|
-
referenceRef: import("vue").HTMLAttributes & import("vue").ReservedProps;
|
|
5
|
-
floatingRef: import("vue").HTMLAttributes & import("vue").ReservedProps;
|
|
6
|
-
arrowRef: import("vue").HTMLAttributes & import("vue").ReservedProps;
|
|
7
|
-
};
|
|
8
|
-
declare const __VLS_templateResult: {
|
|
1
|
+
declare function __VLS_template(): {
|
|
2
|
+
attrs: Partial<{}>;
|
|
9
3
|
slots: {
|
|
10
|
-
default?(_:
|
|
4
|
+
default?(_: {}): any;
|
|
5
|
+
};
|
|
6
|
+
refs: {
|
|
7
|
+
referenceRef: HTMLDivElement;
|
|
8
|
+
floatingRef: HTMLDivElement;
|
|
9
|
+
arrowRef: HTMLDivElement;
|
|
11
10
|
};
|
|
12
|
-
|
|
13
|
-
attrs: Partial<typeof __VLS_inheritedAttrs>;
|
|
11
|
+
rootEl: HTMLDivElement;
|
|
14
12
|
};
|
|
15
|
-
type
|
|
16
|
-
declare const __VLS_component: import("vue").DefineComponent<{
|
|
13
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
14
|
+
declare const __VLS_component: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
17
15
|
/**
|
|
18
16
|
* <span>Título del tooltip</span>
|
|
19
17
|
*/
|
|
@@ -55,7 +53,7 @@ declare const __VLS_component: import("vue").DefineComponent<{
|
|
|
55
53
|
type: BooleanConstructor;
|
|
56
54
|
default: boolean;
|
|
57
55
|
};
|
|
58
|
-
}
|
|
56
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
59
57
|
/**
|
|
60
58
|
* <span>Título del tooltip</span>
|
|
61
59
|
*/
|
|
@@ -97,20 +95,19 @@ declare const __VLS_component: import("vue").DefineComponent<{
|
|
|
97
95
|
type: BooleanConstructor;
|
|
98
96
|
default: boolean;
|
|
99
97
|
};
|
|
100
|
-
}
|
|
98
|
+
}>> & Readonly<{}>, {
|
|
101
99
|
title: string;
|
|
102
100
|
content: string;
|
|
103
101
|
fullWidth: boolean;
|
|
104
102
|
offsetSpace: number;
|
|
105
103
|
large: boolean;
|
|
106
|
-
}, {}
|
|
107
|
-
|
|
104
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {
|
|
105
|
+
referenceRef: HTMLDivElement;
|
|
106
|
+
floatingRef: HTMLDivElement;
|
|
107
|
+
arrowRef: HTMLDivElement;
|
|
108
|
+
}, HTMLDivElement>;
|
|
109
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
108
110
|
export default _default;
|
|
109
|
-
type __VLS_PickRefsExpose<T> = T extends object ? {
|
|
110
|
-
[K in keyof T]: (T[K] extends any[] ? Parameters<T[K][0]['expose']>[0][] : T[K] extends {
|
|
111
|
-
expose?: (exposed: infer E) => void;
|
|
112
|
-
} ? E : T[K]) | null;
|
|
113
|
-
} : never;
|
|
114
111
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
115
112
|
new (): {
|
|
116
113
|
$slots: S;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export declare function useBreakpoints(): import("vue").Ref<Record<string, boolean>>;
|
|
1
|
+
export declare function useBreakpoints(): import("vue").Ref<Record<string, boolean>, Record<string, boolean>>;
|
|
2
2
|
declare const _default: {
|
|
3
3
|
useBreakpoints: typeof useBreakpoints;
|
|
4
4
|
};
|
|
@@ -5,5 +5,5 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
5
5
|
readonly src?: string | undefined;
|
|
6
6
|
readonly device?: string | undefined;
|
|
7
7
|
};
|
|
8
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").
|
|
8
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
9
9
|
export default _default;
|