@praxisui/dynamic-fields 9.0.0-beta.20 → 9.0.0-beta.21
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 +4 -0
- package/ai/component-registry.json +910 -10
- package/docs/dynamic-fields-field-catalog.md +1 -1
- package/fesm2022/praxisui-dynamic-fields.mjs +310 -42
- package/package.json +3 -3
- package/src/lib/components/field-shell/praxis-field-shell.json-api.md +33 -3
- package/src/lib/components/material-checkbox-group/pdx-material-checkbox-group.json-api.md +5 -3
- package/types/praxisui-dynamic-fields.d.ts +3 -0
package/README.md
CHANGED
|
@@ -164,6 +164,10 @@ Use `valuePresentation` for scalar display values such as currency, number, date
|
|
|
164
164
|
|
|
165
165
|
Presentation formatting resolves locale in this order: `field.localization.locale`, `field.locale`, the canonical `PraxisI18nService` locale, Angular `LOCALE_ID`, then `en-US`. Host applications should configure the Praxis i18n service or field metadata instead of patching display labels locally.
|
|
166
166
|
|
|
167
|
+
Presentation mode can also consume `field.presentation` and `field.presentationRules` for semantic readonly display states such as status, chip, badge, icon+value, tone, icon, label, badge, tooltip, and appearance. `presentationRules` use canonical Json Logic and must only produce semantic display patches; they do not mutate the `FormControl`, submit payload, or execute arbitrary actions.
|
|
168
|
+
|
|
169
|
+
Runtime support for these metadata paths is canonical. Visual editor coverage is a separate layer and should be verified before claiming authoring parity.
|
|
170
|
+
|
|
167
171
|
## Inline Filters
|
|
168
172
|
|
|
169
173
|
The package also exports inline field components for compact filter and toolbar experiences, including inline text, select, async select, entity lookup, numeric, currency, date, date range, time, rating, and specialized business filters.
|