@neuralfog/elemix-analyzer 0.9.0-dev.11 → 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.
- package/CHANGELOG.md +22 -2
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,26 @@ 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
|
+
|
|
25
|
+
## [0.9.0-dev.12] - 2026-06-30
|
|
26
|
+
|
|
27
|
+
### Fixed
|
|
28
|
+
|
|
29
|
+
- Runtime: custom events (`@my-event`) now work; `_event` falls back to `addEventListener` when there is no `on*` property
|
|
30
|
+
|
|
11
31
|
## [0.9.0-dev.11] - 2026-06-30
|
|
12
32
|
|
|
13
33
|
### Fixed
|
|
@@ -31,7 +51,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
|
|
|
31
51
|
|
|
32
52
|
### Added
|
|
33
53
|
|
|
34
|
-
- `@neuralfog/elemix-analyzer`
|
|
54
|
+
- `@neuralfog/elemix-analyzer` - static analysis tool for elemix
|
|
35
55
|
|
|
36
56
|
## [0.9.0-dev.7] - 2026-06-22
|
|
37
57
|
|
|
@@ -57,7 +77,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
|
|
|
57
77
|
|
|
58
78
|
- Compiler hints: `#component`/`#tag`/`#form`/`#no-shadow`/`#styles`/`#state`/`#effect` + lifecycle `#before-mount`/`#mount`/`#dispose`
|
|
59
79
|
- Reactive primitives in component `#state` (`count = 0` stays reactive)
|
|
60
|
-
- Component inheritance
|
|
80
|
+
- Component inheritance - hooks/effects chain through `super`, stylesheets merge
|
|
61
81
|
- Collections in reactive state (`Set`/`Map`/`WeakSet`/`WeakMap`), classes in state, `raw()` helper
|
|
62
82
|
- Source maps back to the original source
|
|
63
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.
|
|
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.
|
|
23
|
-
"@neuralfog/elemix-analyzer-linux-arm64": "0.9.0-dev.
|
|
24
|
-
"@neuralfog/elemix-analyzer-darwin-x64": "0.9.0-dev.
|
|
25
|
-
"@neuralfog/elemix-analyzer-darwin-arm64": "0.9.0-dev.
|
|
26
|
-
"@neuralfog/elemix-analyzer-win32-x64": "0.9.0-dev.
|
|
27
|
-
"@neuralfog/elemix-analyzer-win32-arm64": "0.9.0-dev.
|
|
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
|
}
|