@terpjs/eslint-boundaries 0.16.0 → 0.18.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@terpjs/eslint-boundaries",
3
- "version": "0.16.0",
3
+ "version": "0.18.0",
4
4
  "type": "module",
5
5
  "description": "Terp frontend boundary rules (as data) + the ESLint adapter: no cross-module imports, no package internals, design-token-only styling (no style/className/module stylesheets), token-styled components for raw HTML tags, router-only in-app links, generated-client-only, and browser XSS/navigation sink bans. Strict-only (no modes); governed opt-outs via terp-allow markers + the escape-hatch budget ratchet (terp-boundaries-budget).",
6
6
  "main": "./src/index.js",
@@ -25,7 +25,7 @@
25
25
  "typescript-eslint": "^8.20.0"
26
26
  },
27
27
  "devDependencies": {
28
- "@terpjs/spec": "0.29.1",
28
+ "@terpjs/spec": "0.31.0",
29
29
  "eslint": "^10.8.0",
30
30
  "vitest": "^4.1.9"
31
31
  },
package/src/layouts.js CHANGED
@@ -98,6 +98,7 @@ export const LAYOUT_CONTRACTS = {
98
98
  DetailPage: {
99
99
  components: {
100
100
  DetailList: "detail-list",
101
+ DetailListGroup: "detail-list-group",
101
102
  Stack: "stack",
102
103
  Tabs: "tabs",
103
104
  ModuleNav: "module-nav",
package/src/spec.js CHANGED
@@ -16,7 +16,7 @@
16
16
  * NOT by this package's own suite, which certification runs against candidate spec releases
17
17
  * whose version is allowed to be newer).
18
18
  */
19
- export const SPEC_VERSION = "0.29.1";
19
+ export const SPEC_VERSION = "0.31.0";
20
20
 
21
21
  export const BOUNDARY_SPEC = {
22
22
  /** Every app-authored TypeScript source file whose user-facing copy must be cataloged. */