@lessly/sdk-app 48.0.0 → 48.0.2
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/docs/recipes/federation.md +3 -1
- package/docs/rules.md +6 -4
- package/package.json +1 -1
|
@@ -28,7 +28,9 @@ There is no `./navigation` module. FED-011 — the shell's extension-menu
|
|
|
28
28
|
contract — is **RETIRED (2026-08)**: the shell never registers, preloads or
|
|
29
29
|
calls it, there is no `subscribeNavItems` (v1 or v2) and no
|
|
30
30
|
`navContractVersion` negotiation, and the menu the shell renders while your app
|
|
31
|
-
is open
|
|
31
|
+
is open comes from the toolkit manifest your App is registered under
|
|
32
|
+
(`nav.sections`, MFST-022 in the toolkit-guide) — your App code does not ship
|
|
33
|
+
it.
|
|
32
34
|
|
|
33
35
|
Still mapping the expose is inert, not an error — you just ship a chunk nobody
|
|
34
36
|
fetches. If your app has one, the cleanup is: delete
|
package/docs/rules.md
CHANGED
|
@@ -51,10 +51,12 @@ artifacts (FED-007).
|
|
|
51
51
|
|
|
52
52
|
`./App` is the **only** module an App exposes. There is no `./navigation`
|
|
53
53
|
contract: the shell no longer loads such a module, there is no
|
|
54
|
-
`subscribeNavItems` and no `navContractVersion` negotiation, and the
|
|
55
|
-
|
|
56
|
-
(
|
|
57
|
-
|
|
54
|
+
`subscribeNavItems` and no `navContractVersion` negotiation, and the menu the
|
|
55
|
+
shell renders comes from the toolkit manifest your App is registered under
|
|
56
|
+
(`nav.sections`, MFST-022 in the toolkit-guide) — your App code does not ship
|
|
57
|
+
it. FED-011 is **RETIRED (2026-08)**. Still mapping the expose is inert rather
|
|
58
|
+
than an error — it just ships a chunk nobody fetches — but a new App MUST NOT
|
|
59
|
+
add it, and an existing
|
|
58
60
|
one SHOULD delete `src/federation/navigation.ts`, drop the expose, and move
|
|
59
61
|
whatever that module fed the menu (environment lists, tool groups, badges,
|
|
60
62
|
status dots, a settings gear) into its own pages under `./App`'s relative
|