@raclettejs/types 0.1.40 → 0.1.41

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 +35 -1
  2. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -7,8 +7,42 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
- ## [0.1.40] - 2026-06-30 <a href="https://gitlab.com/raclettejs/core-dev/-/compare/v0.1.39...v0.1.40" target="_blank" rel="noopener"><b>Overview of all changes</b></a>
10
+ ## [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>
11
+
12
+
13
+ ### Patch Changes
14
+
15
+ - Share Valkey default DB across app, workbench, and core containers, with per-role overrides and improved widget loading coordination.
16
+
17
+ **Cache / Valkey**
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.
11
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.
37
+
38
+ **Docs**
39
+ - Document `services.cache` configuration, DB resolution order, and examples.
40
+ - Add BaseDataTable FAQ, widget loading behavior guide, and interactionLinks `sortOrder` notes.
41
+
42
+ - Updated dependencies
43
+ - @raclettejs/core@0.1.41
44
+
45
+ ## [0.1.40] - 2026-06-30 <a href="https://gitlab.com/raclettejs/core-dev/-/compare/v0.1.39...v0.1.40" target="_blank" rel="noopener"><b>Overview of all changes</b></a>
12
46
 
13
47
  ### Patch Changes
14
48
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@raclettejs/types",
3
- "version": "0.1.40",
3
+ "version": "0.1.41",
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.40"
24
+ "@raclettejs/core": "0.1.41"
25
25
  },
26
26
  "devDependencies": {
27
27
  "@emnapi/core": "1.9.2",
28
28
  "@emnapi/runtime": "1.9.2",
29
- "@raclettejs/core": "0.1.40"
29
+ "@raclettejs/core": "0.1.41"
30
30
  }
31
31
  }