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
This commit was created on GitHub.com and signed with GitHub’s verified signature.
Patch Changes
Add a clear button to search inputs for quickly resetting the current query. It appears in the <APIKeys /> search and the <OrganizationProfile /> members search. (#9098) by @alexcarpenter
Search inputs now expose a shared searchInput appearance element (layered alongside any existing component-specific element), and the clear button is themeable via the new shared searchInputClearButton element. The clear button's label can be customized with the new shared searchInput.action__clear localization key.
Fix org invitation and request action descriptions alignment. (#9118) by @alexcarpenter
Decode avatar images synchronously so a freshly mounted avatar (e.g. when the popover opens) paints on its first frame instead of briefly flashing the avatar background.
Highlight the trigger while its popover is open.
Align the "Create organization" action's height with the other rows for a consistent list.
Increase the default height of buttons and inputs by 2px for larger, easier-to-tap touch targets, especially on mobile. (#9061) by @alexcarpenter
This commit was created on GitHub.com and signed with GitHub’s verified signature.
Patch Changes
Add a clear button to search inputs for quickly resetting the current query. It appears in the <APIKeys /> search and the <OrganizationProfile /> members search. (#9098) by @alexcarpenter
Search inputs now expose a shared searchInput appearance element (layered alongside any existing component-specific element), and the clear button is themeable via the new shared searchInputClearButton element. The clear button's label can be customized with the new shared searchInput.action__clear localization key.
This commit was created on GitHub.com and signed with GitHub’s verified signature.
Patch Changes
Deprecate createPathMatcher() and its pattern types (PathMatcherParam, PathPattern, WithPathSegmentWildcard). Pattern-based path matching is being phased out along with the framework-level createRouteMatcher() helpers and will be removed in the next major version. Use your framework's native routing primitives to decide which paths to protect instead. (#9094) by @jacekradko