@dereekb/dbx-firebase 9.15.4 → 9.15.5

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.
@@ -2010,7 +2010,6 @@ class DbxFirebaseEmulatorService {
2010
2010
  }
2011
2011
  get emulatorUIAnchor() {
2012
2012
  const ui = this.emulatorsConfig.ui;
2013
- console.log('Config: ', ui, this.emulatorsConfig);
2014
2013
  return ui
2015
2014
  ? {
2016
2015
  url: `http://${ui.host ?? 'localhost'}:${ui.port}`,
@@ -2074,6 +2073,8 @@ class DbxFirebaseDevelopmentPopupContentComponent {
2074
2073
  this.dbxFirebaseDevelopmentSchedulerService = dbxFirebaseDevelopmentSchedulerService;
2075
2074
  this.dbxFirebaseEmulatorService = dbxFirebaseEmulatorService;
2076
2075
  this._backSub = new SubscriptionObject();
2076
+ this.showEmulatorButton = this.dbxFirebaseEmulatorService.useEmulators === true;
2077
+ this.emulatorUIAnchor = this.dbxFirebaseEmulatorService.emulatorUIAnchor ?? {};
2077
2078
  this.entries = this.dbxFirebaseDevelopmentWidgetService.getEntries();
2078
2079
  this._activeEntrySelector = new BehaviorSubject(DEVELOPMENT_FIREBASE_SERVER_SCHEDULER_WIDGET_KEY);
2079
2080
  this.isLoggedIn$ = this.dbxAuthService.isLoggedIn$;
@@ -2097,12 +2098,6 @@ class DbxFirebaseDevelopmentPopupContentComponent {
2097
2098
  return this._activeEntrySelector.pipe(map((currentSelector) => value.specifier !== currentSelector), first());
2098
2099
  };
2099
2100
  }
2100
- get showEmulatorButton() {
2101
- return this.dbxFirebaseEmulatorService.useEmulators === true;
2102
- }
2103
- get emulatorUIAnchor() {
2104
- return this.dbxFirebaseEmulatorService.emulatorUIAnchor ?? {};
2105
- }
2106
2101
  ngOnInit() {
2107
2102
  this.twoColumnsContextStore.setShowRight(this.showRight$);
2108
2103
  this._backSub.subscription = this.twoColumnsContextStore.back$.subscribe(() => {
@@ -3060,6 +3055,9 @@ class DbxFirebaseIdRouteParamRedirectInstance {
3060
3055
  setDecider(decider) {
3061
3056
  this._useDefaultParamDecider.next(decider);
3062
3057
  }
3058
+ setParamValue(value) {
3059
+ this._paramReader.setParamValue(value);
3060
+ }
3063
3061
  }
3064
3062
  function dbxFirebaseIdRouteParamRedirect(dbxRouterService) {
3065
3063
  return new DbxFirebaseIdRouteParamRedirectInstance(dbxRouterService);