@ponchia/ui 0.6.3 → 0.6.5
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 +53 -0
- package/README.md +7 -7
- package/behaviors/glyph.d.ts +7 -0
- package/behaviors/glyph.d.ts.map +1 -1
- package/behaviors/glyph.js +58 -4
- package/behaviors/index.d.ts +2 -0
- package/behaviors/index.d.ts.map +1 -1
- package/behaviors/index.js +2 -0
- package/behaviors/sources.d.ts +28 -0
- package/behaviors/sources.d.ts.map +1 -0
- package/behaviors/sources.js +158 -0
- package/classes/classes.json +210 -4
- package/classes/index.d.ts +75 -1
- package/classes/index.js +95 -1
- package/css/dots.css +210 -3
- package/css/report.css +359 -7
- package/css/skins.css +9 -0
- package/css/sources.css +18 -0
- package/css/spark.css +14 -0
- package/css/table.css +7 -1
- package/css/tokens.css +8 -1
- package/dist/bronto.css +1 -1
- package/dist/css/dots.css +1 -1
- package/dist/css/report.css +1 -1
- package/dist/css/skins.css +1 -1
- package/dist/css/sources.css +1 -1
- package/dist/css/spark.css +1 -1
- package/dist/css/table.css +1 -1
- package/dist/css/tokens.css +1 -1
- package/docs/dots.md +146 -0
- package/docs/frontier-primitives.md +262 -0
- package/docs/glyphs.md +114 -0
- package/docs/package-contract.md +263 -0
- package/docs/reference.md +115 -1
- package/docs/reporting.md +296 -16
- package/docs/sources.md +32 -0
- package/docs/stability.md +6 -3
- package/glyphs/glyphs.d.ts +61 -0
- package/glyphs/glyphs.js +593 -30
- package/llms.txt +79 -25
- package/package.json +13 -3
- package/qwik/index.d.ts +1 -0
- package/qwik/index.d.ts.map +1 -1
- package/qwik/index.js +5 -0
- package/react/index.d.ts +1 -0
- package/react/index.d.ts.map +1 -1
- package/react/index.js +3 -0
- package/solid/index.d.ts +2 -0
- package/solid/index.d.ts.map +1 -1
- package/solid/index.js +3 -0
- package/tokens/skins.js +22 -9
|
@@ -0,0 +1,263 @@
|
|
|
1
|
+
<!-- @ponchia/ui - GENERATED from package.json by scripts/gen-package-contract.mjs.
|
|
2
|
+
Do not edit by hand; run `npm run package-contract:build`.
|
|
3
|
+
Drift-checked in CI through check:fresh. -->
|
|
4
|
+
|
|
5
|
+
# Package Contract
|
|
6
|
+
|
|
7
|
+
This is the manifest-facing contract for `@ponchia/ui`: every exported
|
|
8
|
+
subpath, every `files` allowlist entry, and the committed generated-artifact
|
|
9
|
+
pipeline. It complements [stability.md](./stability.md), which defines the
|
|
10
|
+
semantic versioning contract for the surfaces listed here.
|
|
11
|
+
|
|
12
|
+
## Contract Summary
|
|
13
|
+
|
|
14
|
+
| Surface group | Stability | Contract |
|
|
15
|
+
| --- | --- | --- |
|
|
16
|
+
| CSS root and `dist/bronto.css` | Stable | CSS-only default bundle. CSS side-effect imports are supported in CSS-aware bundlers; Node/runtime JS root imports are not. |
|
|
17
|
+
| CSS leaves | Stable additive | Direct leaves are generated as layered `dist/css/*.css` exports; raw unlayered source leaves are explicit escape hatches under `./css/unlayered/*`. |
|
|
18
|
+
| JS subpaths | Stable | ESM-only public subpaths. Runtime behavior is SSR-safe and dependency-free unless a framework binding declares an optional peer. |
|
|
19
|
+
| Machine-readable data | Stable additive | JSON/data exports are for non-JS hosts, validators, renderers, and offline agents. Additive fields are allowed within a compatible minor. |
|
|
20
|
+
| Shipped docs | Stable paths | Curated Markdown/text docs ship inside the npm tarball for offline readers. Generated docs are regenerated and drift-checked. |
|
|
21
|
+
| Fonts | Stable path pattern | Doto assets ship under `fonts/*` with their OFL license. |
|
|
22
|
+
| Repo tooling, demos, tests, examples, workflows | Internal | Useful for development and learning, but not shipped runtime API unless a path is explicitly exported below. |
|
|
23
|
+
|
|
24
|
+
## Export Matrix
|
|
25
|
+
|
|
26
|
+
| Export | Target | Group | Stability | Contract |
|
|
27
|
+
| --- | --- | --- | --- | --- |
|
|
28
|
+
| `.` | style: `./dist/bronto.css`<br>default: `./dist/bronto.css` | CSS root bundle | Stable | CSS-only package root. Supported as a CSS side-effect import in CSS-aware bundlers; not a Node/runtime JS entrypoint. |
|
|
29
|
+
| `./dist/bronto.css` | `./dist/bronto.css` | Flattened CSS bundle | Stable path | The prebuilt default stylesheet. Generated from css/core.css and byte-checked by check:dist. |
|
|
30
|
+
| `./css` | `./css/core.css` | CSS source fan-out | Stable path | Bundler entrypoint for css/core.css. It preserves source @import boundaries and layer behavior. |
|
|
31
|
+
| `./css/core.css` | `./css/core.css` | CSS source fan-out | Stable path | Source fan-out file for consumers that want the authored leaf graph through a bundler. |
|
|
32
|
+
| `./css/tokens.css` | `./dist/css/tokens.css` | Bundled layered CSS leaf | Stable additive | Generated layered direct-import leaf. Also included in dist/bronto.css. |
|
|
33
|
+
| `./css/fonts.css` | `./dist/css/fonts.css` | Bundled layered CSS leaf | Stable additive | Generated layered direct-import leaf. Also included in dist/bronto.css. |
|
|
34
|
+
| `./css/base.css` | `./dist/css/base.css` | Bundled layered CSS leaf | Stable additive | Generated layered direct-import leaf. Also included in dist/bronto.css. |
|
|
35
|
+
| `./css/motion.css` | `./dist/css/motion.css` | Bundled layered CSS leaf | Stable additive | Generated layered direct-import leaf. Also included in dist/bronto.css. |
|
|
36
|
+
| `./css/dots.css` | `./dist/css/dots.css` | Bundled layered CSS leaf | Stable additive | Generated layered direct-import leaf. Also included in dist/bronto.css. |
|
|
37
|
+
| `./css/navigation.css` | `./dist/css/navigation.css` | Bundled layered CSS leaf | Stable additive | Generated layered direct-import leaf. Also included in dist/bronto.css. |
|
|
38
|
+
| `./css/site.css` | `./dist/css/site.css` | Bundled layered CSS leaf | Stable additive | Generated layered direct-import leaf. Also included in dist/bronto.css. |
|
|
39
|
+
| `./css/content.css` | `./dist/css/content.css` | Bundled layered CSS leaf | Stable additive | Generated layered direct-import leaf. Also included in dist/bronto.css. |
|
|
40
|
+
| `./css/primitives.css` | `./dist/css/primitives.css` | Bundled layered CSS leaf | Stable additive | Generated layered direct-import leaf. Also included in dist/bronto.css. |
|
|
41
|
+
| `./css/forms.css` | `./dist/css/forms.css` | Bundled layered CSS leaf | Stable additive | Generated layered direct-import leaf. Also included in dist/bronto.css. |
|
|
42
|
+
| `./css/feedback.css` | `./dist/css/feedback.css` | Bundled layered CSS leaf | Stable additive | Generated layered direct-import leaf. Also included in dist/bronto.css. |
|
|
43
|
+
| `./css/overlay.css` | `./dist/css/overlay.css` | Bundled layered CSS leaf | Stable additive | Generated layered direct-import leaf. Also included in dist/bronto.css. |
|
|
44
|
+
| `./css/disclosure.css` | `./dist/css/disclosure.css` | Bundled layered CSS leaf | Stable additive | Generated layered direct-import leaf. Also included in dist/bronto.css. |
|
|
45
|
+
| `./css/table.css` | `./dist/css/table.css` | Bundled layered CSS leaf | Stable additive | Generated layered direct-import leaf. Also included in dist/bronto.css. |
|
|
46
|
+
| `./css/app.css` | `./dist/css/app.css` | Bundled layered CSS leaf | Stable additive | Generated layered direct-import leaf. Also included in dist/bronto.css. |
|
|
47
|
+
| `./css/skins.css` | `./dist/css/skins.css` | Opt-in layered CSS leaf | Stable additive | Generated layered direct-import leaf. Opt-in and not included in dist/bronto.css. |
|
|
48
|
+
| `./css/dataviz.css` | `./dist/css/dataviz.css` | Opt-in layered CSS leaf | Stable additive | Generated layered direct-import leaf. Opt-in and not included in dist/bronto.css. |
|
|
49
|
+
| `./css/report.css` | `./dist/css/report.css` | Opt-in layered CSS leaf | Stable additive | Generated layered direct-import leaf. Opt-in and not included in dist/bronto.css. |
|
|
50
|
+
| `./css/annotations.css` | `./dist/css/annotations.css` | Opt-in layered CSS leaf | Stable additive | Generated layered direct-import leaf. Opt-in and not included in dist/bronto.css. |
|
|
51
|
+
| `./css/legend.css` | `./dist/css/legend.css` | Opt-in layered CSS leaf | Stable additive | Generated layered direct-import leaf. Opt-in and not included in dist/bronto.css. |
|
|
52
|
+
| `./css/marks.css` | `./dist/css/marks.css` | Opt-in layered CSS leaf | Stable additive | Generated layered direct-import leaf. Opt-in and not included in dist/bronto.css. |
|
|
53
|
+
| `./css/connectors.css` | `./dist/css/connectors.css` | Opt-in layered CSS leaf | Stable additive | Generated layered direct-import leaf. Opt-in and not included in dist/bronto.css. |
|
|
54
|
+
| `./css/spotlight.css` | `./dist/css/spotlight.css` | Opt-in layered CSS leaf | Stable additive | Generated layered direct-import leaf. Opt-in and not included in dist/bronto.css. |
|
|
55
|
+
| `./css/crosshair.css` | `./dist/css/crosshair.css` | Opt-in layered CSS leaf | Stable additive | Generated layered direct-import leaf. Opt-in and not included in dist/bronto.css. |
|
|
56
|
+
| `./css/selection.css` | `./dist/css/selection.css` | Opt-in layered CSS leaf | Stable additive | Generated layered direct-import leaf. Opt-in and not included in dist/bronto.css. |
|
|
57
|
+
| `./css/sources.css` | `./dist/css/sources.css` | Opt-in layered CSS leaf | Stable additive | Generated layered direct-import leaf. Opt-in and not included in dist/bronto.css. |
|
|
58
|
+
| `./css/diff.css` | `./dist/css/diff.css` | Opt-in layered CSS leaf | Stable additive | Generated layered direct-import leaf. Opt-in and not included in dist/bronto.css. |
|
|
59
|
+
| `./css/code.css` | `./dist/css/code.css` | Opt-in layered CSS leaf | Stable additive | Generated layered direct-import leaf. Opt-in and not included in dist/bronto.css. |
|
|
60
|
+
| `./css/spark.css` | `./dist/css/spark.css` | Opt-in layered CSS leaf | Stable additive | Generated layered direct-import leaf. Opt-in and not included in dist/bronto.css. |
|
|
61
|
+
| `./css/sidenote.css` | `./dist/css/sidenote.css` | Opt-in layered CSS leaf | Stable additive | Generated layered direct-import leaf. Opt-in and not included in dist/bronto.css. |
|
|
62
|
+
| `./css/textref.css` | `./dist/css/textref.css` | Opt-in layered CSS leaf | Stable additive | Generated layered direct-import leaf. Opt-in and not included in dist/bronto.css. |
|
|
63
|
+
| `./css/bullet.css` | `./dist/css/bullet.css` | Opt-in layered CSS leaf | Stable additive | Generated layered direct-import leaf. Opt-in and not included in dist/bronto.css. |
|
|
64
|
+
| `./css/term.css` | `./dist/css/term.css` | Opt-in layered CSS leaf | Stable additive | Generated layered direct-import leaf. Opt-in and not included in dist/bronto.css. |
|
|
65
|
+
| `./css/toc.css` | `./dist/css/toc.css` | Opt-in layered CSS leaf | Stable additive | Generated layered direct-import leaf. Opt-in and not included in dist/bronto.css. |
|
|
66
|
+
| `./css/tree.css` | `./dist/css/tree.css` | Opt-in layered CSS leaf | Stable additive | Generated layered direct-import leaf. Opt-in and not included in dist/bronto.css. |
|
|
67
|
+
| `./css/state.css` | `./dist/css/state.css` | Opt-in layered CSS leaf | Stable additive | Generated layered direct-import leaf. Opt-in and not included in dist/bronto.css. |
|
|
68
|
+
| `./css/generated.css` | `./dist/css/generated.css` | Opt-in layered CSS leaf | Stable additive | Generated layered direct-import leaf. Opt-in and not included in dist/bronto.css. |
|
|
69
|
+
| `./css/workbench.css` | `./dist/css/workbench.css` | Opt-in layered CSS leaf | Stable additive | Generated layered direct-import leaf. Opt-in and not included in dist/bronto.css. |
|
|
70
|
+
| `./css/command.css` | `./dist/css/command.css` | Opt-in layered CSS leaf | Stable additive | Generated layered direct-import leaf. Opt-in and not included in dist/bronto.css. |
|
|
71
|
+
| `./css/analytical.css` | `./dist/css/analytical.css` | Opt-in CSS roll-up | Stable additive | Generated layered roll-up of the analytical leaves. Not included in the default bundle. |
|
|
72
|
+
| `./css/unlayered/tokens.css` | `./css/tokens.css` | Unlayered CSS leaf | Stable path | Raw authored CSS leaf for consumers that deliberately opt out of @layer bronto on that leaf. |
|
|
73
|
+
| `./css/unlayered/fonts.css` | `./css/fonts.css` | Unlayered CSS leaf | Stable path | Raw authored CSS leaf for consumers that deliberately opt out of @layer bronto on that leaf. |
|
|
74
|
+
| `./css/unlayered/base.css` | `./css/base.css` | Unlayered CSS leaf | Stable path | Raw authored CSS leaf for consumers that deliberately opt out of @layer bronto on that leaf. |
|
|
75
|
+
| `./css/unlayered/motion.css` | `./css/motion.css` | Unlayered CSS leaf | Stable path | Raw authored CSS leaf for consumers that deliberately opt out of @layer bronto on that leaf. |
|
|
76
|
+
| `./css/unlayered/dots.css` | `./css/dots.css` | Unlayered CSS leaf | Stable path | Raw authored CSS leaf for consumers that deliberately opt out of @layer bronto on that leaf. |
|
|
77
|
+
| `./css/unlayered/navigation.css` | `./css/navigation.css` | Unlayered CSS leaf | Stable path | Raw authored CSS leaf for consumers that deliberately opt out of @layer bronto on that leaf. |
|
|
78
|
+
| `./css/unlayered/site.css` | `./css/site.css` | Unlayered CSS leaf | Stable path | Raw authored CSS leaf for consumers that deliberately opt out of @layer bronto on that leaf. |
|
|
79
|
+
| `./css/unlayered/content.css` | `./css/content.css` | Unlayered CSS leaf | Stable path | Raw authored CSS leaf for consumers that deliberately opt out of @layer bronto on that leaf. |
|
|
80
|
+
| `./css/unlayered/primitives.css` | `./css/primitives.css` | Unlayered CSS leaf | Stable path | Raw authored CSS leaf for consumers that deliberately opt out of @layer bronto on that leaf. |
|
|
81
|
+
| `./css/unlayered/forms.css` | `./css/forms.css` | Unlayered CSS leaf | Stable path | Raw authored CSS leaf for consumers that deliberately opt out of @layer bronto on that leaf. |
|
|
82
|
+
| `./css/unlayered/feedback.css` | `./css/feedback.css` | Unlayered CSS leaf | Stable path | Raw authored CSS leaf for consumers that deliberately opt out of @layer bronto on that leaf. |
|
|
83
|
+
| `./css/unlayered/overlay.css` | `./css/overlay.css` | Unlayered CSS leaf | Stable path | Raw authored CSS leaf for consumers that deliberately opt out of @layer bronto on that leaf. |
|
|
84
|
+
| `./css/unlayered/disclosure.css` | `./css/disclosure.css` | Unlayered CSS leaf | Stable path | Raw authored CSS leaf for consumers that deliberately opt out of @layer bronto on that leaf. |
|
|
85
|
+
| `./css/unlayered/table.css` | `./css/table.css` | Unlayered CSS leaf | Stable path | Raw authored CSS leaf for consumers that deliberately opt out of @layer bronto on that leaf. |
|
|
86
|
+
| `./css/unlayered/app.css` | `./css/app.css` | Unlayered CSS leaf | Stable path | Raw authored CSS leaf for consumers that deliberately opt out of @layer bronto on that leaf. |
|
|
87
|
+
| `./css/unlayered/skins.css` | `./css/skins.css` | Unlayered CSS leaf | Stable path | Raw authored CSS leaf for consumers that deliberately opt out of @layer bronto on that leaf. |
|
|
88
|
+
| `./css/unlayered/dataviz.css` | `./css/dataviz.css` | Unlayered CSS leaf | Stable path | Raw authored CSS leaf for consumers that deliberately opt out of @layer bronto on that leaf. |
|
|
89
|
+
| `./css/unlayered/report.css` | `./css/report.css` | Unlayered CSS leaf | Stable path | Raw authored CSS leaf for consumers that deliberately opt out of @layer bronto on that leaf. |
|
|
90
|
+
| `./css/unlayered/annotations.css` | `./css/annotations.css` | Unlayered CSS leaf | Stable path | Raw authored CSS leaf for consumers that deliberately opt out of @layer bronto on that leaf. |
|
|
91
|
+
| `./css/unlayered/legend.css` | `./css/legend.css` | Unlayered CSS leaf | Stable path | Raw authored CSS leaf for consumers that deliberately opt out of @layer bronto on that leaf. |
|
|
92
|
+
| `./css/unlayered/marks.css` | `./css/marks.css` | Unlayered CSS leaf | Stable path | Raw authored CSS leaf for consumers that deliberately opt out of @layer bronto on that leaf. |
|
|
93
|
+
| `./css/unlayered/connectors.css` | `./css/connectors.css` | Unlayered CSS leaf | Stable path | Raw authored CSS leaf for consumers that deliberately opt out of @layer bronto on that leaf. |
|
|
94
|
+
| `./css/unlayered/spotlight.css` | `./css/spotlight.css` | Unlayered CSS leaf | Stable path | Raw authored CSS leaf for consumers that deliberately opt out of @layer bronto on that leaf. |
|
|
95
|
+
| `./css/unlayered/crosshair.css` | `./css/crosshair.css` | Unlayered CSS leaf | Stable path | Raw authored CSS leaf for consumers that deliberately opt out of @layer bronto on that leaf. |
|
|
96
|
+
| `./css/unlayered/selection.css` | `./css/selection.css` | Unlayered CSS leaf | Stable path | Raw authored CSS leaf for consumers that deliberately opt out of @layer bronto on that leaf. |
|
|
97
|
+
| `./css/unlayered/sources.css` | `./css/sources.css` | Unlayered CSS leaf | Stable path | Raw authored CSS leaf for consumers that deliberately opt out of @layer bronto on that leaf. |
|
|
98
|
+
| `./css/unlayered/diff.css` | `./css/diff.css` | Unlayered CSS leaf | Stable path | Raw authored CSS leaf for consumers that deliberately opt out of @layer bronto on that leaf. |
|
|
99
|
+
| `./css/unlayered/code.css` | `./css/code.css` | Unlayered CSS leaf | Stable path | Raw authored CSS leaf for consumers that deliberately opt out of @layer bronto on that leaf. |
|
|
100
|
+
| `./css/unlayered/spark.css` | `./css/spark.css` | Unlayered CSS leaf | Stable path | Raw authored CSS leaf for consumers that deliberately opt out of @layer bronto on that leaf. |
|
|
101
|
+
| `./css/unlayered/sidenote.css` | `./css/sidenote.css` | Unlayered CSS leaf | Stable path | Raw authored CSS leaf for consumers that deliberately opt out of @layer bronto on that leaf. |
|
|
102
|
+
| `./css/unlayered/textref.css` | `./css/textref.css` | Unlayered CSS leaf | Stable path | Raw authored CSS leaf for consumers that deliberately opt out of @layer bronto on that leaf. |
|
|
103
|
+
| `./css/unlayered/bullet.css` | `./css/bullet.css` | Unlayered CSS leaf | Stable path | Raw authored CSS leaf for consumers that deliberately opt out of @layer bronto on that leaf. |
|
|
104
|
+
| `./css/unlayered/term.css` | `./css/term.css` | Unlayered CSS leaf | Stable path | Raw authored CSS leaf for consumers that deliberately opt out of @layer bronto on that leaf. |
|
|
105
|
+
| `./css/unlayered/toc.css` | `./css/toc.css` | Unlayered CSS leaf | Stable path | Raw authored CSS leaf for consumers that deliberately opt out of @layer bronto on that leaf. |
|
|
106
|
+
| `./css/unlayered/tree.css` | `./css/tree.css` | Unlayered CSS leaf | Stable path | Raw authored CSS leaf for consumers that deliberately opt out of @layer bronto on that leaf. |
|
|
107
|
+
| `./css/unlayered/state.css` | `./css/state.css` | Unlayered CSS leaf | Stable path | Raw authored CSS leaf for consumers that deliberately opt out of @layer bronto on that leaf. |
|
|
108
|
+
| `./css/unlayered/generated.css` | `./css/generated.css` | Unlayered CSS leaf | Stable path | Raw authored CSS leaf for consumers that deliberately opt out of @layer bronto on that leaf. |
|
|
109
|
+
| `./css/unlayered/workbench.css` | `./css/workbench.css` | Unlayered CSS leaf | Stable path | Raw authored CSS leaf for consumers that deliberately opt out of @layer bronto on that leaf. |
|
|
110
|
+
| `./css/unlayered/command.css` | `./css/command.css` | Unlayered CSS leaf | Stable path | Raw authored CSS leaf for consumers that deliberately opt out of @layer bronto on that leaf. |
|
|
111
|
+
| `./tokens` | types: `./tokens/index.d.ts`<br>default: `./tokens/index.js` | Design tokens JS | Stable names/roles | ESM token registry and helpers. Token names and documented roles are public; exact values may tune before 1.0. |
|
|
112
|
+
| `./vscode.css-custom-data.json` | `./classes/vscode.css-custom-data.json` | Machine-readable data | Stable additive | JSON package data for non-JS/tooling consumers. Shape is public unless the paired doc marks a field internal. |
|
|
113
|
+
| `./tokens.json` | `./tokens/index.json` | Machine-readable data | Stable additive | JSON package data for non-JS/tooling consumers. Shape is public unless the paired doc marks a field internal. |
|
|
114
|
+
| `./tokens.dtcg.json` | `./tokens/tokens.dtcg.json` | Machine-readable data | Stable additive | JSON package data for non-JS/tooling consumers. Shape is public unless the paired doc marks a field internal. |
|
|
115
|
+
| `./tokens/resolved.json` | `./tokens/resolved.json` | Machine-readable data | Stable additive | JSON package data for non-JS/tooling consumers. Shape is public unless the paired doc marks a field internal. |
|
|
116
|
+
| `./shiki/nothing.json` | `./shiki/nothing.json` | Machine-readable data | Stable additive | JSON package data for non-JS/tooling consumers. Shape is public unless the paired doc marks a field internal. |
|
|
117
|
+
| `./llms.txt` | `./llms.txt` | Agent entrypoint | Stable path | Plain-text orientation file shipped for offline agents and tooling. |
|
|
118
|
+
| `./docs/architecture.md` | `./docs/architecture.md` | Shipped documentation | Stable path | Markdown documentation shipped in the tarball. Paths are public reading assets within a compatible minor. |
|
|
119
|
+
| `./docs/reference.md` | `./docs/reference.md` | Shipped documentation | Stable path | Markdown documentation shipped in the tarball. Paths are public reading assets within a compatible minor. |
|
|
120
|
+
| `./docs/theming.md` | `./docs/theming.md` | Shipped documentation | Stable path | Markdown documentation shipped in the tarball. Paths are public reading assets within a compatible minor. |
|
|
121
|
+
| `./docs/contrast.md` | `./docs/contrast.md` | Shipped documentation | Stable path | Markdown documentation shipped in the tarball. Paths are public reading assets within a compatible minor. |
|
|
122
|
+
| `./docs/stability.md` | `./docs/stability.md` | Shipped documentation | Stable path | Markdown documentation shipped in the tarball. Paths are public reading assets within a compatible minor. |
|
|
123
|
+
| `./docs/package-contract.md` | `./docs/package-contract.md` | Shipped documentation | Stable path | Markdown documentation shipped in the tarball. Paths are public reading assets within a compatible minor. |
|
|
124
|
+
| `./docs/usage.md` | `./docs/usage.md` | Shipped documentation | Stable path | Markdown documentation shipped in the tarball. Paths are public reading assets within a compatible minor. |
|
|
125
|
+
| `./docs/frontier-primitives.md` | `./docs/frontier-primitives.md` | Shipped documentation | Stable path | Markdown documentation shipped in the tarball. Paths are public reading assets within a compatible minor. |
|
|
126
|
+
| `./docs/reporting.md` | `./docs/reporting.md` | Shipped documentation | Stable path | Markdown documentation shipped in the tarball. Paths are public reading assets within a compatible minor. |
|
|
127
|
+
| `./docs/dots.md` | `./docs/dots.md` | Shipped documentation | Stable path | Markdown documentation shipped in the tarball. Paths are public reading assets within a compatible minor. |
|
|
128
|
+
| `./docs/glyphs.md` | `./docs/glyphs.md` | Shipped documentation | Stable path | Markdown documentation shipped in the tarball. Paths are public reading assets within a compatible minor. |
|
|
129
|
+
| `./docs/mermaid.md` | `./docs/mermaid.md` | Shipped documentation | Stable path | Markdown documentation shipped in the tarball. Paths are public reading assets within a compatible minor. |
|
|
130
|
+
| `./docs/d2.md` | `./docs/d2.md` | Shipped documentation | Stable path | Markdown documentation shipped in the tarball. Paths are public reading assets within a compatible minor. |
|
|
131
|
+
| `./docs/vega.md` | `./docs/vega.md` | Shipped documentation | Stable path | Markdown documentation shipped in the tarball. Paths are public reading assets within a compatible minor. |
|
|
132
|
+
| `./docs/annotations.md` | `./docs/annotations.md` | Shipped documentation | Stable path | Markdown documentation shipped in the tarball. Paths are public reading assets within a compatible minor. |
|
|
133
|
+
| `./docs/legends.md` | `./docs/legends.md` | Shipped documentation | Stable path | Markdown documentation shipped in the tarball. Paths are public reading assets within a compatible minor. |
|
|
134
|
+
| `./docs/marks.md` | `./docs/marks.md` | Shipped documentation | Stable path | Markdown documentation shipped in the tarball. Paths are public reading assets within a compatible minor. |
|
|
135
|
+
| `./docs/connectors.md` | `./docs/connectors.md` | Shipped documentation | Stable path | Markdown documentation shipped in the tarball. Paths are public reading assets within a compatible minor. |
|
|
136
|
+
| `./docs/spotlight.md` | `./docs/spotlight.md` | Shipped documentation | Stable path | Markdown documentation shipped in the tarball. Paths are public reading assets within a compatible minor. |
|
|
137
|
+
| `./docs/crosshair.md` | `./docs/crosshair.md` | Shipped documentation | Stable path | Markdown documentation shipped in the tarball. Paths are public reading assets within a compatible minor. |
|
|
138
|
+
| `./docs/selection.md` | `./docs/selection.md` | Shipped documentation | Stable path | Markdown documentation shipped in the tarball. Paths are public reading assets within a compatible minor. |
|
|
139
|
+
| `./docs/sources.md` | `./docs/sources.md` | Shipped documentation | Stable path | Markdown documentation shipped in the tarball. Paths are public reading assets within a compatible minor. |
|
|
140
|
+
| `./docs/diff.md` | `./docs/diff.md` | Shipped documentation | Stable path | Markdown documentation shipped in the tarball. Paths are public reading assets within a compatible minor. |
|
|
141
|
+
| `./docs/code.md` | `./docs/code.md` | Shipped documentation | Stable path | Markdown documentation shipped in the tarball. Paths are public reading assets within a compatible minor. |
|
|
142
|
+
| `./docs/spark.md` | `./docs/spark.md` | Shipped documentation | Stable path | Markdown documentation shipped in the tarball. Paths are public reading assets within a compatible minor. |
|
|
143
|
+
| `./docs/sidenote.md` | `./docs/sidenote.md` | Shipped documentation | Stable path | Markdown documentation shipped in the tarball. Paths are public reading assets within a compatible minor. |
|
|
144
|
+
| `./docs/textref.md` | `./docs/textref.md` | Shipped documentation | Stable path | Markdown documentation shipped in the tarball. Paths are public reading assets within a compatible minor. |
|
|
145
|
+
| `./docs/bullet.md` | `./docs/bullet.md` | Shipped documentation | Stable path | Markdown documentation shipped in the tarball. Paths are public reading assets within a compatible minor. |
|
|
146
|
+
| `./docs/term.md` | `./docs/term.md` | Shipped documentation | Stable path | Markdown documentation shipped in the tarball. Paths are public reading assets within a compatible minor. |
|
|
147
|
+
| `./docs/toc.md` | `./docs/toc.md` | Shipped documentation | Stable path | Markdown documentation shipped in the tarball. Paths are public reading assets within a compatible minor. |
|
|
148
|
+
| `./docs/tree.md` | `./docs/tree.md` | Shipped documentation | Stable path | Markdown documentation shipped in the tarball. Paths are public reading assets within a compatible minor. |
|
|
149
|
+
| `./docs/state.md` | `./docs/state.md` | Shipped documentation | Stable path | Markdown documentation shipped in the tarball. Paths are public reading assets within a compatible minor. |
|
|
150
|
+
| `./docs/generated.md` | `./docs/generated.md` | Shipped documentation | Stable path | Markdown documentation shipped in the tarball. Paths are public reading assets within a compatible minor. |
|
|
151
|
+
| `./docs/workbench.md` | `./docs/workbench.md` | Shipped documentation | Stable path | Markdown documentation shipped in the tarball. Paths are public reading assets within a compatible minor. |
|
|
152
|
+
| `./docs/command.md` | `./docs/command.md` | Shipped documentation | Stable path | Markdown documentation shipped in the tarball. Paths are public reading assets within a compatible minor. |
|
|
153
|
+
| `./docs/adr/0001-color-system.md` | `./docs/adr/0001-color-system.md` | Shipped documentation | Stable path | Markdown documentation shipped in the tarball. Paths are public reading assets within a compatible minor. |
|
|
154
|
+
| `./docs/adr/0002-scope-and-2026-baseline.md` | `./docs/adr/0002-scope-and-2026-baseline.md` | Shipped documentation | Stable path | Markdown documentation shipped in the tarball. Paths are public reading assets within a compatible minor. |
|
|
155
|
+
| `./docs/adr/0003-theme-model.md` | `./docs/adr/0003-theme-model.md` | Shipped documentation | Stable path | Markdown documentation shipped in the tarball. Paths are public reading assets within a compatible minor. |
|
|
156
|
+
| `./classes` | types: `./classes/index.d.ts`<br>default: `./classes/index.js` | Class recipes JS | Stable | ESM class registry, recipes, attrs helpers, and cx joiner. The emitted class vocabulary is public. |
|
|
157
|
+
| `./classes.json` | `./classes/classes.json` | Machine-readable data | Stable additive | JSON package data for non-JS/tooling consumers. Shape is public unless the paired doc marks a field internal. |
|
|
158
|
+
| `./behaviors` | types: `./behaviors/index.d.ts`<br>default: `./behaviors/index.js` | Vanilla behavior JS | Stable | ESM, SSR-safe, cleanup-returning behavior initializers. Behavior internals are not public. |
|
|
159
|
+
| `./glyphs` | types: `./glyphs/glyphs.d.ts`<br>default: `./glyphs/glyphs.js` | Geometry/render helper JS | Stable additive | ESM helper surface. Function names, options, and data shapes are public; rendering heuristics may tune. |
|
|
160
|
+
| `./annotations` | types: `./annotations/index.d.ts`<br>default: `./annotations/index.js` | Geometry/render helper JS | Stable additive | ESM helper surface. Function names, options, and data shapes are public; rendering heuristics may tune. |
|
|
161
|
+
| `./connectors` | types: `./connectors/index.d.ts`<br>default: `./connectors/index.js` | Geometry/render helper JS | Stable additive | ESM helper surface. Function names, options, and data shapes are public; rendering heuristics may tune. |
|
|
162
|
+
| `./react` | types: `./react/index.d.ts`<br>default: `./react/index.js` | Framework binding JS | Stable thin adapter | Optional peer wrapper over vanilla behaviors. It owns lifecycle hookup, not markup or component state. |
|
|
163
|
+
| `./solid` | types: `./solid/index.d.ts`<br>default: `./solid/index.js` | Framework binding JS | Stable thin adapter | Optional peer wrapper over vanilla behaviors. It owns lifecycle hookup, not markup or component state. |
|
|
164
|
+
| `./qwik` | types: `./qwik/index.d.ts`<br>default: `./qwik/index.js` | Framework binding JS | Stable thin adapter | Optional peer wrapper over vanilla behaviors. It owns lifecycle hookup, not markup or component state. |
|
|
165
|
+
| `./skins` | types: `./tokens/skins.d.ts`<br>default: `./tokens/skins.js` | Renderer/theme helper JS | Stable additive | ESM theme data/helpers for opt-in skins, chart palettes, and external renderers. |
|
|
166
|
+
| `./charts` | types: `./tokens/charts.d.ts`<br>default: `./tokens/charts.js` | Renderer/theme helper JS | Stable additive | ESM theme data/helpers for opt-in skins, chart palettes, and external renderers. |
|
|
167
|
+
| `./charts.json` | `./tokens/charts.json` | Machine-readable data | Stable additive | JSON package data for non-JS/tooling consumers. Shape is public unless the paired doc marks a field internal. |
|
|
168
|
+
| `./mermaid` | types: `./tokens/mermaid.d.ts`<br>default: `./tokens/mermaid.js` | Renderer/theme helper JS | Stable additive | ESM theme data/helpers for opt-in skins, chart palettes, and external renderers. |
|
|
169
|
+
| `./mermaid.json` | `./tokens/mermaid.json` | Machine-readable data | Stable additive | JSON package data for non-JS/tooling consumers. Shape is public unless the paired doc marks a field internal. |
|
|
170
|
+
| `./d2` | types: `./tokens/d2.d.ts`<br>default: `./tokens/d2.js` | Renderer/theme helper JS | Stable additive | ESM theme data/helpers for opt-in skins, chart palettes, and external renderers. |
|
|
171
|
+
| `./d2.json` | `./tokens/d2.json` | Machine-readable data | Stable additive | JSON package data for non-JS/tooling consumers. Shape is public unless the paired doc marks a field internal. |
|
|
172
|
+
| `./vega` | types: `./tokens/vega.d.ts`<br>default: `./tokens/vega.js` | Renderer/theme helper JS | Stable additive | ESM theme data/helpers for opt-in skins, chart palettes, and external renderers. |
|
|
173
|
+
| `./vega.json` | `./tokens/vega.json` | Machine-readable data | Stable additive | JSON package data for non-JS/tooling consumers. Shape is public unless the paired doc marks a field internal. |
|
|
174
|
+
| `./fonts/*` | `./fonts/*` | Vendored font asset glob | Stable path pattern | Doto font files and license. Font file names are shipped assets, not JS APIs. |
|
|
175
|
+
|
|
176
|
+
## Shipped Files Allowlist
|
|
177
|
+
|
|
178
|
+
`package.json` controls the npm tarball with this `files` list. npm also
|
|
179
|
+
always includes `package.json`, `README.md`, `LICENSE`, and
|
|
180
|
+
`CHANGELOG.md`; `check:pack` verifies no dev-only path leaks.
|
|
181
|
+
|
|
182
|
+
| Path | Kind | Contract |
|
|
183
|
+
| --- | --- | --- |
|
|
184
|
+
| `css` | Source CSS directory | Public source leaves. Mostly hand-authored; generated exceptions are called out in the provenance table. |
|
|
185
|
+
| `dist` | Generated CSS directory | Prebuilt layered bundle and leaves. Never hand-edit. |
|
|
186
|
+
| `fonts` | Vendored assets | Doto woff2 files plus OFL license. |
|
|
187
|
+
| `tokens` | Mixed source/generated data | Token source plus generated JSON, declarations, and renderer theme data. |
|
|
188
|
+
| `classes` | Mixed source/generated data | Class recipe source plus generated JSON/declarations/custom-data. |
|
|
189
|
+
| `behaviors` | Authored public JS directory | ESM source shipped as-is; adjacent declarations/maps are generated. |
|
|
190
|
+
| `glyphs` | Authored public JS directory | Glyph registry/renderers shipped as JS; declarations are generated. |
|
|
191
|
+
| `annotations` | Authored public JS directory | ESM source shipped as-is; adjacent declarations/maps are generated. |
|
|
192
|
+
| `connectors` | Authored public JS directory | ESM source shipped as-is; adjacent declarations/maps are generated. |
|
|
193
|
+
| `react` | Authored public JS directory | ESM source shipped as-is; adjacent declarations/maps are generated. |
|
|
194
|
+
| `solid` | Authored public JS directory | ESM source shipped as-is; adjacent declarations/maps are generated. |
|
|
195
|
+
| `qwik` | Authored public JS directory | ESM source shipped as-is; adjacent declarations/maps are generated. |
|
|
196
|
+
| `shiki` | Theme data | Shiki theme JSON on the governed palette. |
|
|
197
|
+
| `llms.txt` | Agent entrypoint | Shipped plain-text orientation for offline LLM/agent consumers. |
|
|
198
|
+
| `CHANGELOG.md` | Release record | Shipped historical release notes. |
|
|
199
|
+
| `MIGRATIONS.json` | Migration data | Shipped rename/migration map for tooling. |
|
|
200
|
+
| `docs/architecture.md` | Shipped documentation | Curated Markdown reading asset shipped in the npm tarball. |
|
|
201
|
+
| `docs/reference.md` | Generated documentation | Committed generated doc; never hand-edit. |
|
|
202
|
+
| `docs/theming.md` | Shipped documentation | Curated Markdown reading asset shipped in the npm tarball. |
|
|
203
|
+
| `docs/contrast.md` | Shipped documentation | Curated Markdown reading asset shipped in the npm tarball. |
|
|
204
|
+
| `docs/stability.md` | Shipped documentation | Curated Markdown reading asset shipped in the npm tarball. |
|
|
205
|
+
| `docs/package-contract.md` | Generated documentation | Committed generated doc; never hand-edit. |
|
|
206
|
+
| `docs/usage.md` | Shipped documentation | Curated Markdown reading asset shipped in the npm tarball. |
|
|
207
|
+
| `docs/frontier-primitives.md` | Shipped documentation | Curated Markdown reading asset shipped in the npm tarball. |
|
|
208
|
+
| `docs/reporting.md` | Shipped documentation | Curated Markdown reading asset shipped in the npm tarball. |
|
|
209
|
+
| `docs/dots.md` | Shipped documentation | Curated Markdown reading asset shipped in the npm tarball. |
|
|
210
|
+
| `docs/glyphs.md` | Shipped documentation | Curated Markdown reading asset shipped in the npm tarball. |
|
|
211
|
+
| `docs/mermaid.md` | Shipped documentation | Curated Markdown reading asset shipped in the npm tarball. |
|
|
212
|
+
| `docs/d2.md` | Shipped documentation | Curated Markdown reading asset shipped in the npm tarball. |
|
|
213
|
+
| `docs/vega.md` | Shipped documentation | Curated Markdown reading asset shipped in the npm tarball. |
|
|
214
|
+
| `docs/annotations.md` | Shipped documentation | Curated Markdown reading asset shipped in the npm tarball. |
|
|
215
|
+
| `docs/legends.md` | Shipped documentation | Curated Markdown reading asset shipped in the npm tarball. |
|
|
216
|
+
| `docs/marks.md` | Shipped documentation | Curated Markdown reading asset shipped in the npm tarball. |
|
|
217
|
+
| `docs/connectors.md` | Shipped documentation | Curated Markdown reading asset shipped in the npm tarball. |
|
|
218
|
+
| `docs/spotlight.md` | Shipped documentation | Curated Markdown reading asset shipped in the npm tarball. |
|
|
219
|
+
| `docs/crosshair.md` | Shipped documentation | Curated Markdown reading asset shipped in the npm tarball. |
|
|
220
|
+
| `docs/selection.md` | Shipped documentation | Curated Markdown reading asset shipped in the npm tarball. |
|
|
221
|
+
| `docs/sources.md` | Shipped documentation | Curated Markdown reading asset shipped in the npm tarball. |
|
|
222
|
+
| `docs/diff.md` | Shipped documentation | Curated Markdown reading asset shipped in the npm tarball. |
|
|
223
|
+
| `docs/code.md` | Shipped documentation | Curated Markdown reading asset shipped in the npm tarball. |
|
|
224
|
+
| `docs/spark.md` | Shipped documentation | Curated Markdown reading asset shipped in the npm tarball. |
|
|
225
|
+
| `docs/sidenote.md` | Shipped documentation | Curated Markdown reading asset shipped in the npm tarball. |
|
|
226
|
+
| `docs/textref.md` | Shipped documentation | Curated Markdown reading asset shipped in the npm tarball. |
|
|
227
|
+
| `docs/bullet.md` | Shipped documentation | Curated Markdown reading asset shipped in the npm tarball. |
|
|
228
|
+
| `docs/term.md` | Shipped documentation | Curated Markdown reading asset shipped in the npm tarball. |
|
|
229
|
+
| `docs/toc.md` | Shipped documentation | Curated Markdown reading asset shipped in the npm tarball. |
|
|
230
|
+
| `docs/tree.md` | Shipped documentation | Curated Markdown reading asset shipped in the npm tarball. |
|
|
231
|
+
| `docs/state.md` | Shipped documentation | Curated Markdown reading asset shipped in the npm tarball. |
|
|
232
|
+
| `docs/generated.md` | Shipped documentation | Curated Markdown reading asset shipped in the npm tarball. |
|
|
233
|
+
| `docs/workbench.md` | Shipped documentation | Curated Markdown reading asset shipped in the npm tarball. |
|
|
234
|
+
| `docs/command.md` | Shipped documentation | Curated Markdown reading asset shipped in the npm tarball. |
|
|
235
|
+
| `docs/adr/0001-color-system.md` | Shipped documentation | Curated Markdown reading asset shipped in the npm tarball. |
|
|
236
|
+
| `docs/adr/0002-scope-and-2026-baseline.md` | Shipped documentation | Curated Markdown reading asset shipped in the npm tarball. |
|
|
237
|
+
| `docs/adr/0003-theme-model.md` | Shipped documentation | Curated Markdown reading asset shipped in the npm tarball. |
|
|
238
|
+
|
|
239
|
+
## Artifact Provenance
|
|
240
|
+
|
|
241
|
+
Generated files are committed so the package can publish without a consumer-side
|
|
242
|
+
build step. Edit the source of truth, run the listed generator, and commit the
|
|
243
|
+
result. The listed gates are part of `npm run check`.
|
|
244
|
+
|
|
245
|
+
| Surface | Source of truth | Generated outputs | Generator | Gate | Note |
|
|
246
|
+
| --- | --- | --- | --- | --- | --- |
|
|
247
|
+
| Package manifest | `package.json` | docs/package-contract.md | `npm run package-contract:build` | check:fresh | The complete export/file matrix in this document is generated from the manifest. |
|
|
248
|
+
| Token model | `tokens/index.js` | css/tokens.css; tokens/index.json; tokens/tokens.dtcg.json; tokens/resolved.json; tokens/index.d.ts | `npm run tokens:css:build; tokens:build; dtcg:build; resolved:build; dts:build` | check:fresh; check:contrast | Token names/roles are public. Resolved values are visual tuning before 1.0. |
|
|
249
|
+
| Class registry | `classes/index.js plus css/*.css selectors` | classes/classes.json; classes/index.d.ts; classes/vscode.css-custom-data.json; docs/reference.md | `npm run classes:json:build; dts:build; vscode:build; reference:build` | check:fresh; check:classes; check:contract | The typed registry, JSON vocabulary, and generated reference stay aligned with real selectors. |
|
|
250
|
+
| Authored CSS graph | `css/core.css plus css/*.css leaves` | dist/bronto.css; dist/css/*.css (40 layered outputs) | `npm run dist:build` | check:dist; check:exports | Default bundle and direct layered leaf imports are generated from authored CSS and size-gated. |
|
|
251
|
+
| JSDoc-authored public JS | `behaviors/; annotations/; connectors/; react/; solid/; qwik/` | adjacent *.d.ts and *.d.ts.map files | `npm run dts:emit` | check:dts-emit; check:types; check:attw; check:publint | Declarations are emitted from the shipped JS, not separately maintained. |
|
|
252
|
+
| Glyph registry | `glyphs/glyphs.js` | glyphs/glyphs.d.ts | `npm run glyphs:build` | check:glyphs; npm test | Glyph names and render options are public. The registry stays sorted and type-covered. |
|
|
253
|
+
| Display colorways | `tokens/skins.js` | css/skins.css; tokens/skins.d.ts | `npm run skins:build` | check:skins; check:contrast | Skins are opt-in root-level choices and never part of dist/bronto.css. |
|
|
254
|
+
| Chart palette | `tokens/charts.js` | css/dataviz.css; tokens/charts.json; tokens/charts.d.ts | `npm run charts:build` | check:charts | Data-viz colors are opt-in, CVD-gated, and never UI chrome. |
|
|
255
|
+
| External renderer themes | `tokens/mermaid.js; tokens/d2.js; tokens/vega.js` | tokens/{mermaid,d2,vega}.{js,json,d.ts} | `npm run mermaid:build; d2:build; vega:build` | check:mermaid; check:d2; check:vega | Renderer configs use resolved colors because the external renderers cannot consume CSS variables directly. |
|
|
256
|
+
| Contrast report | `tokens/resolved.json; tokens/skins.js; tokens/charts.js` | docs/contrast.md | `npm run contrast:build` | check:contrast | WCAG floors are hard-gated; APCA is reported as advisory. |
|
|
257
|
+
|
|
258
|
+
## Internal Paths
|
|
259
|
+
|
|
260
|
+
These paths are intentionally not part of the npm runtime surface:
|
|
261
|
+
`scripts/`, `demo/`, `test/`, `examples/`, `.github/`, local config
|
|
262
|
+
files, visual baselines, and development-only audit artifacts. They may change
|
|
263
|
+
without a package-level compatibility promise.
|
package/docs/reference.md
CHANGED
|
@@ -9,7 +9,7 @@ rendering of every class is the kitchen-sink demo:
|
|
|
9
9
|
**<https://ponchia.github.io/bronto-ui/>**. Theming knobs and the token
|
|
10
10
|
contract: [docs/theming.md](theming.md).
|
|
11
11
|
|
|
12
|
-
-
|
|
12
|
+
- 593 classes across 171 component groups
|
|
13
13
|
- Import the typed registry: `import { cls, ui, cx } from '@ponchia/ui/classes'`
|
|
14
14
|
- Validate markup as data (no JS/TS): `@ponchia/ui/classes.json` — the same
|
|
15
15
|
vocabulary as language-neutral JSON (`groups`, `classes`, `states`,
|
|
@@ -31,6 +31,12 @@ each one matches a real selector in the stylesheet.
|
|
|
31
31
|
| `cls.accordionItem` | `ui-accordion__item` | part |
|
|
32
32
|
| `cls.accordionSummary` | `ui-accordion__summary` | part |
|
|
33
33
|
|
|
34
|
+
### `.ui-activity`
|
|
35
|
+
|
|
36
|
+
| Registry key | Class | Kind |
|
|
37
|
+
| --- | --- | --- |
|
|
38
|
+
| `cls.activity` | `ui-activity` | base |
|
|
39
|
+
|
|
34
40
|
### `.ui-alert`
|
|
35
41
|
|
|
36
42
|
| Registry key | Class | Kind |
|
|
@@ -324,6 +330,24 @@ each one matches a real selector in the stylesheet.
|
|
|
324
330
|
| `cls.citation` | `ui-citation` | base |
|
|
325
331
|
| `cls.citationChip` | `ui-citation--chip` | modifier |
|
|
326
332
|
|
|
333
|
+
### `.ui-claim`
|
|
334
|
+
|
|
335
|
+
| Registry key | Class | Kind |
|
|
336
|
+
| --- | --- | --- |
|
|
337
|
+
| `cls.claim` | `ui-claim` | base |
|
|
338
|
+
| `cls.claimBasis` | `ui-claim__basis` | part |
|
|
339
|
+
| `cls.claimCaveat` | `ui-claim__caveat` | part |
|
|
340
|
+
| `cls.claimLimits` | `ui-claim__limits` | part |
|
|
341
|
+
| `cls.claimRefs` | `ui-claim__refs` | part |
|
|
342
|
+
| `cls.claimScope` | `ui-claim__scope` | part |
|
|
343
|
+
| `cls.claimStatement` | `ui-claim__statement` | part |
|
|
344
|
+
| `cls.claimStatus` | `ui-claim__status` | part |
|
|
345
|
+
| `cls.claimDisputed` | `ui-claim--disputed` | modifier |
|
|
346
|
+
| `cls.claimPartial` | `ui-claim--partial` | modifier |
|
|
347
|
+
| `cls.claimSupported` | `ui-claim--supported` | modifier |
|
|
348
|
+
| `cls.claimUnknown` | `ui-claim--unknown` | modifier |
|
|
349
|
+
| `cls.claimUnsupported` | `ui-claim--unsupported` | modifier |
|
|
350
|
+
|
|
327
351
|
### `.ui-cluster`
|
|
328
352
|
|
|
329
353
|
| Registry key | Class | Kind |
|
|
@@ -486,6 +510,18 @@ each one matches a real selector in the stylesheet.
|
|
|
486
510
|
| --- | --- | --- |
|
|
487
511
|
| `cls.dotfield` | `ui-dotfield` | base |
|
|
488
512
|
|
|
513
|
+
### `.ui-dotfit`
|
|
514
|
+
|
|
515
|
+
| Registry key | Class | Kind |
|
|
516
|
+
| --- | --- | --- |
|
|
517
|
+
| `cls.dotfit` | `ui-dotfit` | base |
|
|
518
|
+
|
|
519
|
+
### `.ui-dotgauge`
|
|
520
|
+
|
|
521
|
+
| Registry key | Class | Kind |
|
|
522
|
+
| --- | --- | --- |
|
|
523
|
+
| `cls.dotgauge` | `ui-dotgauge` | base |
|
|
524
|
+
|
|
489
525
|
### `.ui-dotgrid`
|
|
490
526
|
|
|
491
527
|
| Registry key | Class | Kind |
|
|
@@ -539,6 +575,33 @@ each one matches a real selector in the stylesheet.
|
|
|
539
575
|
| `cls.errorSummaryList` | `ui-error-summary__list` | part |
|
|
540
576
|
| `cls.errorSummaryTitle` | `ui-error-summary__title` | part |
|
|
541
577
|
|
|
578
|
+
### `.ui-evidence-grid`
|
|
579
|
+
|
|
580
|
+
| Registry key | Class | Kind |
|
|
581
|
+
| --- | --- | --- |
|
|
582
|
+
| `cls.evidenceGrid` | `ui-evidence-grid` | base |
|
|
583
|
+
|
|
584
|
+
### `.ui-evidence-item`
|
|
585
|
+
|
|
586
|
+
| Registry key | Class | Kind |
|
|
587
|
+
| --- | --- | --- |
|
|
588
|
+
| `cls.evidenceItem` | `ui-evidence-item` | base |
|
|
589
|
+
| `cls.evidenceItemBody` | `ui-evidence-item__body` | part |
|
|
590
|
+
| `cls.evidenceItemCaveat` | `ui-evidence-item__caveat` | part |
|
|
591
|
+
| `cls.evidenceItemKind` | `ui-evidence-item__kind` | part |
|
|
592
|
+
| `cls.evidenceItemMeta` | `ui-evidence-item__meta` | part |
|
|
593
|
+
| `cls.evidenceItemMethod` | `ui-evidence-item__method` | part |
|
|
594
|
+
| `cls.evidenceItemSource` | `ui-evidence-item__source` | part |
|
|
595
|
+
| `cls.evidenceItemTitle` | `ui-evidence-item__title` | part |
|
|
596
|
+
| `cls.evidenceItemValue` | `ui-evidence-item__value` | part |
|
|
597
|
+
| `cls.evidenceItemWindow` | `ui-evidence-item__window` | part |
|
|
598
|
+
|
|
599
|
+
### `.ui-evidence-ledger`
|
|
600
|
+
|
|
601
|
+
| Registry key | Class | Kind |
|
|
602
|
+
| --- | --- | --- |
|
|
603
|
+
| `cls.evidenceLedger` | `ui-evidence-ledger` | base |
|
|
604
|
+
|
|
542
605
|
### `.ui-eyebrow`
|
|
543
606
|
|
|
544
607
|
| Registry key | Class | Kind |
|
|
@@ -580,6 +643,12 @@ each one matches a real selector in the stylesheet.
|
|
|
580
643
|
| --- | --- | --- |
|
|
581
644
|
| `cls.grid` | `ui-grid` | base |
|
|
582
645
|
|
|
646
|
+
### `.ui-halftone`
|
|
647
|
+
|
|
648
|
+
| Registry key | Class | Kind |
|
|
649
|
+
| --- | --- | --- |
|
|
650
|
+
| `cls.halftone` | `ui-halftone` | base |
|
|
651
|
+
|
|
583
652
|
### `.ui-hint`
|
|
584
653
|
|
|
585
654
|
| Registry key | Class | Kind |
|
|
@@ -679,6 +748,14 @@ each one matches a real selector in the stylesheet.
|
|
|
679
748
|
| `cls.legendVertical` | `ui-legend--vertical` | modifier |
|
|
680
749
|
| `cls.legendWithValues` | `ui-legend--with-values` | modifier |
|
|
681
750
|
|
|
751
|
+
### `.ui-level`
|
|
752
|
+
|
|
753
|
+
| Registry key | Class | Kind |
|
|
754
|
+
| --- | --- | --- |
|
|
755
|
+
| `cls.level` | `ui-level` | base |
|
|
756
|
+
| `cls.levelDanger` | `ui-level--danger` | modifier |
|
|
757
|
+
| `cls.levelWarn` | `ui-level--warn` | modifier |
|
|
758
|
+
|
|
682
759
|
### `.ui-lightbox`
|
|
683
760
|
|
|
684
761
|
| Registry key | Class | Kind |
|
|
@@ -893,6 +970,7 @@ each one matches a real selector in the stylesheet.
|
|
|
893
970
|
| Registry key | Class | Kind |
|
|
894
971
|
| --- | --- | --- |
|
|
895
972
|
| `cls.readout` | `ui-readout` | base |
|
|
973
|
+
| `cls.readoutSpacer` | `ui-readout__spacer` | part |
|
|
896
974
|
|
|
897
975
|
### `.ui-reasoning`
|
|
898
976
|
|
|
@@ -906,13 +984,41 @@ each one matches a real selector in the stylesheet.
|
|
|
906
984
|
| Registry key | Class | Kind |
|
|
907
985
|
| --- | --- | --- |
|
|
908
986
|
| `cls.report` | `ui-report` | base |
|
|
987
|
+
| `cls.reportAction` | `ui-report__action` | part |
|
|
988
|
+
| `cls.reportActionCriteria` | `ui-report__action-criteria` | part |
|
|
989
|
+
| `cls.reportActionDue` | `ui-report__action-due` | part |
|
|
990
|
+
| `cls.reportActionOwner` | `ui-report__action-owner` | part |
|
|
991
|
+
| `cls.reportActionPriority` | `ui-report__action-priority` | part |
|
|
992
|
+
| `cls.reportActionSource` | `ui-report__action-source` | part |
|
|
993
|
+
| `cls.reportActionStatus` | `ui-report__action-status` | part |
|
|
994
|
+
| `cls.reportActionTitle` | `ui-report__action-title` | part |
|
|
995
|
+
| `cls.reportActions` | `ui-report__actions` | part |
|
|
909
996
|
| `cls.reportAppendix` | `ui-report__appendix` | part |
|
|
910
997
|
| `cls.reportCaption` | `ui-report__caption` | part |
|
|
911
998
|
| `cls.reportCover` | `ui-report__cover` | part |
|
|
912
999
|
| `cls.reportCoverCompact` | `ui-report__cover--compact` | modifier |
|
|
1000
|
+
| `cls.reportDecision` | `ui-report__decision` | part |
|
|
1001
|
+
| `cls.reportDecisionBody` | `ui-report__decision-body` | part |
|
|
1002
|
+
| `cls.reportDecisionGrid` | `ui-report__decision-grid` | part |
|
|
1003
|
+
| `cls.reportDecisionItem` | `ui-report__decision-item` | part |
|
|
1004
|
+
| `cls.reportDecisionKicker` | `ui-report__decision-kicker` | part |
|
|
1005
|
+
| `cls.reportDecisionLabel` | `ui-report__decision-label` | part |
|
|
1006
|
+
| `cls.reportDecisionMeta` | `ui-report__decision-meta` | part |
|
|
1007
|
+
| `cls.reportDecisionTitle` | `ui-report__decision-title` | part |
|
|
1008
|
+
| `cls.reportDecisionValue` | `ui-report__decision-value` | part |
|
|
913
1009
|
| `cls.reportEvidence` | `ui-report__evidence` | part |
|
|
914
1010
|
| `cls.reportFigure` | `ui-report__figure` | part |
|
|
915
1011
|
| `cls.reportFinding` | `ui-report__finding` | part |
|
|
1012
|
+
| `cls.reportFindingCritical` | `ui-report__finding--critical` | modifier |
|
|
1013
|
+
| `cls.reportFindingMajor` | `ui-report__finding--major` | modifier |
|
|
1014
|
+
| `cls.reportFindingMinor` | `ui-report__finding--minor` | modifier |
|
|
1015
|
+
| `cls.reportFindingResolved` | `ui-report__finding--resolved` | modifier |
|
|
1016
|
+
| `cls.reportFindingCaveat` | `ui-report__finding-caveat` | part |
|
|
1017
|
+
| `cls.reportFindingClaim` | `ui-report__finding-claim` | part |
|
|
1018
|
+
| `cls.reportFindingEvidence` | `ui-report__finding-evidence` | part |
|
|
1019
|
+
| `cls.reportFindingImpact` | `ui-report__finding-impact` | part |
|
|
1020
|
+
| `cls.reportFindingRemediation` | `ui-report__finding-remediation` | part |
|
|
1021
|
+
| `cls.reportFindingTitle` | `ui-report__finding-title` | part |
|
|
916
1022
|
| `cls.reportFootnotes` | `ui-report__footnotes` | part |
|
|
917
1023
|
| `cls.reportHead` | `ui-report__head` | part |
|
|
918
1024
|
| `cls.reportMeta` | `ui-report__meta` | part |
|
|
@@ -1075,6 +1181,7 @@ each one matches a real selector in the stylesheet.
|
|
|
1075
1181
|
| `cls.sparkBarAccent` | `ui-spark__bar--accent` | modifier |
|
|
1076
1182
|
| `cls.sparkBarNeg` | `ui-spark__bar--neg` | modifier |
|
|
1077
1183
|
| `cls.sparkBarPos` | `ui-spark__bar--pos` | modifier |
|
|
1184
|
+
| `cls.sparkDots` | `ui-spark--dots` | modifier |
|
|
1078
1185
|
|
|
1079
1186
|
### `.ui-spinner`
|
|
1080
1187
|
|
|
@@ -1204,6 +1311,7 @@ each one matches a real selector in the stylesheet.
|
|
|
1204
1311
|
| `cls.tableSelect` | `ui-table__select` | part |
|
|
1205
1312
|
| `cls.tableSort` | `ui-table__sort` | part |
|
|
1206
1313
|
| `cls.tableToolbar` | `ui-table__toolbar` | part |
|
|
1314
|
+
| `cls.tableBreakAnywhere` | `ui-table--break-anywhere` | modifier |
|
|
1207
1315
|
| `cls.tableComfortable` | `ui-table--comfortable` | modifier |
|
|
1208
1316
|
| `cls.tableDense` | `ui-table--dense` | modifier |
|
|
1209
1317
|
| `cls.tableLined` | `ui-table--lined` | modifier |
|
|
@@ -1356,6 +1464,12 @@ each one matches a real selector in the stylesheet.
|
|
|
1356
1464
|
| --- | --- | --- |
|
|
1357
1465
|
| `cls.vt` | `ui-vt` | base |
|
|
1358
1466
|
|
|
1467
|
+
### `.ui-waffle`
|
|
1468
|
+
|
|
1469
|
+
| Registry key | Class | Kind |
|
|
1470
|
+
| --- | --- | --- |
|
|
1471
|
+
| `cls.waffle` | `ui-waffle` | base |
|
|
1472
|
+
|
|
1359
1473
|
## Table-local state classes
|
|
1360
1474
|
|
|
1361
1475
|
Not in `cls` by design — these are plain `is-*` state hooks scoped to
|