@mittwald/flow-react-components 1.0.4 → 1.0.6
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 +5 -1
- package/CHANGELOG.md +12 -0
- package/dist/assets/doc-properties.json +64206 -48726
- package/dist/js/packages/components/src/components/Button/Button.mjs.map +1 -1
- package/dist/types/components/Button/Button.d.ts +6 -1
- package/dist/types/components/Button/Button.d.ts.map +1 -1
- package/package.json +9 -9
package/AGENTS.md
CHANGED
|
@@ -282,7 +282,11 @@ to zero components.
|
|
|
282
282
|
|
|
283
283
|
Prop JSDoc feeds the generated `doc-properties.json` and the docs site: write
|
|
284
284
|
doc comments on public props, use `@default` for defaults and `@internal` for
|
|
285
|
-
props to hide.
|
|
285
|
+
props to hide. A deprecated **value** of a still-current prop — `Button`'s
|
|
286
|
+
`color="accent"` — is listed with `@deprecatedValues accent` (comma-separated
|
|
287
|
+
for several) and drops out of the properties table, so the table only offers
|
|
288
|
+
values that should still be used. The value stays in the prop's type and keeps
|
|
289
|
+
working; the runtime warns via `useWarnDeprecation` as usual.
|
|
286
290
|
|
|
287
291
|
## Misc
|
|
288
292
|
|
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,18 @@
|
|
|
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
|
+
## [1.0.6](https://github.com/mittwald/flow/compare/1.0.5...1.0.6) (2026-08-27)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* **docs:** hide deprecated values from the properties table ([#2960](https://github.com/mittwald/flow/issues/2960)) ([eaa0349](https://github.com/mittwald/flow/commit/eaa03497fda2fd0aded933776f464eeed0c9aef3))
|
|
11
|
+
|
|
12
|
+
## [1.0.5](https://github.com/mittwald/flow/compare/1.0.4...1.0.5) (2026-08-27)
|
|
13
|
+
|
|
14
|
+
### Bug Fixes
|
|
15
|
+
|
|
16
|
+
* **docs:** show full prop types in the properties table ([#2961](https://github.com/mittwald/flow/issues/2961)) ([2c42ad5](https://github.com/mittwald/flow/commit/2c42ad539c00b7dcbfdff044c3a128ef5bf38f8c))
|
|
17
|
+
|
|
6
18
|
## [1.0.4](https://github.com/mittwald/flow/compare/1.0.3...1.0.4) (2026-08-27)
|
|
7
19
|
|
|
8
20
|
**Note:** Version bump only for package @mittwald/flow-react-components
|