energy-components 1.13.0 → 1.14.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/breadcrumbs.es.js +59 -40
- package/dist/components/dropdown.es.js +201 -152
- package/dist/components/indicator.es.js +8 -8
- package/dist/components/multiselect.es.js +15 -11
- package/dist/components/style/accordion.css +1 -1
- package/dist/components/style/actionButton.css +1 -1
- package/dist/components/style/breadcrumbs.css +1 -1
- package/dist/components/style/button.css +1 -1
- package/dist/components/style/checkbox.css +1 -1
- package/dist/components/style/collapsable.css +1 -1
- package/dist/components/style/directAccess.css +1 -1
- package/dist/components/style/dragAndDrop.css +1 -1
- package/dist/components/style/dropdown.css +1 -1
- package/dist/components/style/filterChip.css +1 -1
- package/dist/components/style/filterTag.css +1 -1
- package/dist/components/style/indicator.css +1 -1
- package/dist/components/style/infoBox.css +1 -1
- package/dist/components/style/link.css +1 -1
- package/dist/components/style/multiselect.css +1 -1
- package/dist/components/style/persistentToast.css +1 -1
- package/dist/components/style/progressBar.css +1 -1
- package/dist/components/style/quantitySelector.css +1 -1
- package/dist/components/style/radioButton.css +1 -1
- package/dist/components/style/selectionChip.css +1 -1
- package/dist/components/style/switch.css +1 -1
- package/dist/components/style/tableslotedcomponent.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/tooltip.es.js +344 -325
- package/dist/energy-components.es.js +4874 -4783
- package/dist/energy-components.umd.js +2 -2
- package/dist/style.css +1 -1
- package/dist/types/src/components/input/dropdown/dropdown.vue.d.ts +58 -13
- package/dist/types/src/components/navigation/breadcrumbs/breadcrumbs.vue.d.ts +15 -0
- package/dist/types/src/components/overlay/tooltip/tooltip.vue.d.ts +15 -0
- package/dist/types/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
|
@@ -19,33 +19,33 @@ export interface AutoCompleteProps {
|
|
|
19
19
|
helperText?: string;
|
|
20
20
|
autocompleteFilter: (option: DropdownOption | string, search: string) => boolean;
|
|
21
21
|
}
|
|
22
|
-
declare var
|
|
22
|
+
declare var __VLS_39: {}, __VLS_61: {
|
|
23
23
|
option: any;
|
|
24
|
-
},
|
|
24
|
+
}, __VLS_63: {
|
|
25
25
|
option: any;
|
|
26
26
|
search: any;
|
|
27
27
|
index: any;
|
|
28
|
-
},
|
|
28
|
+
}, __VLS_65: {}, __VLS_67: {}, __VLS_69: {
|
|
29
29
|
search: any;
|
|
30
|
-
},
|
|
30
|
+
}, __VLS_71: {}, __VLS_84: {}, __VLS_86: {};
|
|
31
31
|
type __VLS_Slots = {} & {
|
|
32
|
-
'helper-text'?: (props: typeof
|
|
32
|
+
'helper-text'?: (props: typeof __VLS_39) => any;
|
|
33
33
|
} & {
|
|
34
|
-
singleLabel?: (props: typeof
|
|
34
|
+
singleLabel?: (props: typeof __VLS_61) => any;
|
|
35
35
|
} & {
|
|
36
|
-
optionAppend?: (props: typeof
|
|
36
|
+
optionAppend?: (props: typeof __VLS_63) => any;
|
|
37
37
|
} & {
|
|
38
|
-
limit?: (props: typeof
|
|
38
|
+
limit?: (props: typeof __VLS_65) => any;
|
|
39
39
|
} & {
|
|
40
|
-
maxElements?: (props: typeof
|
|
40
|
+
maxElements?: (props: typeof __VLS_67) => any;
|
|
41
41
|
} & {
|
|
42
|
-
noResult?: (props: typeof
|
|
42
|
+
noResult?: (props: typeof __VLS_69) => any;
|
|
43
43
|
} & {
|
|
44
|
-
noOptions?: (props: typeof
|
|
44
|
+
noOptions?: (props: typeof __VLS_71) => any;
|
|
45
45
|
} & {
|
|
46
|
-
beforeList?: (props: typeof
|
|
46
|
+
beforeList?: (props: typeof __VLS_84) => any;
|
|
47
47
|
} & {
|
|
48
|
-
afterList?: (props: typeof
|
|
48
|
+
afterList?: (props: typeof __VLS_86) => any;
|
|
49
49
|
};
|
|
50
50
|
declare const __VLS_component: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
51
51
|
/**
|
|
@@ -183,6 +183,27 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
183
183
|
type: PropType<AutoCompleteProps>;
|
|
184
184
|
default: () => void;
|
|
185
185
|
};
|
|
186
|
+
/**
|
|
187
|
+
* Indica si el dropdown trigger es de solo texto
|
|
188
|
+
*/
|
|
189
|
+
textOnly: {
|
|
190
|
+
type: BooleanConstructor;
|
|
191
|
+
default: boolean;
|
|
192
|
+
};
|
|
193
|
+
/**
|
|
194
|
+
* Clase custom para el trigger del dropdown (solo aplica a text-only trigger)
|
|
195
|
+
*/
|
|
196
|
+
customTriggerClass: {
|
|
197
|
+
type: StringConstructor;
|
|
198
|
+
default: string;
|
|
199
|
+
};
|
|
200
|
+
/**
|
|
201
|
+
* Indica si el dropdown es de estilo inverso (solo para text-only)
|
|
202
|
+
*/
|
|
203
|
+
inverse: {
|
|
204
|
+
type: BooleanConstructor;
|
|
205
|
+
default: boolean;
|
|
206
|
+
};
|
|
186
207
|
modelValue: {
|
|
187
208
|
type: PropType<any>;
|
|
188
209
|
required: true;
|
|
@@ -339,6 +360,27 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
339
360
|
type: PropType<AutoCompleteProps>;
|
|
340
361
|
default: () => void;
|
|
341
362
|
};
|
|
363
|
+
/**
|
|
364
|
+
* Indica si el dropdown trigger es de solo texto
|
|
365
|
+
*/
|
|
366
|
+
textOnly: {
|
|
367
|
+
type: BooleanConstructor;
|
|
368
|
+
default: boolean;
|
|
369
|
+
};
|
|
370
|
+
/**
|
|
371
|
+
* Clase custom para el trigger del dropdown (solo aplica a text-only trigger)
|
|
372
|
+
*/
|
|
373
|
+
customTriggerClass: {
|
|
374
|
+
type: StringConstructor;
|
|
375
|
+
default: string;
|
|
376
|
+
};
|
|
377
|
+
/**
|
|
378
|
+
* Indica si el dropdown es de estilo inverso (solo para text-only)
|
|
379
|
+
*/
|
|
380
|
+
inverse: {
|
|
381
|
+
type: BooleanConstructor;
|
|
382
|
+
default: boolean;
|
|
383
|
+
};
|
|
342
384
|
modelValue: {
|
|
343
385
|
type: PropType<any>;
|
|
344
386
|
required: true;
|
|
@@ -353,6 +395,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
353
395
|
error: boolean;
|
|
354
396
|
label: string;
|
|
355
397
|
small: boolean;
|
|
398
|
+
inverse: boolean;
|
|
356
399
|
disabled: boolean;
|
|
357
400
|
helper: boolean;
|
|
358
401
|
helperText: string;
|
|
@@ -365,6 +408,8 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
365
408
|
limitText: Function;
|
|
366
409
|
appendToBody: boolean;
|
|
367
410
|
openDirection: string;
|
|
411
|
+
textOnly: boolean;
|
|
412
|
+
customTriggerClass: string;
|
|
368
413
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
369
414
|
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
370
415
|
export default _default;
|
|
@@ -30,6 +30,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
30
30
|
type: BooleanConstructor;
|
|
31
31
|
default: boolean;
|
|
32
32
|
};
|
|
33
|
+
/**
|
|
34
|
+
* <span>Indica si el breadcrumb debe ser recortado por la izquierda, mostrando solo los dos últimos niveles.</span>
|
|
35
|
+
*/
|
|
36
|
+
leftTrim: {
|
|
37
|
+
type: BooleanConstructor;
|
|
38
|
+
default: boolean;
|
|
39
|
+
};
|
|
33
40
|
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
34
41
|
onClickTrimmedList: (value: RDSLinkProps[]) => any;
|
|
35
42
|
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -54,10 +61,18 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
54
61
|
type: BooleanConstructor;
|
|
55
62
|
default: boolean;
|
|
56
63
|
};
|
|
64
|
+
/**
|
|
65
|
+
* <span>Indica si el breadcrumb debe ser recortado por la izquierda, mostrando solo los dos últimos niveles.</span>
|
|
66
|
+
*/
|
|
67
|
+
leftTrim: {
|
|
68
|
+
type: BooleanConstructor;
|
|
69
|
+
default: boolean;
|
|
70
|
+
};
|
|
57
71
|
}>> & Readonly<{
|
|
58
72
|
onOnClickTrimmedList?: ((value: RDSLinkProps[]) => any) | undefined;
|
|
59
73
|
}>, {
|
|
60
74
|
inverse: boolean;
|
|
61
75
|
trimItems: boolean;
|
|
76
|
+
leftTrim: boolean;
|
|
62
77
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
63
78
|
export default _default;
|
|
@@ -46,6 +46,13 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
46
46
|
type: BooleanConstructor;
|
|
47
47
|
default: boolean;
|
|
48
48
|
};
|
|
49
|
+
/**
|
|
50
|
+
* <span>Invierte los colores del tooltip</span>
|
|
51
|
+
*/
|
|
52
|
+
inverse: {
|
|
53
|
+
type: BooleanConstructor;
|
|
54
|
+
default: boolean;
|
|
55
|
+
};
|
|
49
56
|
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
50
57
|
/**
|
|
51
58
|
* <span>Título del tooltip</span>
|
|
@@ -88,8 +95,16 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
88
95
|
type: BooleanConstructor;
|
|
89
96
|
default: boolean;
|
|
90
97
|
};
|
|
98
|
+
/**
|
|
99
|
+
* <span>Invierte los colores del tooltip</span>
|
|
100
|
+
*/
|
|
101
|
+
inverse: {
|
|
102
|
+
type: BooleanConstructor;
|
|
103
|
+
default: boolean;
|
|
104
|
+
};
|
|
91
105
|
}>> & Readonly<{}>, {
|
|
92
106
|
title: string;
|
|
107
|
+
inverse: boolean;
|
|
93
108
|
content: string;
|
|
94
109
|
offsetSpace: number;
|
|
95
110
|
large: boolean;
|