@praxisui/dynamic-fields 9.0.58 → 9.0.60
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 +7 -1
- package/ai/component-registry.json +21425 -311
- package/docs/dynamic-fields-inline-components-guide.md +8 -7
- package/docs/dynamic-fields-inline-filter-runtime-contract.md +2 -0
- package/fesm2022/praxisui-dynamic-fields.mjs +4161 -1586
- package/package.json +3 -3
- package/src/lib/components/inline-currency-range/pdx-inline-currency-range.json-api.md +12 -5
- package/src/lib/components/inline-distance-radius/pdx-inline-distance-radius.json-api.md +140 -485
- package/src/lib/components/inline-rating/pdx-inline-rating.json-api.md +127 -438
- package/types/praxisui-dynamic-fields.d.ts +140 -14
package/README.md
CHANGED
|
@@ -170,6 +170,11 @@ For compact enterprise indicators, `field.presentation.presenter = 'microVisuali
|
|
|
170
170
|
|
|
171
171
|
Runtime support for these metadata paths is canonical. Visual editor coverage is a separate layer and should be verified before claiming authoring parity.
|
|
172
172
|
|
|
173
|
+
Hosts that need the same governed option label outside a field shell may use the
|
|
174
|
+
public `OptionDisplayResolverService`. It resolves object labels, local options and
|
|
175
|
+
remote option sources from `FieldMetadata`; consumers must keep the raw value as the
|
|
176
|
+
executable payload and treat the resolved text only as presentation evidence.
|
|
177
|
+
|
|
173
178
|
## Inline Filters
|
|
174
179
|
|
|
175
180
|
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.
|
|
@@ -204,6 +209,7 @@ Main exports:
|
|
|
204
209
|
|
|
205
210
|
- `DynamicFieldLoaderDirective`
|
|
206
211
|
- `ComponentRegistryService`
|
|
212
|
+
- `OptionDisplayResolverService`
|
|
207
213
|
- `providePraxisDynamicFields`
|
|
208
214
|
- `providePraxisDynamicFieldsCore`
|
|
209
215
|
- `providePraxisDynamicFieldsNoDefaults`
|
|
@@ -214,7 +220,7 @@ Main exports:
|
|
|
214
220
|
- `DYNAMIC_FIELDS_PLAYGROUND_CATALOG`
|
|
215
221
|
- `PRAXIS_DYNAMIC_FIELDS_AUTHORING_MANIFEST`
|
|
216
222
|
- dynamic-field AI capability catalogs and profiles
|
|
217
|
-
- utilities such as JSON schema mapping, clear-button helpers, logging,
|
|
223
|
+
- utilities such as JSON schema mapping, clear-button helpers, logging, error-state matchers, and the shared CSS-color contract (`isValidCssColor`, `normalizeCssColorToRgb`, `interpolateThreeStopGradientColor`, `applyAlphaToColor`) used by runtime and authoring previews
|
|
218
224
|
|
|
219
225
|
## Notes
|
|
220
226
|
|