@fluentui/react-select 9.1.84 → 9.1.86

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-select
2
2
 
3
- This log was last generated on Thu, 15 Aug 2024 08:18:59 GMT and should not be manually modified.
3
+ This log was last generated on Tue, 10 Sep 2024 10:15:07 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
+ ## [9.1.86](https://github.com/microsoft/fluentui/tree/@fluentui/react-select_v9.1.86)
8
+
9
+ Tue, 10 Sep 2024 10:15:07 GMT
10
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-select_v9.1.85..@fluentui/react-select_v9.1.86)
11
+
12
+ ### Patches
13
+
14
+ - chore: follow up on assertSlots fixes ([PR #32323](https://github.com/microsoft/fluentui/pull/32323) by bernardo.sunderhus@gmail.com)
15
+ - Bump @fluentui/react-field to v9.1.75 ([PR #32494](https://github.com/microsoft/fluentui/pull/32494) by beachball)
16
+ - Bump @fluentui/react-jsx-runtime to v9.0.43 ([PR #32494](https://github.com/microsoft/fluentui/pull/32494) by beachball)
17
+ - Bump @fluentui/react-utilities to v9.18.14 ([PR #32494](https://github.com/microsoft/fluentui/pull/32494) by beachball)
18
+
19
+ ## [9.1.85](https://github.com/microsoft/fluentui/tree/@fluentui/react-select_v9.1.85)
20
+
21
+ Thu, 15 Aug 2024 13:49:46 GMT
22
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-select_v9.1.84..@fluentui/react-select_v9.1.85)
23
+
24
+ ### Patches
25
+
26
+ - Bump @fluentui/react-field to v9.1.74 ([PR #32313](https://github.com/microsoft/fluentui/pull/32313) by beachball)
27
+
7
28
  ## [9.1.84](https://github.com/microsoft/fluentui/tree/@fluentui/react-select_v9.1.84)
8
29
 
9
- Thu, 15 Aug 2024 08:18:59 GMT
30
+ Thu, 15 Aug 2024 08:22:17 GMT
10
31
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-select_v9.1.83..@fluentui/react-select_v9.1.84)
11
32
 
12
33
  ### Patches
@@ -9,7 +9,7 @@ import { assertSlots } from '@fluentui/react-utilities';
9
9
  /*#__PURE__*/ _jsx(state.select, {
10
10
  children: state.select.children
11
11
  }),
12
- /*#__PURE__*/ _jsx(state.icon, {})
12
+ state.icon && /*#__PURE__*/ _jsx(state.icon, {})
13
13
  ]
14
14
  });
15
15
  };
@@ -1 +1 @@
1
- {"version":3,"sources":["renderSelect.tsx"],"sourcesContent":["/** @jsxRuntime automatic */\n/** @jsxImportSource @fluentui/react-jsx-runtime */\n\nimport { assertSlots } from '@fluentui/react-utilities';\nimport type { SelectSlots, SelectState } from './Select.types';\n\n/**\n * Render the final JSX of Select\n */\nexport const renderSelect_unstable = (state: SelectState) => {\n assertSlots<SelectSlots>(state);\n return (\n <state.root>\n <state.select>{state.select.children}</state.select>\n <state.icon />\n </state.root>\n );\n};\n"],"names":["assertSlots","renderSelect_unstable","state","root","select","children","icon"],"rangeMappings":";;;;;;;;;;;;;;","mappings":"AAAA,0BAA0B,GAC1B,iDAAiD;AAEjD,SAASA,WAAW,QAAQ,4BAA4B;AAGxD;;CAEC,GACD,OAAO,MAAMC,wBAAwB,CAACC;IACpCF,YAAyBE;IACzB,qBACE,MAACA,MAAMC,IAAI;;0BACT,KAACD,MAAME,MAAM;0BAAEF,MAAME,MAAM,CAACC,QAAQ;;0BACpC,KAACH,MAAMI,IAAI;;;AAGjB,EAAE"}
1
+ {"version":3,"sources":["renderSelect.tsx"],"sourcesContent":["/** @jsxRuntime automatic */\n/** @jsxImportSource @fluentui/react-jsx-runtime */\n\nimport { assertSlots } from '@fluentui/react-utilities';\nimport type { SelectSlots, SelectState } from './Select.types';\n\n/**\n * Render the final JSX of Select\n */\nexport const renderSelect_unstable = (state: SelectState) => {\n assertSlots<SelectSlots>(state);\n return (\n <state.root>\n <state.select>{state.select.children}</state.select>\n {state.icon && <state.icon />}\n </state.root>\n );\n};\n"],"names":["assertSlots","renderSelect_unstable","state","root","select","children","icon"],"rangeMappings":";;;;;;;;;;;;;;","mappings":"AAAA,0BAA0B,GAC1B,iDAAiD;AAEjD,SAASA,WAAW,QAAQ,4BAA4B;AAGxD;;CAEC,GACD,OAAO,MAAMC,wBAAwB,CAACC;IACpCF,YAAyBE;IACzB,qBACE,MAACA,MAAMC,IAAI;;0BACT,KAACD,MAAME,MAAM;0BAAEF,MAAME,MAAM,CAACC,QAAQ;;YACnCH,MAAMI,IAAI,kBAAI,KAACJ,MAAMI,IAAI;;;AAGhC,EAAE"}
@@ -17,7 +17,7 @@ const renderSelect_unstable = (state)=>{
17
17
  /*#__PURE__*/ (0, _jsxruntime.jsx)(state.select, {
18
18
  children: state.select.children
19
19
  }),
20
- /*#__PURE__*/ (0, _jsxruntime.jsx)(state.icon, {})
20
+ state.icon && /*#__PURE__*/ (0, _jsxruntime.jsx)(state.icon, {})
21
21
  ]
22
22
  });
23
23
  };
@@ -1 +1 @@
1
- {"version":3,"sources":["renderSelect.tsx"],"sourcesContent":["/** @jsxRuntime automatic */\n/** @jsxImportSource @fluentui/react-jsx-runtime */\n\nimport { assertSlots } from '@fluentui/react-utilities';\nimport type { SelectSlots, SelectState } from './Select.types';\n\n/**\n * Render the final JSX of Select\n */\nexport const renderSelect_unstable = (state: SelectState) => {\n assertSlots<SelectSlots>(state);\n return (\n <state.root>\n <state.select>{state.select.children}</state.select>\n <state.icon />\n </state.root>\n );\n};\n"],"names":["renderSelect_unstable","state","assertSlots","_jsxs","root","_jsx","select","children","icon"],"rangeMappings":";;;;;;;;;;;;;;;;;;;;;;","mappings":";;;;+BASaA;;;eAAAA;;;4BARb;gCAE4B;AAMrB,MAAMA,wBAAwB,CAACC;IACpCC,IAAAA,2BAAAA,EAAyBD;IACzB,OAAA,WAAA,GACEE,IAAAA,gBAAA,EAACF,MAAMG,IAAI,EAAA;;0BACTC,IAAAA,eAAA,EAACJ,MAAMK,MAAM,EAAA;0BAAEL,MAAMK,MAAM,CAACC,QAAQ;;0BACpCF,IAAAA,eAAA,EAACJ,MAAMO,IAAI,EAAA,CAAA;;;AAGjB"}
1
+ {"version":3,"sources":["renderSelect.tsx"],"sourcesContent":["/** @jsxRuntime automatic */\n/** @jsxImportSource @fluentui/react-jsx-runtime */\n\nimport { assertSlots } from '@fluentui/react-utilities';\nimport type { SelectSlots, SelectState } from './Select.types';\n\n/**\n * Render the final JSX of Select\n */\nexport const renderSelect_unstable = (state: SelectState) => {\n assertSlots<SelectSlots>(state);\n return (\n <state.root>\n <state.select>{state.select.children}</state.select>\n {state.icon && <state.icon />}\n </state.root>\n );\n};\n"],"names":["renderSelect_unstable","state","assertSlots","_jsxs","root","_jsx","select","children","icon"],"rangeMappings":";;;;;;;;;;;;;;;;;;;;;;","mappings":";;;;+BASaA;;;eAAAA;;;4BARb;gCAE4B;AAMrB,MAAMA,wBAAwB,CAACC;IACpCC,IAAAA,2BAAAA,EAAyBD;IACzB,OAAA,WAAA,GACEE,IAAAA,gBAAA,EAACF,MAAMG,IAAI,EAAA;;0BACTC,IAAAA,eAAA,EAACJ,MAAMK,MAAM,EAAA;0BAAEL,MAAMK,MAAM,CAACC,QAAQ;;YACnCN,MAAMO,IAAI,IAAA,WAAA,GAAIH,IAAAA,eAAA,EAACJ,MAAMO,IAAI,EAAA,CAAA;;;AAGhC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluentui/react-select",
3
- "version": "9.1.84",
3
+ "version": "9.1.86",
4
4
  "description": "Fluent UI React Select component",
5
5
  "main": "lib-commonjs/index.js",
6
6
  "module": "lib/index.js",
@@ -32,12 +32,12 @@
32
32
  "@fluentui/scripts-tasks": "*"
33
33
  },
34
34
  "dependencies": {
35
- "@fluentui/react-field": "^9.1.73",
35
+ "@fluentui/react-field": "^9.1.75",
36
36
  "@fluentui/react-icons": "^2.0.245",
37
- "@fluentui/react-jsx-runtime": "^9.0.42",
37
+ "@fluentui/react-jsx-runtime": "^9.0.43",
38
38
  "@fluentui/react-shared-contexts": "^9.20.0",
39
39
  "@fluentui/react-theme": "^9.1.19",
40
- "@fluentui/react-utilities": "^9.18.13",
40
+ "@fluentui/react-utilities": "^9.18.14",
41
41
  "@griffel/react": "^1.5.22",
42
42
  "@swc/helpers": "^0.5.1"
43
43
  },