zova-module-a-style 5.0.17 → 5.0.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zova-module-a-style",
3
- "version": "5.0.17",
3
+ "version": "5.0.18",
4
4
  "title": "a-style",
5
5
  "zovaModule": {
6
6
  "capabilities": {
@@ -37,5 +37,5 @@
37
37
  "tsc:publish": "npm run clean && tsc -b",
38
38
  "prepublishOnly": "npm run tsc:publish"
39
39
  },
40
- "gitHead": "6b24f8fbc3857e405882791f096d19d146675077"
40
+ "gitHead": "99ce5c5f49c91443406af02c63b555063d5eb3f6"
41
41
  }
@@ -11,9 +11,6 @@ export class BeanTheme extends BeanModelBase<ScopeModule> {
11
11
  public get name(): keyof IBeanRecord {
12
12
  return this._name;
13
13
  }
14
- public set name(value: keyof IBeanRecord) {
15
- this.setTheme(value as any);
16
- }
17
14
  private _dark: boolean;
18
15
  public get dark(): boolean {
19
16
  return this._dark;
@@ -22,9 +19,6 @@ export class BeanTheme extends BeanModelBase<ScopeModule> {
22
19
  public get darkMode(): ThemeDarkMode {
23
20
  return this._darkMode;
24
21
  }
25
- public set darkMode(value: ThemeDarkMode) {
26
- this.setDark(value);
27
- }
28
22
  token: unknown;
29
23
  private _mediaDark?: MediaQueryList;
30
24
  private _onMediaDarkChange?;