@praxisui/core 9.0.0-beta.6 → 9.0.0-beta.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 +4 -0
- package/ai/component-registry.json +3617 -0
- package/fesm2022/praxisui-core.mjs +3973 -409
- package/package.json +19 -12
- package/types/praxisui-core.d.ts +800 -36
package/README.md
CHANGED
|
@@ -132,10 +132,14 @@ Core exports schema and metadata infrastructure used by form, table, list, chart
|
|
|
132
132
|
- `x-ui.optionSource` models and serializers
|
|
133
133
|
- `x-ui.analytics` models and `AnalyticsSchemaContractService`
|
|
134
134
|
- `valuePresentation` models and resolver
|
|
135
|
+
- `FieldPresentationConfig` for semantic read-only/list/table-cell presentation
|
|
135
136
|
- form layout item models
|
|
136
137
|
- JSON Logic models and runtime service
|
|
137
138
|
|
|
138
139
|
`valuePresentation` is the shared display contract for scalar read-only values such as currency, number, date, datetime, time, percentage, and boolean.
|
|
140
|
+
`presentation` is the shared semantic wrapper contract for presentation-capable consumers. It can request chip, badge, status or iconValue rendering while preserving the raw value used for filtering, sorting and export.
|
|
141
|
+
|
|
142
|
+
`FieldPresentationConfig` is the shared semantic presentation contract for read-only surfaces that need a visual primitive around the value, such as `chip`, `badge`, `status`, `iconValue`, or `microVisualization`. It keeps business data in the original field and lets consumers map `tone`, `appearance`, `icon`, `tooltip`, and optional fixed `label` values to their own renderer and theme tokens.
|
|
139
143
|
|
|
140
144
|
## Global Actions
|
|
141
145
|
|