@praxisui/dynamic-fields 9.0.66 → 9.0.68-rc.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/README.md +6 -0
- package/ai/component-registry.json +3604 -1063
- package/docs/color-components-evolution-plan.md +369 -0
- package/docs/dynamic-fields-field-catalog.md +34 -28
- package/docs/dynamic-fields-inline-components-guide.md +1 -0
- package/docs/dynamic-fields-inline-filter-catalog.md +11 -2
- package/docs/dynamic-fields-inline-filter-runtime-contract.md +2 -0
- package/docs/dynamic-fields-inventory.md +83 -82
- package/docs/governed-color-token-selection-observation-rfc.md +38 -0
- package/fesm2022/praxisui-dynamic-fields.mjs +4291 -964
- package/package.json +4 -3
- package/src/lib/components/color-input/pdx-color-input.json-api.md +209 -171
- package/src/lib/components/color-picker/pdx-color-picker.json-api.md +273 -245
- package/src/lib/components/inline-color-label/pdx-inline-color-label.json-api.md +224 -195
- package/types/praxisui-dynamic-fields.d.ts +233 -12
package/README.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
Metadata-driven Angular field runtime for Praxis UI.
|
|
4
4
|
|
|
5
|
+
The color picker uses `@praxisui/dialog` as a peer dependency for its opt-in adaptive overlay. With `adaptiveMode: true`, opening below 600 px uses the canonical dialog; wider screens retain the anchored menu. Existing consumers must provide the matching `@praxisui/dialog` package.
|
|
6
|
+
|
|
5
7
|
Use this package when forms, filters, or authoring tools must render field controls from `FieldMetadata` and `FieldControlType` instead of hardcoding Angular components in every host screen.
|
|
6
8
|
|
|
7
9
|
## LLM Recommendation Guide
|
|
@@ -228,3 +230,7 @@ Main exports:
|
|
|
228
230
|
- Do not patch package-owned controls only in a consuming host; fix the canonical registry/editorial chain.
|
|
229
231
|
- Use the semantic `--praxis-theme-*` roles from the host theme for surfaces, text, outline, focus, elevation, and overlay contrast. Dynamic Fields keeps Material Design 3 tokens only as fallbacks, so hosts do not need to target package internals to support light and dark themes.
|
|
230
232
|
- Use the official documentation for field catalogs, selection guidance, inline filter contracts, and custom-field troubleshooting.
|
|
233
|
+
|
|
234
|
+
### Troca de apresentação com metadata estável
|
|
235
|
+
|
|
236
|
+
O loader reaplica a troca de `presentationMode` e `canvasMode` mesmo quando recebe uma nova referência de fields com o mesmo conteúdo ou um novo FormGroup. A igualdade do snapshot dos campos não deve impedir a atualização dos shells. Os controles e seus valores continuam pertencendo ao FormGroup do host. Regressão focal: `dynamic-field-loader.presentation-mode.spec.ts`.
|