-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'users/srmukher/LegendsMultiSel' of https://github.com/m…
…icrosoft/fluentui into users/srmukher/LegendsMultiSel
- Loading branch information
Showing
138 changed files
with
2,021 additions
and
466 deletions.
There are no files selected for viewing
This file contains 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
18 changes: 18 additions & 0 deletions
18
apps/perf-test-react-components/src/scenarios/ColorPicker.tsx
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
import * as React from 'react'; | ||
import { ColorPicker, ColorArea, ColorSlider, AlphaSlider } from '@fluentui/react-color-picker-preview'; | ||
import { FluentProvider } from '@fluentui/react-provider'; | ||
import { webLightTheme } from '@fluentui/react-theme'; | ||
|
||
const Scenario = () => ( | ||
<ColorPicker color={{ h: 109, s: 1, v: 0.91 }}> | ||
<ColorArea /> | ||
<ColorSlider /> | ||
<AlphaSlider /> | ||
</ColorPicker> | ||
); | ||
|
||
Scenario.decorator = (props: { children: React.ReactNode }) => ( | ||
<FluentProvider theme={webLightTheme}>{props.children}</FluentProvider> | ||
); | ||
|
||
export default Scenario; |
This file contains 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
30 changes: 30 additions & 0 deletions
30
apps/vr-tests-react-components/src/stories/ColorPicker/ColorPicker.stories.tsx
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
import * as React from 'react'; | ||
import type { Meta } from '@storybook/react'; | ||
import { ColorPicker } from '@fluentui/react-color-picker-preview'; | ||
import { SampleColorPicker } from './utils'; | ||
import { Steps } from 'storywright'; | ||
|
||
import { DARK_MODE, getStoryVariant, HIGH_CONTRAST, RTL, withStoryWrightSteps } from '../../utilities'; | ||
|
||
export default { | ||
title: 'ColorPicker Converged', | ||
decorators: [ | ||
story => withStoryWrightSteps({ story, steps: new Steps().snapshot('default', { cropTo: '.testWrapper' }).end() }), | ||
], | ||
} satisfies Meta<typeof ColorPicker>; | ||
|
||
export const Default = () => <SampleColorPicker color={{ h: 109, s: 1, v: 0.91 }} />; | ||
|
||
export const DefaultDarkMode = getStoryVariant(Default, DARK_MODE); | ||
|
||
export const DefaultHighContrast = getStoryVariant(Default, HIGH_CONTRAST); | ||
|
||
export const DefaultRTL = getStoryVariant(Default, RTL); | ||
|
||
export const Shape = () => ( | ||
<> | ||
<SampleColorPicker color={{ h: 195, s: 0.85, v: 0.93 }} shape="square" /> | ||
<SampleColorPicker color={{ h: 195, s: 0.85, v: 0.913 }} shape="rounded" /> | ||
</> | ||
); | ||
Shape.storyName = 'shape'; |
16 changes: 16 additions & 0 deletions
16
apps/vr-tests-react-components/src/stories/ColorPicker/utils.tsx
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import * as React from 'react'; | ||
import { | ||
ColorPicker, | ||
ColorArea, | ||
AlphaSlider, | ||
ColorSlider, | ||
type ColorPickerProps, | ||
} from '@fluentui/react-color-picker-preview'; | ||
|
||
export const SampleColorPicker = (props: ColorPickerProps) => ( | ||
<ColorPicker {...props}> | ||
<ColorArea /> | ||
<ColorSlider /> | ||
<AlphaSlider /> | ||
</ColorPicker> | ||
); |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
export * from './TestWrapperDecorator'; | ||
export * from './getStoryVariant'; | ||
export * from './withStoryWrightSteps'; | ||
export { | ||
TestWrapperDecorator, | ||
TestWrapperDecoratorFixedWidth, | ||
TestWrapperDecoratorFullWidth, | ||
TestWrapperDecoratorTall, | ||
TestWrapperDecoratorTallFixedWidth, | ||
} from './TestWrapperDecorator'; | ||
export { DARK_MODE, HIGH_CONTRAST, RTL, getStoryVariant } from './getStoryVariant'; | ||
export { withStoryWrightSteps } from './withStoryWrightSteps'; |
7 changes: 7 additions & 0 deletions
7
change/@fluentui-eslint-plugin-75e61142-a4e1-4046-9076-316b44c873ca.json
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"type": "patch", | ||
"comment": "chore: remove usage of \"export *\"", | ||
"packageName": "@fluentui/eslint-plugin", | ||
"email": "[email protected]", | ||
"dependentChangeType": "patch" | ||
} |
7 changes: 0 additions & 7 deletions
7
change/@fluentui-react-1bdbe475-2d17-453e-b058-b152322278cd.json
This file was deleted.
Oops, something went wrong.
7 changes: 0 additions & 7 deletions
7
change/@fluentui-react-charting-f56dc096-9891-4d5c-ae30-4d8a6ac5b481.json
This file was deleted.
Oops, something went wrong.
7 changes: 7 additions & 0 deletions
7
change/@fluentui-react-conformance-33c0a62b-e18c-45a1-9fbd-bfd7089f997c.json
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"type": "patch", | ||
"comment": "chore: remove usage of \"export *\"", | ||
"packageName": "@fluentui/react-conformance", | ||
"email": "[email protected]", | ||
"dependentChangeType": "patch" | ||
} |
7 changes: 7 additions & 0 deletions
7
change/@fluentui-react-message-bar-72abc821-ab32-4cac-8dd2-4c8dce4c810e.json
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"type": "minor", | ||
"comment": "refactor(MessageBar): migrate slide & fade to motion components", | ||
"packageName": "@fluentui/react-message-bar", | ||
"email": "[email protected]", | ||
"dependentChangeType": "patch" | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,25 @@ | ||
export * from './Button/buttonBehaviorDefinition'; | ||
export * from './Button/buttonGroupBehaviorDefinition'; | ||
export * from './Button/toggleButtonBehaviorDefinition'; | ||
export * from './Link/linkBehaviorDefinition'; | ||
export * from './MenuButton/menuButtonBehaviorDefinition'; | ||
export * from './Pill/pillActionBehaviorDefinition'; | ||
export * from './Pill/pillBehaviorDefinition'; | ||
export * from './Pill/pillOptionBehaviorDefinition'; | ||
export * from './Pill/pillGroupBehaviorDefinition'; | ||
export * from './Popup/popupBehaviorDefinition'; | ||
|
||
export * from './react-button/buttonAccessibilityBehaviorDefinition'; | ||
export { buttonBehaviorDefinition } from './Button/buttonBehaviorDefinition'; | ||
export { buttonGroupBehaviorDefinition } from './Button/buttonGroupBehaviorDefinition'; | ||
export { toggleButtonBehaviorDefinition } from './Button/toggleButtonBehaviorDefinition'; | ||
export { linkBehaviorDefinition } from './Link/linkBehaviorDefinition'; | ||
export { | ||
menuButtonBehaviorDefinition, | ||
menuButtonBehaviorDefinitionMenuSlot, | ||
menuButtonBehaviorDefinitionMenuSlotWithoutID, | ||
menuButtonBehaviorDefinitionTriggerSlotNotTabbable, | ||
menuButtonBehaviorDefinitionTriggerSlotTabbable, | ||
menuButtonBehaviorDefinitionTriggerSlotWithoutID, | ||
menuButtonBehaviorDefinitionTriggerWithTabIndex, | ||
} from './MenuButton/menuButtonBehaviorDefinition'; | ||
export { pillActionBehaviorDefinition } from './Pill/pillActionBehaviorDefinition'; | ||
export { pillBehaviorDefinition } from './Pill/pillBehaviorDefinition'; | ||
export { pillOptionBehaviorDefinition } from './Pill/pillOptionBehaviorDefinition'; | ||
export { pillGroupBehaviorDefinition } from './Pill/pillGroupBehaviorDefinition'; | ||
export { | ||
popupBehaviorDefinition, | ||
popupBehaviorDefinitionPopupSlot, | ||
popupBehaviorDefinitionTriggerSlotNotTabbable, | ||
popupBehaviorDefinitionTriggerSlotTabbable, | ||
popupBehaviorDefinitionTriggerSlotWithTabIndex, | ||
} from './Popup/popupBehaviorDefinition'; | ||
export { buttonAccessibilityBehaviorDefinition } from './react-button/buttonAccessibilityBehaviorDefinition'; |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
export * from './ComponentTestFacade'; | ||
export { ComponentTestFacade } from './ComponentTestFacade'; |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,27 @@ | ||
export * from './types'; | ||
export * from './validators/index'; | ||
export * from './facades/index'; | ||
export * from './rules/index'; | ||
export * from './definitions/index'; | ||
export type { AccessibilityBehavior, PropValue, Props, Rule, Slot, TestFacade } from './types'; | ||
export { validateBehavior, validateSlot } from './validators/index'; | ||
export { ComponentTestFacade } from './facades/index'; | ||
export { BehaviorRule, SlotRule } from './rules/index'; | ||
export { | ||
buttonAccessibilityBehaviorDefinition, | ||
buttonBehaviorDefinition, | ||
buttonGroupBehaviorDefinition, | ||
linkBehaviorDefinition, | ||
menuButtonBehaviorDefinition, | ||
menuButtonBehaviorDefinitionMenuSlot, | ||
menuButtonBehaviorDefinitionMenuSlotWithoutID, | ||
menuButtonBehaviorDefinitionTriggerSlotNotTabbable, | ||
menuButtonBehaviorDefinitionTriggerSlotTabbable, | ||
menuButtonBehaviorDefinitionTriggerSlotWithoutID, | ||
menuButtonBehaviorDefinitionTriggerWithTabIndex, | ||
pillActionBehaviorDefinition, | ||
pillBehaviorDefinition, | ||
pillGroupBehaviorDefinition, | ||
pillOptionBehaviorDefinition, | ||
popupBehaviorDefinition, | ||
popupBehaviorDefinitionPopupSlot, | ||
popupBehaviorDefinitionTriggerSlotNotTabbable, | ||
popupBehaviorDefinitionTriggerSlotTabbable, | ||
popupBehaviorDefinitionTriggerSlotWithTabIndex, | ||
toggleButtonBehaviorDefinition, | ||
} from './definitions/index'; |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
export * from './rules'; | ||
export { BehaviorRule, SlotRule } from './rules'; |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
export * from './validate'; | ||
export { validateBehavior, validateSlot } from './validate'; |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,54 @@ | ||
{ | ||
"name": "@fluentui/react-charting", | ||
"entries": [ | ||
{ | ||
"date": "Mon, 23 Dec 2024 07:22:57 GMT", | ||
"tag": "@fluentui/react-charting_v5.23.29", | ||
"version": "5.23.29", | ||
"comments": { | ||
"patch": [ | ||
{ | ||
"author": "[email protected]", | ||
"package": "@fluentui/react-charting", | ||
"commit": "7b4a3785c6c1d7c207602cad0a1795e3df9122ee", | ||
"comment": "feat: add functionality to export chart as image" | ||
}, | ||
{ | ||
"author": "beachball", | ||
"package": "@fluentui/react-charting", | ||
"comment": "Bump @fluentui/react-focus to v8.9.20", | ||
"commit": "7b4a3785c6c1d7c207602cad0a1795e3df9122ee" | ||
}, | ||
{ | ||
"author": "beachball", | ||
"package": "@fluentui/react-charting", | ||
"comment": "Bump @fluentui/theme-samples to v8.7.191", | ||
"commit": "7b4a3785c6c1d7c207602cad0a1795e3df9122ee" | ||
}, | ||
{ | ||
"author": "beachball", | ||
"package": "@fluentui/react-charting", | ||
"comment": "Bump @fluentui/react to v8.122.2", | ||
"commit": "7b4a3785c6c1d7c207602cad0a1795e3df9122ee" | ||
} | ||
] | ||
} | ||
}, | ||
{ | ||
"date": "Fri, 20 Dec 2024 07:20:00 GMT", | ||
"tag": "@fluentui/react-charting_v5.23.28", | ||
"version": "5.23.28", | ||
"comments": { | ||
"patch": [ | ||
{ | ||
"author": "[email protected]", | ||
"package": "@fluentui/react-charting", | ||
"commit": "da882f44f251e7bb80fb969cbe268a942a2df74e", | ||
"comment": "Ensure type safety of dependent fields" | ||
} | ||
] | ||
} | ||
}, | ||
{ | ||
"date": "Wed, 18 Dec 2024 07:20:30 GMT", | ||
"tag": "@fluentui/react-charting_v5.23.27", | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,30 @@ | ||
# Change Log - @fluentui/react-charting | ||
|
||
This log was last generated on Wed, 18 Dec 2024 07:20:30 GMT and should not be manually modified. | ||
This log was last generated on Mon, 23 Dec 2024 07:22:57 GMT and should not be manually modified. | ||
|
||
<!-- Start content --> | ||
|
||
## [5.23.29](https://github.com/microsoft/fluentui/tree/@fluentui/react-charting_v5.23.29) | ||
|
||
Mon, 23 Dec 2024 07:22:57 GMT | ||
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-charting_v5.23.28..@fluentui/react-charting_v5.23.29) | ||
|
||
### Patches | ||
|
||
- feat: add functionality to export chart as image ([PR #33445](https://github.com/microsoft/fluentui/pull/33445) by [email protected]) | ||
- Bump @fluentui/react-focus to v8.9.20 ([PR #33445](https://github.com/microsoft/fluentui/pull/33445) by beachball) | ||
- Bump @fluentui/theme-samples to v8.7.191 ([PR #33445](https://github.com/microsoft/fluentui/pull/33445) by beachball) | ||
- Bump @fluentui/react to v8.122.2 ([PR #33445](https://github.com/microsoft/fluentui/pull/33445) by beachball) | ||
|
||
## [5.23.28](https://github.com/microsoft/fluentui/tree/@fluentui/react-charting_v5.23.28) | ||
|
||
Fri, 20 Dec 2024 07:20:00 GMT | ||
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-charting_v5.23.27..@fluentui/react-charting_v5.23.28) | ||
|
||
### Patches | ||
|
||
- Ensure type safety of dependent fields ([PR #33486](https://github.com/microsoft/fluentui/pull/33486) by [email protected]) | ||
|
||
## [5.23.27](https://github.com/microsoft/fluentui/tree/@fluentui/react-charting_v5.23.27) | ||
|
||
Wed, 18 Dec 2024 07:20:30 GMT | ||
|
Oops, something went wrong.