@selfeesas/shared-components 0.3.6 → 0.3.8
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.
|
@@ -1 +1 @@
|
|
|
1
|
-
.row[data-v-c5e3fee0]{width:100%;gap:8px}.smooth-rotate[data-v-0094cb2e]{transition:transform .3s ease}.logo[data-v-ab7c0ff6]{width:260px;height:auto}label[data-v-
|
|
1
|
+
.row[data-v-c5e3fee0]{width:100%;gap:8px}.smooth-rotate[data-v-0094cb2e]{transition:transform .3s ease}.logo[data-v-ab7c0ff6]{width:260px;height:auto}label[data-v-3ecf00f2]{width:50%}
|
|
@@ -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?: (
|
|
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
|
|