@selfeesas/shared-components 0.4.35 → 0.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.
@@ -48,6 +48,17 @@ declare const __VLS_component_3: DefineComponent<ExtractPropTypes<__VLS_WithDefa
48
48
  rowClasses: string | ((row: any) => string);
49
49
  }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
50
50
 
51
+ declare const __VLS_component_4: DefineComponent<ExtractPropTypes<__VLS_WithDefaults_12<__VLS_TypePropsToOption_17<Props_2>, {
52
+ to: string;
53
+ useDiv: boolean;
54
+ }>>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<__VLS_WithDefaults_12<__VLS_TypePropsToOption_17<Props_2>, {
55
+ to: string;
56
+ useDiv: boolean;
57
+ }>>> & Readonly<{}>, {
58
+ to: string;
59
+ useDiv: boolean;
60
+ }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
61
+
51
62
  declare type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
52
63
 
53
64
  declare type __VLS_NonUndefinedable_10<T> = T extends undefined ? never : T;
@@ -64,6 +75,8 @@ declare type __VLS_NonUndefinedable_15<T> = T extends undefined ? never : T;
64
75
 
65
76
  declare type __VLS_NonUndefinedable_16<T> = T extends undefined ? never : T;
66
77
 
78
+ declare type __VLS_NonUndefinedable_17<T> = T extends undefined ? never : T;
79
+
67
80
  declare type __VLS_NonUndefinedable_2<T> = T extends undefined ? never : T;
68
81
 
69
82
  declare type __VLS_NonUndefinedable_3<T> = T extends undefined ? never : T;
@@ -92,6 +105,10 @@ declare type __VLS_PrettifyLocal_11<T> = {
92
105
  [K in keyof T]: T[K];
93
106
  } & {};
94
107
 
108
+ declare type __VLS_PrettifyLocal_12<T> = {
109
+ [K in keyof T]: T[K];
110
+ } & {};
111
+
95
112
  declare type __VLS_PrettifyLocal_2<T> = {
96
113
  [K in keyof T]: T[K];
97
114
  } & {};
@@ -195,12 +212,24 @@ declare function __VLS_template_3(): {
195
212
  rootEl: any;
196
213
  };
197
214
 
215
+ declare function __VLS_template_4(): {
216
+ attrs: Partial<{}>;
217
+ slots: {
218
+ default?(_: {}): any;
219
+ default?(_: {}): any;
220
+ };
221
+ refs: {};
222
+ rootEl: any;
223
+ };
224
+
198
225
  declare type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
199
226
 
200
227
  declare type __VLS_TemplateResult_2 = ReturnType<typeof __VLS_template_2>;
201
228
 
202
229
  declare type __VLS_TemplateResult_3 = ReturnType<typeof __VLS_template_3>;
203
230
 
231
+ declare type __VLS_TemplateResult_4 = ReturnType<typeof __VLS_template_4>;
232
+
204
233
  declare type __VLS_TypePropsToOption<T> = {
205
234
  [K in keyof T]-?: {} extends Pick<T, K> ? {
206
235
  type: PropType<__VLS_NonUndefinedable<T[K]>>;
@@ -273,6 +302,15 @@ declare type __VLS_TypePropsToOption_16<T> = {
273
302
  };
274
303
  };
275
304
 
305
+ declare type __VLS_TypePropsToOption_17<T> = {
306
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
307
+ type: PropType<__VLS_NonUndefinedable_17<T[K]>>;
308
+ } : {
309
+ type: PropType<T[K]>;
310
+ required: true;
311
+ };
312
+ };
313
+
276
314
  declare type __VLS_TypePropsToOption_2<T> = {
277
315
  [K in keyof T]-?: {} extends Pick<T, K> ? {
278
316
  type: PropType<__VLS_NonUndefinedable_2<T[K]>>;
@@ -363,6 +401,12 @@ declare type __VLS_WithDefaults_11<P, D> = {
363
401
  }> : P[K];
364
402
  };
365
403
 
404
+ declare type __VLS_WithDefaults_12<P, D> = {
405
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_PrettifyLocal_12<P[K] & {
406
+ default: D[K];
407
+ }> : P[K];
408
+ };
409
+
366
410
  declare type __VLS_WithDefaults_2<P, D> = {
367
411
  [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_PrettifyLocal_2<P[K] & {
368
412
  default: D[K];
@@ -429,6 +473,12 @@ declare type __VLS_WithTemplateSlots_3<T, S> = T & {
429
473
  };
430
474
  };
431
475
 
476
+ declare type __VLS_WithTemplateSlots_4<T, S> = T & {
477
+ new (): {
478
+ $slots: S;
479
+ };
480
+ };
481
+
432
482
  export declare interface BreadcrumbConfig {
433
483
  entity: string;
434
484
  dataCy: string;
@@ -531,7 +581,7 @@ export declare const ConfirmDeleteDialog: DefineComponent<ExtractPropTypes<__VLS
531
581
  cancelLabel: string;
532
582
  }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
533
583
 
534
- declare interface ConfirmDeleteDialogProps {
584
+ export declare interface ConfirmDeleteDialogProps {
535
585
  modelValue: boolean;
536
586
  title: string;
537
587
  message: string;
@@ -784,6 +834,8 @@ export declare type DisabledDateObject = {
784
834
  end_date: string | Date;
785
835
  };
786
836
 
837
+ export declare const DynamicTeleport: __VLS_WithTemplateSlots_4<typeof __VLS_component_4, __VLS_TemplateResult_4["slots"]>;
838
+
787
839
  export declare interface EnergyDot {
788
840
  size: number;
789
841
  x: number;
@@ -944,12 +996,17 @@ export declare interface ProjectSelectionProps {
944
996
  disabledIds?: string[];
945
997
  }
946
998
 
947
- declare interface Props {
999
+ export declare interface Props {
948
1000
  mainFilter: any;
949
1001
  filterRefs?: Record<string, any>;
950
1002
  label?: string;
951
1003
  }
952
1004
 
1005
+ declare interface Props_2 {
1006
+ useDiv?: boolean;
1007
+ to?: string;
1008
+ }
1009
+
953
1010
  export declare const ResetFiltersButton: DefineComponent<ExtractPropTypes<__VLS_TypePropsToOption_15<Props>>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
954
1011
  reset: () => void;
955
1012
  }, string, PublicProps, Readonly< ExtractPropTypes<__VLS_TypePropsToOption_15<Props>>> & Readonly<{