@raclettejs/types 0.1.41 → 0.1.42
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 +5 -26
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -7,37 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
-
## [0.1.
|
|
10
|
+
## [0.1.42] - 2026-07-08 <a href="https://gitlab.com/raclettejs/core-dev/-/compare/v0.1.41...v0.1.42" target="_blank" rel="noopener"><b>Overview of all changes</b></a>
|
|
11
11
|
|
|
12
12
|
|
|
13
13
|
### Patch Changes
|
|
14
14
|
|
|
15
|
-
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
- Add `services.cache.db` (shared default) and `services.cache.dbs` (`app`, `workbench`, `core`) to `raclette.config.js`; workbench reads cache settings from the starting app via `RACLETTE_APP_PATH`.
|
|
19
|
-
- Add `cacheUrl` helpers and Docker Compose `CACHE_URL` generation with correct DB suffix resolution; `RACLETTE_CACHE_URL` remains a full override.
|
|
20
|
-
- Default all stacks to DB `0` so app and workbench share the same Valkey namespace unless configured otherwise.
|
|
21
|
-
- Remove workbench's hardcoded `services.cache.db: 1`.
|
|
22
|
-
|
|
23
|
-
**Frontend orchestrator**
|
|
24
|
-
- Gate global page loading on socket bootstrap plus page widget slot readiness (`useAppLoadingCoordinator`); remove the router `afterEach` loading timeout.
|
|
25
|
-
- Track widget readiness at slot-container level; inject `onAllWidgetsReady` via `wrapWidgetWithLifecycle`.
|
|
26
|
-
- Show modal loading overlays until modal composition slots are ready (`trackReadiness` / `revealWhenReady`).
|
|
27
|
-
- Render `ErrorWidgetState` for failed widgets without blocking page or modal loading.
|
|
28
|
-
- Reverse `interactionLinks` `sortOrder` semantics — higher values appear first.
|
|
29
|
-
|
|
30
|
-
**BaseDataTable**
|
|
31
|
-
- Forward `#group-header` slot with `selectionActive`; add `BaseDataTableGroupSelectCheckbox` for custom group headers.
|
|
32
|
-
- Fix scoped slot content detection when probing for slot content.
|
|
33
|
-
|
|
34
|
-
**Workbench**
|
|
35
|
-
- Localize cache list TTL labels and truncation notices (en, de, sk).
|
|
36
|
-
- Move Cache interaction link to footer navigation.
|
|
15
|
+
- fix: frontend - route guards now properly reset slotProps
|
|
16
|
+
- Updated dependencies
|
|
17
|
+
- @raclettejs/core@0.1.42
|
|
37
18
|
|
|
38
|
-
|
|
39
|
-
- Document `services.cache` configuration, DB resolution order, and examples.
|
|
40
|
-
- Add BaseDataTable FAQ, widget loading behavior guide, and interactionLinks `sortOrder` notes.
|
|
19
|
+
## [0.1.41] - 2026-07-07 <a href="https://gitlab.com/raclettejs/core-dev/-/compare/v0.1.40...v0.1.41" target="_blank" rel="noopener"><b>Overview of all changes</b></a>
|
|
41
20
|
|
|
42
21
|
- Updated dependencies
|
|
43
22
|
- @raclettejs/core@0.1.41
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@raclettejs/types",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.42",
|
|
4
4
|
"description": "Type definitions for the raclette framework",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"repository": "https://gitlab.com/raclettejs/types",
|
|
@@ -21,11 +21,11 @@
|
|
|
21
21
|
"typescript": "5.9.3"
|
|
22
22
|
},
|
|
23
23
|
"peerDependencies": {
|
|
24
|
-
"@raclettejs/core": "0.1.
|
|
24
|
+
"@raclettejs/core": "0.1.42"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
27
|
"@emnapi/core": "1.9.2",
|
|
28
28
|
"@emnapi/runtime": "1.9.2",
|
|
29
|
-
"@raclettejs/core": "0.1.
|
|
29
|
+
"@raclettejs/core": "0.1.42"
|
|
30
30
|
}
|
|
31
31
|
}
|