Version Packages#393
Open
github-actions[bot] wants to merge 1 commit into
Open
Conversation
github-actions
Bot
force-pushed
the
changeset-release/main
branch
4 times, most recently
from
July 23, 2026 07:57
59f4860 to
b213afb
Compare
github-actions
Bot
force-pushed
the
changeset-release/main
branch
3 times, most recently
from
July 24, 2026 05:29
26d770b to
313b013
Compare
github-actions
Bot
force-pushed
the
changeset-release/main
branch
from
July 24, 2026 06:14
313b013 to
692b2b0
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
Releases
@tailor-platform/app-shell@1.10.0
Minor Changes
73d0c0a: Add a built-in error state to
Combobox.Async,Autocomplete.Async, andSelect.AsyncWhen an async fetcher throws or rejects, the components now render an inline error state in the popover — a "Couldn't load results." message plus a Retry button that re-runs the last fetch — instead of silently falling back to the misleading "No results." empty state. This makes failed fetches distinguishable from genuinely-empty results without any consumer code.
The debounce/abort lifecycle is handled centrally: aborted/superseded requests are ignored, and outages are de-duped so typing during an outage doesn't stack repeated announcements.
Three new props on each
.Asynccomponent:errorTextstring"Couldn't load results."retryTextstring"Retry"onFetchError(error: unknown) => voidThe
Combobox.useAsync/Autocomplete.useAsync/Select.useAsynchooks now also exposeerrorand aretry()function and accept anonFetchErroroption, for consumers building custom compositions withParts.16c1046: Add a built-in
/__appinfopage toAppShellfor exposing app metadata and the current AppShell version.The page stays out of AppShell's built-in auto-generated sidebar navigation, appears in the Command Palette as a page entry, and includes a copy button for the rendered app information.
35ab98a: DataTable: sticky/pinned columns and user column settings
pin: "left" | "right"to aColumnto freeze it during horizontal scroll (sticky offsets are measured from the rendered layout;widthis optional but recommended for stable sizing). The selection column auto-pins left and the row-actions column auto-pins right, with a subtle freeze shadow at the frozen edge once content scrolls under it.columnSettingstoDataTable.Toolbarto render a built-in "Columns" control (top-right) that lets users show/hide columns, reorder them (drag), and change pinning by dragging a column between the Fixed left / Scrollable / Fixed right zones.tableIdtouseDataTableto persist each user's column visibility, order, and pinning tolocalStorage(per-user preference; not stored in the URL). Omit for in-memory-only layout.Table.Rootnow accepts an optionalcontainerReffor its scroll container.b32f003: Redesign
DataTable.Filtersfor a faster, more direct filtering experience.field │ operator │ value │ ✕. The operator segment opens a searchable dropdown to switch the condition; the value segment opens the type-specific editor. Long values are truncated.Calendar; single datetime → inline calendar + a "Choose time" picker;date/datetimebetween → one inline calendar with From / To tabs;time→ native time input. (Swaps to the dedicated date-range / datetime pickers 1:1 once those land.)is,is not,is between,is any of, …), multi-select enum values summarized as "N items" (localized), an inline error for reversedbetweenranges, and a consistent primary-colored checkbox across every filter surface.slotprop onDataTable.Filters("all"|"chips"|"add") to render the chips and the Add filter trigger separately for custom toolbar layouts (e.g. trigger in a header row, chips on the row below).7832718: Add standalone
CheckboxcomponentCheckbox— a styled boolean control wrapping Base UI's checkbox. Supports controlled (checked) and uncontrolled (defaultChecked) use, anindeterminatestate, and an optional inlinelabel. Integrates withFieldand React Hook Form for label association,disabled, and invalid/error state exactly likeInput/Select(no bespokeerrorprop) — drive it viaControllerwithonCheckedChange/inputRef. The invalid state is styled off bothdata-invalid(AppShellField.Root) andaria-invalid(shadcn-styleFormControl), so it fits either form stack.Checkboxinternally for row selection, the header select-all (indeterminate), the enum and case-sensitive filter controls, and the column-settings visibility toggles — replacing the previously hand-rolled, slightly inconsistent checkbox styling with one shared control.Patch Changes
data-state="selected"(whichTable.Rowkeys its selected background off of) in addition to the existingaria-selected; previously only the pinned cells — which carry their owngroup-aria-selected:bg-muted— were highlighted.