@natoora-libs/core 0.1.14 → 0.1.16-dev-doug-1
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 +1045 -771
- package/dist/components/index.cjs.map +1 -1
- package/dist/components/index.d.cts +52 -30
- package/dist/components/index.d.ts +52 -30
- package/dist/components/index.js +1222 -950
- package/dist/components/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
|
-
import React__default, { MouseEvent, ReactNode, ComponentType, ChangeEvent, FC,
|
|
2
|
+
import React__default, { MouseEvent, ReactNode, ComponentType, ChangeEvent, FC, 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,6 +795,10 @@ 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';
|
|
798
802
|
/**
|
|
799
803
|
* A boolean indicating validation error.
|
|
800
804
|
* It allows use of error styling when validation is required.
|
|
@@ -848,6 +852,18 @@ interface LSwitchProps {
|
|
|
848
852
|
}
|
|
849
853
|
declare const _default$5: React.MemoExoticComponent<({ checked, labelOn, labelOff, handleChange, classes, disabled, }: LSwitchProps) => react_jsx_runtime.JSX.Element>;
|
|
850
854
|
|
|
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
|
+
|
|
851
867
|
type Order = 'asc' | 'desc';
|
|
852
868
|
type EditableCellType = 'select' | 'checkbox' | 'text' | 'numeric';
|
|
853
869
|
type HeaderFilterObject = {
|
|
@@ -861,6 +877,7 @@ type HeaderFilters = {
|
|
|
861
877
|
type HeadCell = {
|
|
862
878
|
id: string;
|
|
863
879
|
label?: string;
|
|
880
|
+
labelTooltip?: string;
|
|
864
881
|
fieldName?: string;
|
|
865
882
|
numeric?: boolean;
|
|
866
883
|
disablePadding?: boolean;
|
|
@@ -870,7 +887,7 @@ type HeadCell = {
|
|
|
870
887
|
RenderHeader?: ReactNode;
|
|
871
888
|
editableCellType?: EditableCellType;
|
|
872
889
|
validateInput?: (value: string | null) => boolean;
|
|
873
|
-
onUpdateEditableCell?: (rowId: number,
|
|
890
|
+
onUpdateEditableCell?: (rowId: number, field: string, value: string | number | boolean, label: string | number | boolean) => void;
|
|
874
891
|
filterOptions?: HeaderFilterOptions;
|
|
875
892
|
refetchFilterOptions?: () => void;
|
|
876
893
|
isFetchingFilterOptions?: boolean;
|
|
@@ -879,12 +896,22 @@ type TableDesktopProps = {
|
|
|
879
896
|
data: any[];
|
|
880
897
|
headCells: HeadCell[];
|
|
881
898
|
RenderItem: ComponentType<any>;
|
|
899
|
+
components?: {
|
|
900
|
+
toolbar?: ComponentType<any>;
|
|
901
|
+
};
|
|
902
|
+
componentsProps?: {
|
|
903
|
+
toolbarProps?: any;
|
|
904
|
+
footerProps?: TableDesktopFooterProps;
|
|
905
|
+
};
|
|
882
906
|
appliedFilters?: any;
|
|
883
907
|
headerFilters?: HeaderFilters;
|
|
884
908
|
children?: ReactNode;
|
|
885
909
|
height?: number | string;
|
|
910
|
+
rowHeight?: number;
|
|
911
|
+
totalDataCount?: number;
|
|
886
912
|
isLoading?: boolean;
|
|
887
913
|
rowsPerPage?: number;
|
|
914
|
+
enableEditMode?: boolean;
|
|
888
915
|
enableCheckboxSelection?: boolean;
|
|
889
916
|
disableInternalSort?: boolean;
|
|
890
917
|
updateSort?: (sortField: string, sortDir: Order) => void;
|
|
@@ -896,7 +923,7 @@ type TableDesktopProps = {
|
|
|
896
923
|
onApplyFilters?: (updatedFilters: HeaderFilters, shouldSave: boolean) => void;
|
|
897
924
|
shouldShowCheckOnFilter?: (columnId: string, filterOption: HeaderFilterObject) => boolean;
|
|
898
925
|
};
|
|
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;
|
|
926
|
+
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;
|
|
900
927
|
|
|
901
928
|
interface SmartTableHeaderFilterMenuProps {
|
|
902
929
|
headCell: HeadCell;
|
|
@@ -942,23 +969,32 @@ interface TableProps {
|
|
|
942
969
|
}
|
|
943
970
|
declare const Table: ({ appliedFilters, data, doNotCalculateRows, headCells, isLoading, onRowClick, page, RenderItem, rowsPerPage: defaultRowsPerPage, serverRendered, updateSort, }: TableProps) => react_jsx_runtime.JSX.Element;
|
|
944
971
|
|
|
945
|
-
type
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
|
|
972
|
+
type TableDesktopEditableComponentProps = {
|
|
973
|
+
editInitialValue?: any;
|
|
974
|
+
rowId?: number;
|
|
975
|
+
field: string;
|
|
976
|
+
fieldName: string;
|
|
977
|
+
disabled?: boolean;
|
|
978
|
+
showCheckboxLabel?: boolean;
|
|
979
|
+
variant?: "standard" | "outlined" | "filled";
|
|
980
|
+
size?: "medium" | "small";
|
|
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"];
|
|
954
988
|
};
|
|
955
|
-
declare const
|
|
989
|
+
declare const TableDesktopEditableComponent: FC<TableDesktopEditableComponentProps>;
|
|
956
990
|
|
|
957
|
-
type
|
|
991
|
+
type TableDesktopCellProps = {
|
|
958
992
|
editableCellType?: EditableCellType;
|
|
959
993
|
editInitialValue: any;
|
|
960
994
|
rowId: number;
|
|
995
|
+
field: string;
|
|
961
996
|
fieldName: string;
|
|
997
|
+
enableEditMode: boolean;
|
|
962
998
|
disabled?: boolean;
|
|
963
999
|
readOnlyValue: string | number | boolean;
|
|
964
1000
|
width?: HeadCell["width"];
|
|
@@ -970,21 +1006,7 @@ type TableDesktopRowCellProps = {
|
|
|
970
1006
|
onUpdateEditableCell?: HeadCell["onUpdateEditableCell"];
|
|
971
1007
|
onCellClick?: (event: MouseEvent<HTMLTableCellElement>, isEditMode: boolean) => void;
|
|
972
1008
|
};
|
|
973
|
-
declare const
|
|
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>;
|
|
1009
|
+
declare const TableDesktopCell: FC<TableDesktopCellProps>;
|
|
988
1010
|
|
|
989
1011
|
interface ITableEmptyResult {
|
|
990
1012
|
colSpan: number;
|
|
@@ -1090,4 +1112,4 @@ declare const SvgIconCompare: (props: SVGProps<SVGSVGElement>) => react_jsx_runt
|
|
|
1090
1112
|
|
|
1091
1113
|
declare const SvgIconChart: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
1092
1114
|
|
|
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,
|
|
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, TableDesktopCell, TableDesktopEditableComponent, TableDesktopFooter, 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,
|
|
2
|
+
import React__default, { MouseEvent, ReactNode, ComponentType, ChangeEvent, FC, 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,6 +795,10 @@ 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';
|
|
798
802
|
/**
|
|
799
803
|
* A boolean indicating validation error.
|
|
800
804
|
* It allows use of error styling when validation is required.
|
|
@@ -848,6 +852,18 @@ interface LSwitchProps {
|
|
|
848
852
|
}
|
|
849
853
|
declare const _default$5: React.MemoExoticComponent<({ checked, labelOn, labelOff, handleChange, classes, disabled, }: LSwitchProps) => react_jsx_runtime.JSX.Element>;
|
|
850
854
|
|
|
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
|
+
|
|
851
867
|
type Order = 'asc' | 'desc';
|
|
852
868
|
type EditableCellType = 'select' | 'checkbox' | 'text' | 'numeric';
|
|
853
869
|
type HeaderFilterObject = {
|
|
@@ -861,6 +877,7 @@ type HeaderFilters = {
|
|
|
861
877
|
type HeadCell = {
|
|
862
878
|
id: string;
|
|
863
879
|
label?: string;
|
|
880
|
+
labelTooltip?: string;
|
|
864
881
|
fieldName?: string;
|
|
865
882
|
numeric?: boolean;
|
|
866
883
|
disablePadding?: boolean;
|
|
@@ -870,7 +887,7 @@ type HeadCell = {
|
|
|
870
887
|
RenderHeader?: ReactNode;
|
|
871
888
|
editableCellType?: EditableCellType;
|
|
872
889
|
validateInput?: (value: string | null) => boolean;
|
|
873
|
-
onUpdateEditableCell?: (rowId: number,
|
|
890
|
+
onUpdateEditableCell?: (rowId: number, field: string, value: string | number | boolean, label: string | number | boolean) => void;
|
|
874
891
|
filterOptions?: HeaderFilterOptions;
|
|
875
892
|
refetchFilterOptions?: () => void;
|
|
876
893
|
isFetchingFilterOptions?: boolean;
|
|
@@ -879,12 +896,22 @@ type TableDesktopProps = {
|
|
|
879
896
|
data: any[];
|
|
880
897
|
headCells: HeadCell[];
|
|
881
898
|
RenderItem: ComponentType<any>;
|
|
899
|
+
components?: {
|
|
900
|
+
toolbar?: ComponentType<any>;
|
|
901
|
+
};
|
|
902
|
+
componentsProps?: {
|
|
903
|
+
toolbarProps?: any;
|
|
904
|
+
footerProps?: TableDesktopFooterProps;
|
|
905
|
+
};
|
|
882
906
|
appliedFilters?: any;
|
|
883
907
|
headerFilters?: HeaderFilters;
|
|
884
908
|
children?: ReactNode;
|
|
885
909
|
height?: number | string;
|
|
910
|
+
rowHeight?: number;
|
|
911
|
+
totalDataCount?: number;
|
|
886
912
|
isLoading?: boolean;
|
|
887
913
|
rowsPerPage?: number;
|
|
914
|
+
enableEditMode?: boolean;
|
|
888
915
|
enableCheckboxSelection?: boolean;
|
|
889
916
|
disableInternalSort?: boolean;
|
|
890
917
|
updateSort?: (sortField: string, sortDir: Order) => void;
|
|
@@ -896,7 +923,7 @@ type TableDesktopProps = {
|
|
|
896
923
|
onApplyFilters?: (updatedFilters: HeaderFilters, shouldSave: boolean) => void;
|
|
897
924
|
shouldShowCheckOnFilter?: (columnId: string, filterOption: HeaderFilterObject) => boolean;
|
|
898
925
|
};
|
|
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;
|
|
926
|
+
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;
|
|
900
927
|
|
|
901
928
|
interface SmartTableHeaderFilterMenuProps {
|
|
902
929
|
headCell: HeadCell;
|
|
@@ -942,23 +969,32 @@ interface TableProps {
|
|
|
942
969
|
}
|
|
943
970
|
declare const Table: ({ appliedFilters, data, doNotCalculateRows, headCells, isLoading, onRowClick, page, RenderItem, rowsPerPage: defaultRowsPerPage, serverRendered, updateSort, }: TableProps) => react_jsx_runtime.JSX.Element;
|
|
944
971
|
|
|
945
|
-
type
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
|
|
972
|
+
type TableDesktopEditableComponentProps = {
|
|
973
|
+
editInitialValue?: any;
|
|
974
|
+
rowId?: number;
|
|
975
|
+
field: string;
|
|
976
|
+
fieldName: string;
|
|
977
|
+
disabled?: boolean;
|
|
978
|
+
showCheckboxLabel?: boolean;
|
|
979
|
+
variant?: "standard" | "outlined" | "filled";
|
|
980
|
+
size?: "medium" | "small";
|
|
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"];
|
|
954
988
|
};
|
|
955
|
-
declare const
|
|
989
|
+
declare const TableDesktopEditableComponent: FC<TableDesktopEditableComponentProps>;
|
|
956
990
|
|
|
957
|
-
type
|
|
991
|
+
type TableDesktopCellProps = {
|
|
958
992
|
editableCellType?: EditableCellType;
|
|
959
993
|
editInitialValue: any;
|
|
960
994
|
rowId: number;
|
|
995
|
+
field: string;
|
|
961
996
|
fieldName: string;
|
|
997
|
+
enableEditMode: boolean;
|
|
962
998
|
disabled?: boolean;
|
|
963
999
|
readOnlyValue: string | number | boolean;
|
|
964
1000
|
width?: HeadCell["width"];
|
|
@@ -970,21 +1006,7 @@ type TableDesktopRowCellProps = {
|
|
|
970
1006
|
onUpdateEditableCell?: HeadCell["onUpdateEditableCell"];
|
|
971
1007
|
onCellClick?: (event: MouseEvent<HTMLTableCellElement>, isEditMode: boolean) => void;
|
|
972
1008
|
};
|
|
973
|
-
declare const
|
|
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>;
|
|
1009
|
+
declare const TableDesktopCell: FC<TableDesktopCellProps>;
|
|
988
1010
|
|
|
989
1011
|
interface ITableEmptyResult {
|
|
990
1012
|
colSpan: number;
|
|
@@ -1090,4 +1112,4 @@ declare const SvgIconCompare: (props: SVGProps<SVGSVGElement>) => react_jsx_runt
|
|
|
1090
1112
|
|
|
1091
1113
|
declare const SvgIconChart: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
1092
1114
|
|
|
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,
|
|
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, TableDesktopCell, TableDesktopEditableComponent, TableDesktopFooter, TableEmptyResult, _default$2 as TableHeader, TableLoading, TextDivider, _default$1 as TheToolbar, ThemedDateRangePicker, ToastMessage, TwoButtonDialog, UploadButton, _default as UserBust, icons };
|