@mittwald/flow-react-components 0.2.0-alpha.962 → 0.2.0-alpha.963
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/AGENTS.md +6 -0
- package/CHANGELOG.md +6 -0
- package/dist/assets/doc-properties.json +4915 -4915
- package/dist/js/internal.mjs +1 -0
- package/dist/js/internal.mjs.map +1 -1
- package/dist/js/packages/components/src/status/component-status.json.mjs +140 -0
- package/dist/js/packages/components/src/status/component-status.json.mjs.map +1 -0
- package/dist/js/packages/components/src/status/componentStatus.mjs +11 -0
- package/dist/js/packages/components/src/status/componentStatus.mjs.map +1 -0
- package/dist/types/index/internal.d.ts +2 -0
- package/dist/types/index/internal.d.ts.map +1 -1
- package/dist/types/status/component-status.json.d.ts +539 -0
- package/dist/types/status/componentStatus.d.ts +14 -0
- package/dist/types/status/componentStatus.d.ts.map +1 -0
- package/dist/types/status/types.d.ts +25 -0
- package/dist/types/status/types.d.ts.map +1 -0
- package/package.json +7 -6
package/AGENTS.md
CHANGED
|
@@ -224,6 +224,12 @@ Run: `pnpm nx test:unit components`,
|
|
|
224
224
|
| `./all.css` | Bundled stylesheet. |
|
|
225
225
|
| `./doc-properties` | Generated prop metadata for the docs site. |
|
|
226
226
|
|
|
227
|
+
**Adding a new integration export entry?** Also register it in the component
|
|
228
|
+
status registry so it is covered: add the entry to `STATUS_EXPORT_ENTRIES`
|
|
229
|
+
(`dev/status-registry/exportEntries.ts`) — the `FlowExportEntry` union and the
|
|
230
|
+
registry regenerate from it. A generation-time guard fails if an entry resolves
|
|
231
|
+
to zero components.
|
|
232
|
+
|
|
227
233
|
Prop JSDoc feeds the generated `doc-properties.json` and the docs site: write
|
|
228
234
|
doc comments on public props, use `@default` for defaults and `@internal` for
|
|
229
235
|
props to hide.
|
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,12 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [0.2.0-alpha.963](https://github.com/mittwald/flow/compare/0.2.0-alpha.962...0.2.0-alpha.963) (2026-07-28)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* **components:** add component lifecycle status registry (ADR 0003) ([#2729](https://github.com/mittwald/flow/issues/2729)) ([6a76d1e](https://github.com/mittwald/flow/commit/6a76d1e4ea6cf2e449cdcea0952bb54e9e8725c0))
|
|
11
|
+
|
|
6
12
|
# [0.2.0-alpha.962](https://github.com/mittwald/flow/compare/0.2.0-alpha.961...0.2.0-alpha.962) (2026-07-28)
|
|
7
13
|
|
|
8
14
|
**Note:** Version bump only for package @mittwald/flow-react-components
|