@neuralfog/elemix-analyzer 0.9.0-dev.12 → 0.9.0-dev.13

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +16 -2
  2. package/package.json +7 -7
package/CHANGELOG.md CHANGED
@@ -8,6 +8,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
8
8
  > The [Roadmap](https://github.com/neuralfog/elemix/blob/main/ROADMAP.md) is the full
9
9
  > log of development.
10
10
 
11
+ ## [0.9.0-dev.13] - 2026-07-07
12
+
13
+ ### Added
14
+
15
+ - Runtime: `createApp(root?)` bootstrap with chainable `.config({ … })` / `.mount(target?)`; app-wide config lives on `window.__elemix__` (the root and both calls are optional, so `createApp().config({ … })` is valid)
16
+ - Runtime: automatic cloaking - elemix adopts a `[data-cloak], :not(:defined) { visibility: hidden }` stylesheet so elements don't flash before they upgrade and mount, with no per-app CSS; `config({ cloak: '…' })` replaces the rule with a custom CSS string
17
+ - Runtime: `config({ shadow: false })` makes components render to light DOM by default (shadow DOM stays the default otherwise)
18
+ - Compiler: new `#shadow` hint forces a shadow root even under a light-DOM default; it is mutually exclusive with `#no-shadow`, and using both on one component is a compile error
19
+ - Analyzer: reports `#shadow` and `#no-shadow` on the same component as an error
20
+
21
+ ### Changed
22
+
23
+ - Storybook: ditched lit - `@neuralfog/elemix-storybook` and the storybook config now run on `@storybook/html-vite` instead of `@storybook/web-components-vite`, dropping lit-html from the dependency tree entirely (elemix always rendered plain string/Node, so lit was never used)
24
+
11
25
  ## [0.9.0-dev.12] - 2026-06-30
12
26
 
13
27
  ### Fixed
@@ -37,7 +51,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
37
51
 
38
52
  ### Added
39
53
 
40
- - `@neuralfog/elemix-analyzer` static analysis tool for elemix
54
+ - `@neuralfog/elemix-analyzer` - static analysis tool for elemix
41
55
 
42
56
  ## [0.9.0-dev.7] - 2026-06-22
43
57
 
@@ -63,7 +77,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
63
77
 
64
78
  - Compiler hints: `#component`/`#tag`/`#form`/`#no-shadow`/`#styles`/`#state`/`#effect` + lifecycle `#before-mount`/`#mount`/`#dispose`
65
79
  - Reactive primitives in component `#state` (`count = 0` stays reactive)
66
- - Component inheritance hooks/effects chain through `super`, stylesheets merge
80
+ - Component inheritance - hooks/effects chain through `super`, stylesheets merge
67
81
  - Collections in reactive state (`Set`/`Map`/`WeakSet`/`WeakMap`), classes in state, `raw()` helper
68
82
  - Source maps back to the original source
69
83
  - Inlined compiler diagnostics with `--strict`; CLI version banner
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@neuralfog/elemix-analyzer",
3
- "version": "0.9.0-dev.12",
3
+ "version": "0.9.0-dev.13",
4
4
  "description": "Template prop typechecker for Elemix (ec-analyzer)",
5
5
  "license": "MIT",
6
6
  "author": "brownhounds",
@@ -19,11 +19,11 @@
19
19
  "CHANGELOG.md"
20
20
  ],
21
21
  "optionalDependencies": {
22
- "@neuralfog/elemix-analyzer-linux-x64": "0.9.0-dev.12",
23
- "@neuralfog/elemix-analyzer-linux-arm64": "0.9.0-dev.12",
24
- "@neuralfog/elemix-analyzer-darwin-x64": "0.9.0-dev.12",
25
- "@neuralfog/elemix-analyzer-darwin-arm64": "0.9.0-dev.12",
26
- "@neuralfog/elemix-analyzer-win32-x64": "0.9.0-dev.12",
27
- "@neuralfog/elemix-analyzer-win32-arm64": "0.9.0-dev.12"
22
+ "@neuralfog/elemix-analyzer-linux-x64": "0.9.0-dev.13",
23
+ "@neuralfog/elemix-analyzer-linux-arm64": "0.9.0-dev.13",
24
+ "@neuralfog/elemix-analyzer-darwin-x64": "0.9.0-dev.13",
25
+ "@neuralfog/elemix-analyzer-darwin-arm64": "0.9.0-dev.13",
26
+ "@neuralfog/elemix-analyzer-win32-x64": "0.9.0-dev.13",
27
+ "@neuralfog/elemix-analyzer-win32-arm64": "0.9.0-dev.13"
28
28
  }
29
29
  }