ui-mathilde-web 0.11.11 → 0.11.13
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/style.css +1 -1
- package/dist/ui-mathilde-web.d.ts +8 -3
- package/dist/ui-mathilde-web.js +3419 -3403
- package/dist/ui-mathilde-web.umd.cjs +36 -36
- package/package.json +1 -1
|
@@ -57,10 +57,10 @@ declare interface AlertOptions {
|
|
|
57
57
|
imageWidth?: number;
|
|
58
58
|
imageHeight?: number;
|
|
59
59
|
showCancelButton?: boolean;
|
|
60
|
-
confirmButtonText?: string;
|
|
61
60
|
cancelButtonText?: string;
|
|
62
|
-
|
|
61
|
+
confirmButtonText?: string;
|
|
63
62
|
cancelButtonColor?: string;
|
|
63
|
+
confirmButtonColor?: string;
|
|
64
64
|
timer?: number;
|
|
65
65
|
timerProgressBar?: boolean;
|
|
66
66
|
allowOutsideClick?: boolean;
|
|
@@ -250,7 +250,12 @@ declare interface CollapsibleTableProps {
|
|
|
250
250
|
showCheckboxes?: boolean;
|
|
251
251
|
selectedRows?: Set<string | number>;
|
|
252
252
|
onRowSelect?: (rowId: string | number, checked: boolean) => void;
|
|
253
|
-
onSelectAll?: (checked: boolean) => void;
|
|
253
|
+
onSelectAll?: (checked: boolean, selectableRowIds?: Array<string | number>) => void;
|
|
254
|
+
/**
|
|
255
|
+
* Define si una fila puede seleccionarse por checkbox.
|
|
256
|
+
* Si no se define, todas las filas serán seleccionables.
|
|
257
|
+
*/
|
|
258
|
+
isRowSelectable?: (row: TableData_2) => boolean;
|
|
254
259
|
onToggleChange?: (rowData: {
|
|
255
260
|
rowId: string | number;
|
|
256
261
|
checked: boolean;
|