ui-mathilde-web 0.11.5 → 0.11.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.
- package/dist/style.css +1 -1
- package/dist/ui-mathilde-web.d.ts +13 -0
- package/dist/ui-mathilde-web.js +5035 -5014
- package/dist/ui-mathilde-web.umd.cjs +49 -49
- package/package.json +1 -1
|
@@ -171,6 +171,9 @@ declare interface CardProps {
|
|
|
171
171
|
}>;
|
|
172
172
|
iconPosition?: 'start' | 'center' | 'end';
|
|
173
173
|
imagePosition?: 'ml-auto' | 'mr-auto' | 'mx-auto';
|
|
174
|
+
tooltip?: boolean;
|
|
175
|
+
tooltipContent?: string;
|
|
176
|
+
tooltipTrigger?: 'hover' | 'click';
|
|
174
177
|
}
|
|
175
178
|
|
|
176
179
|
declare interface Category {
|
|
@@ -316,6 +319,16 @@ declare interface Column_2 {
|
|
|
316
319
|
cellProps?: Record<string, unknown>;
|
|
317
320
|
/** Cuando se define, renderiza el valor como badge con color dinámico. */
|
|
318
321
|
badgeConfig?: BadgeConfig;
|
|
322
|
+
/**
|
|
323
|
+
* Configuración opcional para mostrar tooltip en celdas de subRows.
|
|
324
|
+
* Si no se define, la celda se renderiza como texto normal.
|
|
325
|
+
*/
|
|
326
|
+
subRowTooltip?: {
|
|
327
|
+
enabled?: boolean | ((subRow: TableData_2) => boolean);
|
|
328
|
+
content: string | ((subRow: TableData_2) => string);
|
|
329
|
+
trigger?: "hover" | "click";
|
|
330
|
+
iconAlt?: string;
|
|
331
|
+
};
|
|
319
332
|
}
|
|
320
333
|
|
|
321
334
|
export declare const CustomPagination: default_2.FC<CustomPaginationProps>;
|