energy-components 1.6.0-beta.1 → 1.7.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 +13 -13
- package/dist/components/button.es.js +21 -21
- package/dist/components/checkbox.es.js +7 -7
- package/dist/components/dropdown.es.js +278 -148
- package/dist/components/filterChip.es.js +4 -4
- package/dist/components/{icon-svg-pUb3-FXk.js → icon-svg-BmDOQ0kL.js} +42 -26
- package/dist/components/iconList.es.js +5 -5
- package/dist/components/iconSvg.es.js +1 -1
- package/dist/components/index.es.js +62 -59
- package/dist/components/infoBox.es.js +17 -17
- package/dist/components/link.es.js +15 -15
- package/dist/components/modal.es.js +69 -39
- package/dist/components/multiselect.es.js +230 -184
- package/dist/components/multiselectcontentwrapper.es.js +140 -0
- package/dist/components/pagination.es.js +129 -86
- package/dist/components/persistentToast.es.js +9 -9
- package/dist/components/quantitySelector.es.js +9 -9
- package/dist/components/radioButton.es.js +16 -16
- package/dist/components/selectionChip.es.js +5 -5
- package/dist/components/sidedrawer.es.js +53 -33
- package/dist/components/style/button.css +1 -1
- package/dist/components/style/datepicker.css +1 -1
- package/dist/components/style/dropdown.css +1 -1
- package/dist/components/style/icon-svg.css +1 -1
- package/dist/components/style/modal.css +1 -1
- package/dist/components/style/multiselect.css +1 -1
- package/dist/components/style/multiselectcontentwrapper.css +1 -0
- package/dist/components/style/pagination.css +1 -1
- package/dist/components/style/sidedrawer.css +1 -1
- package/dist/components/style/tabBar.css +1 -1
- package/dist/components/style/tablepaginatedcomponent.css +1 -1
- package/dist/components/style/tableslotedcomponent.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 +10 -10
- package/dist/components/tabBar.es.js +15 -13
- package/dist/components/tablepaginatedcomponent.es.js +69 -65
- package/dist/components/tableslotedcomponent.es.js +155 -148
- package/dist/components/tag.es.js +5 -5
- package/dist/components/textArea.es.js +22 -22
- package/dist/components/textField.es.js +93 -84
- package/dist/components/tooltip.es.js +178 -174
- package/dist/energy-components.es.js +6678 -6128
- package/dist/energy-components.umd.js +1 -1
- package/dist/style.css +1 -1
- package/dist/types/src/components/buttons/button/button.vue.d.ts +2 -2
- package/dist/types/src/components/icon-svg/icon-svg.vue.d.ts +19 -0
- package/dist/types/src/components/index.d.ts +1 -0
- package/dist/types/src/components/input/dropdown/Multiselect/MultiselectContentWrapper.vue.d.ts +86 -0
- package/dist/types/src/components/input/dropdown/dropdown.vue.d.ts +582 -0
- package/dist/types/src/components/input/filter-chip/filter-chip.vue.d.ts +2 -2
- package/dist/types/src/components/input/quantity-selector/quantity-selector.vue.d.ts +1 -1
- package/dist/types/src/components/input/selection-chip/selection-chip.vue.d.ts +2 -2
- package/dist/types/src/components/input/text-field/text-field.vue.d.ts +10 -3
- package/dist/types/src/components/layout/sidedrawer/sidedrawer.vue.d.ts +30 -0
- package/dist/types/src/components/navigation/pagination/pagination.vue.d.ts +80 -31
- package/dist/types/src/components/overlay/modal/modal.vue.d.ts +27 -1
- package/dist/types/src/components/overlay/tooltip/tooltip.vue.d.ts +1 -0
- package/dist/types/tsconfig.tsbuildinfo +1 -1
- package/package.json +5 -5
|
@@ -38,7 +38,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
38
38
|
/**
|
|
39
39
|
* <span>Variante del botón</span>
|
|
40
40
|
* <br>
|
|
41
|
-
*`['primary', 'secondary', 'ghost']`
|
|
41
|
+
*`['primary', 'secondary', 'ghost', 'commercial']`
|
|
42
42
|
*/
|
|
43
43
|
variant: {
|
|
44
44
|
type: StringConstructor;
|
|
@@ -117,7 +117,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
117
117
|
/**
|
|
118
118
|
* <span>Variante del botón</span>
|
|
119
119
|
* <br>
|
|
120
|
-
*`['primary', 'secondary', 'ghost']`
|
|
120
|
+
*`['primary', 'secondary', 'ghost', 'commercial']`
|
|
121
121
|
*/
|
|
122
122
|
variant: {
|
|
123
123
|
type: StringConstructor;
|
|
@@ -30,6 +30,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
30
30
|
type: StringConstructor;
|
|
31
31
|
default: string;
|
|
32
32
|
};
|
|
33
|
+
/**
|
|
34
|
+
* <span>Tamaño personalizado del icono en píxeles.</span>
|
|
35
|
+
* <br>
|
|
36
|
+
* Ejemplo: 64 creará un icono de 64x64px
|
|
37
|
+
*/
|
|
38
|
+
size: {
|
|
39
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
40
|
+
default: null;
|
|
41
|
+
};
|
|
33
42
|
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
34
43
|
/**
|
|
35
44
|
* <span>Nombre del icono, todos en listado.</span>
|
|
@@ -62,9 +71,19 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
62
71
|
type: StringConstructor;
|
|
63
72
|
default: string;
|
|
64
73
|
};
|
|
74
|
+
/**
|
|
75
|
+
* <span>Tamaño personalizado del icono en píxeles.</span>
|
|
76
|
+
* <br>
|
|
77
|
+
* Ejemplo: 64 creará un icono de 64x64px
|
|
78
|
+
*/
|
|
79
|
+
size: {
|
|
80
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
81
|
+
default: null;
|
|
82
|
+
};
|
|
65
83
|
}>> & Readonly<{}>, {
|
|
66
84
|
modifier: string;
|
|
67
85
|
small: boolean;
|
|
68
86
|
color: string;
|
|
87
|
+
size: string | number;
|
|
69
88
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, HTMLSpanElement>;
|
|
70
89
|
export default _default;
|
|
@@ -13,6 +13,7 @@ export { default as RDSDatePicker } from './input/datepicker/datepicker.vue';
|
|
|
13
13
|
export { default as RDSQuantitySelector } from './input/quantity-selector/quantity-selector.vue';
|
|
14
14
|
export { default as RDSToggle } from './input/toggle/toggle.vue';
|
|
15
15
|
export { default as RDSSelectionChip } from './input/selection-chip/selection-chip.vue';
|
|
16
|
+
export { default as RDSFilterChip } from './input/filter-chip/filter-chip.vue';
|
|
16
17
|
export { default as RDSTag } from './content/tag/tag.vue';
|
|
17
18
|
export { default as RDSAccordionGroup } from './content/acordion-group/accordion-group.vue';
|
|
18
19
|
export { default as RDSAccordion } from './content/accordion/accordion.vue';
|
package/dist/types/src/components/input/dropdown/Multiselect/MultiselectContentWrapper.vue.d.ts
ADDED
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
|
+
teleported: {
|
|
3
|
+
type: BooleanConstructor;
|
|
4
|
+
default: boolean;
|
|
5
|
+
};
|
|
6
|
+
id: {
|
|
7
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
8
|
+
default: () => string;
|
|
9
|
+
};
|
|
10
|
+
multiple: BooleanConstructor;
|
|
11
|
+
max: (BooleanConstructor | NumberConstructor)[];
|
|
12
|
+
internalValue: ArrayConstructor;
|
|
13
|
+
filteredOptions: ArrayConstructor;
|
|
14
|
+
isSelected: FunctionConstructor;
|
|
15
|
+
optionHighlight: FunctionConstructor;
|
|
16
|
+
select: FunctionConstructor;
|
|
17
|
+
pointerSet: FunctionConstructor;
|
|
18
|
+
selectLabelText: StringConstructor;
|
|
19
|
+
selectedLabelText: StringConstructor;
|
|
20
|
+
deselectLabelText: StringConstructor;
|
|
21
|
+
tagPlaceholder: StringConstructor;
|
|
22
|
+
groupSelect: BooleanConstructor;
|
|
23
|
+
selectGroupLabelText: StringConstructor;
|
|
24
|
+
deselectGroupLabelText: StringConstructor;
|
|
25
|
+
getOptionLabel: FunctionConstructor;
|
|
26
|
+
groupHighlight: FunctionConstructor;
|
|
27
|
+
selectGroup: FunctionConstructor;
|
|
28
|
+
options: ArrayConstructor;
|
|
29
|
+
hasOptionGroup: BooleanConstructor;
|
|
30
|
+
search: StringConstructor;
|
|
31
|
+
loading: BooleanConstructor;
|
|
32
|
+
showNoResults: BooleanConstructor;
|
|
33
|
+
showNoOptions: BooleanConstructor;
|
|
34
|
+
small: BooleanConstructor;
|
|
35
|
+
contentStyle: ObjectConstructor;
|
|
36
|
+
customStyle: ObjectConstructor;
|
|
37
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "focus"[], "focus", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
38
|
+
teleported: {
|
|
39
|
+
type: BooleanConstructor;
|
|
40
|
+
default: boolean;
|
|
41
|
+
};
|
|
42
|
+
id: {
|
|
43
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
44
|
+
default: () => string;
|
|
45
|
+
};
|
|
46
|
+
multiple: BooleanConstructor;
|
|
47
|
+
max: (BooleanConstructor | NumberConstructor)[];
|
|
48
|
+
internalValue: ArrayConstructor;
|
|
49
|
+
filteredOptions: ArrayConstructor;
|
|
50
|
+
isSelected: FunctionConstructor;
|
|
51
|
+
optionHighlight: FunctionConstructor;
|
|
52
|
+
select: FunctionConstructor;
|
|
53
|
+
pointerSet: FunctionConstructor;
|
|
54
|
+
selectLabelText: StringConstructor;
|
|
55
|
+
selectedLabelText: StringConstructor;
|
|
56
|
+
deselectLabelText: StringConstructor;
|
|
57
|
+
tagPlaceholder: StringConstructor;
|
|
58
|
+
groupSelect: BooleanConstructor;
|
|
59
|
+
selectGroupLabelText: StringConstructor;
|
|
60
|
+
deselectGroupLabelText: StringConstructor;
|
|
61
|
+
getOptionLabel: FunctionConstructor;
|
|
62
|
+
groupHighlight: FunctionConstructor;
|
|
63
|
+
selectGroup: FunctionConstructor;
|
|
64
|
+
options: ArrayConstructor;
|
|
65
|
+
hasOptionGroup: BooleanConstructor;
|
|
66
|
+
search: StringConstructor;
|
|
67
|
+
loading: BooleanConstructor;
|
|
68
|
+
showNoResults: BooleanConstructor;
|
|
69
|
+
showNoOptions: BooleanConstructor;
|
|
70
|
+
small: BooleanConstructor;
|
|
71
|
+
contentStyle: ObjectConstructor;
|
|
72
|
+
customStyle: ObjectConstructor;
|
|
73
|
+
}>> & Readonly<{
|
|
74
|
+
onFocus?: ((...args: any[]) => any) | undefined;
|
|
75
|
+
}>, {
|
|
76
|
+
loading: boolean;
|
|
77
|
+
small: boolean;
|
|
78
|
+
id: string | number;
|
|
79
|
+
multiple: boolean;
|
|
80
|
+
showNoResults: boolean;
|
|
81
|
+
showNoOptions: boolean;
|
|
82
|
+
hasOptionGroup: boolean;
|
|
83
|
+
groupSelect: boolean;
|
|
84
|
+
teleported: boolean;
|
|
85
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
86
|
+
export default _default;
|