energy-components 1.11.0 → 1.12.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/filterTag.es.js +70 -0
- package/dist/components/index.es.js +88 -85
- package/dist/components/modal.es.js +29 -27
- package/dist/components/style/button.css +1 -1
- package/dist/components/style/filterTag.css +1 -0
- package/dist/components/style/modal.css +1 -1
- package/dist/components/style/sidedrawer.css +1 -1
- package/dist/components/style/tabBar.css +1 -1
- package/dist/components/style/textArea.css +1 -1
- package/dist/components/style/textField.css +1 -1
- package/dist/components/tabBar.es.js +103 -98
- package/dist/components/textArea.es.js +96 -86
- package/dist/components/textField.es.js +116 -108
- package/dist/energy-components.es.js +3851 -3761
- package/dist/energy-components.umd.js +2 -2
- package/dist/style.css +1 -1
- package/dist/types/src/components/index.d.ts +1 -0
- package/dist/types/src/components/input/filter-tag/filter-tag.vue.d.ts +53 -0
- package/dist/types/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
|
@@ -16,6 +16,7 @@ export { default as RDSSelectionChip } from './input/selection-chip/selection-ch
|
|
|
16
16
|
export { default as RDSFilterChip } from './input/filter-chip/filter-chip.vue';
|
|
17
17
|
export { default as RDSDragAndDrop } from './input/drag-and-drop/drag-and-drop.vue';
|
|
18
18
|
export { default as RDSFileUploadItem } from './input/file-upload-item/file-upload-item.vue';
|
|
19
|
+
export { default as RDSFilterTag } from './input/filter-tag/filter-tag.vue';
|
|
19
20
|
export { default as RDSTag } from './content/tag/tag.vue';
|
|
20
21
|
export { default as RDSAccordionGroup } from './content/acordion-group/accordion-group.vue';
|
|
21
22
|
export { default as RDSAccordion } from './content/accordion/accordion.vue';
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
|
+
/**
|
|
3
|
+
* Texto a mostrar en el filtro
|
|
4
|
+
*/
|
|
5
|
+
text: {
|
|
6
|
+
type: StringConstructor;
|
|
7
|
+
required: true;
|
|
8
|
+
};
|
|
9
|
+
/**
|
|
10
|
+
* Desactiva el filtro
|
|
11
|
+
*/
|
|
12
|
+
disabled: {
|
|
13
|
+
type: BooleanConstructor;
|
|
14
|
+
default: boolean;
|
|
15
|
+
};
|
|
16
|
+
/**
|
|
17
|
+
* Tabindex para accesibilidad
|
|
18
|
+
*/
|
|
19
|
+
tabindex: {
|
|
20
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
21
|
+
default: number;
|
|
22
|
+
};
|
|
23
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
24
|
+
remove: (event: KeyboardEvent | MouseEvent) => any;
|
|
25
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
26
|
+
/**
|
|
27
|
+
* Texto a mostrar en el filtro
|
|
28
|
+
*/
|
|
29
|
+
text: {
|
|
30
|
+
type: StringConstructor;
|
|
31
|
+
required: true;
|
|
32
|
+
};
|
|
33
|
+
/**
|
|
34
|
+
* Desactiva el filtro
|
|
35
|
+
*/
|
|
36
|
+
disabled: {
|
|
37
|
+
type: BooleanConstructor;
|
|
38
|
+
default: boolean;
|
|
39
|
+
};
|
|
40
|
+
/**
|
|
41
|
+
* Tabindex para accesibilidad
|
|
42
|
+
*/
|
|
43
|
+
tabindex: {
|
|
44
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
45
|
+
default: number;
|
|
46
|
+
};
|
|
47
|
+
}>> & Readonly<{
|
|
48
|
+
onRemove?: ((event: KeyboardEvent | MouseEvent) => any) | undefined;
|
|
49
|
+
}>, {
|
|
50
|
+
disabled: boolean;
|
|
51
|
+
tabindex: string | number;
|
|
52
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
53
|
+
export default _default;
|