@foblex/m-render 2.9.0 → 2.9.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.
@@ -2481,7 +2481,7 @@ var previewActionBar = /*#__PURE__*/Object.freeze({
2481
2481
 
2482
2482
  class ShowcaseItem {
2483
2483
  _themeService = inject(ThemeService);
2484
- _themeChanges = toSignal(this._themeService.theme$.pipe(map(() => this._themeService.getPreferredTheme())));
2484
+ _themeChanges = toSignal(this._themeService.theme$.pipe(startWith(null), map(() => this._themeService.getPreferredTheme())));
2485
2485
  model = input.required(...(ngDevMode ? [{ debugName: "model" }] : []));
2486
2486
  src = computed(() => {
2487
2487
  const theme = this._themeChanges();