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.
@@ -1,4 +1,10 @@
1
- declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
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 __VLS_22: {
11
+ declare var __VLS_29: {
12
12
  day: number;
13
13
  date: Date;
14
- }, __VLS_41: string | number, __VLS_42: any;
14
+ }, __VLS_48: string | number, __VLS_49: any;
15
15
  type __VLS_Slots = {} & {
16
- [K in NonNullable<typeof __VLS_41>]?: (props: typeof __VLS_42) => any;
16
+ [K in NonNullable<typeof __VLS_48>]?: (props: typeof __VLS_49) => any;
17
17
  } & {
18
- day?: (props: typeof __VLS_22) => any;
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;