@natoora-libs/core 0.1.10 → 0.1.13-dev-doug-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.
@@ -1,9 +1,9 @@
1
1
  import * as React from 'react';
2
- import React__default, { MouseEvent, ReactNode, ComponentType, ChangeEvent, FC, ComponentProps, SVGProps } from 'react';
2
+ import React__default, { MouseEvent, ReactNode, ComponentType, ChangeEvent, FC, RefObject, ComponentProps, SVGProps } from 'react';
3
3
  import * as react_jsx_runtime from 'react/jsx-runtime';
4
4
  import { Control, ControllerRenderProps, ControllerFieldState, UseFormTrigger, UseFormReturn, FieldValues } from 'react-hook-form';
5
- import { UseMutateAsyncFunction, UseQueryResult } from 'react-query';
6
- import { MenuProps, Typography } from '@mui/material';
5
+ import { UseMutateAsyncFunction } from 'react-query';
6
+ import { MenuProps, SelectChangeEvent, Typography } from '@mui/material';
7
7
  import { DateRangePickerShape } from 'react-dates';
8
8
 
9
9
  type ActiveFiltersIconButtonProps = {
@@ -709,6 +709,13 @@ interface SearchAndFilterHeaderForTableProps {
709
709
  }
710
710
  declare const _default$9: React.MemoExoticComponent<(props: SearchAndFilterHeaderForTableProps) => react_jsx_runtime.JSX.Element>;
711
711
 
712
+ type SearchFieldDebouncedProps = {
713
+ onSearch: (value: string) => void;
714
+ initialValue?: string;
715
+ debounceDelay?: number;
716
+ };
717
+ declare const SearchFieldDebounced: React__default.FC<SearchFieldDebouncedProps>;
718
+
712
719
  interface ISearchWithFiltersProps {
713
720
  enterPressedInSearch?: () => void;
714
721
  filterClick?: React.MouseEventHandler<HTMLButtonElement>;
@@ -744,11 +751,11 @@ interface ISectionName {
744
751
  }
745
752
  declare const SectionName: ({ name, tooltipDescription, sectionId, handleButtonClick, buttonText, buttonType, buttonDisabled, openHistoryLog, }: ISectionName) => react_jsx_runtime.JSX.Element;
746
753
 
747
- interface Option {
754
+ type Option = {
748
755
  value?: string | number;
749
756
  label?: string;
750
757
  disabled?: boolean;
751
- }
758
+ };
752
759
  interface SmartSelectProps {
753
760
  /**
754
761
  * The current selected value of the select input. It can be a string, number, or null.
@@ -842,10 +849,10 @@ interface LSwitchProps {
842
849
  declare const _default$5: React.MemoExoticComponent<({ checked, labelOn, labelOff, handleChange, classes, disabled, }: LSwitchProps) => react_jsx_runtime.JSX.Element>;
843
850
 
844
851
  type Order = 'asc' | 'desc';
852
+ type EditableCellType = 'select' | 'checkbox' | 'text' | 'numeric';
845
853
  type HeaderFilterObject = {
846
- id: number;
847
- name: string;
848
- label?: string;
854
+ id: number | string;
855
+ [key: string]: number | string;
849
856
  };
850
857
  type HeaderFilterOptions = string[] | HeaderFilterObject[];
851
858
  type HeaderFilters = {
@@ -854,14 +861,21 @@ type HeaderFilters = {
854
861
  type HeadCell = {
855
862
  id: string;
856
863
  label?: string;
864
+ fieldName?: string;
857
865
  numeric?: boolean;
858
866
  disablePadding?: boolean;
859
867
  width?: number | string;
860
868
  enabled?: boolean;
861
- renderHeader?: ReactNode;
862
- filterOptionsQuery?: UseQueryResult<unknown[], unknown>;
869
+ disableSort?: boolean;
870
+ RenderHeader?: ReactNode;
871
+ editableCellType?: EditableCellType;
872
+ validateInput?: (value: string | null) => boolean;
873
+ onUpdateEditableCell?: (rowId: number, newValue: string | number | boolean) => void;
874
+ filterOptions?: HeaderFilterOptions;
875
+ refetchFilterOptions?: () => void;
876
+ isFetchingFilterOptions?: boolean;
863
877
  };
864
- interface ITableDesktopProps {
878
+ type TableDesktopProps = {
865
879
  data: any[];
866
880
  headCells: HeadCell[];
867
881
  RenderItem: ComponentType<any>;
@@ -876,13 +890,13 @@ interface ITableDesktopProps {
876
890
  updateSort?: (sortField: string, sortDir: Order) => void;
877
891
  showClearFilterButton?: boolean;
878
892
  handleClickOnClearFiltersButton?: () => void;
879
- deleteItem?: (id: string) => void;
893
+ deleteItem?: (id: number, contentTypeName?: string, appTypeName?: string) => void;
880
894
  keyField?: string;
881
895
  tableLayout?: 'fixed' | 'auto';
882
896
  onApplyFilters?: (updatedFilters: HeaderFilters, shouldSave: boolean) => void;
883
897
  shouldShowCheckOnFilter?: (columnId: string, filterOption: HeaderFilterObject) => boolean;
884
- }
885
- declare const TableDesktop: ({ data, headCells, RenderItem, appliedFilters, headerFilters, children, height, isLoading, rowsPerPage, enableCheckboxSelection, disableInternalSort, updateSort, showClearFilterButton, handleClickOnClearFiltersButton, deleteItem, keyField, tableLayout, onApplyFilters, shouldShowCheckOnFilter, }: ITableDesktopProps) => react_jsx_runtime.JSX.Element;
898
+ };
899
+ declare const TableDesktop: ({ data, headCells, RenderItem, appliedFilters, headerFilters, children, height, isLoading, rowsPerPage, enableCheckboxSelection, disableInternalSort, updateSort, showClearFilterButton, handleClickOnClearFiltersButton, deleteItem, keyField, tableLayout, onApplyFilters, shouldShowCheckOnFilter, }: TableDesktopProps) => react_jsx_runtime.JSX.Element;
886
900
 
887
901
  interface SmartTableHeaderFilterMenuProps {
888
902
  headCell: HeadCell;
@@ -928,6 +942,50 @@ interface TableProps {
928
942
  }
929
943
  declare const Table: ({ appliedFilters, data, doNotCalculateRows, headCells, isLoading, onRowClick, page, RenderItem, rowsPerPage: defaultRowsPerPage, serverRendered, updateSort, }: TableProps) => react_jsx_runtime.JSX.Element;
930
944
 
945
+ type TableDesktopFooterProps = {
946
+ numPages?: number;
947
+ page: number;
948
+ pageSize: number;
949
+ pageSizeOptions: number[];
950
+ handlePageChange: (event: ChangeEvent<unknown>, page: number) => void;
951
+ handlePageSizeChange: (event: SelectChangeEvent<number>) => void;
952
+ refetch: () => Promise<unknown>;
953
+ isFetching: boolean;
954
+ };
955
+ declare const TableDesktopFooter: FC<TableDesktopFooterProps>;
956
+
957
+ type TableDesktopRowCellProps = {
958
+ editableCellType?: EditableCellType;
959
+ editInitialValue: any;
960
+ rowId: number;
961
+ fieldName: string;
962
+ disabled?: boolean;
963
+ readOnlyValue: string | number | boolean;
964
+ width?: HeadCell["width"];
965
+ inputLabel: HeadCell["label"];
966
+ filterOptions?: HeadCell["filterOptions"];
967
+ refetchFilterOptions?: HeadCell["refetchFilterOptions"];
968
+ isFetchingFilterOptions?: HeadCell["isFetchingFilterOptions"];
969
+ validateInput?: HeadCell["validateInput"];
970
+ onUpdateEditableCell?: HeadCell["onUpdateEditableCell"];
971
+ onCellClick?: (event: MouseEvent<HTMLTableCellElement>, isEditMode: boolean) => void;
972
+ };
973
+ declare const TableDesktopRowCell: FC<TableDesktopRowCellProps>;
974
+
975
+ type TableDesktopSmartSelectProps = {
976
+ ref?: RefObject<any>;
977
+ initialValue: HeaderFilterObject | string;
978
+ inputLabel: string;
979
+ fieldName: string;
980
+ rowId: number;
981
+ disabled?: boolean;
982
+ filterOptions?: HeadCell["filterOptions"];
983
+ refetchFilterOptions?: HeadCell["refetchFilterOptions"];
984
+ isFetchingFilterOptions: HeadCell["isFetchingFilterOptions"];
985
+ onUpdateEditableCell?: HeadCell["onUpdateEditableCell"];
986
+ };
987
+ declare const TableDesktopSmartSelect: React.MemoExoticComponent<({ ref, initialValue, inputLabel, fieldName, rowId, disabled, filterOptions, refetchFilterOptions, isFetchingFilterOptions, onUpdateEditableCell, }: TableDesktopSmartSelectProps) => react_jsx_runtime.JSX.Element>;
988
+
931
989
  interface ITableEmptyResult {
932
990
  colSpan: number;
933
991
  showClearFilterButton?: boolean;
@@ -1032,4 +1090,4 @@ declare const SvgIconCompare: (props: SVGProps<SVGSVGElement>) => react_jsx_runt
1032
1090
 
1033
1091
  declare const SvgIconChart: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
1034
1092
 
1035
- export { _default$n as ActiveFiltersIconButton, AlertDialog, AlertDialogFullScreen, AppLabel, BackHeader, BottomBar, _default$m as BoxButton, CompanyLogo, ConfirmationDialog, ControlledCheckbox, ControlledNumberInput, ControlledNumericField, ControlledSelectWithArray, ControlledSelectWithObject, ControlledValidTextInput, DataGrid, Date, _default$e as DeleteSubstitutionDialogContent, _default$d as DeleteUserDialogContent, _default$l as ExtendedButton, FileCard, _default$k as FilledButton, _default$j as FilledButtonLg, _default$c as FilledLabel, FilterGroupSelector, FilterSimpleSelector, _default$b as FixedFooter, type HeadCell, Header, type HeaderFilterObject, type HeaderFilterOptions, type HeaderFilters, SvgIconChart as IconChart, SvgIconCompare as IconCompare, _default$i as ImageButton, VirtualizedList as List, Loading, LocationsSectionInfo, Notes, Numpad, _default$a as NumpadInput, NumpadPlus, type Order, _default$h as OutlinedButton, _default$g as OutlinedButtonLg, PaginationForTable as Pagination, PhoneInput, _default$f as Pin, ActionButton as PinnedApp, PlusMinusInput, ProductBust, ProductImage, RenderAvatar, RenderContentList, RoundButton, RowProductCard, ScrollableDialog, SearchAndFilterHeader, _default$9 as SearchAndFilterHeaderForTable, _default$8 as SearchWithFilters, _default$7 as SearchWithFiltersForTable, SectionName, SmartSelect, _default$3 as SmartTableHeader, _default$4 as SmartTableHeaderFilterMenu, SquareButton, _default$6 as SquareLabel, _default$5 as Switch, Table, TableDesktop, TableEmptyResult, _default$2 as TableHeader, TableLoading, TextDivider, _default$1 as TheToolbar, ThemedDateRangePicker, ToastMessage, TwoButtonDialog, UploadButton, _default as UserBust, icons };
1093
+ export { _default$n as ActiveFiltersIconButton, AlertDialog, AlertDialogFullScreen, AppLabel, BackHeader, BottomBar, _default$m as BoxButton, CompanyLogo, ConfirmationDialog, ControlledCheckbox, ControlledNumberInput, ControlledNumericField, ControlledSelectWithArray, ControlledSelectWithObject, ControlledValidTextInput, DataGrid, Date, _default$e as DeleteSubstitutionDialogContent, _default$d as DeleteUserDialogContent, type EditableCellType, _default$l as ExtendedButton, FileCard, _default$k as FilledButton, _default$j as FilledButtonLg, _default$c as FilledLabel, FilterGroupSelector, FilterSimpleSelector, _default$b as FixedFooter, type HeadCell, Header, type HeaderFilterObject, type HeaderFilterOptions, type HeaderFilters, SvgIconChart as IconChart, SvgIconCompare as IconCompare, _default$i as ImageButton, VirtualizedList as List, Loading, LocationsSectionInfo, Notes, Numpad, _default$a as NumpadInput, NumpadPlus, type Order, _default$h as OutlinedButton, _default$g as OutlinedButtonLg, PaginationForTable as Pagination, PhoneInput, _default$f as Pin, ActionButton as PinnedApp, PlusMinusInput, ProductBust, ProductImage, RenderAvatar, RenderContentList, RoundButton, RowProductCard, ScrollableDialog, SearchAndFilterHeader, _default$9 as SearchAndFilterHeaderForTable, SearchFieldDebounced, _default$8 as SearchWithFilters, _default$7 as SearchWithFiltersForTable, SectionName, SmartSelect, _default$3 as SmartTableHeader, _default$4 as SmartTableHeaderFilterMenu, SquareButton, _default$6 as SquareLabel, _default$5 as Switch, Table, TableDesktop, TableDesktopFooter, TableDesktopRowCell, TableDesktopSmartSelect, TableEmptyResult, _default$2 as TableHeader, TableLoading, TextDivider, _default$1 as TheToolbar, ThemedDateRangePicker, ToastMessage, TwoButtonDialog, UploadButton, _default as UserBust, icons };
@@ -1,9 +1,9 @@
1
1
  import * as React from 'react';
2
- import React__default, { MouseEvent, ReactNode, ComponentType, ChangeEvent, FC, ComponentProps, SVGProps } from 'react';
2
+ import React__default, { MouseEvent, ReactNode, ComponentType, ChangeEvent, FC, RefObject, ComponentProps, SVGProps } from 'react';
3
3
  import * as react_jsx_runtime from 'react/jsx-runtime';
4
4
  import { Control, ControllerRenderProps, ControllerFieldState, UseFormTrigger, UseFormReturn, FieldValues } from 'react-hook-form';
5
- import { UseMutateAsyncFunction, UseQueryResult } from 'react-query';
6
- import { MenuProps, Typography } from '@mui/material';
5
+ import { UseMutateAsyncFunction } from 'react-query';
6
+ import { MenuProps, SelectChangeEvent, Typography } from '@mui/material';
7
7
  import { DateRangePickerShape } from 'react-dates';
8
8
 
9
9
  type ActiveFiltersIconButtonProps = {
@@ -709,6 +709,13 @@ interface SearchAndFilterHeaderForTableProps {
709
709
  }
710
710
  declare const _default$9: React.MemoExoticComponent<(props: SearchAndFilterHeaderForTableProps) => react_jsx_runtime.JSX.Element>;
711
711
 
712
+ type SearchFieldDebouncedProps = {
713
+ onSearch: (value: string) => void;
714
+ initialValue?: string;
715
+ debounceDelay?: number;
716
+ };
717
+ declare const SearchFieldDebounced: React__default.FC<SearchFieldDebouncedProps>;
718
+
712
719
  interface ISearchWithFiltersProps {
713
720
  enterPressedInSearch?: () => void;
714
721
  filterClick?: React.MouseEventHandler<HTMLButtonElement>;
@@ -744,11 +751,11 @@ interface ISectionName {
744
751
  }
745
752
  declare const SectionName: ({ name, tooltipDescription, sectionId, handleButtonClick, buttonText, buttonType, buttonDisabled, openHistoryLog, }: ISectionName) => react_jsx_runtime.JSX.Element;
746
753
 
747
- interface Option {
754
+ type Option = {
748
755
  value?: string | number;
749
756
  label?: string;
750
757
  disabled?: boolean;
751
- }
758
+ };
752
759
  interface SmartSelectProps {
753
760
  /**
754
761
  * The current selected value of the select input. It can be a string, number, or null.
@@ -842,10 +849,10 @@ interface LSwitchProps {
842
849
  declare const _default$5: React.MemoExoticComponent<({ checked, labelOn, labelOff, handleChange, classes, disabled, }: LSwitchProps) => react_jsx_runtime.JSX.Element>;
843
850
 
844
851
  type Order = 'asc' | 'desc';
852
+ type EditableCellType = 'select' | 'checkbox' | 'text' | 'numeric';
845
853
  type HeaderFilterObject = {
846
- id: number;
847
- name: string;
848
- label?: string;
854
+ id: number | string;
855
+ [key: string]: number | string;
849
856
  };
850
857
  type HeaderFilterOptions = string[] | HeaderFilterObject[];
851
858
  type HeaderFilters = {
@@ -854,14 +861,21 @@ type HeaderFilters = {
854
861
  type HeadCell = {
855
862
  id: string;
856
863
  label?: string;
864
+ fieldName?: string;
857
865
  numeric?: boolean;
858
866
  disablePadding?: boolean;
859
867
  width?: number | string;
860
868
  enabled?: boolean;
861
- renderHeader?: ReactNode;
862
- filterOptionsQuery?: UseQueryResult<unknown[], unknown>;
869
+ disableSort?: boolean;
870
+ RenderHeader?: ReactNode;
871
+ editableCellType?: EditableCellType;
872
+ validateInput?: (value: string | null) => boolean;
873
+ onUpdateEditableCell?: (rowId: number, newValue: string | number | boolean) => void;
874
+ filterOptions?: HeaderFilterOptions;
875
+ refetchFilterOptions?: () => void;
876
+ isFetchingFilterOptions?: boolean;
863
877
  };
864
- interface ITableDesktopProps {
878
+ type TableDesktopProps = {
865
879
  data: any[];
866
880
  headCells: HeadCell[];
867
881
  RenderItem: ComponentType<any>;
@@ -876,13 +890,13 @@ interface ITableDesktopProps {
876
890
  updateSort?: (sortField: string, sortDir: Order) => void;
877
891
  showClearFilterButton?: boolean;
878
892
  handleClickOnClearFiltersButton?: () => void;
879
- deleteItem?: (id: string) => void;
893
+ deleteItem?: (id: number, contentTypeName?: string, appTypeName?: string) => void;
880
894
  keyField?: string;
881
895
  tableLayout?: 'fixed' | 'auto';
882
896
  onApplyFilters?: (updatedFilters: HeaderFilters, shouldSave: boolean) => void;
883
897
  shouldShowCheckOnFilter?: (columnId: string, filterOption: HeaderFilterObject) => boolean;
884
- }
885
- declare const TableDesktop: ({ data, headCells, RenderItem, appliedFilters, headerFilters, children, height, isLoading, rowsPerPage, enableCheckboxSelection, disableInternalSort, updateSort, showClearFilterButton, handleClickOnClearFiltersButton, deleteItem, keyField, tableLayout, onApplyFilters, shouldShowCheckOnFilter, }: ITableDesktopProps) => react_jsx_runtime.JSX.Element;
898
+ };
899
+ declare const TableDesktop: ({ data, headCells, RenderItem, appliedFilters, headerFilters, children, height, isLoading, rowsPerPage, enableCheckboxSelection, disableInternalSort, updateSort, showClearFilterButton, handleClickOnClearFiltersButton, deleteItem, keyField, tableLayout, onApplyFilters, shouldShowCheckOnFilter, }: TableDesktopProps) => react_jsx_runtime.JSX.Element;
886
900
 
887
901
  interface SmartTableHeaderFilterMenuProps {
888
902
  headCell: HeadCell;
@@ -928,6 +942,50 @@ interface TableProps {
928
942
  }
929
943
  declare const Table: ({ appliedFilters, data, doNotCalculateRows, headCells, isLoading, onRowClick, page, RenderItem, rowsPerPage: defaultRowsPerPage, serverRendered, updateSort, }: TableProps) => react_jsx_runtime.JSX.Element;
930
944
 
945
+ type TableDesktopFooterProps = {
946
+ numPages?: number;
947
+ page: number;
948
+ pageSize: number;
949
+ pageSizeOptions: number[];
950
+ handlePageChange: (event: ChangeEvent<unknown>, page: number) => void;
951
+ handlePageSizeChange: (event: SelectChangeEvent<number>) => void;
952
+ refetch: () => Promise<unknown>;
953
+ isFetching: boolean;
954
+ };
955
+ declare const TableDesktopFooter: FC<TableDesktopFooterProps>;
956
+
957
+ type TableDesktopRowCellProps = {
958
+ editableCellType?: EditableCellType;
959
+ editInitialValue: any;
960
+ rowId: number;
961
+ fieldName: string;
962
+ disabled?: boolean;
963
+ readOnlyValue: string | number | boolean;
964
+ width?: HeadCell["width"];
965
+ inputLabel: HeadCell["label"];
966
+ filterOptions?: HeadCell["filterOptions"];
967
+ refetchFilterOptions?: HeadCell["refetchFilterOptions"];
968
+ isFetchingFilterOptions?: HeadCell["isFetchingFilterOptions"];
969
+ validateInput?: HeadCell["validateInput"];
970
+ onUpdateEditableCell?: HeadCell["onUpdateEditableCell"];
971
+ onCellClick?: (event: MouseEvent<HTMLTableCellElement>, isEditMode: boolean) => void;
972
+ };
973
+ declare const TableDesktopRowCell: FC<TableDesktopRowCellProps>;
974
+
975
+ type TableDesktopSmartSelectProps = {
976
+ ref?: RefObject<any>;
977
+ initialValue: HeaderFilterObject | string;
978
+ inputLabel: string;
979
+ fieldName: string;
980
+ rowId: number;
981
+ disabled?: boolean;
982
+ filterOptions?: HeadCell["filterOptions"];
983
+ refetchFilterOptions?: HeadCell["refetchFilterOptions"];
984
+ isFetchingFilterOptions: HeadCell["isFetchingFilterOptions"];
985
+ onUpdateEditableCell?: HeadCell["onUpdateEditableCell"];
986
+ };
987
+ declare const TableDesktopSmartSelect: React.MemoExoticComponent<({ ref, initialValue, inputLabel, fieldName, rowId, disabled, filterOptions, refetchFilterOptions, isFetchingFilterOptions, onUpdateEditableCell, }: TableDesktopSmartSelectProps) => react_jsx_runtime.JSX.Element>;
988
+
931
989
  interface ITableEmptyResult {
932
990
  colSpan: number;
933
991
  showClearFilterButton?: boolean;
@@ -1032,4 +1090,4 @@ declare const SvgIconCompare: (props: SVGProps<SVGSVGElement>) => react_jsx_runt
1032
1090
 
1033
1091
  declare const SvgIconChart: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
1034
1092
 
1035
- export { _default$n as ActiveFiltersIconButton, AlertDialog, AlertDialogFullScreen, AppLabel, BackHeader, BottomBar, _default$m as BoxButton, CompanyLogo, ConfirmationDialog, ControlledCheckbox, ControlledNumberInput, ControlledNumericField, ControlledSelectWithArray, ControlledSelectWithObject, ControlledValidTextInput, DataGrid, Date, _default$e as DeleteSubstitutionDialogContent, _default$d as DeleteUserDialogContent, _default$l as ExtendedButton, FileCard, _default$k as FilledButton, _default$j as FilledButtonLg, _default$c as FilledLabel, FilterGroupSelector, FilterSimpleSelector, _default$b as FixedFooter, type HeadCell, Header, type HeaderFilterObject, type HeaderFilterOptions, type HeaderFilters, SvgIconChart as IconChart, SvgIconCompare as IconCompare, _default$i as ImageButton, VirtualizedList as List, Loading, LocationsSectionInfo, Notes, Numpad, _default$a as NumpadInput, NumpadPlus, type Order, _default$h as OutlinedButton, _default$g as OutlinedButtonLg, PaginationForTable as Pagination, PhoneInput, _default$f as Pin, ActionButton as PinnedApp, PlusMinusInput, ProductBust, ProductImage, RenderAvatar, RenderContentList, RoundButton, RowProductCard, ScrollableDialog, SearchAndFilterHeader, _default$9 as SearchAndFilterHeaderForTable, _default$8 as SearchWithFilters, _default$7 as SearchWithFiltersForTable, SectionName, SmartSelect, _default$3 as SmartTableHeader, _default$4 as SmartTableHeaderFilterMenu, SquareButton, _default$6 as SquareLabel, _default$5 as Switch, Table, TableDesktop, TableEmptyResult, _default$2 as TableHeader, TableLoading, TextDivider, _default$1 as TheToolbar, ThemedDateRangePicker, ToastMessage, TwoButtonDialog, UploadButton, _default as UserBust, icons };
1093
+ export { _default$n as ActiveFiltersIconButton, AlertDialog, AlertDialogFullScreen, AppLabel, BackHeader, BottomBar, _default$m as BoxButton, CompanyLogo, ConfirmationDialog, ControlledCheckbox, ControlledNumberInput, ControlledNumericField, ControlledSelectWithArray, ControlledSelectWithObject, ControlledValidTextInput, DataGrid, Date, _default$e as DeleteSubstitutionDialogContent, _default$d as DeleteUserDialogContent, type EditableCellType, _default$l as ExtendedButton, FileCard, _default$k as FilledButton, _default$j as FilledButtonLg, _default$c as FilledLabel, FilterGroupSelector, FilterSimpleSelector, _default$b as FixedFooter, type HeadCell, Header, type HeaderFilterObject, type HeaderFilterOptions, type HeaderFilters, SvgIconChart as IconChart, SvgIconCompare as IconCompare, _default$i as ImageButton, VirtualizedList as List, Loading, LocationsSectionInfo, Notes, Numpad, _default$a as NumpadInput, NumpadPlus, type Order, _default$h as OutlinedButton, _default$g as OutlinedButtonLg, PaginationForTable as Pagination, PhoneInput, _default$f as Pin, ActionButton as PinnedApp, PlusMinusInput, ProductBust, ProductImage, RenderAvatar, RenderContentList, RoundButton, RowProductCard, ScrollableDialog, SearchAndFilterHeader, _default$9 as SearchAndFilterHeaderForTable, SearchFieldDebounced, _default$8 as SearchWithFilters, _default$7 as SearchWithFiltersForTable, SectionName, SmartSelect, _default$3 as SmartTableHeader, _default$4 as SmartTableHeaderFilterMenu, SquareButton, _default$6 as SquareLabel, _default$5 as Switch, Table, TableDesktop, TableDesktopFooter, TableDesktopRowCell, TableDesktopSmartSelect, TableEmptyResult, _default$2 as TableHeader, TableLoading, TextDivider, _default$1 as TheToolbar, ThemedDateRangePicker, ToastMessage, TwoButtonDialog, UploadButton, _default as UserBust, icons };