verstak 0.96.26005 → 0.96.26010

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.
@@ -27,4 +27,4 @@ export class Theme {
27
27
  Theme.gCurrent.value = value;
28
28
  }
29
29
  }
30
- Theme.gCurrent = new ReactiveTreeVariable(runTransactional({ isolation: Isolation.disjoinFromOuterTransaction }, () => new Theme()));
30
+ Theme.gCurrent = new ReactiveTreeVariable(Theme.name, runTransactional({ isolation: Isolation.disjoinFromOuterTransaction }, () => new Theme()));
@@ -36,8 +36,8 @@ export class Dimension {
36
36
  return Dimension.gLineSizePx;
37
37
  }
38
38
  }
39
- Dimension.gFontSizePx = new ReactiveTreeVariable();
40
- Dimension.gLineSizePx = new ReactiveTreeVariable();
39
+ Dimension.gFontSizePx = new ReactiveTreeVariable("gFontSizePx");
40
+ Dimension.gLineSizePx = new ReactiveTreeVariable("gLineSizePx");
41
41
  export function dim(num, unit) {
42
42
  return new Dimension(num, unit);
43
43
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "verstak",
3
- "version": "0.96.26005",
3
+ "version": "0.96.26010",
4
4
  "description": "Verstak - Front-End Library",
5
5
  "publisher": "Nezaboodka Software",
6
6
  "license": "Apache-2.0",
@@ -42,7 +42,7 @@
42
42
  "markdown-it": "^14.1.0",
43
43
  "markdown-it-prism": "^2.3.0",
44
44
  "prismjs": "^1.30.0",
45
- "reactronic": "^0.96.26008"
45
+ "reactronic": "^0.96.26010"
46
46
  },
47
47
  "devDependencies": {
48
48
  "@types/markdown-it": "14.1.2",