prlg-ui 1.8.1 → 1.8.2
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 +2 -0
- package/dist/prlg-ui.cjs.js +1 -1
- package/dist/prlg-ui.es.js +140 -134
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1021,6 +1021,7 @@ declare type Column_2 = {
|
|
|
1021
1021
|
alignVertical?: 'top' | 'middle' | 'bottom';
|
|
1022
1022
|
selectionMode?: SelectedMode;
|
|
1023
1023
|
style?: CSSProperties;
|
|
1024
|
+
visible?: boolean;
|
|
1024
1025
|
headerSlot?: Slot<ColumnHeaderSlotProps> | null;
|
|
1025
1026
|
bodySlot?: Slot<ColumnBodySlotProps> | null;
|
|
1026
1027
|
footerSlot?: Slot<ColumnFooterSlotProps> | null;
|
|
@@ -1056,6 +1057,7 @@ declare type ColumnProps = {
|
|
|
1056
1057
|
style?: CSSProperties;
|
|
1057
1058
|
headerStyle?: string | Record<string, any>;
|
|
1058
1059
|
selectionMode?: SelectedMode;
|
|
1060
|
+
visible?: boolean;
|
|
1059
1061
|
};
|
|
1060
1062
|
|
|
1061
1063
|
declare interface ColumnSlots {
|