@natoora-libs/core 0.1.15 → 0.1.16-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.
- package/dist/components/index.cjs +2530 -2680
- package/dist/components/index.cjs.map +1 -1
- package/dist/components/index.d.cts +51 -30
- package/dist/components/index.d.ts +51 -30
- package/dist/components/index.js +2520 -2675
- 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 = {
|
|
@@ -871,7 +887,7 @@ type HeadCell = {
|
|
|
871
887
|
RenderHeader?: ReactNode;
|
|
872
888
|
editableCellType?: EditableCellType;
|
|
873
889
|
validateInput?: (value: string | null) => boolean;
|
|
874
|
-
onUpdateEditableCell?: (rowId: number,
|
|
890
|
+
onUpdateEditableCell?: (rowId: number, field: string, value: string | number | boolean, label: string | number | boolean) => void;
|
|
875
891
|
filterOptions?: HeaderFilterOptions;
|
|
876
892
|
refetchFilterOptions?: () => void;
|
|
877
893
|
isFetchingFilterOptions?: boolean;
|
|
@@ -880,12 +896,22 @@ type TableDesktopProps = {
|
|
|
880
896
|
data: any[];
|
|
881
897
|
headCells: HeadCell[];
|
|
882
898
|
RenderItem: ComponentType<any>;
|
|
899
|
+
components?: {
|
|
900
|
+
toolbar?: ComponentType<any>;
|
|
901
|
+
};
|
|
902
|
+
componentsProps?: {
|
|
903
|
+
toolbarProps?: any;
|
|
904
|
+
footerProps?: TableDesktopFooterProps;
|
|
905
|
+
};
|
|
883
906
|
appliedFilters?: any;
|
|
884
907
|
headerFilters?: HeaderFilters;
|
|
885
908
|
children?: ReactNode;
|
|
886
909
|
height?: number | string;
|
|
910
|
+
rowHeight?: number;
|
|
911
|
+
totalDataCount?: number;
|
|
887
912
|
isLoading?: boolean;
|
|
888
913
|
rowsPerPage?: number;
|
|
914
|
+
enableEditMode?: boolean;
|
|
889
915
|
enableCheckboxSelection?: boolean;
|
|
890
916
|
disableInternalSort?: boolean;
|
|
891
917
|
updateSort?: (sortField: string, sortDir: Order) => void;
|
|
@@ -897,7 +923,7 @@ type TableDesktopProps = {
|
|
|
897
923
|
onApplyFilters?: (updatedFilters: HeaderFilters, shouldSave: boolean) => void;
|
|
898
924
|
shouldShowCheckOnFilter?: (columnId: string, filterOption: HeaderFilterObject) => boolean;
|
|
899
925
|
};
|
|
900
|
-
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;
|
|
901
927
|
|
|
902
928
|
interface SmartTableHeaderFilterMenuProps {
|
|
903
929
|
headCell: HeadCell;
|
|
@@ -943,23 +969,32 @@ interface TableProps {
|
|
|
943
969
|
}
|
|
944
970
|
declare const Table: ({ appliedFilters, data, doNotCalculateRows, headCells, isLoading, onRowClick, page, RenderItem, rowsPerPage: defaultRowsPerPage, serverRendered, updateSort, }: TableProps) => react_jsx_runtime.JSX.Element;
|
|
945
971
|
|
|
946
|
-
type
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
|
|
954
|
-
|
|
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"];
|
|
955
988
|
};
|
|
956
|
-
declare const
|
|
989
|
+
declare const TableDesktopEditableComponent: FC<TableDesktopEditableComponentProps>;
|
|
957
990
|
|
|
958
|
-
type
|
|
991
|
+
type TableDesktopCellProps = {
|
|
959
992
|
editableCellType?: EditableCellType;
|
|
960
993
|
editInitialValue: any;
|
|
961
994
|
rowId: number;
|
|
995
|
+
field: string;
|
|
962
996
|
fieldName: string;
|
|
997
|
+
enableEditMode: boolean;
|
|
963
998
|
disabled?: boolean;
|
|
964
999
|
readOnlyValue: string | number | boolean;
|
|
965
1000
|
width?: HeadCell["width"];
|
|
@@ -971,21 +1006,7 @@ type TableDesktopRowCellProps = {
|
|
|
971
1006
|
onUpdateEditableCell?: HeadCell["onUpdateEditableCell"];
|
|
972
1007
|
onCellClick?: (event: MouseEvent<HTMLTableCellElement>, isEditMode: boolean) => void;
|
|
973
1008
|
};
|
|
974
|
-
declare const
|
|
975
|
-
|
|
976
|
-
type TableDesktopSmartSelectProps = {
|
|
977
|
-
ref?: RefObject<any>;
|
|
978
|
-
initialValue: HeaderFilterObject | string;
|
|
979
|
-
inputLabel: string;
|
|
980
|
-
fieldName: string;
|
|
981
|
-
rowId: number;
|
|
982
|
-
disabled?: boolean;
|
|
983
|
-
filterOptions?: HeadCell["filterOptions"];
|
|
984
|
-
refetchFilterOptions?: HeadCell["refetchFilterOptions"];
|
|
985
|
-
isFetchingFilterOptions: HeadCell["isFetchingFilterOptions"];
|
|
986
|
-
onUpdateEditableCell?: HeadCell["onUpdateEditableCell"];
|
|
987
|
-
};
|
|
988
|
-
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>;
|
|
989
1010
|
|
|
990
1011
|
interface ITableEmptyResult {
|
|
991
1012
|
colSpan: number;
|
|
@@ -1091,4 +1112,4 @@ declare const SvgIconCompare: (props: SVGProps<SVGSVGElement>) => react_jsx_runt
|
|
|
1091
1112
|
|
|
1092
1113
|
declare const SvgIconChart: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
1093
1114
|
|
|
1094
|
-
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 = {
|
|
@@ -871,7 +887,7 @@ type HeadCell = {
|
|
|
871
887
|
RenderHeader?: ReactNode;
|
|
872
888
|
editableCellType?: EditableCellType;
|
|
873
889
|
validateInput?: (value: string | null) => boolean;
|
|
874
|
-
onUpdateEditableCell?: (rowId: number,
|
|
890
|
+
onUpdateEditableCell?: (rowId: number, field: string, value: string | number | boolean, label: string | number | boolean) => void;
|
|
875
891
|
filterOptions?: HeaderFilterOptions;
|
|
876
892
|
refetchFilterOptions?: () => void;
|
|
877
893
|
isFetchingFilterOptions?: boolean;
|
|
@@ -880,12 +896,22 @@ type TableDesktopProps = {
|
|
|
880
896
|
data: any[];
|
|
881
897
|
headCells: HeadCell[];
|
|
882
898
|
RenderItem: ComponentType<any>;
|
|
899
|
+
components?: {
|
|
900
|
+
toolbar?: ComponentType<any>;
|
|
901
|
+
};
|
|
902
|
+
componentsProps?: {
|
|
903
|
+
toolbarProps?: any;
|
|
904
|
+
footerProps?: TableDesktopFooterProps;
|
|
905
|
+
};
|
|
883
906
|
appliedFilters?: any;
|
|
884
907
|
headerFilters?: HeaderFilters;
|
|
885
908
|
children?: ReactNode;
|
|
886
909
|
height?: number | string;
|
|
910
|
+
rowHeight?: number;
|
|
911
|
+
totalDataCount?: number;
|
|
887
912
|
isLoading?: boolean;
|
|
888
913
|
rowsPerPage?: number;
|
|
914
|
+
enableEditMode?: boolean;
|
|
889
915
|
enableCheckboxSelection?: boolean;
|
|
890
916
|
disableInternalSort?: boolean;
|
|
891
917
|
updateSort?: (sortField: string, sortDir: Order) => void;
|
|
@@ -897,7 +923,7 @@ type TableDesktopProps = {
|
|
|
897
923
|
onApplyFilters?: (updatedFilters: HeaderFilters, shouldSave: boolean) => void;
|
|
898
924
|
shouldShowCheckOnFilter?: (columnId: string, filterOption: HeaderFilterObject) => boolean;
|
|
899
925
|
};
|
|
900
|
-
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;
|
|
901
927
|
|
|
902
928
|
interface SmartTableHeaderFilterMenuProps {
|
|
903
929
|
headCell: HeadCell;
|
|
@@ -943,23 +969,32 @@ interface TableProps {
|
|
|
943
969
|
}
|
|
944
970
|
declare const Table: ({ appliedFilters, data, doNotCalculateRows, headCells, isLoading, onRowClick, page, RenderItem, rowsPerPage: defaultRowsPerPage, serverRendered, updateSort, }: TableProps) => react_jsx_runtime.JSX.Element;
|
|
945
971
|
|
|
946
|
-
type
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
|
|
954
|
-
|
|
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"];
|
|
955
988
|
};
|
|
956
|
-
declare const
|
|
989
|
+
declare const TableDesktopEditableComponent: FC<TableDesktopEditableComponentProps>;
|
|
957
990
|
|
|
958
|
-
type
|
|
991
|
+
type TableDesktopCellProps = {
|
|
959
992
|
editableCellType?: EditableCellType;
|
|
960
993
|
editInitialValue: any;
|
|
961
994
|
rowId: number;
|
|
995
|
+
field: string;
|
|
962
996
|
fieldName: string;
|
|
997
|
+
enableEditMode: boolean;
|
|
963
998
|
disabled?: boolean;
|
|
964
999
|
readOnlyValue: string | number | boolean;
|
|
965
1000
|
width?: HeadCell["width"];
|
|
@@ -971,21 +1006,7 @@ type TableDesktopRowCellProps = {
|
|
|
971
1006
|
onUpdateEditableCell?: HeadCell["onUpdateEditableCell"];
|
|
972
1007
|
onCellClick?: (event: MouseEvent<HTMLTableCellElement>, isEditMode: boolean) => void;
|
|
973
1008
|
};
|
|
974
|
-
declare const
|
|
975
|
-
|
|
976
|
-
type TableDesktopSmartSelectProps = {
|
|
977
|
-
ref?: RefObject<any>;
|
|
978
|
-
initialValue: HeaderFilterObject | string;
|
|
979
|
-
inputLabel: string;
|
|
980
|
-
fieldName: string;
|
|
981
|
-
rowId: number;
|
|
982
|
-
disabled?: boolean;
|
|
983
|
-
filterOptions?: HeadCell["filterOptions"];
|
|
984
|
-
refetchFilterOptions?: HeadCell["refetchFilterOptions"];
|
|
985
|
-
isFetchingFilterOptions: HeadCell["isFetchingFilterOptions"];
|
|
986
|
-
onUpdateEditableCell?: HeadCell["onUpdateEditableCell"];
|
|
987
|
-
};
|
|
988
|
-
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>;
|
|
989
1010
|
|
|
990
1011
|
interface ITableEmptyResult {
|
|
991
1012
|
colSpan: number;
|
|
@@ -1091,4 +1112,4 @@ declare const SvgIconCompare: (props: SVGProps<SVGSVGElement>) => react_jsx_runt
|
|
|
1091
1112
|
|
|
1092
1113
|
declare const SvgIconChart: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
1093
1114
|
|
|
1094
|
-
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 };
|