@fluentui/react-accordion 9.3.45 → 9.3.47
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 +31 -2
- package/lib/components/AccordionHeader/AccordionHeader.types.js.map +1 -1
- package/lib/components/AccordionItem/AccordionItem.types.js.map +1 -1
- package/lib/components/AccordionPanel/AccordionPanel.types.js.map +1 -1
- package/lib-commonjs/index.js +48 -48
- package/lib-commonjs/index.js.map +1 -1
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,41 @@
|
|
|
1
1
|
# Change Log - @fluentui/react-accordion
|
|
2
2
|
|
|
3
|
-
This log was last generated on
|
|
3
|
+
This log was last generated on Tue, 02 Apr 2024 09:41:20 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
+
## [9.3.47](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.3.47)
|
|
8
|
+
|
|
9
|
+
Tue, 02 Apr 2024 09:41:20 GMT
|
|
10
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.3.46..@fluentui/react-accordion_v9.3.47)
|
|
11
|
+
|
|
12
|
+
### Patches
|
|
13
|
+
|
|
14
|
+
- Bump @fluentui/react-aria to v9.10.3 ([PR #30926](https://github.com/microsoft/fluentui/pull/30926) by beachball)
|
|
15
|
+
- Bump @fluentui/react-context-selector to v9.1.57 ([PR #30926](https://github.com/microsoft/fluentui/pull/30926) by beachball)
|
|
16
|
+
- Bump @fluentui/react-jsx-runtime to v9.0.35 ([PR #30926](https://github.com/microsoft/fluentui/pull/30926) by beachball)
|
|
17
|
+
- Bump @fluentui/react-shared-contexts to v9.16.0 ([PR #30926](https://github.com/microsoft/fluentui/pull/30926) by beachball)
|
|
18
|
+
- Bump @fluentui/react-tabster to v9.19.6 ([PR #30926](https://github.com/microsoft/fluentui/pull/30926) by beachball)
|
|
19
|
+
- Bump @fluentui/react-utilities to v9.18.6 ([PR #30926](https://github.com/microsoft/fluentui/pull/30926) by beachball)
|
|
20
|
+
|
|
21
|
+
## [9.3.46](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.3.46)
|
|
22
|
+
|
|
23
|
+
Mon, 18 Mar 2024 19:50:46 GMT
|
|
24
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.3.45..@fluentui/react-accordion_v9.3.46)
|
|
25
|
+
|
|
26
|
+
### Patches
|
|
27
|
+
|
|
28
|
+
- Bump @fluentui/react-aria to v9.10.2 ([PR #30600](https://github.com/microsoft/fluentui/pull/30600) by beachball)
|
|
29
|
+
- Bump @fluentui/react-context-selector to v9.1.56 ([PR #30600](https://github.com/microsoft/fluentui/pull/30600) by beachball)
|
|
30
|
+
- Bump @fluentui/react-jsx-runtime to v9.0.34 ([PR #30600](https://github.com/microsoft/fluentui/pull/30600) by beachball)
|
|
31
|
+
- Bump @fluentui/react-shared-contexts to v9.15.2 ([PR #30600](https://github.com/microsoft/fluentui/pull/30600) by beachball)
|
|
32
|
+
- Bump @fluentui/react-tabster to v9.19.5 ([PR #30600](https://github.com/microsoft/fluentui/pull/30600) by beachball)
|
|
33
|
+
- Bump @fluentui/react-theme to v9.1.19 ([PR #30600](https://github.com/microsoft/fluentui/pull/30600) by beachball)
|
|
34
|
+
- Bump @fluentui/react-utilities to v9.18.5 ([PR #30600](https://github.com/microsoft/fluentui/pull/30600) by beachball)
|
|
35
|
+
|
|
7
36
|
## [9.3.45](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.3.45)
|
|
8
37
|
|
|
9
|
-
Fri, 15 Mar 2024 21:
|
|
38
|
+
Fri, 15 Mar 2024 21:43:49 GMT
|
|
10
39
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.3.44..@fluentui/react-accordion_v9.3.45)
|
|
11
40
|
|
|
12
41
|
### Patches
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["AccordionHeader.types.ts"],"sourcesContent":["import type { ComponentProps, ComponentState, Slot } from '@fluentui/react-utilities';\nimport type { ARIAButtonSlotProps } from '@fluentui/react-aria';\nimport type { AccordionHeaderContextValue } from '../../contexts/accordionHeader';\n\nexport type AccordionHeaderSize = 'small' | 'medium' | 'large' | 'extra-large';\nexport type AccordionHeaderExpandIconPosition = 'start' | 'end';\n\nexport type AccordionHeaderContextValues = {\n accordionHeader: AccordionHeaderContextValue;\n};\n\nexport type AccordionHeaderSlots = {\n /**\n * The element wrapping the button. By default this is a div, but can be a heading.\n */\n root: NonNullable<Slot<'div', 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6'>>;\n /**\n * The component to be used as button in heading\n */\n button: NonNullable<Slot<ARIAButtonSlotProps<'a'>>>;\n /**\n * Expand icon slot rendered before (or after) children content in heading.\n */\n expandIcon?: Slot<'span'>;\n /**\n * Expand icon slot rendered before (or after) children content in heading.\n */\n icon?: Slot<'div'>;\n};\n\nexport type AccordionHeaderProps = ComponentProps<Partial<AccordionHeaderSlots>> & {\n /**\n * The position of the expand icon slot in heading.\n */\n expandIconPosition?: AccordionHeaderExpandIconPosition;\n\n /**\n * Indicates if the AccordionHeader should be rendered inline.\n */\n inline?: boolean;\n\n /**\n * Size of spacing in the heading.\n */\n size?: AccordionHeaderSize;\n};\n\nexport type AccordionHeaderState = ComponentState<AccordionHeaderSlots> &\n Required<Pick<AccordionHeaderProps, 'inline'>> &\n AccordionHeaderContextValue;\n"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"sources":["AccordionHeader.types.ts"],"sourcesContent":["import type { ComponentProps, ComponentState, Slot } from '@fluentui/react-utilities';\nimport type { ARIAButtonSlotProps } from '@fluentui/react-aria';\nimport type { AccordionHeaderContextValue } from '../../contexts/accordionHeader';\n\nexport type AccordionHeaderSize = 'small' | 'medium' | 'large' | 'extra-large';\nexport type AccordionHeaderExpandIconPosition = 'start' | 'end';\n\nexport type AccordionHeaderContextValues = {\n accordionHeader: AccordionHeaderContextValue;\n};\n\nexport type AccordionHeaderSlots = {\n /**\n * The element wrapping the button. By default this is a div, but can be a heading.\n */\n root: NonNullable<Slot<'div', 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6'>>;\n /**\n * The component to be used as button in heading\n */\n button: NonNullable<Slot<ARIAButtonSlotProps<'a'>>>;\n /**\n * Expand icon slot rendered before (or after) children content in heading.\n */\n expandIcon?: Slot<'span'>;\n /**\n * Expand icon slot rendered before (or after) children content in heading.\n */\n icon?: Slot<'div'>;\n};\n\nexport type AccordionHeaderProps = ComponentProps<Partial<AccordionHeaderSlots>> & {\n /**\n * The position of the expand icon slot in heading.\n */\n expandIconPosition?: AccordionHeaderExpandIconPosition;\n\n /**\n * Indicates if the AccordionHeader should be rendered inline.\n */\n inline?: boolean;\n\n /**\n * Size of spacing in the heading.\n */\n size?: AccordionHeaderSize;\n};\n\nexport type AccordionHeaderState = ComponentState<AccordionHeaderSlots> &\n Required<Pick<AccordionHeaderProps, 'inline'>> &\n AccordionHeaderContextValue;\n"],"names":[],"mappings":"AAAA,WAiD8B"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["AccordionItem.types.ts"],"sourcesContent":["import type { ComponentProps, ComponentState, Slot } from '@fluentui/react-utilities';\nimport { AccordionItemContextValue } from '../../contexts/accordionItem';\n\nexport type AccordionItemContextValues<Value = AccordionItemValue> = {\n accordionItem: AccordionItemContextValue<Value>;\n};\n\nexport type AccordionItemSlots = {\n root: NonNullable<Slot<'div'>>;\n};\n\nexport type AccordionItemProps<Value = AccordionItemValue> = ComponentProps<AccordionItemSlots> & {\n /**\n * Disables opening/closing of panel.\n */\n disabled?: boolean;\n /**\n * Required value that identifies this item inside an Accordion component.\n */\n value: Value;\n};\n\nexport type AccordionItemValue = unknown;\n\nexport type AccordionItemState<Value = AccordionItemValue> = ComponentState<AccordionItemSlots> &\n AccordionItemContextValue<Value>;\n"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"sources":["AccordionItem.types.ts"],"sourcesContent":["import type { ComponentProps, ComponentState, Slot } from '@fluentui/react-utilities';\nimport { AccordionItemContextValue } from '../../contexts/accordionItem';\n\nexport type AccordionItemContextValues<Value = AccordionItemValue> = {\n accordionItem: AccordionItemContextValue<Value>;\n};\n\nexport type AccordionItemSlots = {\n root: NonNullable<Slot<'div'>>;\n};\n\nexport type AccordionItemProps<Value = AccordionItemValue> = ComponentProps<AccordionItemSlots> & {\n /**\n * Disables opening/closing of panel.\n */\n disabled?: boolean;\n /**\n * Required value that identifies this item inside an Accordion component.\n */\n value: Value;\n};\n\nexport type AccordionItemValue = unknown;\n\nexport type AccordionItemState<Value = AccordionItemValue> = ComponentState<AccordionItemSlots> &\n AccordionItemContextValue<Value>;\n"],"names":[],"mappings":"AAAA,WAyBmC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["AccordionPanel.types.ts"],"sourcesContent":["import type { ComponentProps, ComponentState, Slot } from '@fluentui/react-utilities';\n\nexport type AccordionPanelSlots = {\n root: NonNullable<Slot<'div'>>;\n};\n\nexport type AccordionPanelProps = ComponentProps<AccordionPanelSlots>;\n\nexport type AccordionPanelState = ComponentState<AccordionPanelSlots> & {\n /**\n * Internal open state, provided by context.\n */\n open: boolean;\n};\n"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"sources":["AccordionPanel.types.ts"],"sourcesContent":["import type { ComponentProps, ComponentState, Slot } from '@fluentui/react-utilities';\n\nexport type AccordionPanelSlots = {\n root: NonNullable<Slot<'div'>>;\n};\n\nexport type AccordionPanelProps = ComponentProps<AccordionPanelSlots>;\n\nexport type AccordionPanelState = ComponentState<AccordionPanelSlots> & {\n /**\n * Internal open state, provided by context.\n */\n open: boolean;\n};\n"],"names":[],"mappings":"AAAA,WAaE"}
|
package/lib-commonjs/index.js
CHANGED
|
@@ -12,77 +12,65 @@ _export(exports, {
|
|
|
12
12
|
Accordion: function() {
|
|
13
13
|
return _Accordion.Accordion;
|
|
14
14
|
},
|
|
15
|
-
|
|
16
|
-
return
|
|
17
|
-
},
|
|
18
|
-
AccordionHeaderProvider: function() {
|
|
19
|
-
return _accordionHeader.AccordionHeaderProvider;
|
|
20
|
-
},
|
|
21
|
-
AccordionItem: function() {
|
|
22
|
-
return _AccordionItem.AccordionItem;
|
|
15
|
+
accordionClassNames: function() {
|
|
16
|
+
return _Accordion.accordionClassNames;
|
|
23
17
|
},
|
|
24
|
-
|
|
25
|
-
return
|
|
18
|
+
renderAccordion_unstable: function() {
|
|
19
|
+
return _Accordion.renderAccordion_unstable;
|
|
26
20
|
},
|
|
27
|
-
|
|
28
|
-
return
|
|
21
|
+
useAccordionContextValues_unstable: function() {
|
|
22
|
+
return _Accordion.useAccordionContextValues_unstable;
|
|
29
23
|
},
|
|
30
|
-
|
|
31
|
-
return
|
|
24
|
+
useAccordionStyles_unstable: function() {
|
|
25
|
+
return _Accordion.useAccordionStyles_unstable;
|
|
32
26
|
},
|
|
33
|
-
|
|
34
|
-
return _Accordion.
|
|
27
|
+
useAccordion_unstable: function() {
|
|
28
|
+
return _Accordion.useAccordion_unstable;
|
|
35
29
|
},
|
|
36
|
-
|
|
37
|
-
return
|
|
30
|
+
AccordionItem: function() {
|
|
31
|
+
return _AccordionItem.AccordionItem;
|
|
38
32
|
},
|
|
39
33
|
accordionItemClassNames: function() {
|
|
40
34
|
return _AccordionItem.accordionItemClassNames;
|
|
41
35
|
},
|
|
42
|
-
accordionPanelClassNames: function() {
|
|
43
|
-
return _AccordionPanel.accordionPanelClassNames;
|
|
44
|
-
},
|
|
45
|
-
renderAccordionHeader_unstable: function() {
|
|
46
|
-
return _AccordionHeader.renderAccordionHeader_unstable;
|
|
47
|
-
},
|
|
48
36
|
renderAccordionItem_unstable: function() {
|
|
49
37
|
return _AccordionItem.renderAccordionItem_unstable;
|
|
50
38
|
},
|
|
51
|
-
|
|
52
|
-
return
|
|
39
|
+
useAccordionItemContextValues_unstable: function() {
|
|
40
|
+
return _AccordionItem.useAccordionItemContextValues_unstable;
|
|
53
41
|
},
|
|
54
|
-
|
|
55
|
-
return
|
|
42
|
+
useAccordionItemStyles_unstable: function() {
|
|
43
|
+
return _AccordionItem.useAccordionItemStyles_unstable;
|
|
56
44
|
},
|
|
57
|
-
|
|
58
|
-
return
|
|
45
|
+
useAccordionItem_unstable: function() {
|
|
46
|
+
return _AccordionItem.useAccordionItem_unstable;
|
|
59
47
|
},
|
|
60
|
-
|
|
61
|
-
return
|
|
48
|
+
AccordionHeader: function() {
|
|
49
|
+
return _AccordionHeader.AccordionHeader;
|
|
50
|
+
},
|
|
51
|
+
accordionHeaderClassNames: function() {
|
|
52
|
+
return _AccordionHeader.accordionHeaderClassNames;
|
|
53
|
+
},
|
|
54
|
+
renderAccordionHeader_unstable: function() {
|
|
55
|
+
return _AccordionHeader.renderAccordionHeader_unstable;
|
|
62
56
|
},
|
|
63
57
|
useAccordionHeaderContextValues_unstable: function() {
|
|
64
58
|
return _AccordionHeader.useAccordionHeaderContextValues_unstable;
|
|
65
59
|
},
|
|
66
|
-
useAccordionHeaderContext_unstable: function() {
|
|
67
|
-
return _accordionHeader.useAccordionHeaderContext_unstable;
|
|
68
|
-
},
|
|
69
60
|
useAccordionHeaderStyles_unstable: function() {
|
|
70
61
|
return _AccordionHeader.useAccordionHeaderStyles_unstable;
|
|
71
62
|
},
|
|
72
63
|
useAccordionHeader_unstable: function() {
|
|
73
64
|
return _AccordionHeader.useAccordionHeader_unstable;
|
|
74
65
|
},
|
|
75
|
-
|
|
76
|
-
return
|
|
77
|
-
},
|
|
78
|
-
useAccordionItemContext_unstable: function() {
|
|
79
|
-
return _accordionItem.useAccordionItemContext_unstable;
|
|
66
|
+
AccordionPanel: function() {
|
|
67
|
+
return _AccordionPanel.AccordionPanel;
|
|
80
68
|
},
|
|
81
|
-
|
|
82
|
-
return
|
|
69
|
+
accordionPanelClassNames: function() {
|
|
70
|
+
return _AccordionPanel.accordionPanelClassNames;
|
|
83
71
|
},
|
|
84
|
-
|
|
85
|
-
return
|
|
72
|
+
renderAccordionPanel_unstable: function() {
|
|
73
|
+
return _AccordionPanel.renderAccordionPanel_unstable;
|
|
86
74
|
},
|
|
87
75
|
useAccordionPanelStyles_unstable: function() {
|
|
88
76
|
return _AccordionPanel.useAccordionPanelStyles_unstable;
|
|
@@ -90,11 +78,23 @@ _export(exports, {
|
|
|
90
78
|
useAccordionPanel_unstable: function() {
|
|
91
79
|
return _AccordionPanel.useAccordionPanel_unstable;
|
|
92
80
|
},
|
|
93
|
-
|
|
94
|
-
return
|
|
81
|
+
AccordionProvider: function() {
|
|
82
|
+
return _accordion.AccordionProvider;
|
|
95
83
|
},
|
|
96
|
-
|
|
97
|
-
return
|
|
84
|
+
useAccordionContext_unstable: function() {
|
|
85
|
+
return _accordion.useAccordionContext_unstable;
|
|
86
|
+
},
|
|
87
|
+
AccordionItemProvider: function() {
|
|
88
|
+
return _accordionItem.AccordionItemProvider;
|
|
89
|
+
},
|
|
90
|
+
useAccordionItemContext_unstable: function() {
|
|
91
|
+
return _accordionItem.useAccordionItemContext_unstable;
|
|
92
|
+
},
|
|
93
|
+
AccordionHeaderProvider: function() {
|
|
94
|
+
return _accordionHeader.AccordionHeaderProvider;
|
|
95
|
+
},
|
|
96
|
+
useAccordionHeaderContext_unstable: function() {
|
|
97
|
+
return _accordionHeader.useAccordionHeaderContext_unstable;
|
|
98
98
|
}
|
|
99
99
|
});
|
|
100
100
|
const _Accordion = require("./Accordion");
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["index.js"],"sourcesContent":["export { Accordion, accordionClassNames, renderAccordion_unstable, useAccordionContextValues_unstable, useAccordionStyles_unstable, useAccordion_unstable } from './Accordion';\nexport { AccordionItem, accordionItemClassNames, renderAccordionItem_unstable, useAccordionItemContextValues_unstable, useAccordionItemStyles_unstable, useAccordionItem_unstable } from './AccordionItem';\nexport { AccordionHeader, accordionHeaderClassNames, renderAccordionHeader_unstable, useAccordionHeaderContextValues_unstable, useAccordionHeaderStyles_unstable, useAccordionHeader_unstable } from './AccordionHeader';\nexport { AccordionPanel, accordionPanelClassNames, renderAccordionPanel_unstable, useAccordionPanelStyles_unstable, useAccordionPanel_unstable } from './AccordionPanel';\nexport { AccordionProvider, useAccordionContext_unstable } from './contexts/accordion';\nexport { AccordionItemProvider, useAccordionItemContext_unstable } from './contexts/accordionItem';\nexport { AccordionHeaderProvider, useAccordionHeaderContext_unstable } from './contexts/accordionHeader';\n"],"names":["Accordion","
|
|
1
|
+
{"version":3,"sources":["index.js"],"sourcesContent":["export { Accordion, accordionClassNames, renderAccordion_unstable, useAccordionContextValues_unstable, useAccordionStyles_unstable, useAccordion_unstable } from './Accordion';\nexport { AccordionItem, accordionItemClassNames, renderAccordionItem_unstable, useAccordionItemContextValues_unstable, useAccordionItemStyles_unstable, useAccordionItem_unstable } from './AccordionItem';\nexport { AccordionHeader, accordionHeaderClassNames, renderAccordionHeader_unstable, useAccordionHeaderContextValues_unstable, useAccordionHeaderStyles_unstable, useAccordionHeader_unstable } from './AccordionHeader';\nexport { AccordionPanel, accordionPanelClassNames, renderAccordionPanel_unstable, useAccordionPanelStyles_unstable, useAccordionPanel_unstable } from './AccordionPanel';\nexport { AccordionProvider, useAccordionContext_unstable } from './contexts/accordion';\nexport { AccordionItemProvider, useAccordionItemContext_unstable } from './contexts/accordionItem';\nexport { AccordionHeaderProvider, useAccordionHeaderContext_unstable } from './contexts/accordionHeader';\n"],"names":["Accordion","accordionClassNames","renderAccordion_unstable","useAccordionContextValues_unstable","useAccordionStyles_unstable","useAccordion_unstable","AccordionItem","accordionItemClassNames","renderAccordionItem_unstable","useAccordionItemContextValues_unstable","useAccordionItemStyles_unstable","useAccordionItem_unstable","AccordionHeader","accordionHeaderClassNames","renderAccordionHeader_unstable","useAccordionHeaderContextValues_unstable","useAccordionHeaderStyles_unstable","useAccordionHeader_unstable","AccordionPanel","accordionPanelClassNames","renderAccordionPanel_unstable","useAccordionPanelStyles_unstable","useAccordionPanel_unstable","AccordionProvider","useAccordionContext_unstable","AccordionItemProvider","useAccordionItemContext_unstable","AccordionHeaderProvider","useAccordionHeaderContext_unstable"],"mappings":";;;;;;;;;;;IAASA,SAAS;eAATA,oBAAS;;IAAEC,mBAAmB;eAAnBA,8BAAmB;;IAAEC,wBAAwB;eAAxBA,mCAAwB;;IAAEC,kCAAkC;eAAlCA,6CAAkC;;IAAEC,2BAA2B;eAA3BA,sCAA2B;;IAAEC,qBAAqB;eAArBA,gCAAqB;;IAChJC,aAAa;eAAbA,4BAAa;;IAAEC,uBAAuB;eAAvBA,sCAAuB;;IAAEC,4BAA4B;eAA5BA,2CAA4B;;IAAEC,sCAAsC;eAAtCA,qDAAsC;;IAAEC,+BAA+B;eAA/BA,8CAA+B;;IAAEC,yBAAyB;eAAzBA,wCAAyB;;IACxKC,eAAe;eAAfA,gCAAe;;IAAEC,yBAAyB;eAAzBA,0CAAyB;;IAAEC,8BAA8B;eAA9BA,+CAA8B;;IAAEC,wCAAwC;eAAxCA,yDAAwC;;IAAEC,iCAAiC;eAAjCA,kDAAiC;;IAAEC,2BAA2B;eAA3BA,4CAA2B;;IACpLC,cAAc;eAAdA,8BAAc;;IAAEC,wBAAwB;eAAxBA,wCAAwB;;IAAEC,6BAA6B;eAA7BA,6CAA6B;;IAAEC,gCAAgC;eAAhCA,gDAAgC;;IAAEC,0BAA0B;eAA1BA,0CAA0B;;IACrIC,iBAAiB;eAAjBA,4BAAiB;;IAAEC,4BAA4B;eAA5BA,uCAA4B;;IAC/CC,qBAAqB;eAArBA,oCAAqB;;IAAEC,gCAAgC;eAAhCA,+CAAgC;;IACvDC,uBAAuB;eAAvBA,wCAAuB;;IAAEC,kCAAkC;eAAlCA,mDAAkC;;;2BAN6F;+BACwB;iCACY;gCAC/C;2BACtF;+BACQ;iCACI"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluentui/react-accordion",
|
|
3
|
-
"version": "9.3.
|
|
3
|
+
"version": "9.3.47",
|
|
4
4
|
"description": "Fluent UI accordion component",
|
|
5
5
|
"main": "lib-commonjs/index.js",
|
|
6
6
|
"module": "lib/index.js",
|
|
@@ -33,14 +33,14 @@
|
|
|
33
33
|
"@fluentui/scripts-tasks": "*"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@fluentui/react-aria": "^9.10.
|
|
37
|
-
"@fluentui/react-context-selector": "^9.1.
|
|
36
|
+
"@fluentui/react-aria": "^9.10.3",
|
|
37
|
+
"@fluentui/react-context-selector": "^9.1.57",
|
|
38
38
|
"@fluentui/react-icons": "^2.0.224",
|
|
39
|
-
"@fluentui/react-jsx-runtime": "^9.0.
|
|
40
|
-
"@fluentui/react-shared-contexts": "^9.
|
|
41
|
-
"@fluentui/react-tabster": "^9.19.
|
|
42
|
-
"@fluentui/react-theme": "^9.1.
|
|
43
|
-
"@fluentui/react-utilities": "^9.18.
|
|
39
|
+
"@fluentui/react-jsx-runtime": "^9.0.35",
|
|
40
|
+
"@fluentui/react-shared-contexts": "^9.16.0",
|
|
41
|
+
"@fluentui/react-tabster": "^9.19.6",
|
|
42
|
+
"@fluentui/react-theme": "^9.1.19",
|
|
43
|
+
"@fluentui/react-utilities": "^9.18.6",
|
|
44
44
|
"@griffel/react": "^1.5.14",
|
|
45
45
|
"@swc/helpers": "^0.5.1"
|
|
46
46
|
},
|