energy-components 1.17.0 → 1.18.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/datepicker.es.js +2545 -2486
- package/dist/components/dropdown.es.js +21 -21
- package/dist/components/snackBar.es.js +37 -22
- package/dist/components/style/datepicker.css +1 -1
- package/dist/components/style/dropdown.css +1 -1
- package/dist/components/style/snackBar.css +1 -1
- package/dist/energy-components.es.js +3492 -3419
- package/dist/energy-components.umd.js +2 -2
- package/dist/style.css +1 -1
- package/dist/types/src/components/feedback/snack-bar/snack-bar.vue.d.ts +13 -1
- package/dist/types/src/components/input/datepicker/datepicker.vue.d.ts +19 -4
- package/dist/types/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
|
@@ -1,4 +1,10 @@
|
|
|
1
|
-
declare
|
|
1
|
+
declare var __VLS_12: {}, __VLS_14: {};
|
|
2
|
+
type __VLS_Slots = {} & {
|
|
3
|
+
'content-section'?: (props: typeof __VLS_12) => any;
|
|
4
|
+
} & {
|
|
5
|
+
'action-section'?: (props: typeof __VLS_14) => any;
|
|
6
|
+
};
|
|
7
|
+
declare const __VLS_component: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
8
|
/**
|
|
3
9
|
* Tipo del mensaje.
|
|
4
10
|
*
|
|
@@ -177,4 +183,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
177
183
|
id: string;
|
|
178
184
|
teleportTo: string;
|
|
179
185
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
186
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
180
187
|
export default _default;
|
|
188
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
189
|
+
new (): {
|
|
190
|
+
$slots: S;
|
|
191
|
+
};
|
|
192
|
+
};
|
|
@@ -8,14 +8,14 @@ type RDSTextFieldProps = ExtractPropTypes<(typeof RDSTextField)['props']>;
|
|
|
8
8
|
interface CustomVueDatePickerProps extends Partial<OriginalVueDatePickerProps> {
|
|
9
9
|
format?: (date: Date | Date[] | null) => string;
|
|
10
10
|
}
|
|
11
|
-
declare var
|
|
11
|
+
declare var __VLS_29: {
|
|
12
12
|
day: number;
|
|
13
13
|
date: Date;
|
|
14
|
-
},
|
|
14
|
+
}, __VLS_48: string | number, __VLS_49: any;
|
|
15
15
|
type __VLS_Slots = {} & {
|
|
16
|
-
[K in NonNullable<typeof
|
|
16
|
+
[K in NonNullable<typeof __VLS_48>]?: (props: typeof __VLS_49) => any;
|
|
17
17
|
} & {
|
|
18
|
-
day?: (props: typeof
|
|
18
|
+
day?: (props: typeof __VLS_29) => any;
|
|
19
19
|
};
|
|
20
20
|
declare const __VLS_component: import("vue").DefineComponent<ExtractPropTypes<{
|
|
21
21
|
/**
|
|
@@ -67,6 +67,13 @@ declare const __VLS_component: import("vue").DefineComponent<ExtractPropTypes<{
|
|
|
67
67
|
type: BooleanConstructor;
|
|
68
68
|
default: boolean;
|
|
69
69
|
};
|
|
70
|
+
/**
|
|
71
|
+
* Si es `true` y `range` es `true`, obliga al usuario a seleccionar un rango completo (inicio y fin).
|
|
72
|
+
*/
|
|
73
|
+
selectFullRange: {
|
|
74
|
+
type: BooleanConstructor;
|
|
75
|
+
default: boolean;
|
|
76
|
+
};
|
|
70
77
|
/**
|
|
71
78
|
* Indica si el datepicker es selector de mes
|
|
72
79
|
*/
|
|
@@ -190,6 +197,13 @@ declare const __VLS_component: import("vue").DefineComponent<ExtractPropTypes<{
|
|
|
190
197
|
type: BooleanConstructor;
|
|
191
198
|
default: boolean;
|
|
192
199
|
};
|
|
200
|
+
/**
|
|
201
|
+
* Si es `true` y `range` es `true`, obliga al usuario a seleccionar un rango completo (inicio y fin).
|
|
202
|
+
*/
|
|
203
|
+
selectFullRange: {
|
|
204
|
+
type: BooleanConstructor;
|
|
205
|
+
default: boolean;
|
|
206
|
+
};
|
|
193
207
|
/**
|
|
194
208
|
* Indica si el datepicker es selector de mes
|
|
195
209
|
*/
|
|
@@ -262,6 +276,7 @@ declare const __VLS_component: import("vue").DefineComponent<ExtractPropTypes<{
|
|
|
262
276
|
monthPicker: boolean;
|
|
263
277
|
teleport: string | boolean;
|
|
264
278
|
acceptButtonVariant: string;
|
|
279
|
+
selectFullRange: boolean;
|
|
265
280
|
actionRow: any;
|
|
266
281
|
vueDatepickerProps: CustomVueDatePickerProps;
|
|
267
282
|
textfieldProps: RDSTextFieldProps;
|