-
Notifications
You must be signed in to change notification settings - Fork 2.8k
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
fix(react-utilities): exposes internal methods used in API surface #25406
fix(react-utilities): exposes internal methods used in API surface #25406
Conversation
Asset size changesSize Auditor did not detect a change in bundle size for any component! Baseline commit: 4d58b78e55691de6f14746dbd282c315771be933 (build) |
Perf Analysis (
|
Scenario | Render type | Master Ticks | PR Ticks | Iterations | Status |
---|---|---|---|---|---|
Avatar | mount | 1274 | 1260 | 5000 | |
Button | mount | 910 | 932 | 5000 | |
FluentProvider | mount | 1511 | 1491 | 5000 | |
FluentProviderWithTheme | mount | 596 | 585 | 10 | |
FluentProviderWithTheme | virtual-rerender | 534 | 545 | 10 | |
FluentProviderWithTheme | virtual-rerender-with-unmount | 559 | 586 | 10 | |
MakeStyles | mount | 1937 | 1937 | 50000 | |
SpinButton | mount | 2353 | 2349 | 5000 |
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 f37399f:
|
📊 Bundle size reportUnchanged fixtures
|
change/@fluentui-react-utilities-4b8968e2-4358-44f1-9085-11dc0120eb70.json
Outdated
Show resolved
Hide resolved
…120eb70.json Co-authored-by: ling1726 <[email protected]>
Pull request was closed
* 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) ...
…icrosoft#25406) * fix(react-utilities): exposes internal methods used in API surface * Update change/@fluentui-react-utilities-4b8968e2-4358-44f1-9085-11dc0120eb70.json Co-authored-by: ling1726 <[email protected]> Co-authored-by: ling1726 <[email protected]>
…icrosoft#25406) * fix(react-utilities): exposes internal methods used in API surface * Update change/@fluentui-react-utilities-4b8968e2-4358-44f1-9085-11dc0120eb70.json Co-authored-by: ling1726 <[email protected]> Co-authored-by: ling1726 <[email protected]>
Current Behavior
As described in #25319
We have some internal leaks due to wrongly usage of
@internal
annotation, the newest API extraction tool will break on those scenariosNew Behavior
This PR solves internal leakages from
@fluentui/react-utilities
by making their internal typings and methods external.useIsomorphicLayoutEffect
(✅ Make it external, it's exported at react-components)useMergedRefs
(✅ Make it external, it's exported at react-components)FluentTriggerComponent
(❓ shouldn't be external, inline cast to avoid leaking types)TriggerProps
(✅ Make it external)