@fluentui/react-provider 9.18.3 → 9.20.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
@@ -1,12 +1,33 @@
|
|
1
1
|
# Change Log - @fluentui/react-provider
|
2
2
|
|
3
|
-
This log was last generated on
|
3
|
+
This log was last generated on Fri, 21 Feb 2025 14:30:47 GMT and should not be manually modified.
|
4
4
|
|
5
5
|
<!-- Start content -->
|
6
6
|
|
7
|
+
## [9.20.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-provider_v9.20.0)
|
8
|
+
|
9
|
+
Fri, 21 Feb 2025 14:30:47 GMT
|
10
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-provider_v9.19.0..@fluentui/react-provider_v9.20.0)
|
11
|
+
|
12
|
+
### Minor changes
|
13
|
+
|
14
|
+
- Bump @fluentui/react-tabster to v9.24.0 ([PR #33876](https://github.com/microsoft/fluentui/pull/33876) by beachball)
|
15
|
+
|
16
|
+
## [9.19.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-provider_v9.19.0)
|
17
|
+
|
18
|
+
Wed, 22 Jan 2025 14:00:07 GMT
|
19
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-provider_v9.18.3..@fluentui/react-provider_v9.19.0)
|
20
|
+
|
21
|
+
### Minor changes
|
22
|
+
|
23
|
+
- fix: Updating FluentProvider types to avoid implicit import in API definition. ([PR #33590](https://github.com/microsoft/fluentui/pull/33590) by makotom@microsoft.com)
|
24
|
+
- Bump @fluentui/react-tabster to v9.23.3 ([PR #33631](https://github.com/microsoft/fluentui/pull/33631) by beachball)
|
25
|
+
- Bump @fluentui/react-utilities to v9.18.20 ([PR #33631](https://github.com/microsoft/fluentui/pull/33631) by beachball)
|
26
|
+
- Bump @fluentui/react-jsx-runtime to v9.0.50 ([PR #33631](https://github.com/microsoft/fluentui/pull/33631) by beachball)
|
27
|
+
|
7
28
|
## [9.18.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-provider_v9.18.3)
|
8
29
|
|
9
|
-
Wed, 08 Jan 2025 18:
|
30
|
+
Wed, 08 Jan 2025 18:33:36 GMT
|
10
31
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-provider_v9.18.2..@fluentui/react-provider_v9.18.3)
|
11
32
|
|
12
33
|
### Patches
|
package/dist/index.d.ts
CHANGED
@@ -1,14 +1,14 @@
|
|
1
|
-
import { ComponentProps } from '@fluentui/react-utilities';
|
1
|
+
import type { ComponentProps } from '@fluentui/react-utilities';
|
2
2
|
import type { ComponentState } from '@fluentui/react-utilities';
|
3
3
|
import type { CustomStyleHooksContextValue_unstable } from '@fluentui/react-shared-contexts';
|
4
|
+
import type { ForwardRefComponent } from '@fluentui/react-utilities';
|
4
5
|
import type { IconDirectionContextValue } from '@fluentui/react-icons/lib/providers';
|
5
|
-
import { OverridesContextValue_unstable } from '@fluentui/react-shared-contexts';
|
6
|
+
import type { OverridesContextValue_unstable } from '@fluentui/react-shared-contexts';
|
6
7
|
import type { PartialTheme } from '@fluentui/react-theme';
|
7
8
|
import type { ProviderContextValue_unstable } from '@fluentui/react-shared-contexts';
|
8
9
|
import * as React_2 from 'react';
|
9
10
|
import type { Slot } from '@fluentui/react-utilities';
|
10
11
|
import { SlotClassNames } from '@fluentui/react-utilities';
|
11
|
-
import { Theme } from '@fluentui/tokens';
|
12
12
|
import type { ThemeClassNameContextValue_unstable } from '@fluentui/react-shared-contexts';
|
13
13
|
import type { ThemeContextValue_unstable } from '@fluentui/react-shared-contexts';
|
14
14
|
import type { TooltipVisibilityContextValue_unstable } from '@fluentui/react-shared-contexts';
|
@@ -20,160 +20,7 @@ import type { TooltipVisibilityContextValue_unstable } from '@fluentui/react-sha
|
|
20
20
|
*/
|
21
21
|
export declare function createCSSRuleFromTheme(selector: string, theme: PartialTheme | undefined): string;
|
22
22
|
|
23
|
-
export declare const FluentProvider:
|
24
|
-
applyStylesToPortals?: boolean | undefined;
|
25
|
-
customStyleHooks_unstable?: Partial<{
|
26
|
-
useAccordionHeaderStyles_unstable: (state: unknown) => void;
|
27
|
-
useAccordionItemStyles_unstable: (state: unknown) => void;
|
28
|
-
useAccordionPanelStyles_unstable: (state: unknown) => void;
|
29
|
-
useAccordionStyles_unstable: (state: unknown) => void;
|
30
|
-
useAvatarStyles_unstable: (state: unknown) => void;
|
31
|
-
useAvatarGroupStyles_unstable: (state: unknown) => void;
|
32
|
-
useAvatarGroupItemStyles_unstable: (state: unknown) => void;
|
33
|
-
useAvatarGroupPopoverStyles_unstable: (state: unknown) => void;
|
34
|
-
useBadgeStyles_unstable: (state: unknown) => void;
|
35
|
-
useCounterBadgeStyles_unstable: (state: unknown) => void;
|
36
|
-
useCardHeaderStyles_unstable: (state: unknown) => void;
|
37
|
-
useCardStyles_unstable: (state: unknown) => void;
|
38
|
-
useCardFooterStyles_unstable: (state: unknown) => void;
|
39
|
-
useCardPreviewStyles_unstable: (state: unknown) => void;
|
40
|
-
usePresenceBadgeStyles_unstable: (state: unknown) => void;
|
41
|
-
useButtonStyles_unstable: (state: unknown) => void;
|
42
|
-
useCompoundButtonStyles_unstable: (state: unknown) => void;
|
43
|
-
useMenuButtonStyles_unstable: (state: unknown) => void;
|
44
|
-
useSplitButtonStyles_unstable: (state: unknown) => void;
|
45
|
-
useToggleButtonStyles_unstable: (state: unknown) => void;
|
46
|
-
useCheckboxStyles_unstable: (state: unknown) => void;
|
47
|
-
useComboboxStyles_unstable: (state: unknown) => void;
|
48
|
-
useDropdownStyles_unstable: (state: unknown) => void;
|
49
|
-
useListboxStyles_unstable: (state: unknown) => void;
|
50
|
-
useListStyles_unstable: (state: unknown) => void;
|
51
|
-
useListItemStyles_unstable: (state: unknown) => void;
|
52
|
-
useListItemButtonStyles_unstable: (state: unknown) => void;
|
53
|
-
useOptionStyles_unstable: (state: unknown) => void;
|
54
|
-
useOptionGroupStyles_unstable: (state: unknown) => void;
|
55
|
-
useDividerStyles_unstable: (state: unknown) => void;
|
56
|
-
useInputStyles_unstable: (state: unknown) => void;
|
57
|
-
useImageStyles_unstable: (state: unknown) => void;
|
58
|
-
useLabelStyles_unstable: (state: unknown) => void;
|
59
|
-
useLinkStyles_unstable: (state: unknown) => void;
|
60
|
-
useMenuDividerStyles_unstable: (state: unknown) => void;
|
61
|
-
useMenuGroupHeaderStyles_unstable: (state: unknown) => void;
|
62
|
-
useMenuGroupStyles_unstable: (state: unknown) => void;
|
63
|
-
useMenuItemCheckboxStyles_unstable: (state: unknown) => void;
|
64
|
-
useMenuItemSwitchStyles_unstable: (state: unknown) => void;
|
65
|
-
useMenuItemRadioStyles_unstable: (state: unknown) => void;
|
66
|
-
useMenuItemStyles_unstable: (state: unknown) => void;
|
67
|
-
useMenuItemLinkStyles_unstable: (state: unknown) => void;
|
68
|
-
useMenuListStyles_unstable: (state: unknown) => void;
|
69
|
-
useMenuPopoverStyles_unstable: (state: unknown) => void;
|
70
|
-
useMenuSplitGroupStyles_unstable: (state: unknown) => void;
|
71
|
-
usePersonaStyles_unstable: (state: unknown) => void;
|
72
|
-
usePopoverSurfaceStyles_unstable: (state: unknown) => void;
|
73
|
-
useRadioGroupStyles_unstable: (state: unknown) => void;
|
74
|
-
useRadioStyles_unstable: (state: unknown) => void;
|
75
|
-
useSelectStyles_unstable: (state: unknown) => void;
|
76
|
-
useSliderStyles_unstable: (state: unknown) => void;
|
77
|
-
useSpinButtonStyles_unstable: (state: unknown) => void;
|
78
|
-
useSpinnerStyles_unstable: (state: unknown) => void;
|
79
|
-
useSwitchStyles_unstable: (state: unknown) => void;
|
80
|
-
useTabStyles_unstable: (state: unknown) => void;
|
81
|
-
useTabListStyles_unstable: (state: unknown) => void;
|
82
|
-
useTextStyles_unstable: (state: unknown) => void;
|
83
|
-
useTextareaStyles_unstable: (state: unknown) => void;
|
84
|
-
useTooltipStyles_unstable: (state: unknown) => void;
|
85
|
-
useDialogTitleStyles_unstable: (state: unknown) => void;
|
86
|
-
useDialogBodyStyles_unstable: (state: unknown) => void;
|
87
|
-
useDialogActionsStyles_unstable: (state: unknown) => void;
|
88
|
-
useDialogSurfaceStyles_unstable: (state: unknown) => void;
|
89
|
-
useDialogContentStyles_unstable: (state: unknown) => void;
|
90
|
-
useProgressBarStyles_unstable: (state: unknown) => void;
|
91
|
-
useToolbarButtonStyles_unstable: (state: unknown) => void;
|
92
|
-
useToolbarRadioButtonStyles_unstable: (state: unknown) => void;
|
93
|
-
useToolbarGroupStyles_unstable: (state: unknown) => void;
|
94
|
-
useToolbarToggleButtonStyles_unstable: (state: unknown) => void;
|
95
|
-
useToolbarDividerStyles_unstable: (state: unknown) => void;
|
96
|
-
useToolbarStyles_unstable: (state: unknown) => void;
|
97
|
-
useTableCellStyles_unstable: (state: unknown) => void;
|
98
|
-
useTableRowStyles_unstable: (state: unknown) => void;
|
99
|
-
useTableBodyStyles_unstable: (state: unknown) => void;
|
100
|
-
useTableStyles_unstable: (state: unknown) => void;
|
101
|
-
useTableHeaderStyles_unstable: (state: unknown) => void;
|
102
|
-
useTableHeaderCellStyles_unstable: (state: unknown) => void;
|
103
|
-
useTableResizeHandleStyles_unstable: (state: unknown) => void;
|
104
|
-
useTableSelectionCellStyles_unstable: (state: unknown) => void;
|
105
|
-
useTableCellActionsStyles_unstable: (state: unknown) => void;
|
106
|
-
useTableCellLayoutStyles_unstable: (state: unknown) => void;
|
107
|
-
useDataGridCellStyles_unstable: (state: unknown) => void;
|
108
|
-
useDataGridRowStyles_unstable: (state: unknown) => void;
|
109
|
-
useDataGridBodyStyles_unstable: (state: unknown) => void;
|
110
|
-
useDataGridStyles_unstable: (state: unknown) => void;
|
111
|
-
useDataGridHeaderStyles_unstable: (state: unknown) => void;
|
112
|
-
useDataGridHeaderCellStyles_unstable: (state: unknown) => void;
|
113
|
-
useDataGridSelectionCellStyles_unstable: (state: unknown) => void;
|
114
|
-
useDrawerStyles_unstable: (state: unknown) => void;
|
115
|
-
useDrawerInlineStyles_unstable: (state: unknown) => void;
|
116
|
-
useDrawerOverlayStyles_unstable: (state: unknown) => void;
|
117
|
-
useInlineDrawerStyles_unstable: (state: unknown) => void;
|
118
|
-
useOverlayDrawerStyles_unstable: (state: unknown) => void;
|
119
|
-
useDrawerHeaderStyles_unstable: (state: unknown) => void;
|
120
|
-
useDrawerHeaderNavigationStyles_unstable: (state: unknown) => void;
|
121
|
-
useDrawerHeaderTitleStyles_unstable: (state: unknown) => void;
|
122
|
-
useDrawerBodyStyles_unstable: (state: unknown) => void;
|
123
|
-
useDrawerFooterStyles_unstable: (state: unknown) => void;
|
124
|
-
useInteractionTagStyles_unstable: (state: unknown) => void;
|
125
|
-
useInteractionTagPrimaryStyles_unstable: (state: unknown) => void;
|
126
|
-
useInteractionTagSecondaryStyles_unstable: (state: unknown) => void;
|
127
|
-
useTagStyles_unstable: (state: unknown) => void;
|
128
|
-
useTagGroupStyles_unstable: (state: unknown) => void;
|
129
|
-
useBreadcrumbStyles_unstable: (state: unknown) => void;
|
130
|
-
useBreadcrumbButtonStyles_unstable: (state: unknown) => void;
|
131
|
-
useBreadcrumbItemStyles_unstable: (state: unknown) => void;
|
132
|
-
useBreadcrumbDividerStyles_unstable: (state: unknown) => void;
|
133
|
-
useMessageBarStyles_unstable: (state: unknown) => void;
|
134
|
-
useMessageBarBodyStyles_unstable: (state: unknown) => void;
|
135
|
-
useMessageBarTitleStyles_unstable: (state: unknown) => void;
|
136
|
-
useMessageBarActionsStyles_unstable: (state: unknown) => void;
|
137
|
-
useMessageBarGroupStyles_unstable: (state: unknown) => void;
|
138
|
-
useToasterStyles_unstable: (state: unknown) => void;
|
139
|
-
useTeachingPopoverStyles_unstable: (state: unknown) => void;
|
140
|
-
useTeachingPopoverActionsStyles_unstable: (state: unknown) => void;
|
141
|
-
useTeachingPopoverBodyStyles_unstable: (state: unknown) => void;
|
142
|
-
useTeachingPopoverButtonStyles_unstable: (state: unknown) => void;
|
143
|
-
useTeachingPopoverCarouselStyles_unstable: (state: unknown) => void;
|
144
|
-
useTeachingPopoverHeaderStyles_unstable: (state: unknown) => void;
|
145
|
-
useTeachingPopoverPageCountStyles_unstable: (state: unknown) => void;
|
146
|
-
useTeachingPopoverSurfaceStyles_unstable: (state: unknown) => void;
|
147
|
-
useTeachingPopoverTitleStyles_unstable: (state: unknown) => void;
|
148
|
-
useTimePickerCompatStyles_unstable: (state: unknown) => void;
|
149
|
-
useTagPickerInputStyles_unstable: (state: unknown) => void;
|
150
|
-
useTagPickerButtonStyles_unstable: (state: unknown) => void;
|
151
|
-
useTagPickerControlStyles_unstable: (state: unknown) => void;
|
152
|
-
useTagPickerGroupStyles_unstable: (state: unknown) => void;
|
153
|
-
useTagPickerListStyles_unstable: (state: unknown) => void;
|
154
|
-
useTagPickerOptionStyles_unstable: (state: unknown) => void;
|
155
|
-
useTagPickerOptionGroupStyles_unstable: (state: unknown) => void;
|
156
|
-
useColorSwatchStyles_unstable: (state: unknown) => void;
|
157
|
-
useImageSwatchStyles_unstable: (state: unknown) => void;
|
158
|
-
useEmptySwatchStyles_unstable: (state: unknown) => void;
|
159
|
-
useSwatchPickerRowStyles_unstable: (state: unknown) => void;
|
160
|
-
useSwatchPickerStyles_unstable: (state: unknown) => void;
|
161
|
-
useCarouselViewportStyles_unstable: (state: unknown) => void;
|
162
|
-
useCarouselSliderStyles_unstable: (state: unknown) => void;
|
163
|
-
useCarouselStyles_unstable: (state: unknown) => void;
|
164
|
-
useCarouselAutoplayButtonStyles_unstable: (state: unknown) => void;
|
165
|
-
useCarouselButtonStyles_unstable: (state: unknown) => void;
|
166
|
-
useCarouselCardStyles_unstable: (state: unknown) => void;
|
167
|
-
useCarouselNavStyles_unstable: (state: unknown) => void;
|
168
|
-
useCarouselNavButtonStyles_unstable: (state: unknown) => void;
|
169
|
-
useCarouselNavContainerStyles_unstable: (state: unknown) => void;
|
170
|
-
useCarouselNavImageButtonStyles_unstable: (state: unknown) => void;
|
171
|
-
}> | undefined;
|
172
|
-
dir?: "ltr" | "rtl" | undefined;
|
173
|
-
targetDocument?: Document | undefined;
|
174
|
-
theme?: Partial<Theme> | undefined;
|
175
|
-
overrides_unstable?: OverridesContextValue_unstable | undefined;
|
176
|
-
} & React_2.RefAttributes<HTMLElement>>;
|
23
|
+
export declare const FluentProvider: ForwardRefComponent<FluentProviderProps>;
|
177
24
|
|
178
25
|
export declare const fluentProviderClassNames: SlotClassNames<FluentProviderSlots>;
|
179
26
|
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"sources":["../src/components/FluentProvider/FluentProvider.tsx"],"sourcesContent":["import * as React from 'react';\nimport { renderFluentProvider_unstable } from './renderFluentProvider';\nimport { useFluentProvider_unstable } from './useFluentProvider';\nimport { useFluentProviderStyles_unstable } from './useFluentProviderStyles.styles';\nimport { useFluentProviderContextValues_unstable } from './useFluentProviderContextValues';\nimport type { FluentProviderProps } from './FluentProvider.types';\n\nexport const FluentProvider = React.forwardRef
|
1
|
+
{"version":3,"sources":["../src/components/FluentProvider/FluentProvider.tsx"],"sourcesContent":["import * as React from 'react';\n\nimport type { ForwardRefComponent } from '@fluentui/react-utilities';\n\nimport { renderFluentProvider_unstable } from './renderFluentProvider';\nimport { useFluentProvider_unstable } from './useFluentProvider';\nimport { useFluentProviderStyles_unstable } from './useFluentProviderStyles.styles';\nimport { useFluentProviderContextValues_unstable } from './useFluentProviderContextValues';\nimport type { FluentProviderProps } from './FluentProvider.types';\n\nexport const FluentProvider: ForwardRefComponent<FluentProviderProps> = React.forwardRef((props, ref) => {\n const state = useFluentProvider_unstable(props, ref);\n useFluentProviderStyles_unstable(state);\n\n const contextValues = useFluentProviderContextValues_unstable(state);\n\n return renderFluentProvider_unstable(state, contextValues);\n});\n\nFluentProvider.displayName = 'FluentProvider';\n"],"names":["React","renderFluentProvider_unstable","useFluentProvider_unstable","useFluentProviderStyles_unstable","useFluentProviderContextValues_unstable","FluentProvider","forwardRef","props","ref","state","contextValues","displayName"],"rangeMappings":";;;;;;;;;;;","mappings":"AAAA,YAAYA,WAAW,QAAQ;AAI/B,SAASC,6BAA6B,QAAQ,yBAAyB;AACvE,SAASC,0BAA0B,QAAQ,sBAAsB;AACjE,SAASC,gCAAgC,QAAQ,mCAAmC;AACpF,SAASC,uCAAuC,QAAQ,mCAAmC;AAG3F,OAAO,MAAMC,+BAA2DL,MAAMM,UAAU,CAAC,CAACC,OAAOC;IAC/F,MAAMC,QAAQP,2BAA2BK,OAAOC;IAChDL,iCAAiCM;IAEjC,MAAMC,gBAAgBN,wCAAwCK;IAE9D,OAAOR,8BAA8BQ,OAAOC;AAC9C,GAAG;AAEHL,eAAeM,WAAW,GAAG"}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"sources":["../src/components/FluentProvider/FluentProvider.tsx"],"sourcesContent":["import * as React from 'react';\nimport { renderFluentProvider_unstable } from './renderFluentProvider';\nimport { useFluentProvider_unstable } from './useFluentProvider';\nimport { useFluentProviderStyles_unstable } from './useFluentProviderStyles.styles';\nimport { useFluentProviderContextValues_unstable } from './useFluentProviderContextValues';\nimport type { FluentProviderProps } from './FluentProvider.types';\n\nexport const FluentProvider = React.forwardRef
|
1
|
+
{"version":3,"sources":["../src/components/FluentProvider/FluentProvider.tsx"],"sourcesContent":["import * as React from 'react';\n\nimport type { ForwardRefComponent } from '@fluentui/react-utilities';\n\nimport { renderFluentProvider_unstable } from './renderFluentProvider';\nimport { useFluentProvider_unstable } from './useFluentProvider';\nimport { useFluentProviderStyles_unstable } from './useFluentProviderStyles.styles';\nimport { useFluentProviderContextValues_unstable } from './useFluentProviderContextValues';\nimport type { FluentProviderProps } from './FluentProvider.types';\n\nexport const FluentProvider: ForwardRefComponent<FluentProviderProps> = React.forwardRef((props, ref) => {\n const state = useFluentProvider_unstable(props, ref);\n useFluentProviderStyles_unstable(state);\n\n const contextValues = useFluentProviderContextValues_unstable(state);\n\n return renderFluentProvider_unstable(state, contextValues);\n});\n\nFluentProvider.displayName = 'FluentProvider';\n"],"names":["FluentProvider","React","forwardRef","props","ref","state","useFluentProvider_unstable","useFluentProviderStyles_unstable","contextValues","useFluentProviderContextValues_unstable","renderFluentProvider_unstable","displayName"],"rangeMappings":";;;;;;;;;;;;;;;;;;;;;;","mappings":";;;;+BAUaA;;;eAAAA;;;;iEAVU;sCAIuB;mCACH;+CACM;gDACO;AAGjD,MAAMA,iBAAAA,WAAAA,GAA2DC,OAAMC,UAAU,CAAC,CAACC,OAAOC;IAC/F,MAAMC,QAAQC,IAAAA,6CAAAA,EAA2BH,OAAOC;IAChDG,IAAAA,+DAAAA,EAAiCF;IAEjC,MAAMG,gBAAgBC,IAAAA,uEAAAA,EAAwCJ;IAE9D,OAAOK,IAAAA,mDAAAA,EAA8BL,OAAOG;AAC9C;AAEAR,eAAeW,WAAW,GAAG"}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@fluentui/react-provider",
|
3
|
-
"version": "9.
|
3
|
+
"version": "9.20.0",
|
4
4
|
"description": "Fluent UI React provider component",
|
5
5
|
"main": "lib-commonjs/index.js",
|
6
6
|
"module": "lib/index.js",
|
@@ -20,10 +20,10 @@
|
|
20
20
|
"dependencies": {
|
21
21
|
"@fluentui/react-icons": "^2.0.245",
|
22
22
|
"@fluentui/react-shared-contexts": "^9.21.2",
|
23
|
-
"@fluentui/react-tabster": "^9.
|
23
|
+
"@fluentui/react-tabster": "^9.24.0",
|
24
24
|
"@fluentui/react-theme": "^9.1.24",
|
25
|
-
"@fluentui/react-utilities": "^9.18.
|
26
|
-
"@fluentui/react-jsx-runtime": "^9.0.
|
25
|
+
"@fluentui/react-utilities": "^9.18.20",
|
26
|
+
"@fluentui/react-jsx-runtime": "^9.0.50",
|
27
27
|
"@griffel/core": "^1.16.0",
|
28
28
|
"@griffel/react": "^1.5.22",
|
29
29
|
"@swc/helpers": "^0.5.1"
|