wacom 21.1.18 → 21.1.19
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.
- package/fesm2022/wacom.mjs +2 -0
- package/fesm2022/wacom.mjs.map +1 -1
- package/package.json +1 -1
- package/types/wacom.d.ts +6 -4
package/fesm2022/wacom.mjs
CHANGED
|
@@ -4302,7 +4302,9 @@ class ThemeService {
|
|
|
4302
4302
|
this.mode = signal(undefined, ...(ngDevMode ? [{ debugName: "mode" }] : []));
|
|
4303
4303
|
this.modes = signal(['light', 'dark'], ...(ngDevMode ? [{ debugName: "modes" }] : []));
|
|
4304
4304
|
this.density = signal(undefined, ...(ngDevMode ? [{ debugName: "density" }] : []));
|
|
4305
|
+
this.densities = signal(['comfortable', 'compact'], ...(ngDevMode ? [{ debugName: "densities" }] : []));
|
|
4305
4306
|
this.radius = signal(undefined, ...(ngDevMode ? [{ debugName: "radius" }] : []));
|
|
4307
|
+
this.radiuses = signal(['rounded', 'square'], ...(ngDevMode ? [{ debugName: "radiuses" }] : []));
|
|
4306
4308
|
}
|
|
4307
4309
|
setMode(mode) {
|
|
4308
4310
|
if (this._isBrowser) {
|