@moontra/moonui-pro 2.27.2 → 2.27.4
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.
- package/dist/index.d.ts +1 -1
- package/dist/index.global.js +50 -50
- package/dist/index.global.js.map +1 -1
- package/dist/index.mjs +425 -280
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -3128,7 +3128,7 @@ interface BulkAction<T = any> {
|
|
|
3128
3128
|
action: (selectedRows: T[]) => void | Promise<void>;
|
|
3129
3129
|
confirmMessage?: string;
|
|
3130
3130
|
confirmTitle?: string;
|
|
3131
|
-
variant?:
|
|
3131
|
+
variant?: "default" | "destructive";
|
|
3132
3132
|
disabled?: boolean | ((selectedRows: T[]) => boolean);
|
|
3133
3133
|
}
|
|
3134
3134
|
|