@selfeesas/shared-components 0.4.22 → 0.4.24

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.
@@ -57,6 +57,8 @@ declare type __VLS_NonUndefinedable_13<T> = T extends undefined ? never : T;
57
57
 
58
58
  declare type __VLS_NonUndefinedable_14<T> = T extends undefined ? never : T;
59
59
 
60
+ declare type __VLS_NonUndefinedable_15<T> = T extends undefined ? never : T;
61
+
60
62
  declare type __VLS_NonUndefinedable_2<T> = T extends undefined ? never : T;
61
63
 
62
64
  declare type __VLS_NonUndefinedable_3<T> = T extends undefined ? never : T;
@@ -240,6 +242,15 @@ declare type __VLS_TypePropsToOption_14<T> = {
240
242
  };
241
243
  };
242
244
 
245
+ declare type __VLS_TypePropsToOption_15<T> = {
246
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
247
+ type: PropType<__VLS_NonUndefinedable_15<T[K]>>;
248
+ } : {
249
+ type: PropType<T[K]>;
250
+ required: true;
251
+ };
252
+ };
253
+
243
254
  declare type __VLS_TypePropsToOption_2<T> = {
244
255
  [K in keyof T]-?: {} extends Pick<T, K> ? {
245
256
  type: PropType<__VLS_NonUndefinedable_2<T[K]>>;
@@ -708,7 +719,7 @@ export declare interface ExcelColumn<T = any> {
708
719
  }
709
720
 
710
721
  export declare interface ExcelExportFilters {
711
- [key: string]: string | number | boolean | null | undefined;
722
+ [key: string]: string | number | boolean | string[] | null | undefined;
712
723
  }
713
724
 
714
725
  export declare const ExportButton: DefineComponent<ExtractPropTypes<__VLS_WithDefaults_7<__VLS_TypePropsToOption_12<__VLS_Props_3>, {
@@ -847,6 +858,18 @@ export declare interface ProjectSelectionProps {
847
858
  disabledIds?: string[];
848
859
  }
849
860
 
861
+ declare interface Props {
862
+ mainFilter: any;
863
+ filterRefs?: Record<string, any>;
864
+ label?: string;
865
+ }
866
+
867
+ export declare const ResetFiltersButton: DefineComponent<ExtractPropTypes<__VLS_TypePropsToOption_15<Props>>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
868
+ reset: () => void;
869
+ }, string, PublicProps, Readonly< ExtractPropTypes<__VLS_TypePropsToOption_15<Props>>> & Readonly<{
870
+ onReset?: (() => any) | undefined;
871
+ }>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
872
+
850
873
  export declare interface SelectOption<T = any> {
851
874
  label: string;
852
875
  value: string | number | T;