Explorar o código

HUE-9485 Added css properties to HueTable Column Interface

sreenaths %!s(int64=5) %!d(string=hai) anos
pai
achega
19a809bea4
Modificáronse 1 ficheiros con 2 adicións e 2 borrados
  1. 2 2
      desktop/core/src/desktop/js/components/HueTable.d.ts

+ 2 - 2
desktop/core/src/desktop/js/components/HueTable.d.ts

@@ -17,8 +17,8 @@
 export interface Column<T> {
   label: string;
   key: string;
-  small?: boolean;
-  noWrap?: boolean;
+  cssClass?: string;
+  headerCssClass?: string;
   adapter?: (key: string, row: T) => string | number | boolean | undefined;
 }