@anzusystems/common-admin 0.0.49 → 0.0.50
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 +5 -5
- package/dist/common-admin.es.js +389 -391
- package/dist/common-admin.es.js.map +1 -1
- package/dist/style.css +1 -1
- package/package.json +6 -6
|
@@ -581,18 +581,18 @@ export declare const AActionSaveButton: DefineComponent<{
|
|
|
581
581
|
|
|
582
582
|
export declare const AAdminSwitcher: DefineComponent<{
|
|
583
583
|
configUrl: {
|
|
584
|
-
type: PropType<string | undefined>;
|
|
584
|
+
type: PropType<string | null | undefined>;
|
|
585
585
|
required: false;
|
|
586
|
-
default:
|
|
586
|
+
default: null;
|
|
587
587
|
};
|
|
588
588
|
}, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
589
589
|
configUrl: {
|
|
590
|
-
type: PropType<string | undefined>;
|
|
590
|
+
type: PropType<string | null | undefined>;
|
|
591
591
|
required: false;
|
|
592
|
-
default:
|
|
592
|
+
default: null;
|
|
593
593
|
};
|
|
594
594
|
}>>, {
|
|
595
|
-
configUrl: string | undefined;
|
|
595
|
+
configUrl: string | null | undefined;
|
|
596
596
|
}>;
|
|
597
597
|
|
|
598
598
|
export declare const AAlerts: DefineComponent<{
|