Apps Phase 1: docs, examples, app-only tool filtering (#3593)

* Apps Phase 1: docs, examples, app-only tool filtering, Rx() migration

* Clarify architecture page is Prefab-specific

* Fix component reference inaccuracies and DataTable search prop

- Charts import: clarify they must come from prefab_ui.components.charts
- DataTable: searchable→search (the actual prop name), remove nonexistent
  table-level sortable prop
- Select: remove nonexistent options prop, show SelectOption children
- Tabs: default_value→value
- Fix search=True in inventory, patterns, datatable examples

* Consistent Rx usage across all examples, fix imports

* Address review: fix chart imports, Select import, docstring --stdio claims
This commit is contained in:
Jeremiah Lowin 2026-03-24 13:35:29 -04:00 committed by GitHub
commit c04ce8972f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
14 changed files with 2353 additions and 49 deletions

View file

@ -57,7 +57,7 @@ def team_directory(department: str | None = None) -> Column:
DataTableColumn(key="location", header="Location", sortable=True),
],
rows=rows,
searchable=True,
search=True,
paginated=True,
)
return view