@praxisui/table 9.0.5-rc.8 → 9.0.5-rc.9
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 +33 -0
- package/ai/component-registry.json +2 -2
- package/fesm2022/{praxisui-table-praxisui-table-DMX4ZRl0.mjs → praxisui-table-praxisui-table-nfsMWS1W.mjs} +271 -137
- package/fesm2022/{praxisui-table-table-agentic-authoring-turn-flow-CXFA175A.mjs → praxisui-table-table-agentic-authoring-turn-flow-DzUWFwYf.mjs} +1 -1
- package/fesm2022/{praxisui-table-table-ai.adapter-B95FPOE5.mjs → praxisui-table-table-ai.adapter-DQ6nARya.mjs} +1 -1
- package/fesm2022/praxisui-table.mjs +1 -1
- package/package.json +10 -10
- package/types/praxisui-table.d.ts +5 -0
package/README.md
CHANGED
|
@@ -244,6 +244,39 @@ const config: TableConfig = {
|
|
|
244
244
|
};
|
|
245
245
|
```
|
|
246
246
|
|
|
247
|
+
### Adaptive toolbar composition
|
|
248
|
+
|
|
249
|
+
`PraxisTableToolbar` materializes the toolbar as semantic regions rather than one wrapping row:
|
|
250
|
+
|
|
251
|
+
- **identity** — title, subtitle and table context;
|
|
252
|
+
- **query** — quick filters, always-visible dynamic filters and projected query shortcuts;
|
|
253
|
+
- **commands** — collection/business actions, table utilities and authoring entrypoints.
|
|
254
|
+
|
|
255
|
+
The runtime owns the responsive composition through container queries. This is important when a table
|
|
256
|
+
is rendered inside a drawer, split pane or dashboard card: behavior follows the width actually available
|
|
257
|
+
to the table, not only the browser viewport. At wide widths, identity and commands share the first band
|
|
258
|
+
and query controls use a stable second band. At compact widths, the regions move as complete units and
|
|
259
|
+
commands are consolidated under one localized `Mais ações` entrypoint without losing export, column or
|
|
260
|
+
density controls.
|
|
261
|
+
|
|
262
|
+
Authoring guidance:
|
|
263
|
+
|
|
264
|
+
- use `toolbar.filters.quickFilters` for a small governed scope switch, not as a substitute for every filter;
|
|
265
|
+
- use `advancedFilters.settings.alwaysVisibleFields` for frequent editable criteria;
|
|
266
|
+
- keep one clear collection/business action primary; export, columns and density are utilities;
|
|
267
|
+
- project custom shortcuts through the toolbar slots, but do not target internal layout classes from the host;
|
|
268
|
+
- validate the component container at `1440`, `1024`, `768`, `480` and `320` px, including long localized labels, zoom and keyboard focus.
|
|
269
|
+
|
|
270
|
+
Adding filters or actions never requires a host breakpoint. When the command set grows, the compact menu
|
|
271
|
+
preserves capability parity and keyboard order while the query region remains independently scroll-free at
|
|
272
|
+
the page level.
|
|
273
|
+
|
|
274
|
+
The existing `toolbar.layout` fields are materialized by the same runtime: `alignment` aligns the identity
|
|
275
|
+
and command regions, `padding` and `backgroundColor` project governed chrome, `height` defines the minimum
|
|
276
|
+
toolbar height, and `showSeparator` adds the boundary with the data surface. `toolbar.appearance.tokens.bg`
|
|
277
|
+
remains the most specific background override, followed by `toolbar.layout.backgroundColor` and the legacy
|
|
278
|
+
`actionsBackgroundColor` projection.
|
|
279
|
+
|
|
247
280
|
## Filtering And Row Actions
|
|
248
281
|
|
|
249
282
|
The package exports both the table runtime and `PraxisFilter` integration surfaces.
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schemaVersion": "1.0.0",
|
|
3
|
-
"generatedAt": "2026-08-
|
|
3
|
+
"generatedAt": "2026-08-12T21:17:33.309Z",
|
|
4
4
|
"packageName": "@praxisui/table",
|
|
5
|
-
"packageVersion": "9.0.5-rc.
|
|
5
|
+
"packageVersion": "9.0.5-rc.9",
|
|
6
6
|
"sourceRegistry": "praxis-component-registry-ingestion",
|
|
7
7
|
"sourceRegistryVersion": "1.0.0",
|
|
8
8
|
"componentCount": 3,
|