@selfeesas/shared-components 0.3.6 → 0.3.7

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.
@@ -82,7 +82,7 @@ declare function __VLS_template_3(): {
82
82
  'expand-button'?(_: {
83
83
  row: any;
84
84
  expanded: boolean;
85
- toggle: () => void;
85
+ toggle: () => Promise<void>;
86
86
  }): any;
87
87
  'body-cell'?(_: {
88
88
  row: any;
@@ -220,10 +220,10 @@ export declare const CustomTable: __VLS_WithTemplateSlots_3<typeof __VLS_compone
220
220
 
221
221
  declare interface CustomTableConditionals {
222
222
  shouldShowExpandButton?: (row: any) => boolean;
223
- shouldShowMoveButton?: (row: any) => boolean;
223
+ shouldShowMoveButton?: (rowKey: string) => boolean;
224
224
  shouldShowArchiveButton?: (row: any) => boolean;
225
225
  shouldShowUnarchiveButton?: (row: any) => boolean;
226
- shouldShowCancelButton?: (row: any) => boolean;
226
+ shouldShowCancelButton?: (row: any, rowKey: string) => boolean;
227
227
  isCancelButtonDisabled?: (row: any) => boolean;
228
228
  }
229
229