@selfeesas/shared-components 0.4.34 → 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;
|
|
@@ -665,6 +715,7 @@ export declare const DateRange: DefineComponent<ExtractPropTypes<__VLS_WithDefau
|
|
|
665
715
|
highlightEvents: () => never[];
|
|
666
716
|
disabled: boolean;
|
|
667
717
|
idCy: string;
|
|
718
|
+
hideActions: boolean;
|
|
668
719
|
}>>, {
|
|
669
720
|
resetDate: () => void;
|
|
670
721
|
setDateRange: (dateRange: {
|
|
@@ -695,6 +746,7 @@ export declare const DateRange: DefineComponent<ExtractPropTypes<__VLS_WithDefau
|
|
|
695
746
|
highlightEvents: () => never[];
|
|
696
747
|
disabled: boolean;
|
|
697
748
|
idCy: string;
|
|
749
|
+
hideActions: boolean;
|
|
698
750
|
}>>> & Readonly<{
|
|
699
751
|
onClear?: (() => any) | undefined;
|
|
700
752
|
"onUpdate:dateRange"?: ((value: {
|
|
@@ -719,6 +771,7 @@ export declare const DateRange: DefineComponent<ExtractPropTypes<__VLS_WithDefau
|
|
|
719
771
|
locale: DateRangeLocale;
|
|
720
772
|
highlightEvents: string[];
|
|
721
773
|
idCy: string;
|
|
774
|
+
hideActions: boolean;
|
|
722
775
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
723
776
|
|
|
724
777
|
export declare interface DateRangeLocale {
|
|
@@ -751,6 +804,7 @@ export declare interface DateRangeProps {
|
|
|
751
804
|
idCy?: string;
|
|
752
805
|
isIconCalendar?: boolean;
|
|
753
806
|
resetPosition?: 'bottom' | 'side';
|
|
807
|
+
hideActions?: boolean;
|
|
754
808
|
}
|
|
755
809
|
|
|
756
810
|
export declare interface DateRangeType {
|
|
@@ -780,6 +834,8 @@ export declare type DisabledDateObject = {
|
|
|
780
834
|
end_date: string | Date;
|
|
781
835
|
};
|
|
782
836
|
|
|
837
|
+
export declare const DynamicTeleport: __VLS_WithTemplateSlots_4<typeof __VLS_component_4, __VLS_TemplateResult_4["slots"]>;
|
|
838
|
+
|
|
783
839
|
export declare interface EnergyDot {
|
|
784
840
|
size: number;
|
|
785
841
|
x: number;
|
|
@@ -940,12 +996,17 @@ export declare interface ProjectSelectionProps {
|
|
|
940
996
|
disabledIds?: string[];
|
|
941
997
|
}
|
|
942
998
|
|
|
943
|
-
declare interface Props {
|
|
999
|
+
export declare interface Props {
|
|
944
1000
|
mainFilter: any;
|
|
945
1001
|
filterRefs?: Record<string, any>;
|
|
946
1002
|
label?: string;
|
|
947
1003
|
}
|
|
948
1004
|
|
|
1005
|
+
declare interface Props_2 {
|
|
1006
|
+
useDiv?: boolean;
|
|
1007
|
+
to?: string;
|
|
1008
|
+
}
|
|
1009
|
+
|
|
949
1010
|
export declare const ResetFiltersButton: DefineComponent<ExtractPropTypes<__VLS_TypePropsToOption_15<Props>>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
950
1011
|
reset: () => void;
|
|
951
1012
|
}, string, PublicProps, Readonly< ExtractPropTypes<__VLS_TypePropsToOption_15<Props>>> & Readonly<{
|