@neuralfog/elemix-template-formatter 0.9.0-dev.18 → 0.9.0-dev.20
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 +18 -0
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/) when it s
|
|
|
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.20] - 2026-07-11
|
|
12
|
+
|
|
13
|
+
### Fixed
|
|
14
|
+
|
|
15
|
+
- Storybook: `elemixDecorator` no longer pre-mounts the story into `#storybook-root`; it renders into a detached host that Storybook mounts itself. Under the Vitest runner the canvas is a per-test element, so the old pre-mount left the component connected to the wrong tree and a subsequent move disconnected it - tearing down its reactive scopes, so interactions stopped updating the DOM
|
|
16
|
+
|
|
17
|
+
## [0.9.0-dev.19] - 2026-07-11
|
|
18
|
+
|
|
19
|
+
### Added
|
|
20
|
+
|
|
21
|
+
- New `@neuralfog/elemix-testing-library`: shadow-piercing queries (`/query`), real DOM events (`/events`), and `expect`/`waitFor` assertions
|
|
22
|
+
|
|
23
|
+
### Changed
|
|
24
|
+
|
|
25
|
+
- Compiler conformance stories now assert with `@neuralfog/elemix-testing-library` instead of `storybook/test`
|
|
26
|
+
- Compiler conformance stories now run headless across Chromium, Firefox, and WebKit (Safari's engine)
|
|
27
|
+
- Isolated `Component` internals behind a `$$__` prefix so user code can no longer shadow them
|
|
28
|
+
|
|
11
29
|
## [0.9.0-dev.18] - 2026-07-10
|
|
12
30
|
|
|
13
31
|
### Added
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@neuralfog/elemix-template-formatter",
|
|
3
|
-
"version": "0.9.0-dev.
|
|
3
|
+
"version": "0.9.0-dev.20",
|
|
4
4
|
"description": "HTML template formatter for Elemix tpl`` literals (etf)",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "brownhounds",
|
|
@@ -19,11 +19,11 @@
|
|
|
19
19
|
"CHANGELOG.md"
|
|
20
20
|
],
|
|
21
21
|
"optionalDependencies": {
|
|
22
|
-
"@neuralfog/elemix-template-formatter-linux-x64": "0.9.0-dev.
|
|
23
|
-
"@neuralfog/elemix-template-formatter-linux-arm64": "0.9.0-dev.
|
|
24
|
-
"@neuralfog/elemix-template-formatter-darwin-x64": "0.9.0-dev.
|
|
25
|
-
"@neuralfog/elemix-template-formatter-darwin-arm64": "0.9.0-dev.
|
|
26
|
-
"@neuralfog/elemix-template-formatter-win32-x64": "0.9.0-dev.
|
|
27
|
-
"@neuralfog/elemix-template-formatter-win32-arm64": "0.9.0-dev.
|
|
22
|
+
"@neuralfog/elemix-template-formatter-linux-x64": "0.9.0-dev.20",
|
|
23
|
+
"@neuralfog/elemix-template-formatter-linux-arm64": "0.9.0-dev.20",
|
|
24
|
+
"@neuralfog/elemix-template-formatter-darwin-x64": "0.9.0-dev.20",
|
|
25
|
+
"@neuralfog/elemix-template-formatter-darwin-arm64": "0.9.0-dev.20",
|
|
26
|
+
"@neuralfog/elemix-template-formatter-win32-x64": "0.9.0-dev.20",
|
|
27
|
+
"@neuralfog/elemix-template-formatter-win32-arm64": "0.9.0-dev.20"
|
|
28
28
|
}
|
|
29
29
|
}
|