energy-components 1.10.1 → 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.
@@ -0,0 +1,53 @@
1
+ interface RDSCollapsableProps {
2
+ /**
3
+ * Título del collapsable
4
+ */
5
+ title: string;
6
+ /**
7
+ * Contenido simple si no se usa slot
8
+ */
9
+ content?: string;
10
+ /**
11
+ * Icono opcional a la izquierda
12
+ */
13
+ icon?: string;
14
+ /**
15
+ * Estado abierto/cerrado (controlado)
16
+ */
17
+ open?: boolean;
18
+ /**
19
+ * Deshabilita la interacción
20
+ */
21
+ disabled?: boolean;
22
+ /**
23
+ * Ocupa el ancho completo disponible
24
+ */
25
+ fullWidth?: boolean;
26
+ /**
27
+ * ID único del componente
28
+ */
29
+ id?: string;
30
+ }
31
+ declare var __VLS_7: {};
32
+ type __VLS_Slots = {} & {
33
+ default?: (props: typeof __VLS_7) => any;
34
+ };
35
+ declare const __VLS_component: import("vue").DefineComponent<RDSCollapsableProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
36
+ "update:open": (value: boolean) => any;
37
+ }, string, import("vue").PublicProps, Readonly<RDSCollapsableProps> & Readonly<{
38
+ "onUpdate:open"?: ((value: boolean) => any) | undefined;
39
+ }>, {
40
+ open: boolean;
41
+ icon: string;
42
+ disabled: boolean;
43
+ id: string;
44
+ fullWidth: boolean;
45
+ content: string;
46
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
47
+ declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
48
+ export default _default;
49
+ type __VLS_WithSlots<T, S> = T & {
50
+ new (): {
51
+ $slots: S;
52
+ };
53
+ };
@@ -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';
@@ -23,6 +24,7 @@ export { default as RDSDivider } from './content/divider/divider.vue';
23
24
  export { default as RDSCard } from './content/card/card.vue';
24
25
  export { default as RDSTable } from './content/table/table-paginated/TablePaginatedComponent.vue';
25
26
  export { default as RDSAvatar } from './content/avatar/avatar.vue';
27
+ export { default as RDSCollapsable } from './content/collapsable/collapsable.vue';
26
28
  export { default as RDSLink } from './navigation/link/link.vue';
27
29
  export { default as RDSBreadcrumbs } from './navigation/breadcrumbs/breadcrumbs.vue';
28
30
  export { default as RDSTabBar } from './navigation/tab-bar/tab-bar.vue';
@@ -117,6 +117,13 @@ declare const __VLS_component: import("vue").DefineComponent<ExtractPropTypes<{
117
117
  rightIcon: string;
118
118
  };
119
119
  };
120
+ /**
121
+ * Habilita teleport para renderizar el popup fuera del contexto del componente
122
+ */
123
+ teleport: {
124
+ type: (StringConstructor | BooleanConstructor)[];
125
+ default: boolean;
126
+ };
120
127
  modelValue: {
121
128
  type: PropType<Date | Date[] | null>;
122
129
  };
@@ -231,6 +238,13 @@ declare const __VLS_component: import("vue").DefineComponent<ExtractPropTypes<{
231
238
  rightIcon: string;
232
239
  };
233
240
  };
241
+ /**
242
+ * Habilita teleport para renderizar el popup fuera del contexto del componente
243
+ */
244
+ teleport: {
245
+ type: (StringConstructor | BooleanConstructor)[];
246
+ default: boolean;
247
+ };
234
248
  modelValue: {
235
249
  type: PropType<Date | Date[] | null>;
236
250
  };
@@ -244,6 +258,7 @@ declare const __VLS_component: import("vue").DefineComponent<ExtractPropTypes<{
244
258
  locale: string;
245
259
  format: (date: Date | Date[] | null) => string;
246
260
  monthPicker: boolean;
261
+ teleport: string | boolean;
247
262
  acceptButtonVariant: string;
248
263
  actionRow: any;
249
264
  vueDatepickerProps: CustomVueDatePickerProps;
@@ -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;