From 5de3909d8110cf1e9f17995108629060c306cb4c Mon Sep 17 00:00:00 2001 From: Ben Howell <48106640+behowell@users.noreply.github.com> Date: Fri, 4 Nov 2022 16:37:12 -0700 Subject: [PATCH] chore: Export ProgressField from `@fluentui/react-components/unstable` (#25536) Export ProgressField from @fluentui/react-components/unstable --- ...-components-35f251b9-6362-4ca3-9d30-124fcfe024cf.json | 7 +++++++ .../etc/react-components.unstable.api.md | 9 +++++++++ .../react-components/src/unstable/index.ts | 3 +++ 3 files changed, 19 insertions(+) create mode 100644 change/@fluentui-react-components-35f251b9-6362-4ca3-9d30-124fcfe024cf.json diff --git a/change/@fluentui-react-components-35f251b9-6362-4ca3-9d30-124fcfe024cf.json b/change/@fluentui-react-components-35f251b9-6362-4ca3-9d30-124fcfe024cf.json new file mode 100644 index 0000000000000..dc6e12439eb02 --- /dev/null +++ b/change/@fluentui-react-components-35f251b9-6362-4ca3-9d30-124fcfe024cf.json @@ -0,0 +1,7 @@ +{ + "type": "patch", + "comment": "chore: Export ProgressField from @fluentui/react-components/unstable", + "packageName": "@fluentui/react-components", + "email": "behowell@microsoft.com", + "dependentChangeType": "patch" +} diff --git a/packages/react-components/react-components/etc/react-components.unstable.api.md b/packages/react-components/react-components/etc/react-components.unstable.api.md index c235ac9dc19f8..284fa37ded125 100644 --- a/packages/react-components/react-components/etc/react-components.unstable.api.md +++ b/packages/react-components/react-components/etc/react-components.unstable.api.md @@ -114,6 +114,9 @@ import { PersonaSlots } from '@fluentui/react-persona'; import { PersonaState } from '@fluentui/react-persona'; import { Progress } from '@fluentui/react-progress'; import { progressClassNames } from '@fluentui/react-progress'; +import { ProgressField } from '@fluentui/react-field'; +import { progressFieldClassNames } from '@fluentui/react-field'; +import { ProgressFieldProps } from '@fluentui/react-field'; import { ProgressProps } from '@fluentui/react-progress'; import { ProgressSlots } from '@fluentui/react-progress'; import { ProgressState } from '@fluentui/react-progress'; @@ -525,6 +528,12 @@ export { Progress } export { progressClassNames } +export { ProgressField } + +export { progressFieldClassNames } + +export { ProgressFieldProps } + export { ProgressProps } export { ProgressSlots } diff --git a/packages/react-components/react-components/src/unstable/index.ts b/packages/react-components/react-components/src/unstable/index.ts index ad2cf61eb0add..64f5386ebd9bd 100644 --- a/packages/react-components/react-components/src/unstable/index.ts +++ b/packages/react-components/react-components/src/unstable/index.ts @@ -286,6 +286,8 @@ export { getFieldClassNames, InputField, inputFieldClassNames, + ProgressField, + progressFieldClassNames, RadioGroupField, radioGroupFieldClassNames, renderField_unstable, @@ -310,6 +312,7 @@ export type { FieldSlots, FieldState, InputFieldProps, + ProgressFieldProps, RadioGroupFieldProps, SelectFieldProps, SliderFieldProps,