@natoora-libs/core 0.1.18-dev-doug-1 → 0.1.18-dev-doug-3

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.
@@ -123,10 +123,16 @@ type TableDesktopProps = {
123
123
  declare const TableDesktop: ({ data, headCells, RenderItem, appliedFilters, headerFilters, children, height, rowHeight, totalDataCount, isLoading, rowsPerPage, enableEditMode, enableCheckboxSelection, disableInternalSort, updateSort, showClearFilterButton, handleClickOnClearFiltersButton, deleteItem, keyField, tableLayout, onApplyFilters, shouldShowCheckOnFilter, components, componentsProps, }: TableDesktopProps) => react_jsx_runtime.JSX.Element;
124
124
 
125
125
  type AutocompleteFilterMenuContentProps = {
126
- headCell: HeadCell;
126
+ columnId: string;
127
+ labelFieldName: string;
127
128
  selectedFilterOptions: HeaderFilterOptions;
129
+ isLoading?: boolean;
130
+ maxWidth?: number;
131
+ maxHeight?: number;
128
132
  onFilterOptionChange: (option: string | HeaderFilterObject) => void;
129
133
  onApplyFiltersClick: (shouldSave: boolean) => void;
134
+ filterOptions: HeadCell["filterOptions"];
135
+ onAutocompleteFilterChange: HeadCell["onAutocompleteFilterChange"];
130
136
  shouldShowCheckOnFilter?: TableDesktopProps["shouldShowCheckOnFilter"];
131
137
  };
132
138
  declare const AutocompleteFilterMenuContent: FC<AutocompleteFilterMenuContentProps>;
@@ -279,9 +285,13 @@ interface ActionButtonProps {
279
285
  declare function ActionButton(props: ActionButtonProps): react_jsx_runtime.JSX.Element;
280
286
 
281
287
  type CheckboxFilterMenuContentProps = {
282
- headCell: HeadCell;
288
+ columnId: string;
289
+ labelFieldName: string;
290
+ isLoading?: boolean;
283
291
  selectedFilterOptions: HeaderFilterOptions;
284
292
  filterOptions: HeaderFilterOptions;
293
+ maxHeight?: number;
294
+ width?: number;
285
295
  shouldShowCheckOnFilter?: TableDesktopProps["shouldShowCheckOnFilter"];
286
296
  onSelectAllChange: (checked: boolean) => void;
287
297
  onFilterOptionChange: (option: string | HeaderFilterObject) => void;
@@ -530,6 +540,7 @@ declare const _default$b: React.MemoExoticComponent<({ closeDialog, userName, de
530
540
 
531
541
  type DynamicOverflowTooltipProps = {
532
542
  arrow?: boolean;
543
+ maxWidth?: number | string;
533
544
  children: ReactElement | string | number | null;
534
545
  tooltipDescription: string;
535
546
  };
@@ -571,7 +582,7 @@ declare const FilterSimpleSelector: ({ name, options, selectedOptions, setSelect
571
582
  type FilterOptionsCheckboxesProps = {
572
583
  columnId: string;
573
584
  labelFieldName: string;
574
- maxWidth?: number | string;
585
+ maxWidth?: number;
575
586
  filterOptions: HeaderFilterOptions;
576
587
  selectedFilterOptions: HeaderFilterOptions;
577
588
  onFilterOptionChange: (option: string | HeaderFilterObject) => void;
@@ -123,10 +123,16 @@ type TableDesktopProps = {
123
123
  declare const TableDesktop: ({ data, headCells, RenderItem, appliedFilters, headerFilters, children, height, rowHeight, totalDataCount, isLoading, rowsPerPage, enableEditMode, enableCheckboxSelection, disableInternalSort, updateSort, showClearFilterButton, handleClickOnClearFiltersButton, deleteItem, keyField, tableLayout, onApplyFilters, shouldShowCheckOnFilter, components, componentsProps, }: TableDesktopProps) => react_jsx_runtime.JSX.Element;
124
124
 
125
125
  type AutocompleteFilterMenuContentProps = {
126
- headCell: HeadCell;
126
+ columnId: string;
127
+ labelFieldName: string;
127
128
  selectedFilterOptions: HeaderFilterOptions;
129
+ isLoading?: boolean;
130
+ maxWidth?: number;
131
+ maxHeight?: number;
128
132
  onFilterOptionChange: (option: string | HeaderFilterObject) => void;
129
133
  onApplyFiltersClick: (shouldSave: boolean) => void;
134
+ filterOptions: HeadCell["filterOptions"];
135
+ onAutocompleteFilterChange: HeadCell["onAutocompleteFilterChange"];
130
136
  shouldShowCheckOnFilter?: TableDesktopProps["shouldShowCheckOnFilter"];
131
137
  };
132
138
  declare const AutocompleteFilterMenuContent: FC<AutocompleteFilterMenuContentProps>;
@@ -279,9 +285,13 @@ interface ActionButtonProps {
279
285
  declare function ActionButton(props: ActionButtonProps): react_jsx_runtime.JSX.Element;
280
286
 
281
287
  type CheckboxFilterMenuContentProps = {
282
- headCell: HeadCell;
288
+ columnId: string;
289
+ labelFieldName: string;
290
+ isLoading?: boolean;
283
291
  selectedFilterOptions: HeaderFilterOptions;
284
292
  filterOptions: HeaderFilterOptions;
293
+ maxHeight?: number;
294
+ width?: number;
285
295
  shouldShowCheckOnFilter?: TableDesktopProps["shouldShowCheckOnFilter"];
286
296
  onSelectAllChange: (checked: boolean) => void;
287
297
  onFilterOptionChange: (option: string | HeaderFilterObject) => void;
@@ -530,6 +540,7 @@ declare const _default$b: React.MemoExoticComponent<({ closeDialog, userName, de
530
540
 
531
541
  type DynamicOverflowTooltipProps = {
532
542
  arrow?: boolean;
543
+ maxWidth?: number | string;
533
544
  children: ReactElement | string | number | null;
534
545
  tooltipDescription: string;
535
546
  };
@@ -571,7 +582,7 @@ declare const FilterSimpleSelector: ({ name, options, selectedOptions, setSelect
571
582
  type FilterOptionsCheckboxesProps = {
572
583
  columnId: string;
573
584
  labelFieldName: string;
574
- maxWidth?: number | string;
585
+ maxWidth?: number;
575
586
  filterOptions: HeaderFilterOptions;
576
587
  selectedFilterOptions: HeaderFilterOptions;
577
588
  onFilterOptionChange: (option: string | HeaderFilterObject) => void;