@natoora-libs/core 0.1.0 → 0.1.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 +1269 -1470
- package/dist/components/index.cjs.map +1 -1
- package/dist/components/index.d.cts +145 -86
- package/dist/components/index.d.ts +145 -86
- package/dist/components/index.js +1057 -1275
- package/dist/components/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
|
-
import
|
|
2
|
+
import { ReactNode, ComponentType, FC, ComponentProps, SVGProps } from 'react';
|
|
3
3
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
4
|
+
import { RefetchOptions, RefetchQueryFilters, QueryObserverResult, UseMutateAsyncFunction } from 'react-query';
|
|
4
5
|
import { Control, ControllerRenderProps, ControllerFieldState, UseFormTrigger, UseFormReturn, FieldValues } from 'react-hook-form';
|
|
5
|
-
import { UseMutateAsyncFunction, UseQueryResult } from 'react-query';
|
|
6
6
|
import { MenuProps, Typography } from '@mui/material';
|
|
7
7
|
import { DateRangePickerShape } from 'react-dates';
|
|
8
8
|
|
|
@@ -38,6 +38,93 @@ interface IAppLabel {
|
|
|
38
38
|
}
|
|
39
39
|
declare const AppLabel: ({ appName }: IAppLabel) => react_jsx_runtime.JSX.Element;
|
|
40
40
|
|
|
41
|
+
/**
|
|
42
|
+
* Base type for autocomplete options. Requires an id and name property.
|
|
43
|
+
*/
|
|
44
|
+
type DefaultOption = {
|
|
45
|
+
id: number;
|
|
46
|
+
name: string;
|
|
47
|
+
};
|
|
48
|
+
interface AutocompleteProps<Option = DefaultOption> {
|
|
49
|
+
/**
|
|
50
|
+
* The currently selected value in the autocomplete.
|
|
51
|
+
* Can be undefined if no value is selected.
|
|
52
|
+
*/
|
|
53
|
+
value?: Option;
|
|
54
|
+
/**
|
|
55
|
+
* The initial value to display in the autocomplete when first rendered.
|
|
56
|
+
*/
|
|
57
|
+
defaultValue?: Option;
|
|
58
|
+
/**
|
|
59
|
+
* An array of options to display in the dropdown list.
|
|
60
|
+
*/
|
|
61
|
+
options?: Option[];
|
|
62
|
+
/**
|
|
63
|
+
* The minimum number of characters required in the input
|
|
64
|
+
* before triggering a search. Defaults to 3.
|
|
65
|
+
*/
|
|
66
|
+
minInputLength?: number;
|
|
67
|
+
/**
|
|
68
|
+
* A boolean indicating whether the component is currently fetching data.
|
|
69
|
+
* When true, displays a loading spinner.
|
|
70
|
+
*/
|
|
71
|
+
isFetching?: boolean;
|
|
72
|
+
/**
|
|
73
|
+
* The label text displayed above the input field.
|
|
74
|
+
*/
|
|
75
|
+
inputLabel?: string;
|
|
76
|
+
/**
|
|
77
|
+
* Helper text displayed below the input field.
|
|
78
|
+
*/
|
|
79
|
+
helperText?: string;
|
|
80
|
+
/**
|
|
81
|
+
* The data-testid attribute used for testing purposes.
|
|
82
|
+
*/
|
|
83
|
+
'data-testid'?: string;
|
|
84
|
+
/**
|
|
85
|
+
* A boolean indicating whether the autocomplete is disabled.
|
|
86
|
+
*/
|
|
87
|
+
disabled?: boolean;
|
|
88
|
+
/**
|
|
89
|
+
* A boolean indicating whether the field can receive empty (null) values.
|
|
90
|
+
* This allows the field to be cleared and grants behavior control for null values.
|
|
91
|
+
*/
|
|
92
|
+
allowEmpty?: boolean;
|
|
93
|
+
/**
|
|
94
|
+
* A function to fetch options from an API or other data source.
|
|
95
|
+
* Returns a Promise with QueryObserverResult.
|
|
96
|
+
*/
|
|
97
|
+
fetchOptions?: <TPageData>(options?: (RefetchOptions & RefetchQueryFilters<TPageData>) | undefined) => Promise<QueryObserverResult<any, unknown>>;
|
|
98
|
+
/**
|
|
99
|
+
* Callback function called when the input loses focus.
|
|
100
|
+
* Receives the current selected value as an argument.
|
|
101
|
+
*/
|
|
102
|
+
submitOnBlur?: (value: Option) => void;
|
|
103
|
+
/**
|
|
104
|
+
* Callback function called when the selected value changes.
|
|
105
|
+
* Receives the new selected value or null as an argument.
|
|
106
|
+
*/
|
|
107
|
+
onChange: (value: Option | null) => void;
|
|
108
|
+
/**
|
|
109
|
+
* The current value of the search input field.
|
|
110
|
+
*/
|
|
111
|
+
searchInputValue: string;
|
|
112
|
+
/**
|
|
113
|
+
* State setter function for updating the search input value.
|
|
114
|
+
*/
|
|
115
|
+
setSearchInputValue: React.Dispatch<React.SetStateAction<string>>;
|
|
116
|
+
/**
|
|
117
|
+
* Optional function to customize how options are displayed in the dropdown.
|
|
118
|
+
* If not provided, defaults to using the option's name property.
|
|
119
|
+
*/
|
|
120
|
+
getOptionLabel?: ((option: Option) => string) | undefined;
|
|
121
|
+
error?: boolean;
|
|
122
|
+
disableClearable?: boolean;
|
|
123
|
+
}
|
|
124
|
+
declare const _default$n: <Option extends any>(props: AutocompleteProps<Option> & {
|
|
125
|
+
ref?: React.Ref<any>;
|
|
126
|
+
}) => React.JSX.Element;
|
|
127
|
+
|
|
41
128
|
interface BackHeaderProps {
|
|
42
129
|
appName: string;
|
|
43
130
|
onGoBackClick?: () => void;
|
|
@@ -59,7 +146,7 @@ interface BoxButtonProps {
|
|
|
59
146
|
extra?: any;
|
|
60
147
|
borderColor?: any;
|
|
61
148
|
}
|
|
62
|
-
declare const _default$
|
|
149
|
+
declare const _default$m: React.MemoExoticComponent<(props: BoxButtonProps) => react_jsx_runtime.JSX.Element>;
|
|
63
150
|
|
|
64
151
|
interface IExtendedButton {
|
|
65
152
|
buttonType?: 'button' | 'submit';
|
|
@@ -72,11 +159,11 @@ interface IExtendedButton {
|
|
|
72
159
|
subcopy?: string;
|
|
73
160
|
tooltip?: string;
|
|
74
161
|
component?: React.ElementType;
|
|
75
|
-
type?: 'add' | 'apps' | 'childCare' | 'delete' | 'edit' | 'importExport' | 'notes' | 'print' | 'save' | 'upload' | 'refresh' | 'download' | 'publish';
|
|
162
|
+
type?: 'add' | 'apps' | 'childCare' | 'delete' | 'edit' | 'importExport' | 'notes' | 'print' | 'save' | 'upload' | 'refresh' | 'download' | 'publish' | 'compare';
|
|
76
163
|
variant?: 'contained' | 'outlined' | 'text';
|
|
77
164
|
copyColor?: string;
|
|
78
165
|
}
|
|
79
|
-
declare const _default$
|
|
166
|
+
declare const _default$l: React.MemoExoticComponent<({ buttonType, color, disabled, href, tooltip, component, type, className, onClick, copy, subcopy, variant, copyColor, }: IExtendedButton) => react_jsx_runtime.JSX.Element>;
|
|
80
167
|
|
|
81
168
|
interface IFilledButton {
|
|
82
169
|
autoFocus?: boolean;
|
|
@@ -90,7 +177,7 @@ interface IFilledButton {
|
|
|
90
177
|
type?: 'button' | 'submit';
|
|
91
178
|
variant?: 'contained' | 'outlined' | 'text';
|
|
92
179
|
}
|
|
93
|
-
declare const _default$
|
|
180
|
+
declare const _default$k: React.MemoExoticComponent<({ autoFocus, className, color, copy, disabled, href, isLoading, onClick, type, variant, }: IFilledButton) => react_jsx_runtime.JSX.Element>;
|
|
94
181
|
|
|
95
182
|
interface FilledButtonLgProps {
|
|
96
183
|
classes?: any;
|
|
@@ -106,14 +193,14 @@ interface FilledButtonLgProps {
|
|
|
106
193
|
style?: string;
|
|
107
194
|
};
|
|
108
195
|
}
|
|
109
|
-
declare const _default$
|
|
196
|
+
declare const _default$j: React.MemoExoticComponent<({ classes, disabled, variant, color, copy, handleClick, loading, loadingProps, }: FilledButtonLgProps) => react_jsx_runtime.JSX.Element>;
|
|
110
197
|
|
|
111
198
|
interface ImageButtonProps {
|
|
112
199
|
src?: any;
|
|
113
200
|
onClick?: any;
|
|
114
201
|
value?: any;
|
|
115
202
|
}
|
|
116
|
-
declare const _default$
|
|
203
|
+
declare const _default$i: React.MemoExoticComponent<(props: ImageButtonProps) => react_jsx_runtime.JSX.Element>;
|
|
117
204
|
|
|
118
205
|
interface SquareButtonProps {
|
|
119
206
|
children: any;
|
|
@@ -144,7 +231,7 @@ interface OutlinedButtonProps {
|
|
|
144
231
|
subcopy?: any;
|
|
145
232
|
type?: any;
|
|
146
233
|
}
|
|
147
|
-
declare const _default$
|
|
234
|
+
declare const _default$h: React.MemoExoticComponent<({ className, color, copy, disabled, href, isLoading, onClick, startIcon, style, subcopy, type, }: OutlinedButtonProps) => react_jsx_runtime.JSX.Element>;
|
|
148
235
|
|
|
149
236
|
interface AButtonProps {
|
|
150
237
|
classes?: any;
|
|
@@ -152,7 +239,7 @@ interface AButtonProps {
|
|
|
152
239
|
color?: string;
|
|
153
240
|
copy?: any;
|
|
154
241
|
}
|
|
155
|
-
declare const _default$
|
|
242
|
+
declare const _default$g: React.MemoExoticComponent<({ classes, variant, color, copy }: AButtonProps) => react_jsx_runtime.JSX.Element>;
|
|
156
243
|
|
|
157
244
|
interface IRoundButton {
|
|
158
245
|
active?: boolean;
|
|
@@ -178,7 +265,7 @@ interface IRoundButton {
|
|
|
178
265
|
*/
|
|
179
266
|
declare const RoundButton: ({ active, children, className, disabled, focused, icon, iconColor, isContrast, isTableButton, noStrokes, onClick, size, tooltip, variant, testID, }: IRoundButton) => react_jsx_runtime.JSX.Element;
|
|
180
267
|
|
|
181
|
-
declare const _default$
|
|
268
|
+
declare const _default$f: React.MemoExoticComponent<() => react_jsx_runtime.JSX.Element>;
|
|
182
269
|
|
|
183
270
|
interface ActionButtonProps {
|
|
184
271
|
app?: any;
|
|
@@ -415,14 +502,14 @@ interface IDeleteSubstitutionDialogContent {
|
|
|
415
502
|
deleteSubstitution: () => void;
|
|
416
503
|
substitutionName: string;
|
|
417
504
|
}
|
|
418
|
-
declare const _default$
|
|
505
|
+
declare const _default$e: React.MemoExoticComponent<({ closeDialog, substitutionName, deleteSubstitution, }: IDeleteSubstitutionDialogContent) => react_jsx_runtime.JSX.Element>;
|
|
419
506
|
|
|
420
507
|
interface IDeleteUserDialogContent {
|
|
421
508
|
closeDialog: () => void;
|
|
422
509
|
deleteUser: () => void;
|
|
423
510
|
userName: string;
|
|
424
511
|
}
|
|
425
|
-
declare const _default$
|
|
512
|
+
declare const _default$d: React.MemoExoticComponent<({ closeDialog, userName, deleteUser, }: IDeleteUserDialogContent) => react_jsx_runtime.JSX.Element>;
|
|
426
513
|
|
|
427
514
|
interface FileCardProps {
|
|
428
515
|
document: string;
|
|
@@ -433,7 +520,7 @@ interface FilledLabelProps {
|
|
|
433
520
|
color?: string;
|
|
434
521
|
copy?: any;
|
|
435
522
|
}
|
|
436
|
-
declare const _default$
|
|
523
|
+
declare const _default$c: React.MemoExoticComponent<(props: FilledLabelProps) => react_jsx_runtime.JSX.Element>;
|
|
437
524
|
|
|
438
525
|
type IFilterGroupSelector = {
|
|
439
526
|
name?: string;
|
|
@@ -459,7 +546,7 @@ interface FixedFooterProps {
|
|
|
459
546
|
children: React.ReactNode;
|
|
460
547
|
justifyContent?: string;
|
|
461
548
|
}
|
|
462
|
-
declare const _default$
|
|
549
|
+
declare const _default$b: React.MemoExoticComponent<({ justifyContent, children }: FixedFooterProps) => react_jsx_runtime.JSX.Element>;
|
|
463
550
|
|
|
464
551
|
interface HeaderProps {
|
|
465
552
|
appName: any;
|
|
@@ -524,7 +611,7 @@ interface ILeftDrawer {
|
|
|
524
611
|
username: string;
|
|
525
612
|
};
|
|
526
613
|
}
|
|
527
|
-
declare const _default$
|
|
614
|
+
declare const _default$a: React.MemoExoticComponent<({ handleClose, handleOpen, onLogout, featureSettings, open, user, }: ILeftDrawer) => react_jsx_runtime.JSX.Element>;
|
|
528
615
|
|
|
529
616
|
interface VirtualizedListProps {
|
|
530
617
|
headers?: any;
|
|
@@ -569,7 +656,7 @@ interface NumpadInputProps {
|
|
|
569
656
|
inputLabel?: string;
|
|
570
657
|
children?: any;
|
|
571
658
|
}
|
|
572
|
-
declare const _default$
|
|
659
|
+
declare const _default$9: React.MemoExoticComponent<(props: NumpadInputProps) => react_jsx_runtime.JSX.Element>;
|
|
573
660
|
|
|
574
661
|
interface NumpadPlusProps {
|
|
575
662
|
handleClick: any;
|
|
@@ -714,7 +801,7 @@ interface SearchAndFilterHeaderForTableProps {
|
|
|
714
801
|
showFilterButton?: boolean;
|
|
715
802
|
updateSearch?(...args: any[]): any;
|
|
716
803
|
}
|
|
717
|
-
declare const _default$
|
|
804
|
+
declare const _default$8: React.MemoExoticComponent<(props: SearchAndFilterHeaderForTableProps) => react_jsx_runtime.JSX.Element>;
|
|
718
805
|
|
|
719
806
|
interface ISearchWithFiltersProps {
|
|
720
807
|
enterPressedInSearch?: () => void;
|
|
@@ -727,7 +814,7 @@ interface ISearchWithFiltersProps {
|
|
|
727
814
|
}) => void;
|
|
728
815
|
disabled?: boolean;
|
|
729
816
|
}
|
|
730
|
-
declare const _default$
|
|
817
|
+
declare const _default$7: React.MemoExoticComponent<({ enterPressedInSearch, filterClick, handleClick, searchValue, showFilters, updateFilters, disabled, }: ISearchWithFiltersProps) => react_jsx_runtime.JSX.Element>;
|
|
731
818
|
|
|
732
819
|
interface SearchWithFiltersForTableProps {
|
|
733
820
|
onFilterButtonClick?(...args: any[]): any;
|
|
@@ -737,7 +824,7 @@ interface SearchWithFiltersForTableProps {
|
|
|
737
824
|
showFilterButton?: boolean;
|
|
738
825
|
searchedValue?: string;
|
|
739
826
|
}
|
|
740
|
-
declare const _default$
|
|
827
|
+
declare const _default$6: React.MemoExoticComponent<(props: SearchWithFiltersForTableProps) => react_jsx_runtime.JSX.Element>;
|
|
741
828
|
|
|
742
829
|
interface ISectionName {
|
|
743
830
|
name: string;
|
|
@@ -836,7 +923,7 @@ interface SquareLabelProps {
|
|
|
836
923
|
color?: string;
|
|
837
924
|
copy?: any;
|
|
838
925
|
}
|
|
839
|
-
declare const _default$
|
|
926
|
+
declare const _default$5: React.MemoExoticComponent<({ color, copy }: SquareLabelProps) => react_jsx_runtime.JSX.Element>;
|
|
840
927
|
|
|
841
928
|
interface LSwitchProps {
|
|
842
929
|
classes?: any;
|
|
@@ -846,69 +933,15 @@ interface LSwitchProps {
|
|
|
846
933
|
handleChange?: any;
|
|
847
934
|
disabled: any;
|
|
848
935
|
}
|
|
849
|
-
declare const _default$
|
|
850
|
-
|
|
851
|
-
type Order = 'asc' | 'desc';
|
|
852
|
-
type HeaderFilterObject = {
|
|
853
|
-
id: number;
|
|
854
|
-
name: string;
|
|
855
|
-
label?: string;
|
|
856
|
-
};
|
|
857
|
-
type HeaderFilterOptions = string[] | HeaderFilterObject[];
|
|
858
|
-
type HeaderFilters = {
|
|
859
|
-
[key: string]: HeaderFilterOptions;
|
|
860
|
-
};
|
|
861
|
-
type HeadCell = {
|
|
862
|
-
id: string;
|
|
863
|
-
label?: string;
|
|
864
|
-
numeric?: boolean;
|
|
865
|
-
disablePadding?: boolean;
|
|
866
|
-
enabled?: boolean;
|
|
867
|
-
renderHeader?: ReactNode;
|
|
868
|
-
filterOptionsQuery?: UseQueryResult<unknown[], unknown>;
|
|
869
|
-
};
|
|
870
|
-
interface ITableDesktopProps {
|
|
871
|
-
data: any[];
|
|
872
|
-
headCells: HeadCell[];
|
|
873
|
-
RenderItem: ComponentType<any>;
|
|
874
|
-
appliedFilters?: any;
|
|
875
|
-
headerFilters?: HeaderFilters;
|
|
876
|
-
children?: ReactNode;
|
|
877
|
-
height?: number | string;
|
|
878
|
-
isLoading?: boolean;
|
|
879
|
-
rowsPerPage?: number;
|
|
880
|
-
enableCheckboxSelection?: boolean;
|
|
881
|
-
disableInternalSort?: boolean;
|
|
882
|
-
updateSort?: (sortField: string, sortDir: Order) => void;
|
|
883
|
-
showClearFilterButton?: boolean;
|
|
884
|
-
handleClickOnClearFiltersButton?: () => void;
|
|
885
|
-
deleteItem?: (id: string) => void;
|
|
886
|
-
keyField?: string;
|
|
887
|
-
onApplyFilters?: (updatedFilters: HeaderFilters, shouldSave: boolean) => void;
|
|
888
|
-
}
|
|
889
|
-
declare const TableDesktop: ({ data, headCells, RenderItem, appliedFilters, headerFilters, children, height, isLoading, rowsPerPage, enableCheckboxSelection, disableInternalSort, updateSort, showClearFilterButton, handleClickOnClearFiltersButton, deleteItem, keyField, onApplyFilters, }: ITableDesktopProps) => react_jsx_runtime.JSX.Element;
|
|
890
|
-
|
|
891
|
-
interface SmartTableHeaderFilterMenuProps {
|
|
892
|
-
headCell: HeadCell;
|
|
893
|
-
headerFilters: HeaderFilters;
|
|
894
|
-
hasActiveFilters: boolean;
|
|
895
|
-
onApplyFilters?: (...args: unknown[]) => void;
|
|
896
|
-
}
|
|
897
|
-
declare const _default$4: React__default.NamedExoticComponent<SmartTableHeaderFilterMenuProps>;
|
|
936
|
+
declare const _default$4: React.MemoExoticComponent<({ checked, labelOn, labelOff, handleChange, classes, disabled, }: LSwitchProps) => react_jsx_runtime.JSX.Element>;
|
|
898
937
|
|
|
899
938
|
interface SmartTableHeaderProps {
|
|
900
|
-
order
|
|
901
|
-
orderBy
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
headerFilters: HeaderFilters;
|
|
907
|
-
onRequestSort: (event: MouseEvent<unknown>, property: string) => void;
|
|
908
|
-
onSelectAllClick: (event: ChangeEvent<HTMLInputElement>) => void;
|
|
909
|
-
onApplyFilters?: (...args: unknown[]) => void;
|
|
910
|
-
}
|
|
911
|
-
declare const _default$3: React.NamedExoticComponent<SmartTableHeaderProps>;
|
|
939
|
+
order?: string;
|
|
940
|
+
orderBy?: string;
|
|
941
|
+
onRequestSort?(...args: any[]): any;
|
|
942
|
+
headCells?: any;
|
|
943
|
+
}
|
|
944
|
+
declare const _default$3: React.MemoExoticComponent<(props: SmartTableHeaderProps) => react_jsx_runtime.JSX.Element>;
|
|
912
945
|
|
|
913
946
|
interface TableProps {
|
|
914
947
|
headCells?: {
|
|
@@ -930,18 +963,40 @@ interface TableProps {
|
|
|
930
963
|
}
|
|
931
964
|
declare const Table: ({ appliedFilters, data, doNotCalculateRows, headCells, isLoading, onRowClick, page, RenderItem, rowsPerPage: defaultRowsPerPage, serverRendered, updateSort, }: TableProps) => react_jsx_runtime.JSX.Element;
|
|
932
965
|
|
|
966
|
+
interface IHeadCell {
|
|
967
|
+
id: string;
|
|
968
|
+
numeric?: boolean;
|
|
969
|
+
disablePadding?: boolean;
|
|
970
|
+
label: string;
|
|
971
|
+
}
|
|
972
|
+
interface ITableDesktopProps {
|
|
973
|
+
appliedFilters?: any;
|
|
974
|
+
children?: React.ReactNode;
|
|
975
|
+
data: any[];
|
|
976
|
+
headCells: IHeadCell[];
|
|
977
|
+
height?: number | string;
|
|
978
|
+
isLoading?: boolean;
|
|
979
|
+
RenderItem: ComponentType<any>;
|
|
980
|
+
rowsPerPage: number;
|
|
981
|
+
updateSort: (sortField: string, sortDir: 'asc' | 'desc') => void;
|
|
982
|
+
showClearFilterButton?: boolean;
|
|
983
|
+
handleClickOnClearFiltersButton?: () => void;
|
|
984
|
+
deleteItem?: (id: string) => void;
|
|
985
|
+
keyField: string;
|
|
986
|
+
}
|
|
987
|
+
declare const TableDesktop: ({ appliedFilters, children, data, headCells, height, isLoading, RenderItem, rowsPerPage, updateSort, showClearFilterButton, handleClickOnClearFiltersButton, deleteItem, keyField, }: ITableDesktopProps) => react_jsx_runtime.JSX.Element;
|
|
988
|
+
|
|
933
989
|
interface ITableEmptyResult {
|
|
934
|
-
colSpan: number;
|
|
935
990
|
showClearFilterButton?: boolean;
|
|
936
991
|
handleClickOnClearFiltersButton?: () => void;
|
|
937
992
|
}
|
|
938
|
-
declare const TableEmptyResult: ({
|
|
993
|
+
declare const TableEmptyResult: ({ showClearFilterButton, handleClickOnClearFiltersButton, }: ITableEmptyResult) => react_jsx_runtime.JSX.Element;
|
|
939
994
|
|
|
940
995
|
interface TableLoadingProps {
|
|
941
996
|
rowsPerPage?: number;
|
|
942
997
|
rowHeight?: number;
|
|
943
998
|
}
|
|
944
|
-
declare const TableLoading:
|
|
999
|
+
declare const TableLoading: ({ rowsPerPage, rowHeight }: TableLoadingProps) => react_jsx_runtime.JSX.Element;
|
|
945
1000
|
|
|
946
1001
|
interface TableHeaderProps {
|
|
947
1002
|
cells: any;
|
|
@@ -1028,4 +1083,8 @@ type UserBustProps = {
|
|
|
1028
1083
|
};
|
|
1029
1084
|
declare const _default: React.MemoExoticComponent<({ user, avatarProps, typographyProps }: UserBustProps) => react_jsx_runtime.JSX.Element>;
|
|
1030
1085
|
|
|
1031
|
-
|
|
1086
|
+
declare const SvgIconCompare: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
1087
|
+
|
|
1088
|
+
declare const SvgIconChart: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
1089
|
+
|
|
1090
|
+
export { AlertDialog, AlertDialogFullScreen, AppLabel, _default$n as Autocomplete, 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, Header, SvgIconChart as IconChart, SvgIconCompare as IconCompare, _default$i as ImageButton, _default$a as LeftDrawer, VirtualizedList as List, Loading, LocationsSectionInfo, Notes, Numpad, _default$9 as NumpadInput, NumpadPlus, _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$8 as SearchAndFilterHeaderForTable, _default$7 as SearchWithFilters, _default$6 as SearchWithFiltersForTable, SectionName, SmartSelect, _default$3 as SmartTableHeader, SquareButton, _default$5 as SquareLabel, _default$4 as Switch, Table, TableDesktop, TableEmptyResult, _default$2 as TableHeader, TableLoading, TextDivider, _default$1 as TheToolbar, ThemedDateRangePicker, ToastMessage, TwoButtonDialog, UploadButton, _default as UserBust, icons };
|