energy-components 1.0.2

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.
Files changed (89) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +94 -0
  3. package/dist/.empty +0 -0
  4. package/dist/components/_plugin-vue_export-helper-CHgC5LLL.js +9 -0
  5. package/dist/components/accordion.es.js +121 -0
  6. package/dist/components/accordionGroup.es.js +32 -0
  7. package/dist/components/actionButton.es.js +64 -0
  8. package/dist/components/breadcrumbs.es.js +90 -0
  9. package/dist/components/button.es.js +144 -0
  10. package/dist/components/checkbox.es.js +130 -0
  11. package/dist/components/divider.es.js +35 -0
  12. package/dist/components/dropdown.es.js +331 -0
  13. package/dist/components/floatingActionButton.es.js +97 -0
  14. package/dist/components/functions-DIHwdgF0.js +18 -0
  15. package/dist/components/icon-svg-Cpx09myr.js +10818 -0
  16. package/dist/components/iconList.es.js +49 -0
  17. package/dist/components/iconSvg.es.js +5 -0
  18. package/dist/components/index.es.js +81 -0
  19. package/dist/components/indicator.es.js +175 -0
  20. package/dist/components/link.es.js +147 -0
  21. package/dist/components/multiselect.es.js +1039 -0
  22. package/dist/components/pagination.es.js +138 -0
  23. package/dist/components/radioButton.es.js +111 -0
  24. package/dist/components/style/accordion.css +1 -0
  25. package/dist/components/style/accordionGroup.css +1 -0
  26. package/dist/components/style/actionButton.css +1 -0
  27. package/dist/components/style/breadcrumbs.css +1 -0
  28. package/dist/components/style/button.css +1 -0
  29. package/dist/components/style/checkbox.css +1 -0
  30. package/dist/components/style/divider.css +1 -0
  31. package/dist/components/style/dropdown.css +1 -0
  32. package/dist/components/style/floatingActionButton.css +1 -0
  33. package/dist/components/style/icon-svg.css +1 -0
  34. package/dist/components/style/iconList.css +1 -0
  35. package/dist/components/style/indicator.css +1 -0
  36. package/dist/components/style/link.css +1 -0
  37. package/dist/components/style/multiselect.css +1 -0
  38. package/dist/components/style/pagination.css +1 -0
  39. package/dist/components/style/radioButton.css +1 -0
  40. package/dist/components/style/switch.css +1 -0
  41. package/dist/components/style/tabBar.css +1 -0
  42. package/dist/components/style/tag.css +1 -0
  43. package/dist/components/style/textArea.css +1 -0
  44. package/dist/components/style/textField.css +1 -0
  45. package/dist/components/style/tooltip.css +1 -0
  46. package/dist/components/switch.es.js +96 -0
  47. package/dist/components/tabBar.es.js +181 -0
  48. package/dist/components/tag.es.js +91 -0
  49. package/dist/components/textArea.es.js +259 -0
  50. package/dist/components/textField.es.js +254 -0
  51. package/dist/components/tooltip.es.js +1082 -0
  52. package/dist/energy-components.es.js +15368 -0
  53. package/dist/energy-components.umd.js +1 -0
  54. package/dist/style.css +1 -0
  55. package/dist/types/src/components/buttons/action-button/action-button.vue.d.ts +100 -0
  56. package/dist/types/src/components/buttons/button/button.vue.d.ts +196 -0
  57. package/dist/types/src/components/buttons/constants/buttonDocs.d.ts +1 -0
  58. package/dist/types/src/components/buttons/constants/buttonPosition.d.ts +1 -0
  59. package/dist/types/src/components/buttons/constants/socialMedia.d.ts +1 -0
  60. package/dist/types/src/components/buttons/floating-action-button/floating-action-button.vue.d.ts +136 -0
  61. package/dist/types/src/components/content/accordion/accordion.vue.d.ts +122 -0
  62. package/dist/types/src/components/content/acordion-group/accordion-group.d.ts +6 -0
  63. package/dist/types/src/components/content/acordion-group/accordion-group.vue.d.ts +33 -0
  64. package/dist/types/src/components/content/divider/divider.vue.d.ts +35 -0
  65. package/dist/types/src/components/content/tag/tag.vue.d.ts +105 -0
  66. package/dist/types/src/components/feedback/indicator/indicator.vue.d.ts +100 -0
  67. package/dist/types/src/components/icon-svg/icon-list.d.ts +11 -0
  68. package/dist/types/src/components/icon-svg/icon-list.vue.d.ts +2 -0
  69. package/dist/types/src/components/icon-svg/icon-svg.vue.d.ts +68 -0
  70. package/dist/types/src/components/index.d.ts +20 -0
  71. package/dist/types/src/components/input/checkbox/checkbox.vue.d.ts +151 -0
  72. package/dist/types/src/components/input/dropdown/Multiselect/Multiselect.vue.d.ts +2 -0
  73. package/dist/types/src/components/input/dropdown/dropdown.vue.d.ts +270 -0
  74. package/dist/types/src/components/input/radio-button/radio-button.vue.d.ts +114 -0
  75. package/dist/types/src/components/input/switch/switch.vue.d.ts +104 -0
  76. package/dist/types/src/components/input/text-area/text-area.vue.d.ts +281 -0
  77. package/dist/types/src/components/input/text-field/text-field.vue.d.ts +271 -0
  78. package/dist/types/src/components/navigation/breadcrumbs/breadcrumbs.vue.d.ts +63 -0
  79. package/dist/types/src/components/navigation/link/link.types.d.ts +15 -0
  80. package/dist/types/src/components/navigation/link/link.vue.d.ts +175 -0
  81. package/dist/types/src/components/navigation/pagination/pagination.vue.d.ts +67 -0
  82. package/dist/types/src/components/navigation/tab-bar/tab-bar.vue.d.ts +132 -0
  83. package/dist/types/src/components/overlay/tooltip/tooltip.vue.d.ts +118 -0
  84. package/dist/types/src/helpers/functions.d.ts +3 -0
  85. package/dist/types/src/helpers/stories.helpers.d.ts +1 -0
  86. package/dist/types/src/helpers/validation.d.ts +1 -0
  87. package/dist/types/src/index.d.ts +8 -0
  88. package/dist/types/tsconfig.tsbuildinfo +1 -0
  89. package/package.json +156 -0
@@ -0,0 +1,136 @@
1
+ declare const _default: import("vue").DefineComponent<{
2
+ /**
3
+ * <span>Icono a mostrar en el botón</span>
4
+ */
5
+ icon: {
6
+ type: StringConstructor;
7
+ required: true;
8
+ };
9
+ /**
10
+ * Indica la posicion que ocupara el boton respecto del padre
11
+ * `['relative', 'absolute', 'fixed']`
12
+ */
13
+ position: {
14
+ type: StringConstructor;
15
+ default: string;
16
+ required: true;
17
+ validator: (value: string) => boolean;
18
+ };
19
+ /**
20
+ * <span>Posicion del botón respecto del padre</span>
21
+ * `['top-left', 'top-right', 'bottom-left', 'bottom-right']` <br>
22
+ * solo es valido si la posicion es `absolute` o `fixed`
23
+ */
24
+ placement: {
25
+ type: StringConstructor;
26
+ default: string;
27
+ validator: (value: string) => boolean;
28
+ };
29
+ /**
30
+ * <span>Indica si el botón es inverso</span>
31
+ */
32
+ inverse: {
33
+ type: BooleanConstructor;
34
+ default: boolean;
35
+ };
36
+ /**
37
+ * <span>Indica si el botón es pequeño</span>
38
+ */
39
+ small: {
40
+ type: BooleanConstructor;
41
+ default: boolean;
42
+ };
43
+ /**
44
+ * <span>Indica si el botón es extra pequeño</span>
45
+ */
46
+ extraSmall: {
47
+ type: BooleanConstructor;
48
+ default: boolean;
49
+ };
50
+ /**
51
+ * <span>Añade una clase por encima de opacidad <br>Los eventos funcionan</span>
52
+ */
53
+ disabled: {
54
+ type: BooleanConstructor;
55
+ default: boolean;
56
+ };
57
+ /**
58
+ * <span>Cambia el estado del botón a cargando</span>
59
+ */
60
+ loading: {
61
+ type: BooleanConstructor;
62
+ default: boolean;
63
+ };
64
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
65
+ /**
66
+ * <span>Icono a mostrar en el botón</span>
67
+ */
68
+ icon: {
69
+ type: StringConstructor;
70
+ required: true;
71
+ };
72
+ /**
73
+ * Indica la posicion que ocupara el boton respecto del padre
74
+ * `['relative', 'absolute', 'fixed']`
75
+ */
76
+ position: {
77
+ type: StringConstructor;
78
+ default: string;
79
+ required: true;
80
+ validator: (value: string) => boolean;
81
+ };
82
+ /**
83
+ * <span>Posicion del botón respecto del padre</span>
84
+ * `['top-left', 'top-right', 'bottom-left', 'bottom-right']` <br>
85
+ * solo es valido si la posicion es `absolute` o `fixed`
86
+ */
87
+ placement: {
88
+ type: StringConstructor;
89
+ default: string;
90
+ validator: (value: string) => boolean;
91
+ };
92
+ /**
93
+ * <span>Indica si el botón es inverso</span>
94
+ */
95
+ inverse: {
96
+ type: BooleanConstructor;
97
+ default: boolean;
98
+ };
99
+ /**
100
+ * <span>Indica si el botón es pequeño</span>
101
+ */
102
+ small: {
103
+ type: BooleanConstructor;
104
+ default: boolean;
105
+ };
106
+ /**
107
+ * <span>Indica si el botón es extra pequeño</span>
108
+ */
109
+ extraSmall: {
110
+ type: BooleanConstructor;
111
+ default: boolean;
112
+ };
113
+ /**
114
+ * <span>Añade una clase por encima de opacidad <br>Los eventos funcionan</span>
115
+ */
116
+ disabled: {
117
+ type: BooleanConstructor;
118
+ default: boolean;
119
+ };
120
+ /**
121
+ * <span>Cambia el estado del botón a cargando</span>
122
+ */
123
+ loading: {
124
+ type: BooleanConstructor;
125
+ default: boolean;
126
+ };
127
+ }>>, {
128
+ loading: boolean;
129
+ small: boolean;
130
+ inverse: boolean;
131
+ disabled: boolean;
132
+ position: string;
133
+ placement: string;
134
+ extraSmall: boolean;
135
+ }, {}>;
136
+ export default _default;
@@ -0,0 +1,122 @@
1
+ import type { PropType } from 'vue';
2
+ import RDSTag from '../../content/tag/tag.vue';
3
+ type RDSTagProps = Omit<typeof RDSTag['$props'], `$${string}`>;
4
+ declare var __VLS_10: {};
5
+ declare var __VLS_inheritedAttrs: {};
6
+ declare const __VLS_refs: {
7
+ panel: import("vue").HTMLAttributes & import("vue").ReservedProps;
8
+ panelContent: import("vue").HTMLAttributes & import("vue").ReservedProps;
9
+ };
10
+ declare const __VLS_templateResult: {
11
+ slots: {
12
+ default?(_: typeof __VLS_10): any;
13
+ };
14
+ refs: __VLS_PickRefsExpose<typeof __VLS_refs>;
15
+ attrs: Partial<typeof __VLS_inheritedAttrs>;
16
+ };
17
+ type __VLS_Slots = typeof __VLS_templateResult['slots'];
18
+ declare const __VLS_component: import("vue").DefineComponent<{
19
+ /**
20
+ * El identificador único del elemento.
21
+ */
22
+ id: {
23
+ type: StringConstructor;
24
+ required: true;
25
+ validator: (value: string) => boolean;
26
+ };
27
+ /**
28
+ * El título del acordeón.
29
+ */
30
+ title: {
31
+ type: StringConstructor;
32
+ required: true;
33
+ };
34
+ /**
35
+ * El contenido del acordeón.
36
+ * Texto simple a mostrar si no tiene nada mas, si no se utiliza el slot por defecto.
37
+ */
38
+ content: {
39
+ type: StringConstructor;
40
+ required: false;
41
+ };
42
+ /**
43
+ * Indica si el acordeón está abierto o cerrado.
44
+ */
45
+ open: {
46
+ type: BooleanConstructor;
47
+ default: boolean;
48
+ };
49
+ /**
50
+ * La etiqueta del acordeón, mostrada a la derecha del panel.
51
+ */
52
+ tag: {
53
+ type: PropType<RDSTagProps>;
54
+ default: null;
55
+ };
56
+ }, {
57
+ /**
58
+ * Abre el panel.
59
+ */
60
+ openPanel: () => void;
61
+ /**
62
+ * Cierra el panel.
63
+ */
64
+ closePanel: () => void;
65
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
66
+ "update:open": (open: boolean) => void;
67
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
68
+ /**
69
+ * El identificador único del elemento.
70
+ */
71
+ id: {
72
+ type: StringConstructor;
73
+ required: true;
74
+ validator: (value: string) => boolean;
75
+ };
76
+ /**
77
+ * El título del acordeón.
78
+ */
79
+ title: {
80
+ type: StringConstructor;
81
+ required: true;
82
+ };
83
+ /**
84
+ * El contenido del acordeón.
85
+ * Texto simple a mostrar si no tiene nada mas, si no se utiliza el slot por defecto.
86
+ */
87
+ content: {
88
+ type: StringConstructor;
89
+ required: false;
90
+ };
91
+ /**
92
+ * Indica si el acordeón está abierto o cerrado.
93
+ */
94
+ open: {
95
+ type: BooleanConstructor;
96
+ default: boolean;
97
+ };
98
+ /**
99
+ * La etiqueta del acordeón, mostrada a la derecha del panel.
100
+ */
101
+ tag: {
102
+ type: PropType<RDSTagProps>;
103
+ default: null;
104
+ };
105
+ }>> & {
106
+ "onUpdate:open"?: ((open: boolean) => any) | undefined;
107
+ }, {
108
+ open: boolean;
109
+ tag: RDSTagProps;
110
+ }, {}>;
111
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_Slots>;
112
+ export default _default;
113
+ type __VLS_PickRefsExpose<T> = T extends object ? {
114
+ [K in keyof T]: (T[K] extends any[] ? Parameters<T[K][0]['expose']>[0][] : T[K] extends {
115
+ expose?: (exposed: infer E) => void;
116
+ } ? E : T[K]) | null;
117
+ } : never;
118
+ type __VLS_WithTemplateSlots<T, S> = T & {
119
+ new (): {
120
+ $slots: S;
121
+ };
122
+ };
@@ -0,0 +1,6 @@
1
+ export interface AccordionChildRegister {
2
+ id: string;
3
+ open: () => void;
4
+ close: () => void;
5
+ [key: string]: any;
6
+ }
@@ -0,0 +1,33 @@
1
+ declare var __VLS_0: {};
2
+ declare var __VLS_inheritedAttrs: {};
3
+ declare const __VLS_refs: {};
4
+ declare const __VLS_templateResult: {
5
+ slots: {
6
+ default?(_: typeof __VLS_0): any;
7
+ };
8
+ refs: __VLS_PickRefsExpose<typeof __VLS_refs>;
9
+ attrs: Partial<typeof __VLS_inheritedAttrs>;
10
+ };
11
+ type __VLS_Slots = typeof __VLS_templateResult['slots'];
12
+ declare const __VLS_component: import("vue").DefineComponent<{}, {
13
+ /**
14
+ * Abre todos los paneles del acordeón
15
+ */
16
+ openAll: () => void;
17
+ /**
18
+ * Cierra todos los paneles del acordeón
19
+ */
20
+ closeAll: () => void;
21
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
22
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_Slots>;
23
+ export default _default;
24
+ type __VLS_PickRefsExpose<T> = T extends object ? {
25
+ [K in keyof T]: (T[K] extends any[] ? Parameters<T[K][0]['expose']>[0][] : T[K] extends {
26
+ expose?: (exposed: infer E) => void;
27
+ } ? E : T[K]) | null;
28
+ } : never;
29
+ type __VLS_WithTemplateSlots<T, S> = T & {
30
+ new (): {
31
+ $slots: S;
32
+ };
33
+ };
@@ -0,0 +1,35 @@
1
+ declare const _default: import("vue").DefineComponent<{
2
+ /**
3
+ * Si es true, el tipo será low, de lo contrario será high
4
+ */
5
+ low: {
6
+ type: BooleanConstructor;
7
+ default: boolean;
8
+ };
9
+ /**
10
+ * Si es true, el color será inverso
11
+ */
12
+ inverse: {
13
+ type: BooleanConstructor;
14
+ default: boolean;
15
+ };
16
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
17
+ /**
18
+ * Si es true, el tipo será low, de lo contrario será high
19
+ */
20
+ low: {
21
+ type: BooleanConstructor;
22
+ default: boolean;
23
+ };
24
+ /**
25
+ * Si es true, el color será inverso
26
+ */
27
+ inverse: {
28
+ type: BooleanConstructor;
29
+ default: boolean;
30
+ };
31
+ }>>, {
32
+ inverse: boolean;
33
+ low: boolean;
34
+ }, {}>;
35
+ export default _default;
@@ -0,0 +1,105 @@
1
+ declare const _default: import("vue").DefineComponent<{
2
+ /**
3
+ * Nombre del icono a mostrar en la parte izquierda del tag
4
+ */
5
+ icon: {
6
+ type: StringConstructor;
7
+ default: string;
8
+ };
9
+ /**
10
+ * Texto del tag
11
+ */
12
+ text: {
13
+ type: StringConstructor;
14
+ default: string;
15
+ };
16
+ /**
17
+ * Typo de tag
18
+ * <br>
19
+ * `[ default, information, success, error, warning, promo ]`
20
+ */
21
+ type: {
22
+ type: StringConstructor;
23
+ default: string;
24
+ validator: (value: string) => boolean;
25
+ };
26
+ /**
27
+ * Define si el tag tiene una acción asociada.
28
+ */
29
+ actionable: {
30
+ type: BooleanConstructor;
31
+ default: boolean;
32
+ };
33
+ /**
34
+ * Indica si el esquema de colores es inverso
35
+ * <br>
36
+ * Solo para type `default`
37
+ */
38
+ inverse: {
39
+ type: BooleanConstructor;
40
+ default: boolean;
41
+ };
42
+ /**
43
+ * Define si el tag es pequeño
44
+ */
45
+ small: {
46
+ type: BooleanConstructor;
47
+ default: boolean;
48
+ };
49
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
50
+ /**
51
+ * Nombre del icono a mostrar en la parte izquierda del tag
52
+ */
53
+ icon: {
54
+ type: StringConstructor;
55
+ default: string;
56
+ };
57
+ /**
58
+ * Texto del tag
59
+ */
60
+ text: {
61
+ type: StringConstructor;
62
+ default: string;
63
+ };
64
+ /**
65
+ * Typo de tag
66
+ * <br>
67
+ * `[ default, information, success, error, warning, promo ]`
68
+ */
69
+ type: {
70
+ type: StringConstructor;
71
+ default: string;
72
+ validator: (value: string) => boolean;
73
+ };
74
+ /**
75
+ * Define si el tag tiene una acción asociada.
76
+ */
77
+ actionable: {
78
+ type: BooleanConstructor;
79
+ default: boolean;
80
+ };
81
+ /**
82
+ * Indica si el esquema de colores es inverso
83
+ * <br>
84
+ * Solo para type `default`
85
+ */
86
+ inverse: {
87
+ type: BooleanConstructor;
88
+ default: boolean;
89
+ };
90
+ /**
91
+ * Define si el tag es pequeño
92
+ */
93
+ small: {
94
+ type: BooleanConstructor;
95
+ default: boolean;
96
+ };
97
+ }>>, {
98
+ small: boolean;
99
+ type: string;
100
+ text: string;
101
+ icon: string;
102
+ inverse: boolean;
103
+ actionable: boolean;
104
+ }, {}>;
105
+ export default _default;
@@ -0,0 +1,100 @@
1
+ import { type PropType } from 'vue';
2
+ type DirectionType = 'horizontal' | 'vertical' | undefined;
3
+ type VariantType = 'default' | 'small' | undefined;
4
+ declare const _default: import("vue").DefineComponent<{
5
+ /**
6
+ * Los pasos a mostrar en el indicador.
7
+ */
8
+ steps: {
9
+ type: PropType<string[]>;
10
+ required: true;
11
+ validator(value: string[]): boolean;
12
+ };
13
+ /**
14
+ * El paso actual en el indicador.
15
+ */
16
+ currentStep: {
17
+ type: NumberConstructor;
18
+ required: true;
19
+ validator(value: number): boolean;
20
+ };
21
+ /**
22
+ * La dirección del indicador, ya sea 'horizontal' o 'vertical'.
23
+ */
24
+ direction: {
25
+ type: () => DirectionType;
26
+ default: string;
27
+ };
28
+ /**
29
+ * La variante del indicador, ya sea 'default' o 'small'.
30
+ */
31
+ variant: {
32
+ type: () => VariantType;
33
+ default: string;
34
+ };
35
+ /**
36
+ * Si el indicador debe ocupar todo el ancho.
37
+ */
38
+ fullWidth: {
39
+ type: BooleanConstructor;
40
+ default: boolean;
41
+ };
42
+ /**
43
+ * Si las etiquetas deben ser elipsadas.
44
+ */
45
+ ellipsis: {
46
+ type: BooleanConstructor;
47
+ default: boolean;
48
+ };
49
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
50
+ /**
51
+ * Los pasos a mostrar en el indicador.
52
+ */
53
+ steps: {
54
+ type: PropType<string[]>;
55
+ required: true;
56
+ validator(value: string[]): boolean;
57
+ };
58
+ /**
59
+ * El paso actual en el indicador.
60
+ */
61
+ currentStep: {
62
+ type: NumberConstructor;
63
+ required: true;
64
+ validator(value: number): boolean;
65
+ };
66
+ /**
67
+ * La dirección del indicador, ya sea 'horizontal' o 'vertical'.
68
+ */
69
+ direction: {
70
+ type: () => DirectionType;
71
+ default: string;
72
+ };
73
+ /**
74
+ * La variante del indicador, ya sea 'default' o 'small'.
75
+ */
76
+ variant: {
77
+ type: () => VariantType;
78
+ default: string;
79
+ };
80
+ /**
81
+ * Si el indicador debe ocupar todo el ancho.
82
+ */
83
+ fullWidth: {
84
+ type: BooleanConstructor;
85
+ default: boolean;
86
+ };
87
+ /**
88
+ * Si las etiquetas deben ser elipsadas.
89
+ */
90
+ ellipsis: {
91
+ type: BooleanConstructor;
92
+ default: boolean;
93
+ };
94
+ }>>, {
95
+ variant: VariantType;
96
+ direction: DirectionType;
97
+ fullWidth: boolean;
98
+ ellipsis: boolean;
99
+ }, {}>;
100
+ export default _default;
@@ -0,0 +1,11 @@
1
+ export declare const iconList: {
2
+ name: any;
3
+ code: any;
4
+ codes: any;
5
+ }[];
6
+ export declare const sortedIconList: any[];
7
+ export declare const namedIconList: Record<string, {
8
+ name: any;
9
+ code: any;
10
+ codes: any;
11
+ }>;
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
2
+ export default _default;
@@ -0,0 +1,68 @@
1
+ declare const _default: import("vue").DefineComponent<{
2
+ /**
3
+ * <span>Nombre del icono, todos en listado.</span>
4
+ */
5
+ name: {
6
+ type: StringConstructor;
7
+ required: true;
8
+ };
9
+ /**
10
+ * <span>Modificador del icono. Permite añadir una clase CSS adicional para personalizar el estilo.</span>
11
+ * <br>
12
+ * `['left', 'up', 'right']`
13
+ */
14
+ modifier: {
15
+ type: StringConstructor;
16
+ default: string;
17
+ };
18
+ /**
19
+ * <span>Indica si el icono es pequeño.</span>
20
+ */
21
+ small: {
22
+ type: BooleanConstructor;
23
+ default: boolean;
24
+ };
25
+ /**
26
+ * Permite establecer un color personalizado para el icono.
27
+ */
28
+ color: {
29
+ type: StringConstructor;
30
+ default: string;
31
+ };
32
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
33
+ /**
34
+ * <span>Nombre del icono, todos en listado.</span>
35
+ */
36
+ name: {
37
+ type: StringConstructor;
38
+ required: true;
39
+ };
40
+ /**
41
+ * <span>Modificador del icono. Permite añadir una clase CSS adicional para personalizar el estilo.</span>
42
+ * <br>
43
+ * `['left', 'up', 'right']`
44
+ */
45
+ modifier: {
46
+ type: StringConstructor;
47
+ default: string;
48
+ };
49
+ /**
50
+ * <span>Indica si el icono es pequeño.</span>
51
+ */
52
+ small: {
53
+ type: BooleanConstructor;
54
+ default: boolean;
55
+ };
56
+ /**
57
+ * Permite establecer un color personalizado para el icono.
58
+ */
59
+ color: {
60
+ type: StringConstructor;
61
+ default: string;
62
+ };
63
+ }>>, {
64
+ modifier: string;
65
+ small: boolean;
66
+ color: string;
67
+ }, {}>;
68
+ export default _default;
@@ -0,0 +1,20 @@
1
+ export { default as RDSIconSvg } from './icon-svg/icon-svg.vue';
2
+ export { default as RDSButton } from './buttons/button/button.vue';
3
+ export { default as RDSFloatinActionButton } from './buttons/floating-action-button/floating-action-button.vue';
4
+ export { default as RDSActionButton } from './buttons/action-button/action-button.vue';
5
+ export { default as RDSCheckbox } from './input/checkbox/checkbox.vue';
6
+ export { default as RDSTextField } from './input/text-field/text-field.vue';
7
+ export { default as RDSTextArea } from './input/text-area/text-area.vue';
8
+ export { default as RDSSwitch } from './input/switch/switch.vue';
9
+ export { default as RDSRadioButton } from './input/radio-button/radio-button.vue';
10
+ export { default as RDSDropdown } from './input/dropdown/dropdown.vue';
11
+ export { default as RDSTag } from './content/tag/tag.vue';
12
+ export { default as RDSAccordionGroup } from './content/acordion-group/accordion-group.vue';
13
+ export { default as RDSAccordion } from './content/accordion/accordion.vue';
14
+ export { default as RDSDivider } from './content/divider/divider.vue';
15
+ export { default as RDSLink } from './navigation/link/link.vue';
16
+ export { default as RDSBreadcrumbs } from './navigation/breadcrumbs/breadcrumbs.vue';
17
+ export { default as RDSTabBar } from './navigation/tab-bar/tab-bar.vue';
18
+ export { default as RDSPagination } from './navigation/pagination/pagination.vue';
19
+ export { default as RDSIndicator } from './feedback/indicator/indicator.vue';
20
+ export { default as RDSTooltip } from './overlay/tooltip/tooltip.vue';