feat: Implement table cell layout components#24773
Merged
ling1726 merged 2 commits intomicrosoft:masterfrom Sep 13, 2022
Merged
feat: Implement table cell layout components#24773ling1726 merged 2 commits intomicrosoft:masterfrom
ling1726 merged 2 commits intomicrosoft:masterfrom
Conversation
Implements table cell layout components from microsoft#24762 to break up the aforementioned PR
Collaborator
📊 Bundle size reportUnchanged fixtures
|
|
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 5be62aa:
|
Asset size changesSize Auditor did not detect a change in bundle size for any component! Baseline commit: a40ef34fa6d1122bdfdb708f79b90de9edb2827d (build) |
Collaborator
Perf Analysis (
|
| Scenario | Render type | Master Ticks | PR Ticks | Iterations | Status |
|---|---|---|---|---|---|
| Avatar | mount | 1273 | 1256 | 5000 | |
| Button | mount | 923 | 944 | 5000 | |
| FluentProvider | mount | 1508 | 1479 | 5000 | |
| FluentProviderWithTheme | mount | 585 | 584 | 10 | |
| FluentProviderWithTheme | virtual-rerender | 535 | 556 | 10 | |
| FluentProviderWithTheme | virtual-rerender-with-unmount | 577 | 569 | 10 | |
| MakeStyles | mount | 1946 | 1948 | 50000 | |
| SpinButton | mount | 2378 | 2311 | 5000 |
bsunderhus
approved these changes
Sep 13, 2022
| import type { ComponentProps, ComponentState, Slot } from '@fluentui/react-utilities'; | ||
|
|
||
| export type TableCellLayoutSlots = { | ||
| root: Slot<'div'>; |
Contributor
There was a problem hiding this comment.
Suggested change
| root: Slot<'div'>; | |
| root: NonNullable<Slot<'div'>>; |
Comment on lines
+101
to
+116
| export { | ||
| TableCellLayout, | ||
| useTableCellLayoutStyles_unstable, | ||
| useTableCellLayout_unstable, | ||
| renderTableCellLayout_unstable, | ||
| tableCellLayoutClassNames, | ||
| } from './TableCellLayout'; | ||
| export type { TableCellLayoutProps, TableCellLayoutSlots, TableCellLayoutState } from './TableCellLayout'; | ||
|
|
||
| export { | ||
| TableCellPrimaryLayout, | ||
| tableCellPrimaryLayoutClassNames, | ||
| useTableCellPrimaryLayoutStyles_unstable, | ||
| useTableCellPrimaryLayout_unstable, | ||
| renderTableCellPrimaryLayout_unstable, | ||
| } from './TableCellPrimaryLayout'; |
Member
There was a problem hiding this comment.
TBH I think that we can get this in a single component, https://fluentsite.z22.web.core.windows.net/0.64.0/components/item-layout/definition
And may be it should not be connected to Table at all
marcosmoura
added a commit
to marcosmoura/fluentui
that referenced
this pull request
Sep 14, 2022
* master: (28 commits) Fix value font-weight inside heatmap chart (microsoft#24726) Fix legend overflow-indication-text role (microsoft#24756) Support custom locale in date axis (microsoft#24753) Cleanup env variables (microsoft#24739) ci(github): add GH Action to add issue labels based on new GH issue template (microsoft#24788) Update disallowedChangeTypes for newly created packages, to allow only 'prerelease' change types by default (microsoft#24763) feat(react-components): Adding missing AvatarGroup exports (microsoft#24770) remove unnecessary nohoist (microsoft#24760) feat(react-dialog): supports 1st rule of ARIA (microsoft#24525) BREAKING: TableCell layouts are handled by layout components (microsoft#24762) feat: Implement table cell layout components (microsoft#24773) applying package updates fix: remove readonly from DetailsList (microsoft#24615) chore: Cleaning up tokens in Button components so they better adhere to the design spec (microsoft#24732) fix: react-combobox listbox popup width matches trigger width (microsoft#24733) fix: react-combobox Option focus outline only shows with keyboard nav (microsoft#24700) feat: Publish react-field package, and export from react-components/unstable (microsoft#24235) fix: Replacing bottom border styles with text decoration underline in Link (microsoft#24734) docs(react-theme): Update readme (microsoft#24755) Add tests for hover states (microsoft#24390) ...
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.
Implements table cell layout components from #24762 to break up the aforementioned PR