@praxisui/table 9.0.0-beta.77 → 9.0.0-beta.79
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 +16 -2
- package/ai/component-registry.json +822 -72
- package/fesm2022/{praxisui-table-praxisui-table-HLWrvqJ7.mjs → praxisui-table-praxisui-table-D1byLHAp.mjs} +103 -20
- package/fesm2022/{praxisui-table-table-agentic-authoring-turn-flow-CGBlyQWb.mjs → praxisui-table-table-agentic-authoring-turn-flow-BzVyW6RG.mjs} +1 -1
- package/fesm2022/{praxisui-table-table-ai.adapter-CjRwHLp9.mjs → praxisui-table-table-ai.adapter-Bg9O1G6L.mjs} +1 -1
- package/fesm2022/praxisui-table.mjs +1 -1
- package/package.json +10 -10
- package/types/praxisui-table.d.ts +19 -1
package/README.md
CHANGED
|
@@ -190,13 +190,18 @@ The filter field manager follows the compact inline visual language and can be t
|
|
|
190
190
|
`--pfx-field-manager-search-on-surface`, `--pfx-field-manager-search-placeholder`,
|
|
191
191
|
`--pfx-field-manager-search-height`, `--pfx-field-manager-search-radius`,
|
|
192
192
|
`--pfx-field-manager-search-font-size`, `--pfx-field-manager-search-line-height`,
|
|
193
|
-
`--pfx-field-manager-search-font-weight`,
|
|
193
|
+
`--pfx-field-manager-search-font-weight`, `--pfx-field-manager-search-icon-size`,
|
|
194
|
+
`--pfx-field-manager-scrollbar-thumb`, `--pfx-field-manager-scrollbar-thumb-hover`,
|
|
195
|
+
`--pfx-field-manager-scrollbar-track`, and `--pfx-field-manager-scrollbar-size`. Their defaults inherit
|
|
194
196
|
the corresponding `--pdx-inline-*` tokens when available, then the semantic `--praxis-theme-*` roles,
|
|
195
197
|
and finally Material system
|
|
196
198
|
tokens; `--pfx-field-manager-search-radius` intentionally defaults to Material's full corner radius so
|
|
197
199
|
the search focus ring and field share the same pill geometry. The runtime resolves every public
|
|
198
200
|
`--pfx-field-manager-*` token from the host before applying its private fallback, so overrides take
|
|
199
|
-
effect without CSS specificity workarounds.
|
|
201
|
+
effect without CSS specificity workarounds. The scrollable field list reserves a stable scrollbar gutter
|
|
202
|
+
and derives a contrasting thumb from the manager surface and on-surface roles, so its overflow affordance
|
|
203
|
+
does not depend on application-global scrollbar styles. Native scrollbar auto-hide preferences can still
|
|
204
|
+
control when the operating system displays the thumb. Because the manager renders in a CDK overlay, define host overrides on a global theme scope
|
|
200
205
|
such as `html`, `body`, or the application theme class rather than only on the `praxis-filter` element.
|
|
201
206
|
When using the `PraxisFilter` i18n input, `selectedFieldsSectionTitle` and
|
|
202
207
|
`availableFieldsSectionTitle` customize the grouped field-manager headings; both are optional and
|
|
@@ -206,6 +211,15 @@ tooltip on hover and keyboard focus. This lets operators distinguish semanticall
|
|
|
206
211
|
with similar labels—such as a single date, a date range, and a relative period—without the table
|
|
207
212
|
runtime fabricating domain guidance.
|
|
208
213
|
|
|
214
|
+
While the field manager is open, its selected and available sections preserve the composition they
|
|
215
|
+
had when the draft began. Checkbox state, the displayed-field count, pending-change badges, and the
|
|
216
|
+
Apply count update immediately, but rows are regrouped only after Apply closes the overlay or when it
|
|
217
|
+
is opened again. This keeps pointer position, keyboard focus, and scroll anchoring stable. Optional
|
|
218
|
+
`PraxisFilter.i18n` entries `fieldPendingAddition`, `fieldPendingRemoval`,
|
|
219
|
+
`fieldAddedAnnouncement`, `fieldRemovedAnnouncement`, and
|
|
220
|
+
`fieldSelectionSummaryAnnouncement` customize the pending-state badges and polite live-region
|
|
221
|
+
feedback; announcement templates accept `{field}` and `{summary}` placeholders.
|
|
222
|
+
|
|
209
223
|
```ts
|
|
210
224
|
const config: TableConfig = {
|
|
211
225
|
columns: [{ field: 'name', header: 'Name' }],
|