@neuralfog/elemix-template-formatter 0.9.0-dev.19 → 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 +6 -0
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,12 @@ 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
|
+
|
|
11
17
|
## [0.9.0-dev.19] - 2026-07-11
|
|
12
18
|
|
|
13
19
|
### 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
|
}
|