@natoora-libs/core 0.2.22-dev-doug-1 → 0.2.22-task-management-v1

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.
@@ -64,7 +64,7 @@ type TableDesktopToolbarProps = {
64
64
  declare const TableDesktopToolbar: FC<TableDesktopToolbarProps>;
65
65
 
66
66
  type Order = 'asc' | 'desc';
67
- type EditableCellType = 'select' | 'multipleSelect' | 'checkbox' | 'text' | 'numeric' | 'date' | 'time';
67
+ type EditableCellType = 'select' | 'multipleSelect' | 'checkbox' | 'text' | 'numeric' | 'date' | 'time' | 'tags';
68
68
  type HeaderFilterObject = {
69
69
  id: number | string;
70
70
  [key: string]: number | string;
@@ -100,6 +100,7 @@ type HeadCell = {
100
100
  onUpdateEditableCell?: (params: UpdateEditableCellParams) => void;
101
101
  onAutocompleteSearch?: (value: string) => void;
102
102
  allowBlankSelectOption?: boolean;
103
+ bulkUpdateDisabled?: boolean;
103
104
  };
104
105
  type TableDesktopProps = {
105
106
  data: any[];
@@ -64,7 +64,7 @@ type TableDesktopToolbarProps = {
64
64
  declare const TableDesktopToolbar: FC<TableDesktopToolbarProps>;
65
65
 
66
66
  type Order = 'asc' | 'desc';
67
- type EditableCellType = 'select' | 'multipleSelect' | 'checkbox' | 'text' | 'numeric' | 'date' | 'time';
67
+ type EditableCellType = 'select' | 'multipleSelect' | 'checkbox' | 'text' | 'numeric' | 'date' | 'time' | 'tags';
68
68
  type HeaderFilterObject = {
69
69
  id: number | string;
70
70
  [key: string]: number | string;
@@ -100,6 +100,7 @@ type HeadCell = {
100
100
  onUpdateEditableCell?: (params: UpdateEditableCellParams) => void;
101
101
  onAutocompleteSearch?: (value: string) => void;
102
102
  allowBlankSelectOption?: boolean;
103
+ bulkUpdateDisabled?: boolean;
103
104
  };
104
105
  type TableDesktopProps = {
105
106
  data: any[];