ados-rcm 1.1.186 → 1.1.188
Sign up to get free protection for your applications and to get access to all the features.
@@ -97,7 +97,9 @@ declare const Icons: Readonly<{
|
|
97
97
|
HelpCircle: (props?: IASVGProps) => import("react/jsx-runtime").JSX.Element;
|
98
98
|
Cow: (props?: IASVGProps) => import("react/jsx-runtime").JSX.Element;
|
99
99
|
AlertCircle: (props?: IASVGProps) => import("react/jsx-runtime").JSX.Element;
|
100
|
+
Email: (props?: IASVGProps) => import("react/jsx-runtime").JSX.Element;
|
101
|
+
Manager: (props?: IASVGProps) => import("react/jsx-runtime").JSX.Element;
|
100
102
|
}>;
|
101
|
-
export declare const AIcons: ("ArrowDown" | "ArrowUp" | "Chat" | "Check.Checked" | "Check.Indeterminate" | "Check.UnChecked" | "CircledCheck" | "ClipBoard" | "Close" | "Document" | "Menu" | "Person" | "Reset" | "Search" | "Send" | "Spinner" | "Stop" | "TriangleAlert" | "Sun" | "Moon" | "CCTV" | "Convert" | "KeyboardArrowUp" | "KeyboardArrowDown" | "Alert" | "SortUp" | "SortDown" | "SortBoth" | "Favorite" | "FavoriteDisabled" | "Main" | "Frame" | "FileDownload" | "File" | "UnPlug" | "Sync" | "CalendarDay" | "DateRange" | "PlayArrow" | "Mail" | "Download" | "Folder" | "FolderPost" | "FolderOpen" | "FolderCopy" | "FolderAdd" | "FirstPage" | "LastPage" | "NavigateBefore" | "NavigateNext" | "ListAdd" | "ListRemove" | "Cancel" | "Clear" | "Article" | "Info" | "PersonAdd" | "CheckNormal" | "Create" | "PersonRemove" | "Refresh" | "Undo" | "Gear" | "TriangleUp" | "TriangleDown" | "HelpCircle" | "Cow" | "AlertCircle")[];
|
103
|
+
export declare const AIcons: ("ArrowDown" | "ArrowUp" | "Chat" | "Check.Checked" | "Check.Indeterminate" | "Check.UnChecked" | "CircledCheck" | "ClipBoard" | "Close" | "Document" | "Menu" | "Person" | "Reset" | "Search" | "Send" | "Spinner" | "Stop" | "TriangleAlert" | "Sun" | "Moon" | "CCTV" | "Convert" | "KeyboardArrowUp" | "KeyboardArrowDown" | "Alert" | "SortUp" | "SortDown" | "SortBoth" | "Favorite" | "FavoriteDisabled" | "Main" | "Frame" | "FileDownload" | "File" | "UnPlug" | "Sync" | "CalendarDay" | "DateRange" | "PlayArrow" | "Mail" | "Download" | "Folder" | "FolderPost" | "FolderOpen" | "FolderCopy" | "FolderAdd" | "FirstPage" | "LastPage" | "NavigateBefore" | "NavigateNext" | "ListAdd" | "ListRemove" | "Cancel" | "Clear" | "Article" | "Info" | "PersonAdd" | "CheckNormal" | "Create" | "PersonRemove" | "Refresh" | "Undo" | "Gear" | "TriangleUp" | "TriangleDown" | "HelpCircle" | "Cow" | "AlertCircle" | "Email" | "Manager")[];
|
102
104
|
export type TAIcons = (typeof AIcons)[number];
|
103
105
|
export {};
|
@@ -141,11 +141,11 @@ export interface IATableFilter<T extends IItem, K extends IItem = any> {
|
|
141
141
|
*/
|
142
142
|
value?: string;
|
143
143
|
/**
|
144
|
-
* icon? : TIcons = 'Info'
|
144
|
+
* icon? : TIcons | Exclude<React.ReactNode, string> = 'Info'
|
145
145
|
*
|
146
146
|
* Description : icon of the String filter
|
147
147
|
*/
|
148
|
-
icon?: TIcons
|
148
|
+
icon?: TIcons | Exclude<React.ReactNode, string>;
|
149
149
|
/**
|
150
150
|
* iconTooltip? : React.ReactNode = def.Name ?? placeholder
|
151
151
|
*
|
@@ -204,11 +204,11 @@ export interface IATableFilter<T extends IItem, K extends IItem = any> {
|
|
204
204
|
*/
|
205
205
|
value?: string | number | null;
|
206
206
|
/**
|
207
|
-
* icon? : TIcons = 'Info'
|
207
|
+
* icon? : TIcons | Exclude<React.ReactNode, string> = 'Info'
|
208
208
|
*
|
209
209
|
* Description : icon of the String filter
|
210
210
|
*/
|
211
|
-
icon?: TIcons
|
211
|
+
icon?: TIcons | Exclude<React.ReactNode, string>;
|
212
212
|
/**
|
213
213
|
* iconTooltip? : React.ReactNode = def.Name ?? placeholder
|
214
214
|
*
|
@@ -262,11 +262,11 @@ export interface IATableFilter<T extends IItem, K extends IItem = any> {
|
|
262
262
|
*/
|
263
263
|
value?: Date;
|
264
264
|
/**
|
265
|
-
* icon? : TIcons = '
|
265
|
+
* icon? : TIcons | Exclude<React.ReactNode, string> = 'CalerdarDay'
|
266
266
|
*
|
267
267
|
* Description : icon of the String filter
|
268
268
|
*/
|
269
|
-
icon?: TIcons
|
269
|
+
icon?: TIcons | Exclude<React.ReactNode, string>;
|
270
270
|
/**
|
271
271
|
* iconTooltip? : React.ReactNode = def.Name ?? placeholder
|
272
272
|
*
|
@@ -324,11 +324,11 @@ export interface IATableFilter<T extends IItem, K extends IItem = any> {
|
|
324
324
|
*/
|
325
325
|
value?: IDateRange;
|
326
326
|
/**
|
327
|
-
* icon? : TIcons = '
|
327
|
+
* icon? : TIcons | Exclude<React.ReactNode, string> = 'CalendarDay'
|
328
328
|
*
|
329
329
|
* Description : icon of the String filter
|
330
330
|
*/
|
331
|
-
icon?: TIcons
|
331
|
+
icon?: TIcons | Exclude<React.ReactNode, string>;
|
332
332
|
/**
|
333
333
|
* iconTooltip? : React.ReactNode = def.Name ?? placeholder
|
334
334
|
*
|