energy-components 1.4.0-beta.0 → 1.5.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/actionButton.es.js +3 -3
- package/dist/components/datepicker.es.js +1403 -1382
- package/dist/components/sidedrawer.es.js +41 -28
- package/dist/components/style/actionButton.css +1 -1
- package/dist/components/style/datepicker.css +1 -1
- package/dist/components/style/sidedrawer.css +1 -1
- package/dist/energy-components.es.js +2683 -2649
- package/dist/energy-components.umd.js +1 -1
- package/dist/style.css +1 -1
- package/dist/types/src/components/buttons/action-button/action-button.vue.d.ts +2 -2
- package/dist/types/src/components/layout/sidedrawer/sidedrawer.vue.d.ts +16 -0
- package/dist/types/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
|
@@ -9,7 +9,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
9
9
|
/**
|
|
10
10
|
* <span>Variante del botón</span>
|
|
11
11
|
* <br>
|
|
12
|
-
*`['primary', 'secondary']`
|
|
12
|
+
*`['primary', 'secondary', 'ghost']`
|
|
13
13
|
*/
|
|
14
14
|
variant: {
|
|
15
15
|
type: StringConstructor;
|
|
@@ -55,7 +55,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
55
55
|
/**
|
|
56
56
|
* <span>Variante del botón</span>
|
|
57
57
|
* <br>
|
|
58
|
-
*`['primary', 'secondary']`
|
|
58
|
+
*`['primary', 'secondary', 'ghost']`
|
|
59
59
|
*/
|
|
60
60
|
variant: {
|
|
61
61
|
type: StringConstructor;
|
|
@@ -2,6 +2,7 @@ declare function __VLS_template(): {
|
|
|
2
2
|
attrs: Partial<{}>;
|
|
3
3
|
slots: {
|
|
4
4
|
content?(_: {}): any;
|
|
5
|
+
footer?(_: {}): any;
|
|
5
6
|
};
|
|
6
7
|
refs: {
|
|
7
8
|
sidebar: HTMLDivElement;
|
|
@@ -24,6 +25,13 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
24
25
|
type: BooleanConstructor;
|
|
25
26
|
default: boolean;
|
|
26
27
|
};
|
|
28
|
+
/**
|
|
29
|
+
* <span>Define el ancho del componente al abrirse</span>
|
|
30
|
+
*/
|
|
31
|
+
containerWidth: {
|
|
32
|
+
type: StringConstructor;
|
|
33
|
+
default: string;
|
|
34
|
+
};
|
|
27
35
|
}>, {
|
|
28
36
|
/**
|
|
29
37
|
* { boolean } Muestra el estado actual del sidebar.
|
|
@@ -58,11 +66,19 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
58
66
|
type: BooleanConstructor;
|
|
59
67
|
default: boolean;
|
|
60
68
|
};
|
|
69
|
+
/**
|
|
70
|
+
* <span>Define el ancho del componente al abrirse</span>
|
|
71
|
+
*/
|
|
72
|
+
containerWidth: {
|
|
73
|
+
type: StringConstructor;
|
|
74
|
+
default: string;
|
|
75
|
+
};
|
|
61
76
|
}>> & Readonly<{
|
|
62
77
|
onSidedrawerChange?: ((isHide: boolean) => any) | undefined;
|
|
63
78
|
}>, {
|
|
64
79
|
title: string;
|
|
65
80
|
iconClose: boolean;
|
|
81
|
+
containerWidth: string;
|
|
66
82
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {
|
|
67
83
|
sidebar: HTMLDivElement;
|
|
68
84
|
}, HTMLDivElement>;
|