You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/recipes/data-table.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -89,7 +89,7 @@ await app.start();
89
89
## Explanation
90
90
91
91
- Filter state is kept in `state.filter` and applied before passing data to the table.
92
-
- Sorting is handled by the table (it emits `onSort(column, direction)` and you store that in state).
92
+
- Sorting is handled by the table (click a sortable header, or focus the header and press Enter; it emits `onSort(column, direction)` and you store that in state).
93
93
- Selection is stored as row keys and updated via `onSelectionChange`.
- Backdrops are rendered behind the layer. `"dim"` uses a light shade pattern; `"opaque"` clears the area behind the layer to the theme background color.
Copy file name to clipboardExpand all lines: docs/widgets/modal.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -68,6 +68,7 @@ ui.modal({
68
68
- Modals are rendered by conditionally including them in the tree (there is no `open` prop).
69
69
- Render modals inside `ui.layers(...)` so they stack above base content.
70
70
-`width: "auto"` sizes to content/actions and is clamped by `maxWidth` and the viewport.
71
+
- Backdrops are rendered behind the modal. `"dim"` uses a light shade pattern; `"opaque"` clears the area behind the modal to the theme background color.
0 commit comments