ados-rcm 1.1.287 → 1.1.288

Sign up to get free protection for your applications and to get access to all the features.
@@ -5,7 +5,6 @@ export interface IASVGProps extends React.SVGProps<SVGSVGElement> {
5
5
  secondaryColor?: string;
6
6
  size?: TIconSize;
7
7
  }
8
- export type TIcons = keyof typeof Icons;
9
8
  declare const iconSizes: {
10
9
  readonly '2xs': 12;
11
10
  readonly xs: 16;
@@ -142,5 +141,5 @@ export declare const Icons: Readonly<{
142
141
  Trash2: (props?: IASVGProps) => import("react/jsx-runtime").JSX.Element;
143
142
  }>;
144
143
  export declare const AIcons: ("ArrowDown" | "ArrowUp" | "Chat" | "Check.Checked" | "Check.Indeterminate" | "Check.UnChecked" | "CircleCheck" | "ClipBoard" | "Close" | "Document" | "Menu" | "Person" | "PersonOutline" | "Reset" | "Search" | "Send" | "Spinner" | "Stop" | "TriangleAlert" | "TriangleAlert2" | "Sun" | "Moon" | "CCTV" | "Convert" | "KeyboardArrowUp" | "KeyboardArrowDown" | "Alert" | "SortUp" | "SortDown" | "SortBoth" | "RowSortUp" | "RowSortDown" | "RowSortBoth" | "Favorite" | "FavoriteDisabled" | "Main" | "Frame" | "FileDownload" | "File" | "UnPlug" | "CloudSync" | "CalendarDay" | "DateRange" | "PlayArrow" | "Mail" | "MailOutline" | "Bell" | "Download" | "Folder" | "FolderPost" | "FolderOpen" | "FolderCopy" | "FolderAdd" | "FolderMove" | "FirstPage" | "LastPage" | "NavigateBefore" | "NavigateNext" | "ListAdd" | "ListRemove" | "Cancel" | "Article" | "Info" | "Type" | "PersonAdd" | "CheckNormal" | "Create" | "PersonRemove" | "Refresh" | "Undo" | "Gear" | "TriangleUp" | "TriangleDown" | "CircleHelp" | "Cow" | "CircleAlertOutline" | "CircleAlert" | "Manager" | "ManagerOutline" | "Admin" | "Equalizer" | "ABC" | "Auth" | "AuthAdd" | "Switch" | "Add" | "Edit" | "EditOff" | "Delete" | "Save" | "Remove" | "Sync" | "X" | "MoreVertical" | "MoreHorizontal" | "Verified" | "NonVerified" | "Edit2" | "Trash2")[];
145
- export type TAIcons = (typeof AIcons)[number];
144
+ export type TIcons = keyof typeof Icons;
146
145
  export {};
@@ -188,6 +188,7 @@ type TAThemeEvent = IPaletteModeChangeEvent | ISemanticModeChangeEvent;
188
188
  declare function addEventListener<T extends TAThemeEvent>(param: T): void;
189
189
  declare function removeEventListener<T extends TAThemeEvent>(param: T): void;
190
190
  declare function getDeepValue(key: TPaletteKeys | TSemanticKeys | TComponentStyleKeys): string;
191
+ declare function addClasses(classes: Record<string, string>): void;
191
192
  export declare const AThemes: {
192
193
  getCurrentPaletteMode: typeof getCurrentPaletteMode;
193
194
  getPaletteValue: typeof getPaletteValue;
@@ -207,5 +208,6 @@ export declare const AThemes: {
207
208
  addEventListener: typeof addEventListener;
208
209
  removeEventListener: typeof removeEventListener;
209
210
  getDeepValue: typeof getDeepValue;
211
+ addClasses: typeof addClasses;
210
212
  };
211
213
  export {};
@@ -27,6 +27,7 @@ declare const keys: {
27
27
  IsClickable: string;
28
28
  IsInteractive: string;
29
29
  };
30
+ declare function updateKeys(): void;
30
31
  declare function clsx(...args: (keyof typeof keys)[] | any[]): string;
31
32
  declare function sclsx<T extends CSSModuleClasses>(styles: T, ...args: (keyof T)[] | (keyof typeof keys)[] | any[]): string;
32
33
  /**
@@ -55,5 +56,7 @@ export declare const sF: {
55
56
  Caption1: any;
56
57
  Caption2: any;
57
58
  };
59
+ additionalClasses: Record<string, string>;
60
+ updateKeys: typeof updateKeys;
58
61
  };
59
62
  export {};