@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.
- package/dist/common-admin.es.d.ts +8 -1
- package/dist/common-admin.es.js +463 -458
- package/dist/common-admin.es.js.map +1 -1
- package/dist/style.css +1 -1
- package/package.json +6 -6
|
@@ -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) =>
|
|
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;
|