rez-table-listing-mui 2.0.13 → 2.0.14

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 CHANGED
@@ -51,7 +51,7 @@ interface FilterSharedListProps {
51
51
  is_editable: boolean | string;
52
52
  description: string | null;
53
53
  }
54
- type FilterInputDataTypes = "text" | "select" | "multiselect" | "date" | "year" | "number";
54
+ type FilterInputDataTypes = "text" | "select" | "multiselect" | "date" | "year" | "number" | "label";
55
55
  interface FilterColumnsListProps {
56
56
  created_date: string | null;
57
57
  entity_type: string;
@@ -349,6 +349,14 @@ interface QuickFilterModalProps {
349
349
  tabsApiDataLoading?: boolean;
350
350
  onSaveSettingsData?: (data: any) => void;
351
351
  activeTab?: string;
352
+ selectAttributeData?: {
353
+ label: string;
354
+ value: string;
355
+ }[];
356
+ selectSwinLandData?: {
357
+ label: string;
358
+ value: string;
359
+ }[];
352
360
  }
353
361
  type SortingType = "asc" | "desc";
354
362
  type QuickTabSortingType = "asc" | "dsc" | "count_asc" | "count_dsc" | "custom";
@@ -603,7 +611,7 @@ declare function TableTabs({ loading, tabsData, activeTab, onClick, tableStates,
603
611
 
604
612
  declare function TableFilter({ onClose, columnsData, tableStates, onDeleteFilter, onSaveFilter, onUpdateFilter, dropdownData, onChangeFunction, filterComponentOptions, isFlatJson, }: FilterDrawerProps): react_jsx_runtime.JSX.Element;
605
613
 
606
- declare function QuickFilterSettings({ view, isFlatJson, show, filterSettingStates, onClose, columnsData, columnsDataLoading, quickTabAttributes, quickTabAttributesLoading, columnTabAttributes, columnTabAttributesLoading, sortingTabAttributes, sortingTabAttributesLoading, tabsApiData, tabsApiDataLoading, onSaveSettingsData, activeTab, }: QuickFilterModalProps): react_jsx_runtime.JSX.Element;
614
+ declare function QuickFilterSettings({ view, isFlatJson, show, filterSettingStates, onClose, columnsData, columnsDataLoading, quickTabAttributes, quickTabAttributesLoading, columnTabAttributes, columnTabAttributesLoading, sortingTabAttributes, sortingTabAttributesLoading, tabsApiData, tabsApiDataLoading, onSaveSettingsData, activeTab, selectAttributeData, selectSwinLandData, }: QuickFilterModalProps): react_jsx_runtime.JSX.Element;
607
615
 
608
616
  interface TableSearchProps {
609
617
  value: string;