@natoora-libs/core 0.1.16-dev-doug-3 → 0.1.17
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/components/index.cjs +884 -1089
- package/dist/components/index.cjs.map +1 -1
- package/dist/components/index.d.cts +32 -51
- package/dist/components/index.d.ts +32 -51
- package/dist/components/index.js +1018 -1219
- package/dist/components/index.js.map +1 -1
- package/package.json +2 -2
|
@@ -1,5 +1,5 @@
|
|
|
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
5
|
import { UseMutateAsyncFunction } from 'react-query';
|
|
@@ -795,10 +795,6 @@ interface SmartSelectProps {
|
|
|
795
795
|
* Style variant to choose.
|
|
796
796
|
*/
|
|
797
797
|
variant?: 'standard' | 'outlined' | 'filled';
|
|
798
|
-
/**
|
|
799
|
-
* Size to choose.
|
|
800
|
-
*/
|
|
801
|
-
size?: 'medium' | 'small';
|
|
802
798
|
/**
|
|
803
799
|
* A boolean indicating validation error.
|
|
804
800
|
* It allows use of error styling when validation is required.
|
|
@@ -852,18 +848,6 @@ interface LSwitchProps {
|
|
|
852
848
|
}
|
|
853
849
|
declare const _default$5: React.MemoExoticComponent<({ checked, labelOn, labelOff, handleChange, classes, disabled, }: LSwitchProps) => react_jsx_runtime.JSX.Element>;
|
|
854
850
|
|
|
855
|
-
type TableDesktopFooterProps = {
|
|
856
|
-
numPages: number;
|
|
857
|
-
page: number;
|
|
858
|
-
pageSize: number;
|
|
859
|
-
pageSizeOptions: number[];
|
|
860
|
-
onPageChange: (event: ChangeEvent<unknown>, page: number) => void;
|
|
861
|
-
onPageSizeChange: (event: SelectChangeEvent<number>) => void;
|
|
862
|
-
refetch: () => Promise<unknown>;
|
|
863
|
-
isFetching: boolean;
|
|
864
|
-
};
|
|
865
|
-
declare const TableDesktopFooter: FC<TableDesktopFooterProps>;
|
|
866
|
-
|
|
867
851
|
type Order = 'asc' | 'desc';
|
|
868
852
|
type EditableCellType = 'select' | 'checkbox' | 'text' | 'numeric';
|
|
869
853
|
type HeaderFilterObject = {
|
|
@@ -887,7 +871,7 @@ type HeadCell = {
|
|
|
887
871
|
RenderHeader?: ReactNode;
|
|
888
872
|
editableCellType?: EditableCellType;
|
|
889
873
|
validateInput?: (value: string | null) => boolean;
|
|
890
|
-
onUpdateEditableCell?: (rowId: number,
|
|
874
|
+
onUpdateEditableCell?: (rowId: number, newValue: string | number | boolean) => void;
|
|
891
875
|
filterOptions?: HeaderFilterOptions;
|
|
892
876
|
refetchFilterOptions?: () => void;
|
|
893
877
|
isFetchingFilterOptions?: boolean;
|
|
@@ -896,34 +880,25 @@ type TableDesktopProps = {
|
|
|
896
880
|
data: any[];
|
|
897
881
|
headCells: HeadCell[];
|
|
898
882
|
RenderItem: ComponentType<any>;
|
|
899
|
-
components?: {
|
|
900
|
-
toolbar?: ComponentType<any>;
|
|
901
|
-
};
|
|
902
|
-
componentsProps?: {
|
|
903
|
-
toolbarProps?: any;
|
|
904
|
-
footerProps?: TableDesktopFooterProps;
|
|
905
|
-
};
|
|
906
883
|
appliedFilters?: any;
|
|
907
884
|
headerFilters?: HeaderFilters;
|
|
908
885
|
children?: ReactNode;
|
|
909
886
|
height?: number | string;
|
|
910
|
-
rowHeight?: number;
|
|
911
|
-
totalDataCount?: number;
|
|
912
887
|
isLoading?: boolean;
|
|
913
888
|
rowsPerPage?: number;
|
|
914
|
-
enableEditMode?: boolean;
|
|
915
889
|
enableCheckboxSelection?: boolean;
|
|
916
890
|
disableInternalSort?: boolean;
|
|
917
891
|
updateSort?: (sortField: string, sortDir: Order) => void;
|
|
918
892
|
showClearFilterButton?: boolean;
|
|
919
893
|
handleClickOnClearFiltersButton?: () => void;
|
|
894
|
+
handleClickOnNoColumnsMessageAction?: () => void;
|
|
920
895
|
deleteItem?: (id: string) => void;
|
|
921
896
|
keyField?: string;
|
|
922
897
|
tableLayout?: 'fixed' | 'auto';
|
|
923
898
|
onApplyFilters?: (updatedFilters: HeaderFilters, shouldSave: boolean) => void;
|
|
924
899
|
shouldShowCheckOnFilter?: (columnId: string, filterOption: HeaderFilterObject) => boolean;
|
|
925
900
|
};
|
|
926
|
-
declare const TableDesktop: ({ data, headCells, RenderItem, appliedFilters, headerFilters, children, height,
|
|
901
|
+
declare const TableDesktop: ({ data, headCells, RenderItem, appliedFilters, headerFilters, children, height, isLoading, rowsPerPage, enableCheckboxSelection, disableInternalSort, updateSort, showClearFilterButton, handleClickOnClearFiltersButton, handleClickOnNoColumnsMessageAction, deleteItem, keyField, tableLayout, onApplyFilters, shouldShowCheckOnFilter, }: TableDesktopProps) => react_jsx_runtime.JSX.Element;
|
|
927
902
|
|
|
928
903
|
interface SmartTableHeaderFilterMenuProps {
|
|
929
904
|
headCell: HeadCell;
|
|
@@ -969,32 +944,23 @@ interface TableProps {
|
|
|
969
944
|
}
|
|
970
945
|
declare const Table: ({ appliedFilters, data, doNotCalculateRows, headCells, isLoading, onRowClick, page, RenderItem, rowsPerPage: defaultRowsPerPage, serverRendered, updateSort, }: TableProps) => react_jsx_runtime.JSX.Element;
|
|
971
946
|
|
|
972
|
-
type
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
inputLabel: string;
|
|
982
|
-
editableCellType: EditableCellType;
|
|
983
|
-
filterOptions?: HeadCell["filterOptions"];
|
|
984
|
-
refetchFilterOptions?: HeadCell["refetchFilterOptions"];
|
|
985
|
-
isFetchingFilterOptions?: HeadCell["isFetchingFilterOptions"];
|
|
986
|
-
validateInput?: HeadCell["validateInput"];
|
|
987
|
-
onUpdateEditableCell?: HeadCell["onUpdateEditableCell"];
|
|
947
|
+
type TableDesktopFooterProps = {
|
|
948
|
+
numPages?: number;
|
|
949
|
+
page: number;
|
|
950
|
+
pageSize: number;
|
|
951
|
+
pageSizeOptions: number[];
|
|
952
|
+
handlePageChange: (event: ChangeEvent<unknown>, page: number) => void;
|
|
953
|
+
handlePageSizeChange: (event: SelectChangeEvent<number>) => void;
|
|
954
|
+
refetch: () => Promise<unknown>;
|
|
955
|
+
isFetching: boolean;
|
|
988
956
|
};
|
|
989
|
-
declare const
|
|
957
|
+
declare const TableDesktopFooter: FC<TableDesktopFooterProps>;
|
|
990
958
|
|
|
991
|
-
type
|
|
959
|
+
type TableDesktopRowCellProps = {
|
|
992
960
|
editableCellType?: EditableCellType;
|
|
993
961
|
editInitialValue: any;
|
|
994
962
|
rowId: number;
|
|
995
|
-
field: string;
|
|
996
963
|
fieldName: string;
|
|
997
|
-
enableEditMode: boolean;
|
|
998
964
|
disabled?: boolean;
|
|
999
965
|
readOnlyValue: string | number | boolean;
|
|
1000
966
|
width?: HeadCell["width"];
|
|
@@ -1006,12 +972,27 @@ type TableDesktopCellProps = {
|
|
|
1006
972
|
onUpdateEditableCell?: HeadCell["onUpdateEditableCell"];
|
|
1007
973
|
onCellClick?: (event: MouseEvent<HTMLTableCellElement>, isEditMode: boolean) => void;
|
|
1008
974
|
};
|
|
1009
|
-
declare const
|
|
975
|
+
declare const TableDesktopRowCell: FC<TableDesktopRowCellProps>;
|
|
976
|
+
|
|
977
|
+
type TableDesktopSmartSelectProps = {
|
|
978
|
+
ref?: RefObject<any>;
|
|
979
|
+
initialValue: HeaderFilterObject | string;
|
|
980
|
+
inputLabel: string;
|
|
981
|
+
fieldName: string;
|
|
982
|
+
rowId: number;
|
|
983
|
+
disabled?: boolean;
|
|
984
|
+
filterOptions?: HeadCell["filterOptions"];
|
|
985
|
+
refetchFilterOptions?: HeadCell["refetchFilterOptions"];
|
|
986
|
+
isFetchingFilterOptions: HeadCell["isFetchingFilterOptions"];
|
|
987
|
+
onUpdateEditableCell?: HeadCell["onUpdateEditableCell"];
|
|
988
|
+
};
|
|
989
|
+
declare const TableDesktopSmartSelect: React.MemoExoticComponent<({ ref, initialValue, inputLabel, fieldName, rowId, disabled, filterOptions, refetchFilterOptions, isFetchingFilterOptions, onUpdateEditableCell, }: TableDesktopSmartSelectProps) => react_jsx_runtime.JSX.Element>;
|
|
1010
990
|
|
|
1011
991
|
interface ITableEmptyResult {
|
|
1012
992
|
colSpan: number;
|
|
1013
993
|
showClearFilterButton?: boolean;
|
|
1014
994
|
handleClickOnClearFiltersButton?: () => void;
|
|
995
|
+
isLoading?: boolean;
|
|
1015
996
|
}
|
|
1016
997
|
declare const TableEmptyResult: ({ colSpan, showClearFilterButton, handleClickOnClearFiltersButton, }: ITableEmptyResult) => react_jsx_runtime.JSX.Element;
|
|
1017
998
|
|
|
@@ -1112,4 +1093,4 @@ declare const SvgIconCompare: (props: SVGProps<SVGSVGElement>) => react_jsx_runt
|
|
|
1112
1093
|
|
|
1113
1094
|
declare const SvgIconChart: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
1114
1095
|
|
|
1115
|
-
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,
|
|
1096
|
+
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,5 +1,5 @@
|
|
|
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
5
|
import { UseMutateAsyncFunction } from 'react-query';
|
|
@@ -795,10 +795,6 @@ interface SmartSelectProps {
|
|
|
795
795
|
* Style variant to choose.
|
|
796
796
|
*/
|
|
797
797
|
variant?: 'standard' | 'outlined' | 'filled';
|
|
798
|
-
/**
|
|
799
|
-
* Size to choose.
|
|
800
|
-
*/
|
|
801
|
-
size?: 'medium' | 'small';
|
|
802
798
|
/**
|
|
803
799
|
* A boolean indicating validation error.
|
|
804
800
|
* It allows use of error styling when validation is required.
|
|
@@ -852,18 +848,6 @@ interface LSwitchProps {
|
|
|
852
848
|
}
|
|
853
849
|
declare const _default$5: React.MemoExoticComponent<({ checked, labelOn, labelOff, handleChange, classes, disabled, }: LSwitchProps) => react_jsx_runtime.JSX.Element>;
|
|
854
850
|
|
|
855
|
-
type TableDesktopFooterProps = {
|
|
856
|
-
numPages: number;
|
|
857
|
-
page: number;
|
|
858
|
-
pageSize: number;
|
|
859
|
-
pageSizeOptions: number[];
|
|
860
|
-
onPageChange: (event: ChangeEvent<unknown>, page: number) => void;
|
|
861
|
-
onPageSizeChange: (event: SelectChangeEvent<number>) => void;
|
|
862
|
-
refetch: () => Promise<unknown>;
|
|
863
|
-
isFetching: boolean;
|
|
864
|
-
};
|
|
865
|
-
declare const TableDesktopFooter: FC<TableDesktopFooterProps>;
|
|
866
|
-
|
|
867
851
|
type Order = 'asc' | 'desc';
|
|
868
852
|
type EditableCellType = 'select' | 'checkbox' | 'text' | 'numeric';
|
|
869
853
|
type HeaderFilterObject = {
|
|
@@ -887,7 +871,7 @@ type HeadCell = {
|
|
|
887
871
|
RenderHeader?: ReactNode;
|
|
888
872
|
editableCellType?: EditableCellType;
|
|
889
873
|
validateInput?: (value: string | null) => boolean;
|
|
890
|
-
onUpdateEditableCell?: (rowId: number,
|
|
874
|
+
onUpdateEditableCell?: (rowId: number, newValue: string | number | boolean) => void;
|
|
891
875
|
filterOptions?: HeaderFilterOptions;
|
|
892
876
|
refetchFilterOptions?: () => void;
|
|
893
877
|
isFetchingFilterOptions?: boolean;
|
|
@@ -896,34 +880,25 @@ type TableDesktopProps = {
|
|
|
896
880
|
data: any[];
|
|
897
881
|
headCells: HeadCell[];
|
|
898
882
|
RenderItem: ComponentType<any>;
|
|
899
|
-
components?: {
|
|
900
|
-
toolbar?: ComponentType<any>;
|
|
901
|
-
};
|
|
902
|
-
componentsProps?: {
|
|
903
|
-
toolbarProps?: any;
|
|
904
|
-
footerProps?: TableDesktopFooterProps;
|
|
905
|
-
};
|
|
906
883
|
appliedFilters?: any;
|
|
907
884
|
headerFilters?: HeaderFilters;
|
|
908
885
|
children?: ReactNode;
|
|
909
886
|
height?: number | string;
|
|
910
|
-
rowHeight?: number;
|
|
911
|
-
totalDataCount?: number;
|
|
912
887
|
isLoading?: boolean;
|
|
913
888
|
rowsPerPage?: number;
|
|
914
|
-
enableEditMode?: boolean;
|
|
915
889
|
enableCheckboxSelection?: boolean;
|
|
916
890
|
disableInternalSort?: boolean;
|
|
917
891
|
updateSort?: (sortField: string, sortDir: Order) => void;
|
|
918
892
|
showClearFilterButton?: boolean;
|
|
919
893
|
handleClickOnClearFiltersButton?: () => void;
|
|
894
|
+
handleClickOnNoColumnsMessageAction?: () => void;
|
|
920
895
|
deleteItem?: (id: string) => void;
|
|
921
896
|
keyField?: string;
|
|
922
897
|
tableLayout?: 'fixed' | 'auto';
|
|
923
898
|
onApplyFilters?: (updatedFilters: HeaderFilters, shouldSave: boolean) => void;
|
|
924
899
|
shouldShowCheckOnFilter?: (columnId: string, filterOption: HeaderFilterObject) => boolean;
|
|
925
900
|
};
|
|
926
|
-
declare const TableDesktop: ({ data, headCells, RenderItem, appliedFilters, headerFilters, children, height,
|
|
901
|
+
declare const TableDesktop: ({ data, headCells, RenderItem, appliedFilters, headerFilters, children, height, isLoading, rowsPerPage, enableCheckboxSelection, disableInternalSort, updateSort, showClearFilterButton, handleClickOnClearFiltersButton, handleClickOnNoColumnsMessageAction, deleteItem, keyField, tableLayout, onApplyFilters, shouldShowCheckOnFilter, }: TableDesktopProps) => react_jsx_runtime.JSX.Element;
|
|
927
902
|
|
|
928
903
|
interface SmartTableHeaderFilterMenuProps {
|
|
929
904
|
headCell: HeadCell;
|
|
@@ -969,32 +944,23 @@ interface TableProps {
|
|
|
969
944
|
}
|
|
970
945
|
declare const Table: ({ appliedFilters, data, doNotCalculateRows, headCells, isLoading, onRowClick, page, RenderItem, rowsPerPage: defaultRowsPerPage, serverRendered, updateSort, }: TableProps) => react_jsx_runtime.JSX.Element;
|
|
971
946
|
|
|
972
|
-
type
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
inputLabel: string;
|
|
982
|
-
editableCellType: EditableCellType;
|
|
983
|
-
filterOptions?: HeadCell["filterOptions"];
|
|
984
|
-
refetchFilterOptions?: HeadCell["refetchFilterOptions"];
|
|
985
|
-
isFetchingFilterOptions?: HeadCell["isFetchingFilterOptions"];
|
|
986
|
-
validateInput?: HeadCell["validateInput"];
|
|
987
|
-
onUpdateEditableCell?: HeadCell["onUpdateEditableCell"];
|
|
947
|
+
type TableDesktopFooterProps = {
|
|
948
|
+
numPages?: number;
|
|
949
|
+
page: number;
|
|
950
|
+
pageSize: number;
|
|
951
|
+
pageSizeOptions: number[];
|
|
952
|
+
handlePageChange: (event: ChangeEvent<unknown>, page: number) => void;
|
|
953
|
+
handlePageSizeChange: (event: SelectChangeEvent<number>) => void;
|
|
954
|
+
refetch: () => Promise<unknown>;
|
|
955
|
+
isFetching: boolean;
|
|
988
956
|
};
|
|
989
|
-
declare const
|
|
957
|
+
declare const TableDesktopFooter: FC<TableDesktopFooterProps>;
|
|
990
958
|
|
|
991
|
-
type
|
|
959
|
+
type TableDesktopRowCellProps = {
|
|
992
960
|
editableCellType?: EditableCellType;
|
|
993
961
|
editInitialValue: any;
|
|
994
962
|
rowId: number;
|
|
995
|
-
field: string;
|
|
996
963
|
fieldName: string;
|
|
997
|
-
enableEditMode: boolean;
|
|
998
964
|
disabled?: boolean;
|
|
999
965
|
readOnlyValue: string | number | boolean;
|
|
1000
966
|
width?: HeadCell["width"];
|
|
@@ -1006,12 +972,27 @@ type TableDesktopCellProps = {
|
|
|
1006
972
|
onUpdateEditableCell?: HeadCell["onUpdateEditableCell"];
|
|
1007
973
|
onCellClick?: (event: MouseEvent<HTMLTableCellElement>, isEditMode: boolean) => void;
|
|
1008
974
|
};
|
|
1009
|
-
declare const
|
|
975
|
+
declare const TableDesktopRowCell: FC<TableDesktopRowCellProps>;
|
|
976
|
+
|
|
977
|
+
type TableDesktopSmartSelectProps = {
|
|
978
|
+
ref?: RefObject<any>;
|
|
979
|
+
initialValue: HeaderFilterObject | string;
|
|
980
|
+
inputLabel: string;
|
|
981
|
+
fieldName: string;
|
|
982
|
+
rowId: number;
|
|
983
|
+
disabled?: boolean;
|
|
984
|
+
filterOptions?: HeadCell["filterOptions"];
|
|
985
|
+
refetchFilterOptions?: HeadCell["refetchFilterOptions"];
|
|
986
|
+
isFetchingFilterOptions: HeadCell["isFetchingFilterOptions"];
|
|
987
|
+
onUpdateEditableCell?: HeadCell["onUpdateEditableCell"];
|
|
988
|
+
};
|
|
989
|
+
declare const TableDesktopSmartSelect: React.MemoExoticComponent<({ ref, initialValue, inputLabel, fieldName, rowId, disabled, filterOptions, refetchFilterOptions, isFetchingFilterOptions, onUpdateEditableCell, }: TableDesktopSmartSelectProps) => react_jsx_runtime.JSX.Element>;
|
|
1010
990
|
|
|
1011
991
|
interface ITableEmptyResult {
|
|
1012
992
|
colSpan: number;
|
|
1013
993
|
showClearFilterButton?: boolean;
|
|
1014
994
|
handleClickOnClearFiltersButton?: () => void;
|
|
995
|
+
isLoading?: boolean;
|
|
1015
996
|
}
|
|
1016
997
|
declare const TableEmptyResult: ({ colSpan, showClearFilterButton, handleClickOnClearFiltersButton, }: ITableEmptyResult) => react_jsx_runtime.JSX.Element;
|
|
1017
998
|
|
|
@@ -1112,4 +1093,4 @@ declare const SvgIconCompare: (props: SVGProps<SVGSVGElement>) => react_jsx_runt
|
|
|
1112
1093
|
|
|
1113
1094
|
declare const SvgIconChart: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
1114
1095
|
|
|
1115
|
-
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,
|
|
1096
|
+
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 };
|