energy-components 1.1.2-beta.1 → 1.1.3
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 +10 -11
- 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 +1 -1
- package/dist/components/infoBox.es.js +1 -1
- package/dist/components/link.es.js +29 -26
- 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/radioButton.es.js +1 -1
- package/dist/components/sidebar.es.js +11 -11
- 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/link.css +1 -1
- package/dist/components/style/modal.css +1 -1
- 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 +77 -75
- package/dist/components/textField.es.js +62 -59
- package/dist/components/tooltip.es.js +262 -259
- package/dist/energy-components.es.js +4600 -4542
- 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 -20
- 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/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/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 -19
- 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
|
@@ -5,20 +5,10 @@ export interface DropdownOption {
|
|
|
5
5
|
detail?: string;
|
|
6
6
|
[key: string]: any;
|
|
7
7
|
}
|
|
8
|
-
declare
|
|
9
|
-
|
|
10
|
-
multiselect: NonNullable<{
|
|
11
|
-
attrs?: any;
|
|
12
|
-
slots?: any;
|
|
13
|
-
emit?: any;
|
|
14
|
-
} & {
|
|
15
|
-
props?: any;
|
|
16
|
-
expose?(exposed: any): void;
|
|
17
|
-
}>;
|
|
18
|
-
};
|
|
19
|
-
declare const __VLS_templateResult: {
|
|
8
|
+
declare function __VLS_template(): {
|
|
9
|
+
attrs: Partial<{}>;
|
|
20
10
|
slots: {
|
|
21
|
-
|
|
11
|
+
'helper-text'?(_: {}): any;
|
|
22
12
|
singleLabel?(_: {
|
|
23
13
|
option: any;
|
|
24
14
|
}): any;
|
|
@@ -35,11 +25,13 @@ declare const __VLS_templateResult: {
|
|
|
35
25
|
noOptions?(_: {}): any;
|
|
36
26
|
afterList?(_: {}): any;
|
|
37
27
|
};
|
|
38
|
-
refs:
|
|
39
|
-
|
|
28
|
+
refs: {
|
|
29
|
+
multiselect: any;
|
|
30
|
+
};
|
|
31
|
+
rootEl: HTMLDivElement;
|
|
40
32
|
};
|
|
41
|
-
type
|
|
42
|
-
declare const __VLS_component: import("vue").DefineComponent<{
|
|
33
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
34
|
+
declare const __VLS_component: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
43
35
|
/**
|
|
44
36
|
* Id del dropdown
|
|
45
37
|
*/
|
|
@@ -138,7 +130,7 @@ declare const __VLS_component: import("vue").DefineComponent<{
|
|
|
138
130
|
type: PropType<any>;
|
|
139
131
|
required: true;
|
|
140
132
|
};
|
|
141
|
-
}
|
|
133
|
+
}>, {
|
|
142
134
|
/**
|
|
143
135
|
* Abre el dropdown
|
|
144
136
|
*/
|
|
@@ -147,12 +139,13 @@ declare const __VLS_component: import("vue").DefineComponent<{
|
|
|
147
139
|
* Cierra el dropdown
|
|
148
140
|
*/
|
|
149
141
|
deactivate: () => void;
|
|
150
|
-
},
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
142
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
143
|
+
"update:modelValue": (value: any) => any;
|
|
144
|
+
} & {
|
|
145
|
+
close: (id: any) => any;
|
|
146
|
+
open: (id: any) => any;
|
|
147
|
+
change: (options: any[]) => any;
|
|
148
|
+
select: (selectOption: any) => any;
|
|
156
149
|
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
157
150
|
/**
|
|
158
151
|
* Id del dropdown
|
|
@@ -252,13 +245,13 @@ declare const __VLS_component: import("vue").DefineComponent<{
|
|
|
252
245
|
type: PropType<any>;
|
|
253
246
|
required: true;
|
|
254
247
|
};
|
|
255
|
-
}>> & {
|
|
256
|
-
onChange?: ((options: any[]) => any) | undefined;
|
|
257
|
-
onSelect?: ((selectOption: any) => any) | undefined;
|
|
258
|
-
"onUpdate:modelValue"?: ((modelValue: any) => any) | undefined;
|
|
248
|
+
}>> & Readonly<{
|
|
259
249
|
onClose?: ((id: any) => any) | undefined;
|
|
260
250
|
onOpen?: ((id: any) => any) | undefined;
|
|
261
|
-
|
|
251
|
+
onChange?: ((options: any[]) => any) | undefined;
|
|
252
|
+
onSelect?: ((selectOption: any) => any) | undefined;
|
|
253
|
+
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
254
|
+
}>, {
|
|
262
255
|
error: boolean;
|
|
263
256
|
label: string;
|
|
264
257
|
small: boolean;
|
|
@@ -270,14 +263,11 @@ declare const __VLS_component: import("vue").DefineComponent<{
|
|
|
270
263
|
showRadio: boolean;
|
|
271
264
|
limit: number;
|
|
272
265
|
limitText: Function;
|
|
273
|
-
}, {}
|
|
274
|
-
|
|
266
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {
|
|
267
|
+
multiselect: any;
|
|
268
|
+
}, HTMLDivElement>;
|
|
269
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
275
270
|
export default _default;
|
|
276
|
-
type __VLS_PickRefsExpose<T> = T extends object ? {
|
|
277
|
-
[K in keyof T]: (T[K] extends any[] ? Parameters<T[K][0]['expose']>[0][] : T[K] extends {
|
|
278
|
-
expose?: (exposed: infer E) => void;
|
|
279
|
-
} ? E : T[K]) | null;
|
|
280
|
-
} : never;
|
|
281
271
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
282
272
|
new (): {
|
|
283
273
|
$slots: S;
|
|
@@ -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
|
* <span>Id del radio button</span>
|
|
4
4
|
*/
|
|
@@ -42,7 +42,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
42
42
|
type: BooleanConstructor;
|
|
43
43
|
default: boolean;
|
|
44
44
|
};
|
|
45
|
-
}
|
|
45
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
46
46
|
/**
|
|
47
47
|
* <span>Id del radio button</span>
|
|
48
48
|
*/
|
|
@@ -86,10 +86,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
86
86
|
type: BooleanConstructor;
|
|
87
87
|
default: boolean;
|
|
88
88
|
};
|
|
89
|
-
}
|
|
89
|
+
}>> & Readonly<{}>, {
|
|
90
90
|
error: boolean;
|
|
91
91
|
label: string;
|
|
92
92
|
icon: string;
|
|
93
93
|
disabled: boolean;
|
|
94
|
-
}, {}>;
|
|
94
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
95
95
|
export default _default;
|
|
@@ -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: HTMLDivElement;
|
|
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
|
* <span>Nombre del grupo de radio. Es importante usar un group-name único para cada grupo de radio.</span>
|
|
15
13
|
*/
|
|
@@ -20,8 +18,8 @@ declare const __VLS_component: import("vue").DefineComponent<{
|
|
|
20
18
|
modelValue: {
|
|
21
19
|
type: import("vue").PropType<string | number | null>;
|
|
22
20
|
};
|
|
23
|
-
}
|
|
24
|
-
"update:modelValue": (
|
|
21
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
22
|
+
"update:modelValue": (value: string | number | null) => any;
|
|
25
23
|
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
26
24
|
/**
|
|
27
25
|
* <span>Nombre del grupo de radio. Es importante usar un group-name único para cada grupo de radio.</span>
|
|
@@ -33,16 +31,11 @@ declare const __VLS_component: import("vue").DefineComponent<{
|
|
|
33
31
|
modelValue: {
|
|
34
32
|
type: import("vue").PropType<string | number | null>;
|
|
35
33
|
};
|
|
36
|
-
}>> & {
|
|
37
|
-
"onUpdate:modelValue"?: ((
|
|
38
|
-
}, {}, {}>;
|
|
39
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component,
|
|
34
|
+
}>> & Readonly<{
|
|
35
|
+
"onUpdate:modelValue"?: ((value: string | number | null) => any) | undefined;
|
|
36
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
37
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
40
38
|
export default _default;
|
|
41
|
-
type __VLS_PickRefsExpose<T> = T extends object ? {
|
|
42
|
-
[K in keyof T]: (T[K] extends any[] ? Parameters<T[K][0]['expose']>[0][] : T[K] extends {
|
|
43
|
-
expose?: (exposed: infer E) => void;
|
|
44
|
-
} ? E : T[K]) | null;
|
|
45
|
-
} : never;
|
|
46
39
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
47
40
|
new (): {
|
|
48
41
|
$slots: S;
|
|
@@ -1,14 +1,13 @@
|
|
|
1
|
-
declare
|
|
2
|
-
|
|
3
|
-
declare const __VLS_templateResult: {
|
|
1
|
+
declare function __VLS_template(): {
|
|
2
|
+
attrs: Partial<{}>;
|
|
4
3
|
slots: {
|
|
5
|
-
|
|
4
|
+
'text-label'?(_: {}): any;
|
|
6
5
|
};
|
|
7
|
-
refs:
|
|
8
|
-
|
|
6
|
+
refs: {};
|
|
7
|
+
rootEl: HTMLDivElement;
|
|
9
8
|
};
|
|
10
|
-
type
|
|
11
|
-
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<{
|
|
12
11
|
/**
|
|
13
12
|
* ID del interruptor
|
|
14
13
|
*/
|
|
@@ -44,8 +43,8 @@ declare const __VLS_component: import("vue").DefineComponent<{
|
|
|
44
43
|
type: BooleanConstructor;
|
|
45
44
|
default: boolean;
|
|
46
45
|
};
|
|
47
|
-
}
|
|
48
|
-
"update:modelValue": (event: boolean) =>
|
|
46
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
47
|
+
"update:modelValue": (event: boolean) => any;
|
|
49
48
|
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
50
49
|
/**
|
|
51
50
|
* ID del interruptor
|
|
@@ -82,21 +81,16 @@ declare const __VLS_component: import("vue").DefineComponent<{
|
|
|
82
81
|
type: BooleanConstructor;
|
|
83
82
|
default: boolean;
|
|
84
83
|
};
|
|
85
|
-
}>> & {
|
|
84
|
+
}>> & Readonly<{
|
|
86
85
|
"onUpdate:modelValue"?: ((event: boolean) => any) | undefined;
|
|
87
|
-
}
|
|
86
|
+
}>, {
|
|
88
87
|
label: string;
|
|
89
88
|
icon: string;
|
|
90
89
|
disabled: boolean;
|
|
91
90
|
checked: boolean;
|
|
92
|
-
}, {}>;
|
|
93
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component,
|
|
91
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
92
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
94
93
|
export default _default;
|
|
95
|
-
type __VLS_PickRefsExpose<T> = T extends object ? {
|
|
96
|
-
[K in keyof T]: (T[K] extends any[] ? Parameters<T[K][0]['expose']>[0][] : T[K] extends {
|
|
97
|
-
expose?: (exposed: infer E) => void;
|
|
98
|
-
} ? E : T[K]) | null;
|
|
99
|
-
} : never;
|
|
100
94
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
101
95
|
new (): {
|
|
102
96
|
$slots: S;
|
|
@@ -1,19 +1,15 @@
|
|
|
1
|
-
declare
|
|
2
|
-
|
|
3
|
-
declare var __VLS_12: {};
|
|
4
|
-
declare var __VLS_inheritedAttrs: {};
|
|
5
|
-
declare const __VLS_refs: {};
|
|
6
|
-
declare const __VLS_templateResult: {
|
|
1
|
+
declare function __VLS_template(): {
|
|
2
|
+
attrs: Partial<{}>;
|
|
7
3
|
slots: {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
4
|
+
'left-icon'?(_: {}): any;
|
|
5
|
+
'right-icon'?(_: {}): any;
|
|
6
|
+
'helper-text'?(_: {}): any;
|
|
11
7
|
};
|
|
12
|
-
refs:
|
|
13
|
-
|
|
8
|
+
refs: {};
|
|
9
|
+
rootEl: HTMLDivElement;
|
|
14
10
|
};
|
|
15
|
-
type
|
|
16
|
-
declare const __VLS_component: import("vue").DefineComponent<{
|
|
11
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
12
|
+
declare const __VLS_component: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
17
13
|
/**
|
|
18
14
|
* Etiqueta que se muestra sobre el campo de entrada. y Placeholder
|
|
19
15
|
*/
|
|
@@ -131,8 +127,8 @@ declare const __VLS_component: import("vue").DefineComponent<{
|
|
|
131
127
|
type: StringConstructor;
|
|
132
128
|
default: string;
|
|
133
129
|
};
|
|
134
|
-
}
|
|
135
|
-
"update:modelValue": (
|
|
130
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
131
|
+
"update:modelValue": (value: string) => any;
|
|
136
132
|
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
137
133
|
/**
|
|
138
134
|
* Etiqueta que se muestra sobre el campo de entrada. y Placeholder
|
|
@@ -251,9 +247,9 @@ declare const __VLS_component: import("vue").DefineComponent<{
|
|
|
251
247
|
type: StringConstructor;
|
|
252
248
|
default: string;
|
|
253
249
|
};
|
|
254
|
-
}>> & {
|
|
255
|
-
"onUpdate:modelValue"?: ((
|
|
256
|
-
}
|
|
250
|
+
}>> & Readonly<{
|
|
251
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
252
|
+
}>, {
|
|
257
253
|
error: boolean;
|
|
258
254
|
icon: string;
|
|
259
255
|
disabled: boolean;
|
|
@@ -266,14 +262,9 @@ declare const __VLS_component: import("vue").DefineComponent<{
|
|
|
266
262
|
lengthError: boolean;
|
|
267
263
|
rows: number;
|
|
268
264
|
counter: boolean;
|
|
269
|
-
}, {}>;
|
|
270
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component,
|
|
265
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
266
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
271
267
|
export default _default;
|
|
272
|
-
type __VLS_PickRefsExpose<T> = T extends object ? {
|
|
273
|
-
[K in keyof T]: (T[K] extends any[] ? Parameters<T[K][0]['expose']>[0][] : T[K] extends {
|
|
274
|
-
expose?: (exposed: infer E) => void;
|
|
275
|
-
} ? E : T[K]) | null;
|
|
276
|
-
} : never;
|
|
277
268
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
278
269
|
new (): {
|
|
279
270
|
$slots: S;
|
|
@@ -1,18 +1,15 @@
|
|
|
1
|
-
declare
|
|
2
|
-
|
|
3
|
-
declare var __VLS_inheritedAttrs: {};
|
|
4
|
-
declare const __VLS_refs: {};
|
|
5
|
-
declare const __VLS_templateResult: {
|
|
1
|
+
declare function __VLS_template(): {
|
|
2
|
+
attrs: Partial<{}>;
|
|
6
3
|
slots: {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
4
|
+
'left-icon'?(_: {}): any;
|
|
5
|
+
'right-icon'?(_: {}): any;
|
|
6
|
+
'helper-text'?(_: {}): any;
|
|
10
7
|
};
|
|
11
|
-
refs:
|
|
12
|
-
|
|
8
|
+
refs: {};
|
|
9
|
+
rootEl: HTMLDivElement;
|
|
13
10
|
};
|
|
14
|
-
type
|
|
15
|
-
declare const __VLS_component: import("vue").DefineComponent<{
|
|
11
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
12
|
+
declare const __VLS_component: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
16
13
|
/**
|
|
17
14
|
* Etiqueta que se muestra sobre el campo de entrada. y Placeholder
|
|
18
15
|
*/
|
|
@@ -124,8 +121,8 @@ declare const __VLS_component: import("vue").DefineComponent<{
|
|
|
124
121
|
default: string;
|
|
125
122
|
validator: (value: string, props: any) => boolean;
|
|
126
123
|
};
|
|
127
|
-
}
|
|
128
|
-
"update:modelValue": (modelValue: string) =>
|
|
124
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
125
|
+
"update:modelValue": (modelValue: string) => any;
|
|
129
126
|
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
130
127
|
/**
|
|
131
128
|
* Etiqueta que se muestra sobre el campo de entrada. y Placeholder
|
|
@@ -238,9 +235,9 @@ declare const __VLS_component: import("vue").DefineComponent<{
|
|
|
238
235
|
default: string;
|
|
239
236
|
validator: (value: string, props: any) => boolean;
|
|
240
237
|
};
|
|
241
|
-
}>> & {
|
|
238
|
+
}>> & Readonly<{
|
|
242
239
|
"onUpdate:modelValue"?: ((modelValue: string) => any) | undefined;
|
|
243
|
-
}
|
|
240
|
+
}>, {
|
|
244
241
|
error: boolean;
|
|
245
242
|
icon: string;
|
|
246
243
|
disabled: boolean;
|
|
@@ -253,14 +250,9 @@ declare const __VLS_component: import("vue").DefineComponent<{
|
|
|
253
250
|
helperText: string;
|
|
254
251
|
clearable: boolean;
|
|
255
252
|
autocomplete: string;
|
|
256
|
-
}, {}>;
|
|
257
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component,
|
|
253
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
254
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
258
255
|
export default _default;
|
|
259
|
-
type __VLS_PickRefsExpose<T> = T extends object ? {
|
|
260
|
-
[K in keyof T]: (T[K] extends any[] ? Parameters<T[K][0]['expose']>[0][] : T[K] extends {
|
|
261
|
-
expose?: (exposed: infer E) => void;
|
|
262
|
-
} ? E : T[K]) | null;
|
|
263
|
-
} : never;
|
|
264
256
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
265
257
|
new (): {
|
|
266
258
|
$slots: S;
|
|
@@ -1,23 +1,21 @@
|
|
|
1
|
-
declare
|
|
2
|
-
|
|
3
|
-
declare const __VLS_refs: {
|
|
4
|
-
sidebar: import("vue").HTMLAttributes & import("vue").ReservedProps;
|
|
5
|
-
};
|
|
6
|
-
declare const __VLS_templateResult: {
|
|
1
|
+
declare function __VLS_template(): {
|
|
2
|
+
attrs: Partial<{}>;
|
|
7
3
|
slots: {
|
|
8
|
-
content?(_:
|
|
4
|
+
content?(_: {}): any;
|
|
9
5
|
collapsed?(_: {}): any;
|
|
10
6
|
expanded?(_: {}): any;
|
|
11
7
|
};
|
|
12
|
-
refs:
|
|
13
|
-
|
|
8
|
+
refs: {
|
|
9
|
+
sidebar: HTMLDivElement;
|
|
10
|
+
};
|
|
11
|
+
rootEl: HTMLDivElement;
|
|
14
12
|
};
|
|
15
|
-
type
|
|
13
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
16
14
|
declare const __VLS_component: import("vue").DefineComponent<{}, {
|
|
17
15
|
/**
|
|
18
16
|
* { boolean } Muestra el estado actual del sidebar.
|
|
19
17
|
*/
|
|
20
|
-
isCollapsed: import("vue").Ref<boolean>;
|
|
18
|
+
isCollapsed: import("vue").Ref<boolean, boolean>;
|
|
21
19
|
/**
|
|
22
20
|
* { () => void } Abre el sidebar.
|
|
23
21
|
*/
|
|
@@ -30,18 +28,15 @@ declare const __VLS_component: import("vue").DefineComponent<{}, {
|
|
|
30
28
|
* { (state: boolean) => void } Cambia el estado del sidebar.
|
|
31
29
|
*/
|
|
32
30
|
toogleSidebar: () => void;
|
|
33
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
34
|
-
sidebarChange: (isCollapsed: boolean) =>
|
|
35
|
-
}, string, import("vue").PublicProps, Readonly<
|
|
31
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
32
|
+
sidebarChange: (isCollapsed: boolean) => any;
|
|
33
|
+
}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{
|
|
36
34
|
onSidebarChange?: ((isCollapsed: boolean) => any) | undefined;
|
|
37
|
-
}, {}, {}
|
|
38
|
-
|
|
35
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {
|
|
36
|
+
sidebar: HTMLDivElement;
|
|
37
|
+
}, HTMLDivElement>;
|
|
38
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
39
39
|
export default _default;
|
|
40
|
-
type __VLS_PickRefsExpose<T> = T extends object ? {
|
|
41
|
-
[K in keyof T]: (T[K] extends any[] ? Parameters<T[K][0]['expose']>[0][] : T[K] extends {
|
|
42
|
-
expose?: (exposed: infer E) => void;
|
|
43
|
-
} ? E : T[K]) | null;
|
|
44
|
-
} : never;
|
|
45
40
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
46
41
|
new (): {
|
|
47
42
|
$slots: S;
|
|
@@ -8,7 +8,7 @@ export type RDSLinkProps = _RDSLinkProps & {
|
|
|
8
8
|
kind: never;
|
|
9
9
|
icon: never;
|
|
10
10
|
};
|
|
11
|
-
declare const _default: import("vue").DefineComponent<{
|
|
11
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
12
12
|
/**
|
|
13
13
|
* <span>Lista de items a mostrar en el breadcrumb</span>
|
|
14
14
|
*/
|
|
@@ -30,8 +30,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
30
30
|
type: BooleanConstructor;
|
|
31
31
|
default: boolean;
|
|
32
32
|
};
|
|
33
|
-
}
|
|
34
|
-
onClickTrimmedList: (value: RDSLinkProps[]) =>
|
|
33
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
34
|
+
onClickTrimmedList: (value: RDSLinkProps[]) => any;
|
|
35
35
|
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
36
36
|
/**
|
|
37
37
|
* <span>Lista de items a mostrar en el breadcrumb</span>
|
|
@@ -54,10 +54,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
54
54
|
type: BooleanConstructor;
|
|
55
55
|
default: boolean;
|
|
56
56
|
};
|
|
57
|
-
}>> & {
|
|
57
|
+
}>> & Readonly<{
|
|
58
58
|
onOnClickTrimmedList?: ((value: RDSLinkProps[]) => any) | undefined;
|
|
59
|
-
}
|
|
59
|
+
}>, {
|
|
60
60
|
inverse: boolean;
|
|
61
61
|
trimItems: boolean;
|
|
62
|
-
}, {}>;
|
|
62
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
63
63
|
export default _default;
|
|
@@ -1,21 +1,19 @@
|
|
|
1
|
-
declare
|
|
2
|
-
|
|
3
|
-
declare const __VLS_templateResult: {
|
|
1
|
+
declare function __VLS_template(): {
|
|
2
|
+
attrs: Partial<{}>;
|
|
4
3
|
slots: {
|
|
5
4
|
default?(_: {}): any;
|
|
6
5
|
default?(_: {}): any;
|
|
7
6
|
};
|
|
8
|
-
refs:
|
|
9
|
-
|
|
7
|
+
refs: {};
|
|
8
|
+
rootEl: any;
|
|
10
9
|
};
|
|
11
|
-
type
|
|
12
|
-
declare const __VLS_component: import("vue").DefineComponent<{
|
|
10
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
11
|
+
declare const __VLS_component: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
13
12
|
/**
|
|
14
13
|
* <span>Texto a mostrar en el link</span>
|
|
15
14
|
*/
|
|
16
15
|
text: {
|
|
17
16
|
type: StringConstructor;
|
|
18
|
-
required: true;
|
|
19
17
|
};
|
|
20
18
|
/**
|
|
21
19
|
* <span>Url a la que redirige el link</span>
|
|
@@ -87,13 +85,12 @@ declare const __VLS_component: import("vue").DefineComponent<{
|
|
|
87
85
|
type: StringConstructor;
|
|
88
86
|
default: string;
|
|
89
87
|
};
|
|
90
|
-
}
|
|
88
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
91
89
|
/**
|
|
92
90
|
* <span>Texto a mostrar en el link</span>
|
|
93
91
|
*/
|
|
94
92
|
text: {
|
|
95
93
|
type: StringConstructor;
|
|
96
|
-
required: true;
|
|
97
94
|
};
|
|
98
95
|
/**
|
|
99
96
|
* <span>Url a la que redirige el link</span>
|
|
@@ -165,24 +162,19 @@ declare const __VLS_component: import("vue").DefineComponent<{
|
|
|
165
162
|
type: StringConstructor;
|
|
166
163
|
default: string;
|
|
167
164
|
};
|
|
168
|
-
}
|
|
165
|
+
}>> & Readonly<{}>, {
|
|
169
166
|
icon: Record<string, any>;
|
|
170
167
|
inverse: boolean;
|
|
171
168
|
disabled: boolean;
|
|
172
169
|
right: boolean;
|
|
173
170
|
tag: string;
|
|
171
|
+
customClass: string;
|
|
174
172
|
to: string;
|
|
175
173
|
underline: boolean;
|
|
176
174
|
arrow: boolean;
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_Slots>;
|
|
175
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
176
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
180
177
|
export default _default;
|
|
181
|
-
type __VLS_PickRefsExpose<T> = T extends object ? {
|
|
182
|
-
[K in keyof T]: (T[K] extends any[] ? Parameters<T[K][0]['expose']>[0][] : T[K] extends {
|
|
183
|
-
expose?: (exposed: infer E) => void;
|
|
184
|
-
} ? E : T[K]) | null;
|
|
185
|
-
} : never;
|
|
186
178
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
187
179
|
new (): {
|
|
188
180
|
$slots: S;
|
|
@@ -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;
|