@selfeesas/shared-components 0.4.26 → 0.4.27

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.
@@ -25,6 +25,7 @@ declare const __VLS_component_3: DefineComponent<ExtractPropTypes<__VLS_WithDefa
25
25
  services: () => {};
26
26
  conditionals: () => {};
27
27
  actions: () => never[];
28
+ rowClasses: undefined;
28
29
  }>>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
29
30
  "update:pagination": (...args: any[]) => void;
30
31
  }, string, PublicProps, Readonly< ExtractPropTypes<__VLS_WithDefaults_7<__VLS_TypePropsToOption_11<CustomTableProps>, {
@@ -34,6 +35,7 @@ declare const __VLS_component_3: DefineComponent<ExtractPropTypes<__VLS_WithDefa
34
35
  services: () => {};
35
36
  conditionals: () => {};
36
37
  actions: () => never[];
38
+ rowClasses: undefined;
37
39
  }>>> & Readonly<{
38
40
  "onUpdate:pagination"?: ((...args: any[]) => any) | undefined;
39
41
  }>, {
@@ -43,6 +45,7 @@ declare const __VLS_component_3: DefineComponent<ExtractPropTypes<__VLS_WithDefa
43
45
  services: CustomTableServices;
44
46
  conditionals: CustomTableConditionals;
45
47
  actions: TableAction[] | ((row: any) => TableAction[]);
48
+ rowClasses: string | ((row: any) => string);
46
49
  }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
47
50
 
48
51
  declare type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
@@ -520,6 +523,7 @@ export declare interface CustomTableProps {
520
523
  conditionals?: CustomTableConditionals;
521
524
  actions?: TableAction[] | ((row: any) => TableAction[]);
522
525
  showSkeleton?: boolean;
526
+ rowClasses?: string | ((row: any) => string);
523
527
  }
524
528
 
525
529
  export declare interface CustomTableServices {