wacom 21.1.16 → 21.1.18

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.
@@ -4300,6 +4300,7 @@ class ThemeService {
4300
4300
  this._doc = inject(DOCUMENT);
4301
4301
  this._isBrowser = isPlatformBrowser(inject(PLATFORM_ID));
4302
4302
  this.mode = signal(undefined, ...(ngDevMode ? [{ debugName: "mode" }] : []));
4303
+ this.modes = signal(['light', 'dark'], ...(ngDevMode ? [{ debugName: "modes" }] : []));
4303
4304
  this.density = signal(undefined, ...(ngDevMode ? [{ debugName: "density" }] : []));
4304
4305
  this.radius = signal(undefined, ...(ngDevMode ? [{ debugName: "radius" }] : []));
4305
4306
  }