Skip to content

Conversation

@apucacao
Copy link
Contributor

@apucacao apucacao commented Nov 17, 2025

Summary

CleanShot 2025-11-17 at 14 16 22 CleanShot 2025-11-17 at 14 16 40 CleanShot 2025-11-17 at 14 17 06 CleanShot 2025-11-17 at 14 17 18 CleanShot 2025-11-17 at 14 17 53 CleanShot 2025-11-17 at 14 18 04

Screenshots (if appropriate):

Testing approaches

@changeset-bot
Copy link

changeset-bot bot commented Nov 17, 2025

🦋 Changeset detected

Latest commit: 20941cf

The changes in this PR will be included in the next version bump.

This PR includes changesets to release 1 package
Name Type
@launchpad-ui/components Patch

Not sure what this means? Click here to learn what changesets are.

Click here if you're a maintainer who wants to add another changeset to this PR

@pkg-pr-new
Copy link

pkg-pr-new bot commented Nov 17, 2025

yarn add https://pkg.pr.new/@launchpad-ui/components@1816.tgz
yarn add https://pkg.pr.new/@launchpad-ui/icons@1816.tgz
yarn add https://pkg.pr.new/@launchpad-ui/tokens@1816.tgz

commit: 20941cf

@github-actions
Copy link
Contributor

github-actions bot commented Nov 17, 2025

Size Change: +38 B (+0.01%)

Total Size: 533 kB

Filename Size Change
packages/components/dist/style.css 8.45 kB +38 B (+0.45%)
ℹ️ View Unchanged
Filename Size
apps/vscode/dist/client.js 111 kB
apps/vscode/dist/server.js 261 kB
packages/box/dist/index.es.js 7.26 kB
packages/box/dist/index.js 7.82 kB
packages/box/dist/style.css 2.67 kB
packages/button/dist/index.es.js 1.89 kB
packages/button/dist/index.js 2.32 kB
packages/button/dist/style.css 3 kB
packages/components/dist/index.es.js 19 kB
packages/components/dist/index.js 19.9 kB
packages/core/dist/index.es.js 512 B
packages/core/dist/index.js 1.27 kB
packages/drawer/dist/index.es.js 1.76 kB
packages/drawer/dist/index.js 2.22 kB
packages/drawer/dist/style.css 497 B
packages/dropdown/dist/index.es.js 1.15 kB
packages/dropdown/dist/index.js 1.59 kB
packages/filter/dist/index.es.js 2.23 kB
packages/filter/dist/index.js 2.68 kB
packages/filter/dist/style.css 881 B
packages/focus-trap/dist/index.es.js 418 B
packages/focus-trap/dist/index.js 852 B
packages/form/dist/index.es.js 4.25 kB
packages/form/dist/index.js 4.73 kB
packages/form/dist/style.css 2.21 kB
packages/icons/dist/index.es.js 2.81 kB
packages/icons/dist/index.js 3.24 kB
packages/icons/dist/style.css 532 B
packages/menu/dist/index.es.js 3.69 kB
packages/menu/dist/index.js 4.16 kB
packages/menu/dist/style.css 872 B
packages/modal/dist/index.es.js 3.08 kB
packages/modal/dist/index.js 3.55 kB
packages/modal/dist/style.css 903 B
packages/navigation/dist/index.es.js 2.75 kB
packages/navigation/dist/index.js 3.21 kB
packages/navigation/dist/style.css 874 B
packages/overlay/dist/index.es.js 1.02 kB
packages/overlay/dist/index.js 1.42 kB
packages/popover/dist/index.es.js 3.01 kB
packages/popover/dist/index.js 3.43 kB
packages/popover/dist/style.css 529 B
packages/portal/dist/index.es.js 420 B
packages/portal/dist/index.js 835 B
packages/table/dist/index.es.js 1.01 kB
packages/table/dist/index.js 1.44 kB
packages/table/dist/style.css 700 B
packages/tokens/dist/fonts.css 183 B
packages/tokens/dist/index.css 1.47 kB
packages/tokens/dist/index.es.js 3.07 kB
packages/tokens/dist/index.js 3.11 kB
packages/tokens/dist/media-queries.css 113 B
packages/tokens/dist/themes.css 2.27 kB
packages/tooltip/dist/index.es.js 598 B
packages/tooltip/dist/index.js 1.02 kB
packages/tooltip/dist/style.css 337 B
packages/vars/dist/index.es.js 2.66 kB
packages/vars/dist/index.js 2.66 kB

compressed-size-action

Comment on lines +46 to +51
&:has(input[type='search']):is(
[data-trigger='Select'],
[data-trigger='MenuTrigger'],
[data-trigger='SubmenuTrigger']
) {
padding: var(--lp-spacing-200);
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These things all use the menu styles, which have implicit padding around their items/sections.

But the popover itself does not. Now, when these things are filterable (via <Autocomplete/>), we want also push the search field inward slightly. (And items align will align with the search field's icon or start-of-text.)

Comment on lines +41 to +42
&[data-trigger='DatePicker'],
&[data-trigger='DateRangePicker'] {
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These missing bits meant the buttons sat flush against the popover's edges


&:is([data-trigger='DatePicker'], [data-trigger='DateRangePicker']) {
padding: var(--lp-spacing-300);
&[data-trigger='SubmenuTrigger']:has(div[role='application']) {
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This one ensures a date(range)-picker in a submenu also has breathing room, consistent with the rest.

Calendars/date pickers / etc… don't have a direct WAI-ARIA role, and RAC uses role='application' for them. Based on what I read about that role, this felt reasonable: a widget with the "application" role is meant to be its own little UI, which makes me think that's a reasonable signal/differentiator in this context.

@apucacao apucacao marked this pull request as ready for review November 17, 2025 19:23
@apucacao apucacao requested a review from a team as a code owner November 17, 2025 19:23
@apucacao apucacao merged commit fc8a904 into main Nov 17, 2025
18 checks passed
@apucacao apucacao deleted the ag/fix/select-popover-padding branch November 17, 2025 20:15
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants