@praxisui/dynamic-fields 9.0.0-beta.16 → 9.0.0-beta.18
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 +2 -0
- package/ai/component-registry.json +112 -112
- package/docs/dynamic-fields-field-catalog.md +1 -2
- package/fesm2022/praxisui-dynamic-fields.mjs +442 -70
- package/package.json +3 -3
- package/src/lib/components/material-file-upload/pdx-material-file-upload.json-api.md +58 -27
- package/types/praxisui-dynamic-fields.d.ts +51 -5
package/README.md
CHANGED
|
@@ -162,6 +162,8 @@ Read-only and display states prefer the canonical `field.valuePresentation` cont
|
|
|
162
162
|
|
|
163
163
|
Use `valuePresentation` for scalar display values such as currency, number, date, datetime, time, percentage, and boolean. Keep legacy hints such as `format`, `numericFormat`, `currency`, `numberFormat`, and `locale` only as compatibility inputs when needed.
|
|
164
164
|
|
|
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
|
+
|
|
165
167
|
## Inline Filters
|
|
166
168
|
|
|
167
169
|
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.
|