@open-rlb/ng-app 3.1.89 → 3.1.90

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.
@@ -3274,6 +3274,7 @@ class AppContextEffects {
3274
3274
  this.setTheme$ = createEffect(() => {
3275
3275
  return this.actions$.pipe(ofType(AppContextActions.setTheme), tap$1(({ theme }) => {
3276
3276
  this.renderer.setAttribute(document.documentElement, 'data-bs-theme', theme);
3277
+ this.renderer.setAttribute(document.documentElement, 'data-theme', theme);
3277
3278
  }), tap$1(({ theme }) => { this.storage.writeLocal('theme', theme); }), map$1(({ theme }) => AppContextActionsInternal.setTheme({ theme })));
3278
3279
  });
3279
3280
  this.setApp$ = createEffect(() => {