@fluentui/react-combobox 9.9.2 → 9.9.3

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,30 @@
1
1
  # Change Log - @fluentui/react-combobox
2
2
 
3
- This log was last generated on Fri, 15 Mar 2024 21:37:57 GMT and should not be manually modified.
3
+ This log was last generated on Mon, 18 Mar 2024 19:44:52 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
+ ## [9.9.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.9.3)
8
+
9
+ Mon, 18 Mar 2024 19:44:52 GMT
10
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.9.2..@fluentui/react-combobox_v9.9.3)
11
+
12
+ ### Patches
13
+
14
+ - Bump @fluentui/react-aria to v9.10.2 ([PR #30803](https://github.com/microsoft/fluentui/pull/30803) by beachball)
15
+ - Bump @fluentui/react-context-selector to v9.1.56 ([PR #30803](https://github.com/microsoft/fluentui/pull/30803) by beachball)
16
+ - Bump @fluentui/react-field to v9.1.58 ([PR #30803](https://github.com/microsoft/fluentui/pull/30803) by beachball)
17
+ - Bump @fluentui/react-jsx-runtime to v9.0.34 ([PR #30803](https://github.com/microsoft/fluentui/pull/30803) by beachball)
18
+ - Bump @fluentui/react-portal to v9.4.18 ([PR #30803](https://github.com/microsoft/fluentui/pull/30803) by beachball)
19
+ - Bump @fluentui/react-positioning to v9.14.2 ([PR #30803](https://github.com/microsoft/fluentui/pull/30803) by beachball)
20
+ - Bump @fluentui/react-shared-contexts to v9.15.2 ([PR #30803](https://github.com/microsoft/fluentui/pull/30803) by beachball)
21
+ - Bump @fluentui/react-tabster to v9.19.5 ([PR #30803](https://github.com/microsoft/fluentui/pull/30803) by beachball)
22
+ - Bump @fluentui/react-theme to v9.1.19 ([PR #30803](https://github.com/microsoft/fluentui/pull/30803) by beachball)
23
+ - Bump @fluentui/react-utilities to v9.18.5 ([PR #30803](https://github.com/microsoft/fluentui/pull/30803) by beachball)
24
+
7
25
  ## [9.9.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-combobox_v9.9.2)
8
26
 
9
- Fri, 15 Mar 2024 21:37:57 GMT
27
+ Fri, 15 Mar 2024 21:43:49 GMT
10
28
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-combobox_v9.9.1..@fluentui/react-combobox_v9.9.2)
11
29
 
12
30
  ### Patches
@@ -1 +1 @@
1
- {"version":3,"sources":["Dropdown.types.ts"],"sourcesContent":["import type { ComponentProps, ComponentState, Slot } from '@fluentui/react-utilities';\nimport type { ActiveDescendantImperativeRef } from '@fluentui/react-aria';\nimport type {\n ComboboxBaseContextValues,\n ComboboxBaseOpenChangeData,\n ComboboxBaseOpenEvents,\n ComboboxBaseProps,\n ComboboxBaseState,\n} from '../../utils/ComboboxBase.types';\nimport { Listbox } from '../Listbox/Listbox';\n\nexport type DropdownSlots = {\n /* The root dropdown slot */\n root: NonNullable<Slot<'div'>>;\n\n /* The dropdown arrow icon */\n expandIcon?: Slot<'span'>;\n\n /* The dropdown clear icon */\n clearButton?: Slot<'button'>;\n\n /* The primary slot, the element with role=\"combobox\" */\n button: NonNullable<Slot<'button'>>;\n\n /* The dropdown listbox slot */\n listbox?: Slot<typeof Listbox>;\n};\n\n/**\n * Dropdown Props\n */\nexport type DropdownProps = ComponentProps<Partial<DropdownSlots>, 'button'> & ComboboxBaseProps;\n\n/**\n * State used in rendering Dropdown\n */\nexport type DropdownState = ComponentState<DropdownSlots> &\n ComboboxBaseState & {\n /* Whether the placeholder is currently displayed */\n placeholderVisible: boolean;\n\n showClearButton?: boolean;\n\n activeDescendantController: ActiveDescendantImperativeRef;\n };\n\n/* Export types defined in ComboboxBase */\nexport type DropdownContextValues = ComboboxBaseContextValues;\nexport type DropdownOpenEvents = ComboboxBaseOpenEvents;\nexport type DropdownOpenChangeData = ComboboxBaseOpenChangeData;\n"],"names":[],"mappings":"AAiDA,WAAgE"}
1
+ {"version":3,"sources":["Dropdown.types.ts"],"sourcesContent":["import type { ComponentProps, ComponentState, Slot } from '@fluentui/react-utilities';\nimport type { ActiveDescendantImperativeRef } from '@fluentui/react-aria';\nimport type {\n ComboboxBaseContextValues,\n ComboboxBaseOpenChangeData,\n ComboboxBaseOpenEvents,\n ComboboxBaseProps,\n ComboboxBaseState,\n} from '../../utils/ComboboxBase.types';\nimport { Listbox } from '../Listbox/Listbox';\n\nexport type DropdownSlots = {\n /* The root dropdown slot */\n root: NonNullable<Slot<'div'>>;\n\n /* The dropdown arrow icon */\n expandIcon?: Slot<'span'>;\n\n /* The dropdown clear icon */\n clearButton?: Slot<'button'>;\n\n /* The primary slot, the element with role=\"combobox\" */\n button: NonNullable<Slot<'button'>>;\n\n /* The dropdown listbox slot */\n listbox?: Slot<typeof Listbox>;\n};\n\n/**\n * Dropdown Props\n */\nexport type DropdownProps = ComponentProps<Partial<DropdownSlots>, 'button'> & ComboboxBaseProps;\n\n/**\n * State used in rendering Dropdown\n */\nexport type DropdownState = ComponentState<DropdownSlots> &\n ComboboxBaseState & {\n /* Whether the placeholder is currently displayed */\n placeholderVisible: boolean;\n\n showClearButton?: boolean;\n\n activeDescendantController: ActiveDescendantImperativeRef;\n };\n\n/* Export types defined in ComboboxBase */\nexport type DropdownContextValues = ComboboxBaseContextValues;\nexport type DropdownOpenEvents = ComboboxBaseOpenEvents;\nexport type DropdownOpenChangeData = ComboboxBaseOpenChangeData;\n"],"names":[],"mappings":"AAAA,WAiDgE"}
@@ -1 +1 @@
1
- {"version":3,"sources":["Listbox.types.ts"],"sourcesContent":["import type { ComponentProps, ComponentState, Slot } from '@fluentui/react-utilities';\nimport type { ActiveDescendantContextValue, ActiveDescendantImperativeRef } from '@fluentui/react-aria';\nimport { OptionValue, OptionCollectionState } from '../../utils/OptionCollection.types';\nimport { SelectionEvents, SelectionProps, SelectionState } from '../../utils/Selection.types';\nimport type { ListboxContextValue } from '../../contexts/ListboxContext';\n\nexport type ListboxSlots = {\n /* The root slot, a `<div>` with `role=\"listbox\"` */\n root: Slot<'div'>;\n};\n\n/**\n * Listbox Props\n */\nexport type ListboxProps = ComponentProps<ListboxSlots> & SelectionProps;\n\n/**\n * State used in rendering Listbox\n */\nexport type ListboxState = ComponentState<ListboxSlots> &\n OptionCollectionState &\n Pick<SelectionProps, 'multiselect'> &\n SelectionState & {\n /**\n * @deprecated - no longer used internally\n * @see activeDescendantController.active()\n */\n activeOption?: OptionValue;\n\n /**\n * @deprecated - no longer used internally\n */\n focusVisible: boolean;\n\n /**\n * @deprecated - no longer used internally\n * @see activeDescendantController.focus(id)\n */\n setActiveOption(option?: OptionValue): void;\n\n selectOption(event: SelectionEvents, option: OptionValue): void;\n\n activeDescendantController: ActiveDescendantImperativeRef;\n };\n\nexport type ListboxContextValues = {\n listbox: ListboxContextValue;\n activeDescendant: ActiveDescendantContextValue;\n};\n"],"names":[],"mappings":"AA6CA,WAGE"}
1
+ {"version":3,"sources":["Listbox.types.ts"],"sourcesContent":["import type { ComponentProps, ComponentState, Slot } from '@fluentui/react-utilities';\nimport type { ActiveDescendantContextValue, ActiveDescendantImperativeRef } from '@fluentui/react-aria';\nimport { OptionValue, OptionCollectionState } from '../../utils/OptionCollection.types';\nimport { SelectionEvents, SelectionProps, SelectionState } from '../../utils/Selection.types';\nimport type { ListboxContextValue } from '../../contexts/ListboxContext';\n\nexport type ListboxSlots = {\n /* The root slot, a `<div>` with `role=\"listbox\"` */\n root: Slot<'div'>;\n};\n\n/**\n * Listbox Props\n */\nexport type ListboxProps = ComponentProps<ListboxSlots> & SelectionProps;\n\n/**\n * State used in rendering Listbox\n */\nexport type ListboxState = ComponentState<ListboxSlots> &\n OptionCollectionState &\n Pick<SelectionProps, 'multiselect'> &\n SelectionState & {\n /**\n * @deprecated - no longer used internally\n * @see activeDescendantController.active()\n */\n activeOption?: OptionValue;\n\n /**\n * @deprecated - no longer used internally\n */\n focusVisible: boolean;\n\n /**\n * @deprecated - no longer used internally\n * @see activeDescendantController.focus(id)\n */\n setActiveOption(option?: OptionValue): void;\n\n selectOption(event: SelectionEvents, option: OptionValue): void;\n\n activeDescendantController: ActiveDescendantImperativeRef;\n };\n\nexport type ListboxContextValues = {\n listbox: ListboxContextValue;\n activeDescendant: ActiveDescendantContextValue;\n};\n"],"names":[],"mappings":"AAAA,WAgDE"}
@@ -1,3 +1 @@
1
- /**
2
- * State used in rendering OptionGroup
3
- */ export { };
1
+ export { };
@@ -1 +1 @@
1
- {"version":3,"sources":["OptionGroup.types.ts"],"sourcesContent":["import type { ComponentProps, ComponentState, Slot } from '@fluentui/react-utilities';\n\nexport type OptionGroupSlots = {\n /* The root group wrapper */\n root: NonNullable<Slot<'div'>>;\n\n /*\n * The option group label, displayed as static text before the child options.\n * If not using label, it's recommended to set `aria-label` directly on the OptionGroup instead.\n */\n label?: Slot<'span'>;\n};\n\n/**\n * OptionGroup Props\n */\nexport type OptionGroupProps = ComponentProps<Partial<OptionGroupSlots>>;\n\n/**\n * State used in rendering OptionGroup\n */\nexport type OptionGroupState = ComponentState<OptionGroupSlots>;\n"],"names":[],"mappings":"AAkBA;;CAEC,GACD,WAAgE"}
1
+ {"version":3,"sources":["OptionGroup.types.ts"],"sourcesContent":["import type { ComponentProps, ComponentState, Slot } from '@fluentui/react-utilities';\n\nexport type OptionGroupSlots = {\n /* The root group wrapper */\n root: NonNullable<Slot<'div'>>;\n\n /*\n * The option group label, displayed as static text before the child options.\n * If not using label, it's recommended to set `aria-label` directly on the OptionGroup instead.\n */\n label?: Slot<'span'>;\n};\n\n/**\n * OptionGroup Props\n */\nexport type OptionGroupProps = ComponentProps<Partial<OptionGroupSlots>>;\n\n/**\n * State used in rendering OptionGroup\n */\nexport type OptionGroupState = ComponentState<OptionGroupSlots>;\n"],"names":[],"mappings":"AAAA,WAqBgE"}
@@ -1 +1 @@
1
- {"version":3,"sources":["OptionCollection.types.ts"],"sourcesContent":["export type OptionValue = {\n /** The disabled state of the option. */\n disabled?: boolean;\n\n /** The `id` attribute of the option. */\n id: string;\n\n /** The `text` string for the option. */\n text: string;\n\n /** The value string of the option. */\n value: string;\n};\n\nexport type OptionCollectionState = {\n /**\n * @deprecated - no longer used internally\n */\n getIndexOfId(id: string): number;\n\n /**\n * @deprecated - no longer used internally\n */\n getOptionAtIndex(index: number): OptionValue | undefined;\n\n /**\n * @deprecated - no longer used internally\n */\n getOptionsMatchingText(matcher: (text: string) => boolean): OptionValue[];\n\n /** The total number of options in the collection. */\n getCount: () => number;\n\n /** Returns the option data by key. */\n getOptionById(id: string): OptionValue | undefined;\n\n /** Returns an array of options filtered by a value matching function against the option's value string. */\n getOptionsMatchingValue(matcher: (value: string) => boolean): OptionValue[];\n\n /** The unordered option data. */\n options: OptionValue[];\n\n /* A function that child options call to register their values. Returns a function to unregister the option. */\n registerOption: (option: OptionValue, element: HTMLElement) => () => void;\n};\n"],"names":[],"mappings":"AAcA,WA8BE"}
1
+ {"version":3,"sources":["OptionCollection.types.ts"],"sourcesContent":["export type OptionValue = {\n /** The disabled state of the option. */\n disabled?: boolean;\n\n /** The `id` attribute of the option. */\n id: string;\n\n /** The `text` string for the option. */\n text: string;\n\n /** The value string of the option. */\n value: string;\n};\n\nexport type OptionCollectionState = {\n /**\n * @deprecated - no longer used internally\n */\n getIndexOfId(id: string): number;\n\n /**\n * @deprecated - no longer used internally\n */\n getOptionAtIndex(index: number): OptionValue | undefined;\n\n /**\n * @deprecated - no longer used internally\n */\n getOptionsMatchingText(matcher: (text: string) => boolean): OptionValue[];\n\n /** The total number of options in the collection. */\n getCount: () => number;\n\n /** Returns the option data by key. */\n getOptionById(id: string): OptionValue | undefined;\n\n /** Returns an array of options filtered by a value matching function against the option's value string. */\n getOptionsMatchingValue(matcher: (value: string) => boolean): OptionValue[];\n\n /** The unordered option data. */\n options: OptionValue[];\n\n /* A function that child options call to register their values. Returns a function to unregister the option. */\n registerOption: (option: OptionValue, element: HTMLElement) => () => void;\n};\n"],"names":[],"mappings":"AAAA,WA4CE"}
@@ -1,6 +1,4 @@
1
- /**
2
- * State used in rendering OptionGroup
3
- */ "use strict";
1
+ "use strict";
4
2
  Object.defineProperty(exports, "__esModule", {
5
3
  value: true
6
4
  });
@@ -1 +1 @@
1
- {"version":3,"sources":["OptionGroup.types.js"],"sourcesContent":["/**\n * State used in rendering OptionGroup\n */ export { };\n"],"names":[],"mappings":"AAAA;;CAEC"}
1
+ {"version":3,"sources":[],"names":[],"mappings":""}
@@ -12,11 +12,11 @@ _export(exports, {
12
12
  ListboxContext: function() {
13
13
  return ListboxContext;
14
14
  },
15
- ListboxProvider: function() {
16
- return ListboxProvider;
17
- },
18
15
  useListboxContext_unstable: function() {
19
16
  return useListboxContext_unstable;
17
+ },
18
+ ListboxProvider: function() {
19
+ return ListboxProvider;
20
20
  }
21
21
  });
22
22
  const _interop_require_wildcard = require("@swc/helpers/_/_interop_require_wildcard");
@@ -1 +1 @@
1
- {"version":3,"sources":["ListboxContext.js"],"sourcesContent":["import * as React from 'react';\nimport { createContext, useContextSelector } from '@fluentui/react-context-selector';\nconst listboxContextDefaultValue = {\n activeOption: undefined,\n focusVisible: false,\n multiselect: false,\n registerOption () {\n return ()=>undefined;\n },\n selectedOptions: [],\n onOptionClick () {\n // noop\n },\n selectOption () {\n // noop\n },\n setActiveOption () {\n // noop\n }\n};\nexport const ListboxContext = createContext(undefined);\nexport const useListboxContext_unstable = (selector)=>useContextSelector(ListboxContext, (ctx = listboxContextDefaultValue)=>selector(ctx));\nexport const ListboxProvider = ListboxContext.Provider;\n"],"names":["ListboxContext","ListboxProvider","useListboxContext_unstable","listboxContextDefaultValue","activeOption","undefined","focusVisible","multiselect","registerOption","selectedOptions","onOptionClick","selectOption","setActiveOption","createContext","selector","useContextSelector","ctx","Provider"],"mappings":";;;;;;;;;;;IAoBaA,cAAc;eAAdA;;IAEAC,eAAe;eAAfA;;IADAC,0BAA0B;eAA1BA;;;;iEArBU;sCAC2B;AAClD,MAAMC,6BAA6B;IAC/BC,cAAcC;IACdC,cAAc;IACdC,aAAa;IACbC;QACI,OAAO,IAAIH;IACf;IACAI,iBAAiB,EAAE;IACnBC;IACA,OAAO;IACP;IACAC;IACA,OAAO;IACP;IACAC;IACA,OAAO;IACP;AACJ;AACO,MAAMZ,iBAAiBa,IAAAA,mCAAa,EAACR;AACrC,MAAMH,6BAA6B,CAACY,WAAWC,IAAAA,wCAAkB,EAACf,gBAAgB,CAACgB,MAAMb,0BAA0B,GAAGW,SAASE;AAC/H,MAAMf,kBAAkBD,eAAeiB,QAAQ"}
1
+ {"version":3,"sources":["ListboxContext.js"],"sourcesContent":["import * as React from 'react';\nimport { createContext, useContextSelector } from '@fluentui/react-context-selector';\nconst listboxContextDefaultValue = {\n activeOption: undefined,\n focusVisible: false,\n multiselect: false,\n registerOption () {\n return ()=>undefined;\n },\n selectedOptions: [],\n onOptionClick () {\n // noop\n },\n selectOption () {\n // noop\n },\n setActiveOption () {\n // noop\n }\n};\nexport const ListboxContext = createContext(undefined);\nexport const useListboxContext_unstable = (selector)=>useContextSelector(ListboxContext, (ctx = listboxContextDefaultValue)=>selector(ctx));\nexport const ListboxProvider = ListboxContext.Provider;\n"],"names":["ListboxContext","useListboxContext_unstable","ListboxProvider","listboxContextDefaultValue","activeOption","undefined","focusVisible","multiselect","registerOption","selectedOptions","onOptionClick","selectOption","setActiveOption","createContext","selector","useContextSelector","ctx","Provider"],"mappings":";;;;;;;;;;;IAoBaA,cAAc;eAAdA;;IACAC,0BAA0B;eAA1BA;;IACAC,eAAe;eAAfA;;;;iEAtBU;sCAC2B;AAClD,MAAMC,6BAA6B;IAC/BC,cAAcC;IACdC,cAAc;IACdC,aAAa;IACbC;QACI,OAAO,IAAIH;IACf;IACAI,iBAAiB,EAAE;IACnBC;IACA,OAAO;IACP;IACAC;IACA,OAAO;IACP;IACAC;IACA,OAAO;IACP;AACJ;AACO,MAAMZ,iBAAiBa,IAAAA,mCAAa,EAACR;AACrC,MAAMJ,6BAA6B,CAACa,WAAWC,IAAAA,wCAAkB,EAACf,gBAAgB,CAACgB,MAAMb,0BAA0B,GAAGW,SAASE;AAC/H,MAAMd,kBAAkBF,eAAeiB,QAAQ"}
@@ -10,62 +10,59 @@ function _export(target, all) {
10
10
  });
11
11
  }
12
12
  _export(exports, {
13
- Combobox: function() {
14
- return _Combobox.Combobox;
15
- },
16
13
  ComboboxProvider: function() {
17
14
  return _ComboboxContext.ComboboxProvider;
18
15
  },
19
- Dropdown: function() {
20
- return _Dropdown.Dropdown;
21
- },
22
- Listbox: function() {
23
- return _Listbox.Listbox;
24
- },
25
16
  ListboxProvider: function() {
26
17
  return _ListboxContext.ListboxProvider;
27
18
  },
28
- Option: function() {
29
- return _Option.Option;
19
+ useListboxContext_unstable: function() {
20
+ return _ListboxContext.useListboxContext_unstable;
30
21
  },
31
- OptionGroup: function() {
32
- return _OptionGroup.OptionGroup;
22
+ useComboboxContextValues: function() {
23
+ return _useComboboxContextValues.useComboboxContextValues;
33
24
  },
34
- comboboxClassNames: function() {
35
- return _Combobox.comboboxClassNames;
25
+ useListboxContextValues: function() {
26
+ return _useListboxContextValues.useListboxContextValues;
36
27
  },
37
- dropdownClassNames: function() {
38
- return _Dropdown.dropdownClassNames;
28
+ Listbox: function() {
29
+ return _Listbox.Listbox;
39
30
  },
40
31
  listboxClassNames: function() {
41
32
  return _Listbox.listboxClassNames;
42
33
  },
43
- optionClassNames: function() {
44
- return _Option.optionClassNames;
45
- },
46
- optionGroupClassNames: function() {
47
- return _OptionGroup.optionGroupClassNames;
34
+ renderListbox_unstable: function() {
35
+ return _Listbox.renderListbox_unstable;
48
36
  },
49
- renderCombobox_unstable: function() {
50
- return _Combobox.renderCombobox_unstable;
37
+ useListboxStyles_unstable: function() {
38
+ return _Listbox.useListboxStyles_unstable;
51
39
  },
52
- renderDropdown_unstable: function() {
53
- return _Dropdown.renderDropdown_unstable;
40
+ useListbox_unstable: function() {
41
+ return _Listbox.useListbox_unstable;
54
42
  },
55
- renderListbox_unstable: function() {
56
- return _Listbox.renderListbox_unstable;
43
+ Option: function() {
44
+ return _Option.Option;
57
45
  },
58
- renderOptionGroup_unstable: function() {
59
- return _OptionGroup.renderOptionGroup_unstable;
46
+ optionClassNames: function() {
47
+ return _Option.optionClassNames;
60
48
  },
61
49
  renderOption_unstable: function() {
62
50
  return _Option.renderOption_unstable;
63
51
  },
64
- useComboboxContextValues: function() {
65
- return _useComboboxContextValues.useComboboxContextValues;
52
+ useOptionStyles_unstable: function() {
53
+ return _Option.useOptionStyles_unstable;
66
54
  },
67
- useComboboxFilter: function() {
68
- return _useComboboxFilter.useComboboxFilter;
55
+ useOption_unstable: function() {
56
+ return _Option.useOption_unstable;
57
+ },
58
+ Combobox: function() {
59
+ return _Combobox.Combobox;
60
+ },
61
+ comboboxClassNames: function() {
62
+ return _Combobox.comboboxClassNames;
63
+ },
64
+ renderCombobox_unstable: function() {
65
+ return _Combobox.renderCombobox_unstable;
69
66
  },
70
67
  useComboboxStyles_unstable: function() {
71
68
  return _Combobox.useComboboxStyles_unstable;
@@ -73,23 +70,29 @@ _export(exports, {
73
70
  useCombobox_unstable: function() {
74
71
  return _Combobox.useCombobox_unstable;
75
72
  },
73
+ Dropdown: function() {
74
+ return _Dropdown.Dropdown;
75
+ },
76
+ dropdownClassNames: function() {
77
+ return _Dropdown.dropdownClassNames;
78
+ },
79
+ renderDropdown_unstable: function() {
80
+ return _Dropdown.renderDropdown_unstable;
81
+ },
76
82
  useDropdownStyles_unstable: function() {
77
83
  return _Dropdown.useDropdownStyles_unstable;
78
84
  },
79
85
  useDropdown_unstable: function() {
80
86
  return _Dropdown.useDropdown_unstable;
81
87
  },
82
- useListboxContextValues: function() {
83
- return _useListboxContextValues.useListboxContextValues;
84
- },
85
- useListboxContext_unstable: function() {
86
- return _ListboxContext.useListboxContext_unstable;
88
+ OptionGroup: function() {
89
+ return _OptionGroup.OptionGroup;
87
90
  },
88
- useListboxStyles_unstable: function() {
89
- return _Listbox.useListboxStyles_unstable;
91
+ optionGroupClassNames: function() {
92
+ return _OptionGroup.optionGroupClassNames;
90
93
  },
91
- useListbox_unstable: function() {
92
- return _Listbox.useListbox_unstable;
94
+ renderOptionGroup_unstable: function() {
95
+ return _OptionGroup.renderOptionGroup_unstable;
93
96
  },
94
97
  useOptionGroupStyles_unstable: function() {
95
98
  return _OptionGroup.useOptionGroupStyles_unstable;
@@ -97,11 +100,8 @@ _export(exports, {
97
100
  useOptionGroup_unstable: function() {
98
101
  return _OptionGroup.useOptionGroup_unstable;
99
102
  },
100
- useOptionStyles_unstable: function() {
101
- return _Option.useOptionStyles_unstable;
102
- },
103
- useOption_unstable: function() {
104
- return _Option.useOption_unstable;
103
+ useComboboxFilter: function() {
104
+ return _useComboboxFilter.useComboboxFilter;
105
105
  }
106
106
  });
107
107
  const _ComboboxContext = require("./contexts/ComboboxContext");
@@ -1 +1 @@
1
- {"version":3,"sources":["index.js"],"sourcesContent":["// eslint-disable-next-line deprecation/deprecation\nexport { ComboboxProvider } from './contexts/ComboboxContext';\nexport { ListboxProvider, useListboxContext_unstable } from './contexts/ListboxContext';\nexport { useComboboxContextValues } from './contexts/useComboboxContextValues';\nexport { useListboxContextValues } from './contexts/useListboxContextValues';\nexport { Listbox, listboxClassNames, renderListbox_unstable, useListboxStyles_unstable, useListbox_unstable } from './Listbox';\nexport { Option, optionClassNames, renderOption_unstable, useOptionStyles_unstable, useOption_unstable } from './Option';\nexport { Combobox, comboboxClassNames, renderCombobox_unstable, useComboboxStyles_unstable, useCombobox_unstable } from './Combobox';\nexport { Dropdown, dropdownClassNames, renderDropdown_unstable, useDropdownStyles_unstable, useDropdown_unstable } from './Dropdown';\nexport { OptionGroup, optionGroupClassNames, renderOptionGroup_unstable, useOptionGroupStyles_unstable, useOptionGroup_unstable } from './OptionGroup';\nexport { useComboboxFilter } from './hooks/useComboboxFilter';\n"],"names":["Combobox","ComboboxProvider","Dropdown","Listbox","ListboxProvider","Option","OptionGroup","comboboxClassNames","dropdownClassNames","listboxClassNames","optionClassNames","optionGroupClassNames","renderCombobox_unstable","renderDropdown_unstable","renderListbox_unstable","renderOptionGroup_unstable","renderOption_unstable","useComboboxContextValues","useComboboxFilter","useComboboxStyles_unstable","useCombobox_unstable","useDropdownStyles_unstable","useDropdown_unstable","useListboxContextValues","useListboxContext_unstable","useListboxStyles_unstable","useListbox_unstable","useOptionGroupStyles_unstable","useOptionGroup_unstable","useOptionStyles_unstable","useOption_unstable"],"mappings":"AAAA,mDAAmD;;;;;;;;;;;;IAO1CA,QAAQ;eAARA,kBAAQ;;IANRC,gBAAgB;eAAhBA,iCAAgB;;IAOhBC,QAAQ;eAARA,kBAAQ;;IAHRC,OAAO;eAAPA,gBAAO;;IAHPC,eAAe;eAAfA,+BAAe;;IAIfC,MAAM;eAANA,cAAM;;IAGNC,WAAW;eAAXA,wBAAW;;IAFDC,kBAAkB;eAAlBA,4BAAkB;;IAClBC,kBAAkB;eAAlBA,4BAAkB;;IAHnBC,iBAAiB;eAAjBA,0BAAiB;;IAClBC,gBAAgB;eAAhBA,wBAAgB;;IAGXC,qBAAqB;eAArBA,kCAAqB;;IAFJC,uBAAuB;eAAvBA,iCAAuB;;IACvBC,uBAAuB;eAAvBA,iCAAuB;;IAHzBC,sBAAsB;eAAtBA,+BAAsB;;IAIdC,0BAA0B;eAA1BA,uCAA0B;;IAHpCC,qBAAqB;eAArBA,6BAAqB;;IAH/CC,wBAAwB;eAAxBA,kDAAwB;;IAOxBC,iBAAiB;eAAjBA,oCAAiB;;IAHsCC,0BAA0B;eAA1BA,oCAA0B;;IAAEC,oBAAoB;eAApBA,8BAAoB;;IAChDC,0BAA0B;eAA1BA,oCAA0B;;IAAEC,oBAAoB;eAApBA,8BAAoB;;IAJvGC,uBAAuB;eAAvBA,gDAAuB;;IAFNC,0BAA0B;eAA1BA,0CAA0B;;IAGSC,yBAAyB;eAAzBA,kCAAyB;;IAAEC,mBAAmB;eAAnBA,4BAAmB;;IAIlCC,6BAA6B;eAA7BA,0CAA6B;;IAAEC,uBAAuB;eAAvBA,oCAAuB;;IAHrEC,wBAAwB;eAAxBA,gCAAwB;;IAAEC,kBAAkB;eAAlBA,0BAAkB;;;iCALrE;gCAC2B;0CACnB;yCACD;yBAC2E;wBACL;0BACU;0BACA;6BACe;mCACrG"}
1
+ {"version":3,"sources":["index.js"],"sourcesContent":["// eslint-disable-next-line deprecation/deprecation\nexport { ComboboxProvider } from './contexts/ComboboxContext';\nexport { ListboxProvider, useListboxContext_unstable } from './contexts/ListboxContext';\nexport { useComboboxContextValues } from './contexts/useComboboxContextValues';\nexport { useListboxContextValues } from './contexts/useListboxContextValues';\nexport { Listbox, listboxClassNames, renderListbox_unstable, useListboxStyles_unstable, useListbox_unstable } from './Listbox';\nexport { Option, optionClassNames, renderOption_unstable, useOptionStyles_unstable, useOption_unstable } from './Option';\nexport { Combobox, comboboxClassNames, renderCombobox_unstable, useComboboxStyles_unstable, useCombobox_unstable } from './Combobox';\nexport { Dropdown, dropdownClassNames, renderDropdown_unstable, useDropdownStyles_unstable, useDropdown_unstable } from './Dropdown';\nexport { OptionGroup, optionGroupClassNames, renderOptionGroup_unstable, useOptionGroupStyles_unstable, useOptionGroup_unstable } from './OptionGroup';\nexport { useComboboxFilter } from './hooks/useComboboxFilter';\n"],"names":["ComboboxProvider","ListboxProvider","useListboxContext_unstable","useComboboxContextValues","useListboxContextValues","Listbox","listboxClassNames","renderListbox_unstable","useListboxStyles_unstable","useListbox_unstable","Option","optionClassNames","renderOption_unstable","useOptionStyles_unstable","useOption_unstable","Combobox","comboboxClassNames","renderCombobox_unstable","useComboboxStyles_unstable","useCombobox_unstable","Dropdown","dropdownClassNames","renderDropdown_unstable","useDropdownStyles_unstable","useDropdown_unstable","OptionGroup","optionGroupClassNames","renderOptionGroup_unstable","useOptionGroupStyles_unstable","useOptionGroup_unstable","useComboboxFilter"],"mappings":"AAAA,mDAAmD;;;;;;;;;;;;IAC1CA,gBAAgB;eAAhBA,iCAAgB;;IAChBC,eAAe;eAAfA,+BAAe;;IAAEC,0BAA0B;eAA1BA,0CAA0B;;IAC3CC,wBAAwB;eAAxBA,kDAAwB;;IACxBC,uBAAuB;eAAvBA,gDAAuB;;IACvBC,OAAO;eAAPA,gBAAO;;IAAEC,iBAAiB;eAAjBA,0BAAiB;;IAAEC,sBAAsB;eAAtBA,+BAAsB;;IAAEC,yBAAyB;eAAzBA,kCAAyB;;IAAEC,mBAAmB;eAAnBA,4BAAmB;;IAClGC,MAAM;eAANA,cAAM;;IAAEC,gBAAgB;eAAhBA,wBAAgB;;IAAEC,qBAAqB;eAArBA,6BAAqB;;IAAEC,wBAAwB;eAAxBA,gCAAwB;;IAAEC,kBAAkB;eAAlBA,0BAAkB;;IAC7FC,QAAQ;eAARA,kBAAQ;;IAAEC,kBAAkB;eAAlBA,4BAAkB;;IAAEC,uBAAuB;eAAvBA,iCAAuB;;IAAEC,0BAA0B;eAA1BA,oCAA0B;;IAAEC,oBAAoB;eAApBA,8BAAoB;;IACvGC,QAAQ;eAARA,kBAAQ;;IAAEC,kBAAkB;eAAlBA,4BAAkB;;IAAEC,uBAAuB;eAAvBA,iCAAuB;;IAAEC,0BAA0B;eAA1BA,oCAA0B;;IAAEC,oBAAoB;eAApBA,8BAAoB;;IACvGC,WAAW;eAAXA,wBAAW;;IAAEC,qBAAqB;eAArBA,kCAAqB;;IAAEC,0BAA0B;eAA1BA,uCAA0B;;IAAEC,6BAA6B;eAA7BA,0CAA6B;;IAAEC,uBAAuB;eAAvBA,oCAAuB;;IACtHC,iBAAiB;eAAjBA,oCAAiB;;;iCATO;gCAC2B;0CACnB;yCACD;yBAC2E;wBACL;0BACU;0BACA;6BACe;mCACrG"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluentui/react-combobox",
3
- "version": "9.9.2",
3
+ "version": "9.9.3",
4
4
  "description": "Fluent UI React Combobox component",
5
5
  "main": "lib-commonjs/index.js",
6
6
  "module": "lib/index.js",
@@ -33,18 +33,18 @@
33
33
  "@fluentui/scripts-tasks": "*"
34
34
  },
35
35
  "dependencies": {
36
- "@fluentui/react-aria": "^9.10.1",
36
+ "@fluentui/react-aria": "^9.10.2",
37
37
  "@fluentui/keyboard-keys": "^9.0.7",
38
- "@fluentui/react-context-selector": "^9.1.55",
39
- "@fluentui/react-field": "^9.1.57",
38
+ "@fluentui/react-context-selector": "^9.1.56",
39
+ "@fluentui/react-field": "^9.1.58",
40
40
  "@fluentui/react-icons": "^2.0.224",
41
- "@fluentui/react-jsx-runtime": "^9.0.33",
42
- "@fluentui/react-portal": "^9.4.17",
43
- "@fluentui/react-positioning": "^9.14.1",
44
- "@fluentui/react-shared-contexts": "^9.15.1",
45
- "@fluentui/react-tabster": "^9.19.4",
46
- "@fluentui/react-theme": "^9.1.18",
47
- "@fluentui/react-utilities": "^9.18.4",
41
+ "@fluentui/react-jsx-runtime": "^9.0.34",
42
+ "@fluentui/react-portal": "^9.4.18",
43
+ "@fluentui/react-positioning": "^9.14.2",
44
+ "@fluentui/react-shared-contexts": "^9.15.2",
45
+ "@fluentui/react-tabster": "^9.19.5",
46
+ "@fluentui/react-theme": "^9.1.19",
47
+ "@fluentui/react-utilities": "^9.18.5",
48
48
  "@griffel/react": "^1.5.14",
49
49
  "@swc/helpers": "^0.5.1"
50
50
  },