beth-clarity 1.1.27 → 1.1.29

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.
@@ -30,11 +30,13 @@ export interface TableCellProps {
30
30
  export interface TableData {
31
31
  [key: string]: any;
32
32
  }
33
+ export type SortDirection = 'asc' | 'desc' | 'none';
33
34
  export interface TableColumn {
34
35
  key: string;
35
36
  header: string;
36
37
  sortable?: boolean;
37
38
  minWidth?: string;
39
+ render?: (row: TableData) => ReactNode;
40
+ align?: 'left' | 'center' | 'right';
38
41
  }
39
- export type SortDirection = 'asc' | 'desc' | 'none';
40
42
  //# sourceMappingURL=table.d.ts.map
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "beth-clarity",
3
3
  "type": "module",
4
- "version": "1.1.27",
4
+ "version": "1.1.29",
5
5
  "description": "Design System da Beth Health Tech com componentes React reutilizáveis",
6
6
  "main": "dist/clarity-design-system.umd.js",
7
7
  "module": "dist/clarity-design-system.es.js",