@anzusystems/common-admin 0.0.36 → 0.0.37

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.
@@ -2703,7 +2703,7 @@ export declare const ALoginView: DefineComponent<{
2703
2703
  default: undefined;
2704
2704
  };
2705
2705
  loginUrl: {
2706
- type: PropType<string | undefined>;
2706
+ type: PropType<(() => string) | undefined>;
2707
2707
  required: false;
2708
2708
  default: undefined;
2709
2709
  };
@@ -2719,14 +2719,14 @@ export declare const ALoginView: DefineComponent<{
2719
2719
  default: undefined;
2720
2720
  };
2721
2721
  loginUrl: {
2722
- type: PropType<string | undefined>;
2722
+ type: PropType<(() => string) | undefined>;
2723
2723
  required: false;
2724
2724
  default: undefined;
2725
2725
  };
2726
2726
  }>>, {
2727
2727
  title: string | undefined;
2728
2728
  logoUrl: string | undefined;
2729
- loginUrl: string | undefined;
2729
+ loginUrl: (() => string) | undefined;
2730
2730
  }>;
2731
2731
 
2732
2732
  export declare const ALogLevelChip: DefineComponent<{
@@ -2743,18 +2743,18 @@ export declare const ALogLevelChip: DefineComponent<{
2743
2743
 
2744
2744
  export declare const ALogoutView: DefineComponent<{
2745
2745
  logoutUrl: {
2746
- type: PropType<string | undefined>;
2746
+ type: PropType<(() => string) | undefined>;
2747
2747
  required: false;
2748
2748
  default: undefined;
2749
2749
  };
2750
2750
  }, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
2751
2751
  logoutUrl: {
2752
- type: PropType<string | undefined>;
2752
+ type: PropType<(() => string) | undefined>;
2753
2753
  required: false;
2754
2754
  default: undefined;
2755
2755
  };
2756
2756
  }>>, {
2757
- logoutUrl: string | undefined;
2757
+ logoutUrl: (() => string) | undefined;
2758
2758
  }>;
2759
2759
 
2760
2760
  export declare const ANotFoundView: DefineComponent<{