Skip to content
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

support focus rect in shadow dom #2

Open
wants to merge 199 commits into
base: shadow-dom
Choose a base branch
from

Commits on Jul 29, 2023

  1. update mergeStyles to support contructible stylesheets

    First step toward supporting Shadow DOM.
    spmonahan committed Jul 29, 2023
    Configuration menu
    Copy the full SHA
    b81f48e View commit details
    Browse the repository at this point in the history
  2. constructible sheets

    spmonahan committed Jul 29, 2023
    Configuration menu
    Copy the full SHA
    42e74d8 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    63f0233 View commit details
    Browse the repository at this point in the history

Commits on Aug 8, 2023

  1. refactor mergestyles shadow dom/constructable style sheets implementa…

    …tion
    
    Adds:
    
    - MergeStylesRootContext to act as a "global" context for tracking
      style sheets. This should better enable multi-window scenarios and
      widgets.
    - MergeStylesShadowRootContext to act as a proxy for the shadow root.
    spmonahan committed Aug 8, 2023
    Configuration menu
    Copy the full SHA
    811035a View commit details
    Browse the repository at this point in the history

Commits on Aug 10, 2023

  1. Configuration menu
    Copy the full SHA
    fdb0227 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d2dc96a View commit details
    Browse the repository at this point in the history
  3. fix tests

    spmonahan committed Aug 10, 2023
    Configuration menu
    Copy the full SHA
    fbb87f6 View commit details
    Browse the repository at this point in the history
  4. fix build

    spmonahan committed Aug 10, 2023
    Configuration menu
    Copy the full SHA
    4fde944 View commit details
    Browse the repository at this point in the history
  5. update api snapshot

    spmonahan committed Aug 10, 2023
    Configuration menu
    Copy the full SHA
    bcc181c View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    254c523 View commit details
    Browse the repository at this point in the history

Commits on Aug 11, 2023

  1. add shadow dom exports

    spmonahan committed Aug 11, 2023
    Configuration menu
    Copy the full SHA
    ed70d2a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    dc0af67 View commit details
    Browse the repository at this point in the history
  3. update api snapshot

    spmonahan committed Aug 11, 2023
    Configuration menu
    Copy the full SHA
    6bcf9fb View commit details
    Browse the repository at this point in the history
  4. publish more stuff from CI

    spmonahan committed Aug 11, 2023
    Configuration menu
    Copy the full SHA
    b641f71 View commit details
    Browse the repository at this point in the history

Commits on Aug 14, 2023

  1. Configuration menu
    Copy the full SHA
    4e7b379 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e92d770 View commit details
    Browse the repository at this point in the history

Commits on Aug 30, 2023

  1. mergeStyles: initial shadow DOM and constructable stylesheets impleme…

    …ntation (microsoft#28906)
    
    * feat: update mergeStyles to support shadow DOM
    
    NOTE: this is stil a work in progress.
    
    - Refactors Stylesheet.ts to support shadow DOM
    - Adds React context and hooks for opting in to
      shadow DOM
    - Adds an API for projecting styles to child windows.
    
    * refactor and docs
    
    - Refactors stylesheet shadow DOM implementation a bit.
    - Adds a new docs page.
    
    * refactor to clean up types
    
    - Fixes various Typescript errors
    - Adds APIs to better encapsulate shadow DOM features
    
    * change files
    
    * add pipeline trigger
    
    * update test
    
    * fix typescript error
    
    * improve 'ShadowConfig' check
    
    * export ShadowConfig type
    
    * add constant for '__global__'
    
    * add default ShadowConfig
    
    * remove commented out line
    
    * better change file messages
    
    * remove IStyleSheetKey type
    
    * clean up
    
    * fix import path
    
    * add null checks before inserting styles
    
    * remove commented out code
    
    * refactor IStyleOptions to optionally include shadowConfig
    
    Adds an optional `shadowConfig` object to IStyleOptions. This
    allows us to pass the shadow DOM configuration object through to
    all the places we need it without modifying APIs to add a parameter
    for "shadowConfig".
    
    Aligns naming. Previously we had a type `ShadowConfig` and mostly referred
    to objects as "shadowConfig" but there were some instances of "shadowDom".
    Everything is now referred to by "shadowConfig/ShadowConfig".
    
    * update styleToClassName tests
    
    * update customizable tests
    
    * update component types for shadow DOM
    
    - remove "shadowDom" prop
    - update syles types to include "__shadowConfig__" key
    
    * remove unused variable
    
    * fix types in shadow dom example
    
    * add guard to calling requestAnimationFrame in Stylesheet
    
    This fix is for ssr-tests.
    spmonahan committed Aug 30, 2023
    Configuration menu
    Copy the full SHA
    870fe42 View commit details
    Browse the repository at this point in the history

Commits on Aug 31, 2023

  1. feat(react-shared-contexts): add AnnounceContext (microsoft#28654)

    * add Announce context
    
    * changefile
    
    * Update packages/react-components/react-shared-contexts/src/AnnounceContext/AnnounceContext.ts
    
    Co-authored-by: Sarah Higley <smhigley@users.noreply.github.com>
    
    * options fixes
    
    * updated api
    
    * Update packages/react-components/react-shared-contexts/src/AnnounceContext/AnnounceContext.ts
    
    Co-authored-by: ling1726 <lingfangao@hotmail.com>
    
    * remove generic type
    
    ---------
    
    Co-authored-by: Sarah Higley <smhigley@users.noreply.github.com>
    Co-authored-by: ling1726 <lingfangao@hotmail.com>
    3 people authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    ac13794 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    073766e View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    e296bcf View commit details
    Browse the repository at this point in the history
  4. fix(react-positioning): autoSize causing position update to reach max…

    …imum (microsoft#28689)
    
    * fix
    
    * f
    
    * test
    
    * clean test
    
    * type test
    YuanboXue-Amber authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    2711104 View commit details
    Browse the repository at this point in the history
  5. applying package updates

    Fluent UI Build authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    0832e9a View commit details
    Browse the repository at this point in the history
  6. feat(FluentProvider): emit errors on duplicate IDs (microsoft#28670)

    * feat(FluentProvider): emit errors on duplicate IDs
    
    * rework to properly work in SSR
    
    * Update apps/public-docsite-v9/src/Concepts/AdvancedConfiguration.stories.mdx
    
    Co-authored-by: ling1726 <lingfangao@hotmail.com>
    
    ---------
    
    Co-authored-by: ling1726 <lingfangao@hotmail.com>
    2 people authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    2658329 View commit details
    Browse the repository at this point in the history
  7. Fixing re-render issue for all charts when empty (microsoft#28321)

    * Fixing re-render issue for area chart
    
    * Area chart re-render fix
    
    * Fixing re-rendering for GVBC, HBC, Donut and HeatMap
    
    * Fixing the re-render issue for other charts
    
    * Change file
    
    * Updating snapshots
    
    * Resolving build error
    
    * Updating the charts to reduce re-renders
    
    * Fixing build errors
    
    * Merging master and updating snapshots
    
    * Updating snapshots
    
    * Update test
    
    * Fixing build and test errors
    
    * Fixing build and test errors
    
    * Fixing build errors
    
    * Fixing test error
    
    * Removing the test causing error
    
    * Resolving sankey chart test error
    
    * Fixing Sankey chart test failures
    
    * Fixing errors in line chart tests
    
    * Fixing errors
    
    * Fixing test errors
    
    * Removing 2 tests
    
    * Resolving donut test issue
    
    * Removing tests using act in donut chart
    
    * Resetting ids for donut test fix
    
    * Deleting tests causing test errors in PR build
    
    * Updating the charts for empty scenario
    
    * Removing tests that are failing the tests
    
    * Resolving PR comments
    
    * Heatmap test update
    
    * Sparkline test update
    srmukher authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    e1329b8 View commit details
    Browse the repository at this point in the history
  8. release (microsoft#28696)

    YuanboXue-Amber authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    533a048 View commit details
    Browse the repository at this point in the history
  9. fix(react-menu): revert menuitem focus ring back to border (microsoft…

    …#28698)
    
    * Revert "fix(react-menu): use outline for menuItem focus ring (microsoft#28685)"
    
    This reverts commit 9250428.
    
    * chg
    YuanboXue-Amber authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    0efb894 View commit details
    Browse the repository at this point in the history
  10. Added component tests for Stacked bar chart (microsoft#28150)

    * Adding component test plans for stacked bar chart
    
    * Change file
    
    * Adding few more tests
    srmukher authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    41eedaf View commit details
    Browse the repository at this point in the history
  11. applying package updates

    Fluent UI Build authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    a7b33a1 View commit details
    Browse the repository at this point in the history
  12. applying package updates

    Fluent UI Build authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    94a7dba View commit details
    Browse the repository at this point in the history
  13. feat(feature-requests): Priority dropdown to feature request template (

    …microsoft#28600)
    
    * feat(feature-requests): add Priority dropdown to feature request template
    
    * update priority dropdown values
    tudorpopams authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    1ef555e View commit details
    Browse the repository at this point in the history
  14. feat: Improved focus management for toast stack (microsoft#28660)

    * feat: Improved focus management for toast stack
    
    Adds some extra handling for multiple toasts:
    
    * Arrow key navigation between toasts
    * Focus trap within toaster until user Escape dismisses a toast
    
    Focus restoration after dismiss still works in the same way as before.
    
    The focus management is a custom implementation since there is no way
    for tabster mover to work within a groupper microsoft/tabster#
    
    * changefile
    
    * Delete and Escape interaction
    
    * changefile
    
    * override user onKeyDown
    
    * update docstring
    
    * handle cleanu
    
    * update name
    
    * use list role
    
    * suggested improvements
    
    * add test
    
    * revert breaking change
    
    * fix
    
    * update snapshot
    
    * fix cypress tests
    ling1726 authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    c32557a View commit details
    Browse the repository at this point in the history
  15. Added icon to the BreadcrumbItem (microsoft#28682)

    * Added icon to the BreadcrumbItem
    ValentinaKozlova authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    a9a2805 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    6ee092a View commit details
    Browse the repository at this point in the history
  17. chore: adds bundle size metrics (microsoft#28692)

    * chore: adds bundle size metrics
    
    * Update change/@fluentui-react-tree-c65bb12d-453d-4ee3-910d-058cfa260cd3.json
    
    Co-authored-by: Oleksandr Fediashov <alexander.mcgarret@gmail.com>
    
    * Update packages/react-components/react-tree/bundle-size/FlatTree.fixture.js
    
    Co-authored-by: Oleksandr Fediashov <alexander.mcgarret@gmail.com>
    
    * Update packages/react-components/react-tree/bundle-size/PersonaFlatTree.fixture.js
    
    Co-authored-by: Oleksandr Fediashov <alexander.mcgarret@gmail.com>
    
    * Update packages/react-components/react-tree/bundle-size/PersonaTree.fixture.js
    
    Co-authored-by: Oleksandr Fediashov <alexander.mcgarret@gmail.com>
    
    ---------
    
    Co-authored-by: Oleksandr Fediashov <alexander.mcgarret@gmail.com>
    2 people authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    9c0ddd9 View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    835e844 View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    c264193 View commit details
    Browse the repository at this point in the history
  20. fix(EventListener): do not use defaultProps (microsoft#28725)

    * fix(EventListener): do not use `defaultProps`
    
    * add changelog
    layershifter authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    13061f4 View commit details
    Browse the repository at this point in the history
  21. Made BreadcrumbButton consistent with Item and Link (microsoft#28672)

    * Made BreadcrumbButton consistent with Item and Link
    ValentinaKozlova authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    11724a4 View commit details
    Browse the repository at this point in the history
  22. feat(tokens): Add colorBrandStroke2Contrast and colorNeutralStrokeAlp…

    …ha2 (microsoft#28638)
    
    * feat(tokens): Add colorBrandStroke2Contrast and colorNeutralStrokeAlpha2
    
    * change files
    miroslavstastny authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    158ff27 View commit details
    Browse the repository at this point in the history
  23. feat(tokens): Add status color tokens (microsoft#28006)

    * feat(tokens): Add status color tokens
    
    * change files
    
    * bump target in perf-test-react-components to support Object.entries()
    
    * add status tokens to dark and HC
    
    * map danger to cranberry
    
    * add one-off overrides to match the latest design spec
    miroslavstastny authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    2e39d4c View commit details
    Browse the repository at this point in the history
  24. bugfix: ensures controlled state works properly + (microsoft#28665)

    makes AccordionItemValue generic +
    adds story for controlled state +
    simplifies access to requestToggle by context +
    reorganizes context into a separate folder
    bsunderhus authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    874fb5d View commit details
    Browse the repository at this point in the history
  25. fix(TimePicker): Selection now works in locales that don't use "am"/"…

    …pm" in their time format (microsoft#28469)
    
    Save the Date object in each of the ComboBox items used by TimePicker. When a new selection is made, use the Date object itself, rather than parsing the formatted time string.
    behowell authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    d462ba5 View commit details
    Browse the repository at this point in the history
  26. feature(react-utilities): implements new slot methods (slot and `as…

    …sertSlots`) (microsoft#28373)
    
    * feature: implements new slot methods (slot and assertSlots)
    
    * Update change/@fluentui-react-jsx-runtime-d2a505fc-6ffc-4679-aa63-5b29dcc83f7b.json
    
    Co-authored-by: Oleksandr Fediashov <alexander.mcgarret@gmail.com>
    
    * Update change/@fluentui-react-utilities-18c147c2-15a4-428f-89a7-049632ab27fe.json
    
    Co-authored-by: Oleksandr Fediashov <alexander.mcgarret@gmail.com>
    
    * chore: adds tests to slot, isSlot and assertSlots
    
    * chore: updates tests & ensures it doesn't throw in production
    
    * chore: removes metadata symbol
    
    * chore: renames SlotComponent to SlotComponentType
    + removes re-declaring a slot as an option for slot method
    
    * chore: renames required to renderByDefault
    
    * chore: converts slot to a namespace
    
    ---------
    
    Co-authored-by: Oleksandr Fediashov <alexander.mcgarret@gmail.com>
    2 people authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    5296fbb View commit details
    Browse the repository at this point in the history
  27. applying package updates

    Fluent UI Build authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    53158b1 View commit details
    Browse the repository at this point in the history
  28. applying package updates

    Fluent UI Build authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    45db98c View commit details
    Browse the repository at this point in the history
  29. feat: implements nested tree selection (microsoft#28668)

    * feat: implements nested tree selection
    
    * feat: removes uncontrolled nested selection
    bsunderhus authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    65cfeb6 View commit details
    Browse the repository at this point in the history
  30. Docs(react-tree): Improve docs and stories (microsoft#28741)

    * stories
    
    * labels and mini improvements
    
    * content fixes and best practises
    
    * storybook
    
    * rename FlatTree to ComponentName conviction
    
    * tree manipulation example fix lint
    
    * Tree folder for stories
    
    * tree folder
    
    ---------
    
    Co-authored-by: petdud <petrduda@microsoft.com>
    2 people authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    f593c1e View commit details
    Browse the repository at this point in the history
  31. Configuration menu
    Copy the full SHA
    0a224c7 View commit details
    Browse the repository at this point in the history
  32. chore(teams-prg): migrate to new slot API (microsoft#28751)

    * chore(teams-prg): migrate to new slot API
    
    * Update packages/react-components/react-menu/src/components/MenuPopover/useMenuPopover.ts
    
    Co-authored-by: Oleksandr Fediashov <alexander.mcgarret@gmail.com>
    
    * Update packages/react-components/react-toast/src/components/Toaster/useToaster.tsx
    
    Co-authored-by: Oleksandr Fediashov <alexander.mcgarret@gmail.com>
    
    ---------
    
    Co-authored-by: Oleksandr Fediashov <alexander.mcgarret@gmail.com>
    2 people authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    526ce7b View commit details
    Browse the repository at this point in the history
  33. Configuration menu
    Copy the full SHA
    d3fa1d7 View commit details
    Browse the repository at this point in the history
  34. Configuration menu
    Copy the full SHA
    88d64f1 View commit details
    Browse the repository at this point in the history
  35. Docs(react-tree): Update stories and remove third-party API calls (mi…

    …crosoft#28757)
    
    * inifnite scrolling + update actions
    
    * lazy loading and actions
    
    ---------
    
    Co-authored-by: petdud <petrduda@microsoft.com>
    2 people authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    7f52d13 View commit details
    Browse the repository at this point in the history
  36. Configuration menu
    Copy the full SHA
    2b75b40 View commit details
    Browse the repository at this point in the history
  37. Configuration menu
    Copy the full SHA
    a217460 View commit details
    Browse the repository at this point in the history
  38. Configuration menu
    Copy the full SHA
    5a362c8 View commit details
    Browse the repository at this point in the history
  39. Fixed bug with inaccurate calc (microsoft#28728)

    * Fixed bug with inaccurate calc
    ValentinaKozlova authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    43eb164 View commit details
    Browse the repository at this point in the history
  40. fix(Button): Fix falsy children causing off-center button icons (micr…

    …osoft#28495)
    
    * Fix falsy children being conditionally rendered in button icons
    
    * Changefiles
    
    * Updating change file.
    
    * Updating logic in useButtonStyles.
    
    ---------
    
    Co-authored-by: Makoto Morimoto <humbertomakotomorimoto@gmail.com>
    Co-authored-by: KHMakoto <Humberto.Morimoto@microsoft.com>
    3 people authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    59ca966 View commit details
    Browse the repository at this point in the history
  41. [3 of N] Changes for lazy load for hover card and legends (microsoft#…

    …27857)
    
    * Changes for lazy load for hover card and legends
    
    * Change file
    
    * Adding temporary files for measuring LH score for recent changes
    
    * Updating Snapshots
    
    * Fixing build failure after mergin from master and updating snapshots
    
    * Fixing the bug coming due to lazy load and relow changes. Also removing unnecessary changes
    
    * Fixing review comments
    
    * Fixing the VerticalBarChart test mouse event test case.Also Removing the lazy load changes for legends
    
    * Fixing the test cases
    
    * Updating snapshots post merge from master
    
    * Fixing review comment
    ankityadav4 authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    aca888e View commit details
    Browse the repository at this point in the history
  42. Configuration menu
    Copy the full SHA
    11a3445 View commit details
    Browse the repository at this point in the history
  43. Configuration menu
    Copy the full SHA
    9484e15 View commit details
    Browse the repository at this point in the history
  44. Configuration menu
    Copy the full SHA
    6f21c90 View commit details
    Browse the repository at this point in the history
  45. fix(Toolbar): remove items from defaultProps (microsoft#28723)

    * fix(Toolbar): remove `items` from `defaultProps`
    
    * add changelog
    layershifter authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    b2f7f2e View commit details
    Browse the repository at this point in the history
  46. feat: Export useEventCallback and mergeCallbacks (microsoft#28428)

    * feat: Export useEventCallback and mergeCallbacks
    
    Export these utilities so that they can be reused for the
    [react-chat component](https://github.com/microsoft/fluentui-contrib/tree/main/packages/react-chat)
    
    * changefile
    ling1726 authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    2fe1650 View commit details
    Browse the repository at this point in the history
  47. fix: made disabled BreadcrumbLink not focusable (microsoft#28720)

    * fix: made disabled link not focusable
    ValentinaKozlova authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    88d43a3 View commit details
    Browse the repository at this point in the history
  48. Configuration menu
    Copy the full SHA
    d1fcd87 View commit details
    Browse the repository at this point in the history
  49. updated styles to icon fill on hover (microsoft#28616)

    Co-authored-by: Makoto Morimoto <humbertomakotomorimoto@gmail.com>
    2 people authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    a3c2b7e View commit details
    Browse the repository at this point in the history
  50. feat(tokens): add durationGentle token (microsoft#28770)

    * feat(tokens): add durationGentle
    
    * change files
    miroslavstastny authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    2dee1d5 View commit details
    Browse the repository at this point in the history
  51. applying package updates

    Fluent UI Build authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    0848f45 View commit details
    Browse the repository at this point in the history
  52. Configuration menu
    Copy the full SHA
    66c04df View commit details
    Browse the repository at this point in the history
  53. applying package updates

    Fluent UI Build authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    bce21d6 View commit details
    Browse the repository at this point in the history
  54. Fix: flickering of items with large dividers in Overflow component (m…

    …icrosoft#28767)
    
    * Fixed flickering
    
    * Changed files
    
    * Added cy tests
    ValentinaKozlova authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    abedbd0 View commit details
    Browse the repository at this point in the history
  55. Adding React Charting Library VR Tests (microsoft#28634)

    * testing with adding the component to the application
    
    * line chart vr test
    
    * testing for change of vr snapshot
    
    * testing vr-test for nested folder
    
    * testing change in vr
    
    * modified the folder structure to support react-charting in the vr-tests application
    
    * testing for dark mode and rtl cases
    
    * vr-tests for line chart + dark mode changes
    
    * added area chart to vr-tests
    
    * vr-tests fix
    
    * testing for hovered image
    
    * testing for hover effect
    
    * hover event added
    
    * hover effect
    
    * added area chart and line chart with hover effects defined
    
    ---------
    
    Co-authored-by: Yush Singla <yushsingla@microsoft.com>
    Co-authored-by: yush singla <yuhshsingla@microsoft.com>
    3 people authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    9e63b12 View commit details
    Browse the repository at this point in the history
  56. Configuration menu
    Copy the full SHA
    b1c3466 View commit details
    Browse the repository at this point in the history
  57. Add mountnode datepicker compat (microsoft#28747)

    * Added mountNode to DatePicker compat
    
    * yarn change
    
    * Update packages/react-components/react-datepicker-compat/src/components/DatePicker/DatePicker.types.ts
    
    Co-authored-by: Makoto Morimoto <Humberto.Morimoto@microsoft.com>
    
    * Update packages/react-components/react-datepicker-compat/src/components/DatePicker/DatePicker.types.ts
    
    Co-authored-by: Makoto Morimoto <Humberto.Morimoto@microsoft.com>
    
    * Update change/@fluentui-react-datepicker-compat-d51eda0f-25b4-4190-b43a-79e3714272da.json
    
    Co-authored-by: Makoto Morimoto <Humberto.Morimoto@microsoft.com>
    
    * Update packages/react-components/react-datepicker-compat/src/components/DatePicker/DatePicker.types.ts
    
    Co-authored-by: Makoto Morimoto <Humberto.Morimoto@microsoft.com>
    
    ---------
    
    Co-authored-by: Makoto Morimoto <Humberto.Morimoto@microsoft.com>
    2 people authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    5de49a9 View commit details
    Browse the repository at this point in the history
  58. chore(react-tabs): migrate to new slot API (microsoft#28773)

    * chore(react-tabs): migrate to new slot API
    
    * chore: deprecates contentReservedSpaceClassName
    bsunderhus authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    1ec1e85 View commit details
    Browse the repository at this point in the history
  59. [Chore]: publish @fluentui/react-tree-preview on public docsite + b…

    …ufixes (microsoft#28776)
    
    * chore: update stories according to microsoft#28757
    
    * chore: updates documentation
    
    * chore: properly labels stories and adds has actions
    
    * bugfix: aria-checked should be mixed when selection is mixed
    
    * bugfix: aria-selected is required
    
    * chore: adds best practices to aria-selected=true
    
    * bugfix: stop scrolling on Home and End
    
    * chore: updates stories with ARIALive
    bsunderhus authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    4be8c7d View commit details
    Browse the repository at this point in the history
  60. Default pointer-events to 'none' for focus rectangles (microsoft#28439)

    * Pass-through pointer events in Details Row focus rects
    
    * Update changelogs
    ThomasMichon authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    1e8420d View commit details
    Browse the repository at this point in the history
  61. Axis titles for Cartesian Charts (microsoft#28580)

    * Adding axis title changes
    
    * Adding more changes
    
    * Adding optional axis titles for cartesian charts
    
    * Changing the font tokens
    
    * Updating snapshots
    
    * Changes to reflect few more changes
    
    * Updating tests and few others
    
    * Updating margins
    
    * Updating margins selectively
    
    * Optimizing the rendering for minimum snapshot changes
    
    * Updating the margins
    
    * Fixing typo
    srmukher authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    0acd39f View commit details
    Browse the repository at this point in the history
  62. applying package updates

    Fluent UI Build authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    5d18bb1 View commit details
    Browse the repository at this point in the history
  63. chore: tests for slot.resolveShorthand behavior (microsoft#28819)

    + slot.resolveShorthand consoles error an invalid value
    bsunderhus authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    b873bc7 View commit details
    Browse the repository at this point in the history
  64. Removing react testing library from peer dependency (microsoft#28808)

    * Removing react testing library from peer dependency
    
    * Adding change file
    
    * Adding as a dev dependency
    
    * Renaming test utility file
    srmukher authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    7b77196 View commit details
    Browse the repository at this point in the history
  65. applying package updates

    Fluent UI Build authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    5f122e7 View commit details
    Browse the repository at this point in the history
  66. docs: fix typo in theme migration (v9 -> v8) (microsoft#27243)

    Admin-merge due to a phantom conversation that cannot be resolved.
    robertpenner authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    b616a94 View commit details
    Browse the repository at this point in the history
  67. Defer tabs rectangle computation only for defined previousSelectedVal…

    …ue (microsoft#28749)
    
    * Defer tabs rectangle computation only when previousSelectedValue is defined
    
    This change include performance optimizations to compute calculateTabRect computation only when previousSelectedValue is defined. The method calculateTabRect computation triggers force style and layout computation so moving this method behind a condition saves a bit of cost.
    
    Work item: microsoft#28690
    
    * Moving lastAnimatedFrom check to previousSelectedValue place and adding change file
    nasirvi authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    2140fb2 View commit details
    Browse the repository at this point in the history
  68. applying package updates

    Fluent UI Build authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    5d9cc06 View commit details
    Browse the repository at this point in the history
  69. Adding component tests for Multi Stacked Bar Chart (microsoft#28165)

    * Adding component tests for Multi Stacked Bar Chart
    
    * Adding few more tests
    
    * Modifying the empty chart check
    
    * Updating snapshots
    
    * Merging master
    srmukher authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    a80a2b2 View commit details
    Browse the repository at this point in the history
  70. Configuration menu
    Copy the full SHA
    177b9d1 View commit details
    Browse the repository at this point in the history
  71. Configuration menu
    Copy the full SHA
    6c5c9ec View commit details
    Browse the repository at this point in the history
  72. applying package updates

    Fluent UI Build authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    130fdfb View commit details
    Browse the repository at this point in the history
  73. applying package updates

    Fluent UI Build authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    2986861 View commit details
    Browse the repository at this point in the history
  74. BREAKING(react-tags-preview): use JSX children instead of slots for I…

    …nteractionTag's buttons (microsoft#28739)
    
    * fix
    
    * chg
    
    * wip
    
    * story upd
    
    * story upd
    
    * story
    
    * vr
    
    * test
    
    * complete storybook
    
    * story
    
    * polish
    
    * chg
    
    * retry rename file to lowercase
    
    * api
    
    * UT
    
    * fix crud in vr
    
    * fix crud in vr
    
    * migrate to new slot api
    
    * small cleanup
    
    * small cleanup
    
    * small cleanup
    
    * Update packages/react-components/react-tags-preview/src/components/Secondary/Secondary.types.ts
    
    Co-authored-by: Bernardo Sunderhus <bernardo.sunderhus@gmail.com>
    
    * avatar context -> tag avatar context
    
    * api
    
    * add hasSecondaryAction prop
    
    * export context hooks
    
    * rename Primary to InteractionTagPrimary
    
    * rename Secondary to InteractionTagSecondary
    
    * rename cleanup
    
    * update vr test after rename
    
    * todo
    
    * cleanup after rename
    
    * api
    
    ---------
    
    Co-authored-by: Bernardo Sunderhus <bernardo.sunderhus@gmail.com>
    2 people authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    09266bc View commit details
    Browse the repository at this point in the history
  75. Configuration menu
    Copy the full SHA
    440db78 View commit details
    Browse the repository at this point in the history
  76. Configuration menu
    Copy the full SHA
    17a880c View commit details
    Browse the repository at this point in the history
  77. Configuration menu
    Copy the full SHA
    1b11b54 View commit details
    Browse the repository at this point in the history
  78. Removed iconPosition from the Breadcrumb (microsoft#28846)

    * Removed iconPosition for BreadcrumbItem
    ValentinaKozlova authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    33ff196 View commit details
    Browse the repository at this point in the history
  79. Scaffold Nav preview package (microsoft#28853)

    * scaffold nav package and component
    
    * update react-jsx-runtime
    
    * update code owners
    mltejera authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    1f739ea View commit details
    Browse the repository at this point in the history
  80. Added more CY and VR tests to the Breadcrumb (microsoft#28790)

    * Added case with icon to BreadcrumbItem
    
    * fixed code sandbox erros
    
    * Added CY tests with Menu
    ValentinaKozlova authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    86865c4 View commit details
    Browse the repository at this point in the history
  81. Configuration menu
    Copy the full SHA
    f22c14e View commit details
    Browse the repository at this point in the history
  82. feat: Add VivaEngageIcon to @fluentui/react-icons-mdl2 package (micro…

    …soft#28804)
    
    * Add VivaEngageIcon to react-icons-mdl2
    
    * change file
    
    * Update change/@fluentui-react-icons-mdl2-c86093be-f8a2-43e4-86f2-5889abe442fe.json
    
    Co-authored-by: Makoto Morimoto <Humberto.Morimoto@microsoft.com>
    
    ---------
    
    Co-authored-by: Makoto Morimoto <Humberto.Morimoto@microsoft.com>
    2 people authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    ea3f216 View commit details
    Browse the repository at this point in the history
  83. feat(public-docsite): Add topbanner component and use it in the publi…

    …c docsite (microsoft#28870)
    
    * feat: Add top banner to public docsite.
    
    * change files
    
    * Update change/@fluentui-react-docsite-components-2a60a3d3-f60d-4f53-94b2-533d4d8a7435.json
    
    Co-authored-by: Makoto Morimoto <Humberto.Morimoto@microsoft.com>
    
    * update cdn version and make public docsite provide the cdn url to comply with other components
    
    ---------
    
    Co-authored-by: Makoto Morimoto <Humberto.Morimoto@microsoft.com>
    2 people authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    6836c0d View commit details
    Browse the repository at this point in the history
  84. applying package updates

    Fluent UI Build authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    f99ec70 View commit details
    Browse the repository at this point in the history
  85. fix(react-tags-preview): style update - tag hover style should only b…

    …e on dismiss icon (microsoft#28791)
    
    * update tag style according to design upd
    
    * chg
    YuanboXue-Amber authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    f89b313 View commit details
    Browse the repository at this point in the history
  86. applying package updates

    Fluent UI Build authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    94e003d View commit details
    Browse the repository at this point in the history
  87. chore(react-jsx-runtime): release stable version (microsoft#28880)

    * chore(react-jsx-runtime): release stable version
    
    * Update packages/react-components/react-jsx-runtime/package.json
    
    Co-authored-by: Oleksandr Fediashov <alexander.mcgarret@gmail.com>
    
    ---------
    
    Co-authored-by: Oleksandr Fediashov <alexander.mcgarret@gmail.com>
    2 people authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    40325c8 View commit details
    Browse the repository at this point in the history
  88. Virtualizer: Merge scrollref prop with container ref (microsoft#28829)

    * make sure scrollViewRef prop is merged
    
    * Change file
    
    * Uniform change style
    Mitch-At-Work authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    1822907 View commit details
    Browse the repository at this point in the history
  89. Configuration menu
    Copy the full SHA
    43b1416 View commit details
    Browse the repository at this point in the history
  90. fix(public-docsite): Remove image clipping and move top banner under …

    …top nav to avoid header issues (microsoft#28885)
    
    * fix: Remove top clip for image to work correctly and move top banner under top nav.
    
    * change file
    sopranopillow authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    23a29f6 View commit details
    Browse the repository at this point in the history
  91. applying package updates

    Fluent UI Build authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    c1a17da View commit details
    Browse the repository at this point in the history
  92. Configuration menu
    Copy the full SHA
    0762779 View commit details
    Browse the repository at this point in the history
  93. Configuration menu
    Copy the full SHA
    cc68608 View commit details
    Browse the repository at this point in the history
  94. Configuration menu
    Copy the full SHA
    48d7c7c View commit details
    Browse the repository at this point in the history
  95. Configuration menu
    Copy the full SHA
    4157992 View commit details
    Browse the repository at this point in the history
  96. fix(react-tree): stablilize handleActionsRef created by TreeItem (m…

    …icrosoft#28896)
    
    * fix
    
    * chg
    
    * usecallback
    YuanboXue-Amber authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    d34f0e4 View commit details
    Browse the repository at this point in the history
  97. applying package updates

    Fluent UI Build authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    bfc50c7 View commit details
    Browse the repository at this point in the history
  98. chore(react-tags-preview): add docs (microsoft#28899)

    * docs
    
    * chg
    YuanboXue-Amber authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    df5725e View commit details
    Browse the repository at this point in the history
  99. fix(react-infobutton): Cursor should be pointer when hovering the but…

    …ton to show it's a button (microsoft#28893)
    
    * fix: Cursor should be pointer when hovering the button to show it's a button.
    
    * change file
    sopranopillow authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    f627248 View commit details
    Browse the repository at this point in the history
  100. Configuration menu
    Copy the full SHA
    3b8ddb6 View commit details
    Browse the repository at this point in the history
  101. doc: add drag & drop example (microsoft#28821)

    Co-authored-by: Bernardo Sunderhus <bernardo.sunderhus@gmail.com>
    2 people authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    58167a8 View commit details
    Browse the repository at this point in the history
  102. Lint: fix fluent v9 warnings (microsoft#28889)

    * chore: fix lint warnings for @fluentui/react-components
    
    * chore: fix lint warnings
    spmonahan authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    8f80a08 View commit details
    Browse the repository at this point in the history
  103. chore: fix lint warnings for @fluentui/react (microsoft#28888)

    Resolves all lints warnings for @fluentui/react package.
    spmonahan authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    ef6c2e5 View commit details
    Browse the repository at this point in the history
  104. fix(DatePicker): readOnlyTextField styles should win over default Tex…

    …tField's (microsoft#28891)
    
    * fix(DatePicker): Add more specificity to user provided readOnlyTextField classname to avoid getting its values overriden.
    
    * change files
    
    * update import
    
    * merge classes instead of adding specificity
    
    * update comment
    
    * update snapshots
    
    * Update packages/react/src/components/DatePicker/DatePicker.base.tsx
    
    Co-authored-by: Makoto Morimoto <Humberto.Morimoto@microsoft.com>
    
    ---------
    
    Co-authored-by: Makoto Morimoto <Humberto.Morimoto@microsoft.com>
    2 people authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    4f5ee93 View commit details
    Browse the repository at this point in the history
  105. fix(DatePicker, react-datepicker-compat): Make year picker react to g…

    …o to today button (microsoft#28907)
    
    * fix(DatePicker): Make year picker react to go to today.
    
    * fix: Make year picker react to go to today.
    
    * change fileS
    
    * Update packages/react/src/components/Calendar/CalendarYear/CalendarYear.base.tsx
    
    Co-authored-by: Makoto Morimoto <Humberto.Morimoto@microsoft.com>
    
    * Update packages/react-components/react-datepicker-compat/src/components/CalendarYear/CalendarYear.tsx
    
    Co-authored-by: Makoto Morimoto <Humberto.Morimoto@microsoft.com>
    
    ---------
    
    Co-authored-by: Makoto Morimoto <Humberto.Morimoto@microsoft.com>
    2 people authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    da42940 View commit details
    Browse the repository at this point in the history
  106. docs: Updating version of CDN used and replacing usage of via.placeho…

    …lder.com with SVG from CDN (microsoft#28895)
    
    * docs: Updating version of CDN used and replacing usage of via.placeholder.com with SVG from CDN.
    
    * Adding change files.
    
    * Updating snapshots.
    khmakoto authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    7287927 View commit details
    Browse the repository at this point in the history
  107. Configuration menu
    Copy the full SHA
    e9a6dd7 View commit details
    Browse the repository at this point in the history
  108. applying package updates

    Fluent UI Build authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    9567a1a View commit details
    Browse the repository at this point in the history
  109. Breadcrumb design team fixes (microsoft#28883)

    * Breadcrumb fixes after design review
    
    * Disabled link
    
    * generated api
    
    * changed files
    ValentinaKozlova authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    2837f22 View commit details
    Browse the repository at this point in the history
  110. Configuration menu
    Copy the full SHA
    e892975 View commit details
    Browse the repository at this point in the history
  111. fix(react-menu): grow MenuItem when it has long content (microsoft#28675

    )
    
    * chg
    
    * chg
    
    * add hidden
    
    * fix
    
    * add border-box
    
    * remove flex basis
    
    * revert focus
    
    * disable browser focus style
    
    * making menu top aligned
    
    * fix checkmark alignment
    
    * use token for spacing
    YuanboXue-Amber authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    5a88326 View commit details
    Browse the repository at this point in the history
  112. fix(react-tags-preview): use :active for pressed style instead of `…

    …:hover:active` (microsoft#28884)
    
    * use active
    
    * chg
    
    * vr
    YuanboXue-Amber authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    734a2a9 View commit details
    Browse the repository at this point in the history
  113. applying package updates

    Fluent UI Build authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    1ae9924 View commit details
    Browse the repository at this point in the history
  114. chore: pin @swc/helper in codesandbox as it does not support dependen…

    …cy alias (microsoft#28918)
    
    * fix
    
    * fix
    
    * comment
    
    * link issue
    YuanboXue-Amber authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    2b9a3d1 View commit details
    Browse the repository at this point in the history
  115. chore(react-tags-preview): update Tag stories with better a11y (micro…

    …soft#28909)
    
    * stories
    
    * md
    
    * Update packages/react-components/react-tags-preview/stories/InteractionTag/InteractionTagAppearance.stories.tsx
    
    Co-authored-by: Bernardo Sunderhus <bernardo.sunderhus@gmail.com>
    
    * Update packages/react-components/react-tags-preview/stories/InteractionTag/InteractionTagAppearance.stories.tsx
    
    Co-authored-by: Bernardo Sunderhus <bernardo.sunderhus@gmail.com>
    
    * Update packages/react-components/react-tags-preview/stories/InteractionTag/InteractionTagAppearance.stories.tsx
    
    Co-authored-by: Bernardo Sunderhus <bernardo.sunderhus@gmail.com>
    
    ---------
    
    Co-authored-by: Bernardo Sunderhus <bernardo.sunderhus@gmail.com>
    2 people authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    997f882 View commit details
    Browse the repository at this point in the history
  116. docs: update input migration with more multiline information (microso…

    …ft#28923)
    
    Update the summary to note that multiline input should use
    Textarea in Fluent v9. This is noted in the migration table but that
    it toward the bottom of the document and users have missed it. This
    should make the migration path clearer.
    spmonahan authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    2830184 View commit details
    Browse the repository at this point in the history
  117. Configuration menu
    Copy the full SHA
    6d525f6 View commit details
    Browse the repository at this point in the history
  118. Configuration menu
    Copy the full SHA
    7ca332a View commit details
    Browse the repository at this point in the history
  119. Configuration menu
    Copy the full SHA
    5138a87 View commit details
    Browse the repository at this point in the history
  120. Configuration menu
    Copy the full SHA
    69a7b37 View commit details
    Browse the repository at this point in the history
  121. Additional VR tests Charting Library (microsoft#28777)

    * testing with adding the component to the application
    
    * line chart vr test
    
    * testing for change of vr snapshot
    
    * testing vr-test for nested folder
    
    * testing change in vr
    
    * modified the folder structure to support react-charting in the vr-tests application
    
    * testing for dark mode and rtl cases
    
    * vr-tests for line chart + dark mode changes
    
    * added area chart to vr-tests
    
    * vr-tests fix
    
    * testing for hovered image
    
    * testing for hover effect
    
    * hover event added
    
    * hover effect
    
    * added area chart and line chart with hover effects defined
    
    * added vr-tests for react-charting
    
    * added yarn change file
    
    * linting error fixed
    
    * code refactor fixes
    
    * added more charts to vr-test, covered more scenarios
    
    * legend vr fix
    
    * spell fixes
    
    * added named tags for wrapped labels, secondary axis, etc
    
    * spell fixes
    
    ---------
    
    Co-authored-by: Yush Singla <yushsingla@microsoft.com>
    Co-authored-by: yush singla <yuhshsingla@microsoft.com>
    3 people authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    5dc0c9c View commit details
    Browse the repository at this point in the history
  122. Accordion : updated styles for accordion header cursor (microsoft#28850)

    * updated styles for accordion header cursor
    
    * updated comment
    kkakroo authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    a9753e3 View commit details
    Browse the repository at this point in the history
  123. Configuration menu
    Copy the full SHA
    3356308 View commit details
    Browse the repository at this point in the history
  124. applying package updates

    Fluent UI Build authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    ce715ff View commit details
    Browse the repository at this point in the history
  125. Configuration menu
    Copy the full SHA
    d19bbaa View commit details
    Browse the repository at this point in the history
  126. Configuration menu
    Copy the full SHA
    873b4c6 View commit details
    Browse the repository at this point in the history
  127. applying package updates

    Fluent UI Build authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    a0e646d View commit details
    Browse the repository at this point in the history
  128. Configuration menu
    Copy the full SHA
    971fe67 View commit details
    Browse the repository at this point in the history
  129. fix(react-utilities): useOnClickOutside should consider text select…

    …ion from inside to outside as inside click (microsoft#28765)
    
    * fix
    
    * remove click to keep pr only about selection
    
    * chg
    
    * test
    
    * test
    
    * try suggestion
    
    * cleanup
    
    ---------
    
    Co-authored-by: ling1726 <lingfangao@hotmail.com>
    2 people authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    8ce0cbe View commit details
    Browse the repository at this point in the history
  130. Configuration menu
    Copy the full SHA
    56604ff View commit details
    Browse the repository at this point in the history
  131. Configuration menu
    Copy the full SHA
    1f72df5 View commit details
    Browse the repository at this point in the history
  132. feat(react-table, react-components): export DataGridContextProvider (m…

    …icrosoft#28955)
    
    * feat: Export DataGridContextProvider from its package and react-components.
    
    * change files
    
    * requested change
    sopranopillow authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    1e3c2ec View commit details
    Browse the repository at this point in the history
  133. fix(react-popover): Only apply modal attributes if the PopoverSurface…

    … traps focus (microsoft#28613)
    
    * fix: Only apply modal attributes if the PopoverSurface traps focus.
    
    * change file
    
    * update snapshot
    
    * revert charting changes
    sopranopillow authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    9bd5936 View commit details
    Browse the repository at this point in the history
  134. Configuration menu
    Copy the full SHA
    4396653 View commit details
    Browse the repository at this point in the history
  135. 8.0 Azure Theme: Details list row focus contrast a11y bug fix (micros…

    …oft#28966)
    
    * Cherry picked from microsoft#28781
    
    * Create @fluentui-azure-themes-cfae358f-02a7-46ba-8e4d-ee45180e9eb8.json
    Jacqueline-ms authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    7c28e69 View commit details
    Browse the repository at this point in the history
  136. RFC: Component CSS Transitions/Animations on mount/unmount (microsoft…

    …#27328)
    
    Co-authored-by: Bernardo Sunderhus <bernardo.sunderhus@gmail.com>
    2 people authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    a04e04b View commit details
    Browse the repository at this point in the history
  137. feat: Add documentKeyboardEvent to OnVisibleChangeData when Tooltip i…

    …s hidden via Escape (microsoft#28951)
    
    Add new field `documentKeyboardEvent` in `OnVisibleChangeData`, which is set when the visibility change happens in response to a keyboard event on the document object. Currently this only happens for the Escape key.
    behowell authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    0e36421 View commit details
    Browse the repository at this point in the history
  138. applying package updates

    Fluent UI Build authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    e114b30 View commit details
    Browse the repository at this point in the history
  139. Configuration menu
    Copy the full SHA
    c79bc90 View commit details
    Browse the repository at this point in the history
  140. patch(react-table): expose DataGrid related contexts (microsoft#28973)

    * expose useDataGridContext_unstable etc. contexts
    
    * yarn change
    
    * export contextProviders
    
    * fix resolve conflict
    
    ---------
    
    Co-authored-by: Feng Qi <fengqi@microsoft.com>
    2 people authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    ca52422 View commit details
    Browse the repository at this point in the history
  141. applying package updates

    Fluent UI Build authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    f840ef8 View commit details
    Browse the repository at this point in the history
  142. Pie chart focus spacing (microsoft#28504)

    * changes for pie chart accessibiilty issues
    
    * pie chart accessibility
    
    * pie chart accessibility issue fixed, also example width adjustment added
    
    * examples made width and height adjustable
    
    * fixed svg tooltip text
    
    * added role to multistacked bar chart
    
    * pie chart build fixes and snapshot updates
    
    * screen reader bug fixes
    
    * pie chart POC
    
    * pie chart spacing added betweeen the pie
    
    * snapshots updated
    
    * removed unused imports
    
    * examples fixed
    
    * fixed changes post review
    
    * upddated snaphots
    
    * lint fix
    
    * lint fix
    
    * fixed pie chart color behaviour
    
    * fixed PR issues
    
    * snapshot updates
    
    * testing with adding the component to the application
    
    * removed vr test
    
    * added pie chart fixes
    
    * pr issue resolution
    
    * updated snapshots
    
    * fixed eslint error
    
    * fixed dark theme bug in pie chart
    
    * added mock function to snapshot test for pie chart
    
    * fixing pr comments
    
    * fixed RTL bug
    
    * updated snapshots
    
    * added classname arc
    
    ---------
    
    Co-authored-by: Yush Singla <yushsingla@microsoft.com>
    Co-authored-by: yush singla <yuhshsingla@microsoft.com>
    3 people authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    f300052 View commit details
    Browse the repository at this point in the history
  143. Focus indicator bug in bar charts (microsoft#28414)

    * focus indicator bug fix in bar chart
    
    * added bars spacing adjustment factor
    
    * resolving eslint issues
    
    * updated snapshots, for horizontal bar chart and multistacked bar chart
    
    * pixel design issue fixed
    
    * snapshot updated
    
    * added change, and fixed stroke thickness in horizontal bar chart
    
    * focus bug fixed
    
    * added support for dark mode, fixed few PR comments
    
    * updated snapshots
    
    * removed dark mode
    
    * fixed linting error
    
    * bar chart fixes
    
    * fixed the focus indicator width in horizontal bar chart
    
    * updated snapshots
    
    * resolved snapshots
    
    * fixed the focus indicator bug with different mathematical approach
    
    * removed emptychart flag
    
    * stacked bar chart focus indicator bug resolved
    
    * stacked bar chart bug fix
    
    * fixed the outline bug in dark mode
    
    * multistaked bar chart variable initialisation
    
    ---------
    
    Co-authored-by: Yush Singla <yushsingla@microsoft.com>
    Co-authored-by: yush singla <yuhshsingla@microsoft.com>
    3 people authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    c1daea5 View commit details
    Browse the repository at this point in the history
  144. Table/DataGrid: fix visuals for overflow (microsoft#28940)

    * Table/DataGrid: fix visuals for overflow
    
    * only use fit-content for resizable columns
    
    * props order
    
    * fix storybook examples
    
    * formatting
    
    * fix missing default state
    
    * fix unit tests
    
    * dashed border in vr test
    george-cz authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    b3be1f7 View commit details
    Browse the repository at this point in the history
  145. Configuration menu
    Copy the full SHA
    c71fca2 View commit details
    Browse the repository at this point in the history
  146. Vertical stacked bar chart - Component tests (microsoft#28594)

    * Added component tests for VerticalStackedBarChart
    
    * Updated VerticalStackedBarChat component charts and component test plan for same
    
    * Formated the new files
    
    * intgerted testWithWait and testWithoutWait functions
    
    * updated verticalstackedbar chart component tests
    
    * updated verticalstackedbar chart component tests
    
    * added new test cases
    
    * updated verticalstackedbar chart component tests
    
    * added barMaxGap and barCornerRadius test cases
    
    * added barMaxGap and barCornerRadius test cases
    
    * removed unwanted lines and code
    
    * resolved swift lint errors for function prototype
    v-baambati authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    fe47ff8 View commit details
    Browse the repository at this point in the history
  147. Revert "Keytips: Align keytipData with visible instance for dupes" (m…

    …icrosoft#28977)
    
    * Revert "Keytips: Align keytipData with visible instance for dupes (microsoft#28522)"
    
    This reverts commit bbba728.
    
    * change files
    makopch-ms authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    573b90d View commit details
    Browse the repository at this point in the history
  148. fix(Dialog): Add displayName for dialog footer and content (microsoft…

    …#28939)
    
    * add displayName for dialog footer and content
    
    * yarn change
    
    * Update change/@fluentui-react-e393acc7-f1bd-4632-9c6d-359924839807.json
    
    Co-authored-by: Esteban Munoz Facusse <esteban.230@hotmail.com>
    
    ---------
    
    Co-authored-by: Mingyuan Yu <mingyuanyu@microsoft.com>
    Co-authored-by: Esteban Munoz Facusse <esteban.230@hotmail.com>
    3 people authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    a424937 View commit details
    Browse the repository at this point in the history
  149. feat(react-infobutton): Add inline prop to InfoButton and make it inl…

    …ine by default (microsoft#28605)
    
    * adding inline prop
    
    * testing example
    
    * making infobutton inline
    
    * change file
    sopranopillow authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    f45ab9c View commit details
    Browse the repository at this point in the history
  150. feat(Stack): Add deprecated flag to render null when receiving a fals…

    …y value (microsoft#28978)
    
    * feat(Stack): Add deprecated flag to render null when receiving a falsy value.
    
    * change file
    
    * types change
    sopranopillow authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    6b5a94b View commit details
    Browse the repository at this point in the history
  151. applying package updates

    Fluent UI Build authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    ae9f562 View commit details
    Browse the repository at this point in the history
  152. fix(react-tags-preview): tag with secondary text has no top border un…

    …der windows high contrast (microsoft#28963)
    
    * styles
    
    * chg
    YuanboXue-Amber authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    50c4f1b View commit details
    Browse the repository at this point in the history
  153. Configuration menu
    Copy the full SHA
    affdec3 View commit details
    Browse the repository at this point in the history
  154. chore: Migrate bot config to yml (microsoft#28981)

    * chore: Migrate bot config to yml.
    
    * rename folder
    sopranopillow authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    0a574b4 View commit details
    Browse the repository at this point in the history
  155. In PeoplePicker, we can now use arrow keys to move cursor around micr…

    …osoft#28655 (microsoft#28975)
    
    * I changed the default value as the previous state value rather than empty string
    
    * changement details json
    
    * Update change/@fluentui-react-7286e07c-b484-4545-a09e-fc93cdb6dea1.json
    
    ---------
    
    Co-authored-by: Esteban Munoz Facusse <esteban.230@hotmail.com>
    2 people authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    cad9c92 View commit details
    Browse the repository at this point in the history
  156. 28576 small button is using 3px border radius (microsoft#28589)

    * microsoft#28576: [Bug]: Small <Button> is using 3px border radius
    
    * run yarn change
    
    * updated the code to use token for border-radius
    
    * updated the comment as per @sopranopillow's suggestion
    AbdulRehmanMehar authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    8c3218f View commit details
    Browse the repository at this point in the history
  157. applying package updates

    Fluent UI Build authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    99e0a84 View commit details
    Browse the repository at this point in the history
  158. Line Chart and Area Chart - Component tests (microsoft#28235)

    * integrated line chat test cases
    
    * separated test cases based on the sub component
    
    * added test cases for line chart
    
    * Added component test plan for line chart
    
    * Updated line chart test cases
    
    * Updated line chart test cases
    
    * Added component tests for Area chart
    
    * updated Tests for Line and Area charts
    
    * Formatted document as per the build issues
    
    * updated test cases numbers properly
    
    * updated Area chat component tests
    
    * updated line chart tests with testWithWait functions
    
    * added new tests
    
    * reverted chnages in Linechart base class
    
    * reverted unwanted chnages
    
    * updated existing tests
    
    * updated existing test cases
    
    * removed unwanted code
    
    * srmukher: Resolving date mismatch in snapshots
    
    * srmukher: Resolving date mismatch in snapshots
    
    * updated chnage file
    v-baambati authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    ac25f00 View commit details
    Browse the repository at this point in the history
  159. Configuration menu
    Copy the full SHA
    6f38bd0 View commit details
    Browse the repository at this point in the history
  160. Configuration menu
    Copy the full SHA
    06077de View commit details
    Browse the repository at this point in the history
  161. feat(react-motion): add useMotion hook (microsoft#28699)

    Co-authored-by: Bernardo Sunderhus <bernardo.sunderhus@gmail.com>
    2 people authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    421a194 View commit details
    Browse the repository at this point in the history
  162. fix(react-tags-preview): use regular icon for dismiss (microsoft#28958)

    * fix tag issue
    
    * fix interactiontag label
    
    * add label to toolbar
    
    * use regular icon
    
    * chg
    
    * remove role image
    
    * aria label dismiss
    
    * Update packages/react-components/react-tags-preview/stories/TagGroup/TagGroupDefault.stories.tsx
    
    Co-authored-by: ling1726 <lingfangao@hotmail.com>
    
    * update label
    
    * update label
    
    * dismiss role
    
    ---------
    
    Co-authored-by: ling1726 <lingfangao@hotmail.com>
    2 people authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    17252bb View commit details
    Browse the repository at this point in the history
  163. Configuration menu
    Copy the full SHA
    67dd172 View commit details
    Browse the repository at this point in the history
  164. fix (microsoft#29002)

    YuanboXue-Amber authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    1a78c2f View commit details
    Browse the repository at this point in the history
  165. feat(react-icons-mdl2-branded): Add VivaEngageIcon (microsoft#28979)

    * Add VivaEngageIcon
    
    * Update change/@fluentui-react-icons-mdl2-branded-1e32e164-92ff-49d6-8ab9-7a9c8270133b.json
    
    Co-authored-by: Esteban Munoz Facusse <esteban.230@hotmail.com>
    
    ---------
    
    Co-authored-by: Esteban Munoz Facusse <esteban.230@hotmail.com>
    2 people authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    ca36596 View commit details
    Browse the repository at this point in the history
  166. Add IconDirectionProvider to FluentProvider (microsoft#28803)

    * Add IconDirectionProvider
    
    * change file
    
    * update value provided to IconDirectionProvider
    
    * api update
    
    * code review comments
    
    * api update
    
    * Update iconDirection
    tomi-msft authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    94b3d7a View commit details
    Browse the repository at this point in the history
  167. applying package updates

    Fluent UI Build authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    a3272dc View commit details
    Browse the repository at this point in the history
  168. Configuration menu
    Copy the full SHA
    9818329 View commit details
    Browse the repository at this point in the history
  169. fix(react-utilities): click scrollbar should invoke callback in `useO…

    …nClickOutside` (microsoft#28965)
    
    * change
    
    * chglog
    
    * UT
    YuanboXue-Amber authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    73e46fe View commit details
    Browse the repository at this point in the history
  170. Configuration menu
    Copy the full SHA
    28c620f View commit details
    Browse the repository at this point in the history
  171. applying package updates

    Fluent UI Build authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    e96b29a View commit details
    Browse the repository at this point in the history
  172. feat: Update Spinner appearance token (microsoft#29008)

    * feat: Update Spinner appearance token
    
    * change file
    tomi-msft authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    7b85547 View commit details
    Browse the repository at this point in the history
  173. Horizontal bar chart - Component tests (microsoft#29013)

    * added component tests for HorizontalBarChart
    
    * Added new test cases
    
    * added new test cases
    
    * added Horizantal bar chart component test plan
    
    * added Horizantal bar chart component test plan
    
    * updated import class name
    
    * added new test for chatmode percentage
    v-baambati authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    44205fd View commit details
    Browse the repository at this point in the history
  174. Configuration menu
    Copy the full SHA
    d872a1a View commit details
    Browse the repository at this point in the history
  175. Configuration menu
    Copy the full SHA
    b7b152b View commit details
    Browse the repository at this point in the history
  176. feat(docsite): add Application Insights telemetry (microsoft#28709)

    * feat(docsite): add Application Insights telemetry
    
    * add app insights repo secret usage
    tudorpopams authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    4f3291e View commit details
    Browse the repository at this point in the history
  177. Configuration menu
    Copy the full SHA
    d0a7824 View commit details
    Browse the repository at this point in the history
  178. Configuration menu
    Copy the full SHA
    456c9ea View commit details
    Browse the repository at this point in the history
  179. Configuration menu
    Copy the full SHA
    a275099 View commit details
    Browse the repository at this point in the history
  180. Configuration menu
    Copy the full SHA
    b446606 View commit details
    Browse the repository at this point in the history
  181. mergeStyles: initial shadow DOM and constructable stylesheets impleme…

    …ntation (microsoft#28906)
    
    * feat: update mergeStyles to support shadow DOM
    
    NOTE: this is stil a work in progress.
    
    - Refactors Stylesheet.ts to support shadow DOM
    - Adds React context and hooks for opting in to
      shadow DOM
    - Adds an API for projecting styles to child windows.
    
    * refactor and docs
    
    - Refactors stylesheet shadow DOM implementation a bit.
    - Adds a new docs page.
    
    * refactor to clean up types
    
    - Fixes various Typescript errors
    - Adds APIs to better encapsulate shadow DOM features
    
    * change files
    
    * add pipeline trigger
    
    * update test
    
    * fix typescript error
    
    * improve 'ShadowConfig' check
    
    * export ShadowConfig type
    
    * add constant for '__global__'
    
    * add default ShadowConfig
    
    * remove commented out line
    
    * better change file messages
    
    * remove IStyleSheetKey type
    
    * clean up
    
    * fix import path
    
    * add null checks before inserting styles
    
    * remove commented out code
    
    * refactor IStyleOptions to optionally include shadowConfig
    
    Adds an optional `shadowConfig` object to IStyleOptions. This
    allows us to pass the shadow DOM configuration object through to
    all the places we need it without modifying APIs to add a parameter
    for "shadowConfig".
    
    Aligns naming. Previously we had a type `ShadowConfig` and mostly referred
    to objects as "shadowConfig" but there were some instances of "shadowDom".
    Everything is now referred to by "shadowConfig/ShadowConfig".
    
    * update styleToClassName tests
    
    * update customizable tests
    
    * update component types for shadow DOM
    
    - remove "shadowDom" prop
    - update syles types to include "__shadowConfig__" key
    
    * remove unused variable
    
    * fix types in shadow dom example
    
    * add guard to calling requestAnimationFrame in Stylesheet
    
    This fix is for ssr-tests.
    spmonahan authored and brwai committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    d220118 View commit details
    Browse the repository at this point in the history
  182. Configuration menu
    Copy the full SHA
    50a92fa View commit details
    Browse the repository at this point in the history