@selfeesas/shared-components 0.5.1 → 0.6.1

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.
@@ -59,6 +59,53 @@ declare const __VLS_component_4: DefineComponent<ExtractPropTypes<__VLS_WithDefa
59
59
  useDiv: boolean;
60
60
  }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
61
61
 
62
+ declare const __VLS_component_5: DefineComponent<ExtractPropTypes<__VLS_WithDefaults_13<__VLS_TypePropsToOption_18<SelfeeCardProps>, {
63
+ showHeader: boolean;
64
+ colorScheme: string;
65
+ shadowIntensity: string;
66
+ noPadding: boolean;
67
+ dense: boolean;
68
+ rounded: boolean;
69
+ hoverable: boolean;
70
+ bordered: boolean;
71
+ flat: boolean;
72
+ centerTitle: boolean;
73
+ centerActions: boolean;
74
+ subtitle: string;
75
+ title: string;
76
+ contentGap: boolean;
77
+ }>>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<__VLS_WithDefaults_13<__VLS_TypePropsToOption_18<SelfeeCardProps>, {
78
+ showHeader: boolean;
79
+ colorScheme: string;
80
+ shadowIntensity: string;
81
+ noPadding: boolean;
82
+ dense: boolean;
83
+ rounded: boolean;
84
+ hoverable: boolean;
85
+ bordered: boolean;
86
+ flat: boolean;
87
+ centerTitle: boolean;
88
+ centerActions: boolean;
89
+ subtitle: string;
90
+ title: string;
91
+ contentGap: boolean;
92
+ }>>> & Readonly<{}>, {
93
+ flat: boolean;
94
+ dense: boolean;
95
+ rounded: boolean;
96
+ title: string;
97
+ subtitle: string;
98
+ showHeader: boolean;
99
+ colorScheme: "primary" | "secondary" | "accent" | "info" | "warning" | "error" | "success" | "neutral";
100
+ shadowIntensity: "none" | "light" | "medium" | "heavy";
101
+ noPadding: boolean;
102
+ hoverable: boolean;
103
+ bordered: boolean;
104
+ centerTitle: boolean;
105
+ centerActions: boolean;
106
+ contentGap: boolean | string;
107
+ }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
108
+
62
109
  declare type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
63
110
 
64
111
  declare type __VLS_NonUndefinedable_10<T> = T extends undefined ? never : T;
@@ -77,6 +124,8 @@ declare type __VLS_NonUndefinedable_16<T> = T extends undefined ? never : T;
77
124
 
78
125
  declare type __VLS_NonUndefinedable_17<T> = T extends undefined ? never : T;
79
126
 
127
+ declare type __VLS_NonUndefinedable_18<T> = T extends undefined ? never : T;
128
+
80
129
  declare type __VLS_NonUndefinedable_2<T> = T extends undefined ? never : T;
81
130
 
82
131
  declare type __VLS_NonUndefinedable_3<T> = T extends undefined ? never : T;
@@ -109,6 +158,10 @@ declare type __VLS_PrettifyLocal_12<T> = {
109
158
  [K in keyof T]: T[K];
110
159
  } & {};
111
160
 
161
+ declare type __VLS_PrettifyLocal_13<T> = {
162
+ [K in keyof T]: T[K];
163
+ } & {};
164
+
112
165
  declare type __VLS_PrettifyLocal_2<T> = {
113
166
  [K in keyof T]: T[K];
114
167
  } & {};
@@ -222,6 +275,17 @@ declare function __VLS_template_4(): {
222
275
  rootEl: any;
223
276
  };
224
277
 
278
+ declare function __VLS_template_5(): {
279
+ attrs: Partial<{}>;
280
+ slots: {
281
+ header?(_: {}): any;
282
+ default?(_: {}): any;
283
+ actions?(_: {}): any;
284
+ };
285
+ refs: {};
286
+ rootEl: any;
287
+ };
288
+
225
289
  declare type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
226
290
 
227
291
  declare type __VLS_TemplateResult_2 = ReturnType<typeof __VLS_template_2>;
@@ -230,6 +294,8 @@ declare type __VLS_TemplateResult_3 = ReturnType<typeof __VLS_template_3>;
230
294
 
231
295
  declare type __VLS_TemplateResult_4 = ReturnType<typeof __VLS_template_4>;
232
296
 
297
+ declare type __VLS_TemplateResult_5 = ReturnType<typeof __VLS_template_5>;
298
+
233
299
  declare type __VLS_TypePropsToOption<T> = {
234
300
  [K in keyof T]-?: {} extends Pick<T, K> ? {
235
301
  type: PropType<__VLS_NonUndefinedable<T[K]>>;
@@ -311,6 +377,15 @@ declare type __VLS_TypePropsToOption_17<T> = {
311
377
  };
312
378
  };
313
379
 
380
+ declare type __VLS_TypePropsToOption_18<T> = {
381
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
382
+ type: PropType<__VLS_NonUndefinedable_18<T[K]>>;
383
+ } : {
384
+ type: PropType<T[K]>;
385
+ required: true;
386
+ };
387
+ };
388
+
314
389
  declare type __VLS_TypePropsToOption_2<T> = {
315
390
  [K in keyof T]-?: {} extends Pick<T, K> ? {
316
391
  type: PropType<__VLS_NonUndefinedable_2<T[K]>>;
@@ -407,6 +482,12 @@ declare type __VLS_WithDefaults_12<P, D> = {
407
482
  }> : P[K];
408
483
  };
409
484
 
485
+ declare type __VLS_WithDefaults_13<P, D> = {
486
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_PrettifyLocal_13<P[K] & {
487
+ default: D[K];
488
+ }> : P[K];
489
+ };
490
+
410
491
  declare type __VLS_WithDefaults_2<P, D> = {
411
492
  [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_PrettifyLocal_2<P[K] & {
412
493
  default: D[K];
@@ -479,6 +560,12 @@ declare type __VLS_WithTemplateSlots_4<T, S> = T & {
479
560
  };
480
561
  };
481
562
 
563
+ declare type __VLS_WithTemplateSlots_5<T, S> = T & {
564
+ new (): {
565
+ $slots: S;
566
+ };
567
+ };
568
+
482
569
  export declare interface BreadcrumbConfig {
483
570
  entity: string;
484
571
  dataCy: string;
@@ -1096,6 +1183,25 @@ export declare interface SelectSearchProps<T = any> {
1096
1183
  modelValue?: string | number | T | null;
1097
1184
  }
1098
1185
 
1186
+ export declare const SelfeeCard: __VLS_WithTemplateSlots_5<typeof __VLS_component_5, __VLS_TemplateResult_5["slots"]>;
1187
+
1188
+ declare interface SelfeeCardProps {
1189
+ title?: string;
1190
+ subtitle?: string;
1191
+ showHeader?: boolean;
1192
+ colorScheme?: 'primary' | 'secondary' | 'accent' | 'info' | 'warning' | 'error' | 'success' | 'neutral';
1193
+ shadowIntensity?: 'none' | 'light' | 'medium' | 'heavy';
1194
+ noPadding?: boolean;
1195
+ dense?: boolean;
1196
+ rounded?: boolean;
1197
+ hoverable?: boolean;
1198
+ bordered?: boolean;
1199
+ flat?: boolean;
1200
+ centerTitle?: boolean;
1201
+ centerActions?: boolean;
1202
+ contentGap?: boolean | string;
1203
+ }
1204
+
1099
1205
  export declare const SelfeeFooter: DefineComponent<ExtractPropTypes<__VLS_TypePropsToOption_6<SelfeeFooterProps>>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<__VLS_TypePropsToOption_6<SelfeeFooterProps>>> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
1100
1206
 
1101
1207
  export declare interface SelfeeFooterProps {