-
Notifications
You must be signed in to change notification settings - Fork 2.9k
fix(react-avatar): Remove gaps between AvatarGroupItem/OveflowButton and its outline #25382
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
sopranopillow
merged 2 commits into
microsoft:master
from
sopranopillow:avatargroup/border-calc
Oct 27, 2022
Merged
fix(react-avatar): Remove gaps between AvatarGroupItem/OveflowButton and its outline #25382
sopranopillow
merged 2 commits into
microsoft:master
from
sopranopillow:avatargroup/border-calc
Oct 27, 2022
Conversation
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
Collaborator
Perf Analysis (
|
| Scenario | Render type | Master Ticks | PR Ticks | Iterations | Status |
|---|---|---|---|---|---|
| Avatar | mount | 1292 | 1283 | 5000 | |
| Button | mount | 907 | 933 | 5000 | |
| FluentProvider | mount | 1506 | 1482 | 5000 | |
| FluentProviderWithTheme | mount | 571 | 579 | 10 | |
| FluentProviderWithTheme | virtual-rerender | 538 | 546 | 10 | |
| FluentProviderWithTheme | virtual-rerender-with-unmount | 578 | 569 | 10 | |
| MakeStyles | mount | 1948 | 1958 | 50000 | |
| SpinButton | mount | 2316 | 2310 | 5000 |
Asset size changesSize Auditor did not detect a change in bundle size for any component! Baseline commit: 6682e6f4e59ca3fe479564219ed4b1b9a91b9907 (build) |
|
This pull request is automatically built and testable in CodeSandbox. To see build info of the built libraries, click here or the icon next to each commit SHA. Latest deployment of this branch, based on commit 77799e3:
|
Collaborator
📊 Bundle size report
Unchanged fixtures
|
khmakoto
reviewed
Oct 27, 2022
...ges/react-components/react-avatar/src/components/AvatarGroupItem/useAvatarGroupItemStyles.ts
Outdated
Show resolved
Hide resolved
...ges/react-components/react-avatar/src/components/AvatarGroupItem/useAvatarGroupItemStyles.ts
Outdated
Show resolved
Hide resolved
...ges/react-components/react-avatar/src/components/AvatarGroupItem/useAvatarGroupItemStyles.ts
Outdated
Show resolved
Hide resolved
c00b0ed to
c8f377b
Compare
behowell
approved these changes
Oct 27, 2022
spmonahan
approved these changes
Oct 27, 2022
khmakoto
approved these changes
Oct 27, 2022
marcosmoura
added a commit
to marcosmoura/fluentui
that referenced
this pull request
Oct 31, 2022
* master: (22 commits) fix(react-menu): removes exposing of internal type FluentTriggerComponent (microsoft#25410) fix(react-popover): removes exposing of internal type FluentTriggerComponent (microsoft#25411) applying package updates fix(react-tooltip): removes exposing of internal type FluentTriggerComponent (microsoft#25409) chore: Reducing bundle size of Stack by moving selector used in multiple places to local const (microsoft#25429) docs(rfcs): Simple component implementation (microsoft#25139) Fix migration publishing (microsoft#25422) Integrate storywright for story tests - As part of exploring screener alternative (microsoft#25399) fix(react-utilities): exposes internal methods used in API surface (microsoft#25406) fix(react-dialog): removes exposing of internal type FluentTriggerComponent (microsoft#25408) fix(react-context-selector): exposes internal type ContextSelector (microsoft#25404) fix(react-aria): exposes internal leaking types (microsoft#25403) fix(react-shared-contexts): exposes internal leaks used in the API surface (microsoft#25405) fix(react-positioning): exposes new typings to avoid exposing internal methods (microsoft#25407) applying package updates fix: Allowing DatePicker to be focusable within FocusZones by default (microsoft#25428) fix: Pad in slider so the thumb does not render outside the bounds of the root element (microsoft#25378) feat: Add enableScopedSelectors prop to Stack that, when true, makes the Stack styles selectors be more scoped to not be as expensive in style recalculation (microsoft#25397) fix(react-avatar): Remove gaps between AvatarGroupItem/OveflowButton and its outline (microsoft#25382) fix: Combobox text attribute ignored when empty string is passed (microsoft#24665) ...
NotWoods
pushed a commit
to NotWoods/fluentui
that referenced
this pull request
Nov 18, 2022
…and its outline (microsoft#25382) * using shadowbox instead of after pseudo-element * change file
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.

Current Behavior
AvatarGrouphas a gap between the outline and the Avatar/Button.New Behavior
AvatarGroup doesn't have a gap anymore.