@anzusystems/common-admin 0.0.21 → 0.0.24

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.
@@ -2606,6 +2606,13 @@ export declare const HTTP_STATUS_UNPROCESSABLE_ENTITY = 422;
2606
2606
 
2607
2607
  export declare const i18n: I18n<{}, {}, {}, string, true>;
2608
2608
 
2609
+ export declare const ICON: Immutable<typeof icons>;
2610
+
2611
+ declare const icons: {
2612
+ CHIP_LINK: string;
2613
+ CHIP_LINK_EXTERNAL: string;
2614
+ };
2615
+
2609
2616
  export declare type Immutable<T> = {
2610
2617
  readonly [K in keyof T]: Immutable<T[K]>;
2611
2618
  };
@@ -3367,7 +3374,7 @@ export declare const objectDeepFreeze: <T>(obj: T) => Readonly<T>;
3367
3374
 
3368
3375
  export declare function objectDeletePropertyByPath<T>(obj: T, path: string, splitChar?: string): T;
3369
3376
 
3370
- export declare const objectGetValueByPath: (obj: any, path: string, splitChar?: string) => any;
3377
+ export declare const objectGetValueByPath: <R = any>(obj: any, path: string, splitChar?: string) => R | undefined;
3371
3378
 
3372
3379
  export declare const objectGetValues: <T>(obj: {
3373
3380
  [key: string]: T;