@fluentui-copilot/react-suggestions 0.13.5 → 0.13.6

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.json CHANGED
@@ -1,6 +1,33 @@
1
1
  {
2
2
  "name": "@fluentui-copilot/react-suggestions",
3
3
  "entries": [
4
+ {
5
+ "date": "Tue, 14 Oct 2025 00:02:50 GMT",
6
+ "tag": "@fluentui-copilot/react-suggestions_v0.13.6",
7
+ "version": "0.13.6",
8
+ "comments": {
9
+ "patch": [
10
+ {
11
+ "author": "tristan.watanabe@gmail.com",
12
+ "package": "@fluentui-copilot/react-suggestions",
13
+ "commit": "74cfcbd7c8afdc8fe3f4b512a9a421613fa32841",
14
+ "comment": "chore: update react peer deps to support React 19."
15
+ },
16
+ {
17
+ "author": "tristan.watanabe@gmail.com",
18
+ "package": "@fluentui-copilot/react-suggestions",
19
+ "commit": "9a3bf49a3c6302529b2c9b6bc3fc63f549aaf88f",
20
+ "comment": "chore: enforce explicit return types."
21
+ },
22
+ {
23
+ "author": "twatanabe@microsoft.com",
24
+ "package": "@fluentui-copilot/react-suggestions",
25
+ "commit": "068a3c71be5da80beeab05640fe768ef631b0c00",
26
+ "comment": "chore: bump @fluentui/react-components peer dep minbar to ^9.70.0."
27
+ }
28
+ ]
29
+ }
30
+ },
4
31
  {
5
32
  "date": "Thu, 17 Jul 2025 17:49:25 GMT",
6
33
  "tag": "@fluentui-copilot/react-suggestions_v0.13.3",
package/CHANGELOG.md CHANGED
@@ -1,9 +1,20 @@
1
1
  # Change Log - @fluentui-copilot/react-suggestions
2
2
 
3
- This log was last generated on Thu, 17 Jul 2025 17:49:25 GMT and should not be manually modified.
3
+ This log was last generated on Tue, 14 Oct 2025 00:02:50 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
+ ## [0.13.6](https://github.com/microsoft/fluentai/tree/@fluentui-copilot/react-suggestions_v0.13.6)
8
+
9
+ Tue, 14 Oct 2025 00:02:50 GMT
10
+ [Compare changes](https://github.com/microsoft/fluentai/compare/@fluentui-copilot/react-suggestions_v0.13.3..@fluentui-copilot/react-suggestions_v0.13.6)
11
+
12
+ ### Patches
13
+
14
+ - chore: update react peer deps to support React 19. ([PR #3361](https://github.com/microsoft/fluentai/pull/3361) by tristan.watanabe@gmail.com)
15
+ - chore: enforce explicit return types. ([PR #3360](https://github.com/microsoft/fluentai/pull/3360) by tristan.watanabe@gmail.com)
16
+ - chore: bump @fluentui/react-components peer dep minbar to ^9.70.0. ([PR #3344](https://github.com/microsoft/fluentai/pull/3344) by twatanabe@microsoft.com)
17
+
7
18
  ## [0.13.3](https://github.com/microsoft/fluentai/tree/@fluentui-copilot/react-suggestions_v0.13.3)
8
19
 
9
20
  Thu, 17 Jul 2025 17:49:25 GMT
package/dist/index.d.ts CHANGED
@@ -8,6 +8,7 @@ import type { ComponentState } from '@fluentui/react-components';
8
8
  import type { CopilotMode } from '@fluentui-copilot/react-provider';
9
9
  import type { DesignVersion } from '@fluentui-copilot/react-provider';
10
10
  import type { ForwardRefComponent } from '@fluentui/react-components';
11
+ import type { JSXElement } from '@fluentui/react-components';
11
12
  import type { Slot } from '@fluentui/react-components';
12
13
  import type { SlotClassNames } from '@fluentui/react-components';
13
14
  import type { TooltipProps } from '@fluentui/react-components';
@@ -15,7 +16,7 @@ import type { TooltipProps } from '@fluentui/react-components';
15
16
  /**
16
17
  * Render the final JSX of SuggestionList
17
18
  */
18
- export declare const renderSuggestionList_unstable: (state: SuggestionListState) => JSX.Element;
19
+ export declare const renderSuggestionList_unstable: (state: SuggestionListState) => JSXElement;
19
20
 
20
21
  export declare const Suggestion: ForwardRefComponent<SuggestionProps>;
21
22
 
@@ -1 +1 @@
1
- {"version":3,"sources":["renderSuggestionList.tsx"],"sourcesContent":["/** @jsxRuntime automatic */\n/** @jsxImportSource @fluentui/react-jsx-runtime */\n\nimport { assertSlots } from '@fluentui/react-components';\nimport type { SuggestionListState, SuggestionListSlots } from './SuggestionList.types';\n\n/**\n * Render the final JSX of SuggestionList\n */\nexport const renderSuggestionList_unstable = (state: SuggestionListState) => {\n assertSlots<SuggestionListSlots>(state);\n\n return (\n <state.root>\n {state.root.children}\n {state.action && <state.action />}\n </state.root>\n );\n};\n"],"names":["assertSlots","renderSuggestionList_unstable","state","root","children","action"],"rangeMappings":";;;;;;;;;;;;","mappings":"AAAA,0BAA0B,GAC1B,iDAAiD;AAEjD,SAASA,WAAW,QAAQ,6BAA6B;AAGzD;;CAEC,GACD,OAAO,MAAMC,gCAAgC,CAACC;IAC5CF,YAAiCE;IAEjC,qBACE,MAACA,MAAMC,IAAI;;YACRD,MAAMC,IAAI,CAACC,QAAQ;YACnBF,MAAMG,MAAM,kBAAI,KAACH,MAAMG,MAAM;;;AAGpC,EAAE"}
1
+ {"version":3,"sources":["renderSuggestionList.tsx"],"sourcesContent":["/** @jsxRuntime automatic */\n/** @jsxImportSource @fluentui/react-jsx-runtime */\n\nimport { assertSlots } from '@fluentui/react-components';\nimport type { JSXElement } from '@fluentui/react-components';\nimport type { SuggestionListState, SuggestionListSlots } from './SuggestionList.types';\n\n/**\n * Render the final JSX of SuggestionList\n */\nexport const renderSuggestionList_unstable = (state: SuggestionListState): JSXElement => {\n assertSlots<SuggestionListSlots>(state);\n\n return (\n <state.root>\n {state.root.children}\n {state.action && <state.action />}\n </state.root>\n );\n};\n"],"names":["assertSlots","renderSuggestionList_unstable","state","root","children","action"],"rangeMappings":";;;;;;;;;;;;","mappings":"AAAA,0BAA0B,GAC1B,iDAAiD;AAEjD,SAASA,WAAW,QAAQ,6BAA6B;AAIzD;;CAEC,GACD,OAAO,MAAMC,gCAAgC,CAACC;IAC5CF,YAAiCE;IAEjC,qBACE,MAACA,MAAMC,IAAI;;YACRD,MAAMC,IAAI,CAACC,QAAQ;YACnBF,MAAMG,MAAM,kBAAI,KAACH,MAAMG,MAAM;;;AAGpC,EAAE"}
@@ -1 +1 @@
1
- {"version":3,"sources":["renderSuggestionList.tsx"],"sourcesContent":["/** @jsxRuntime automatic */\n/** @jsxImportSource @fluentui/react-jsx-runtime */\n\nimport { assertSlots } from '@fluentui/react-components';\nimport type { SuggestionListState, SuggestionListSlots } from './SuggestionList.types';\n\n/**\n * Render the final JSX of SuggestionList\n */\nexport const renderSuggestionList_unstable = (state: SuggestionListState) => {\n assertSlots<SuggestionListSlots>(state);\n\n return (\n <state.root>\n {state.root.children}\n {state.action && <state.action />}\n </state.root>\n );\n};\n"],"names":["renderSuggestionList_unstable","state","assertSlots","_jsxs","root","children","action","_jsx"],"rangeMappings":";;;;;;;;;;;;;;;;;;;;","mappings":";;;;+BASaA;;;eAAAA;;;4BARb;iCAE4B;AAMrB,MAAMA,gCAAgC,CAACC;IAC5CC,IAAAA,4BAAAA,EAAiCD;IAEjC,OAAA,WAAA,GACEE,IAAAA,gBAAA,EAACF,MAAMG,IAAI,EAAA;;YACRH,MAAMG,IAAI,CAACC,QAAQ;YACnBJ,MAAMK,MAAM,IAAA,WAAA,GAAIC,IAAAA,eAAA,EAACN,MAAMK,MAAM,EAAA,CAAA;;;AAGpC"}
1
+ {"version":3,"sources":["renderSuggestionList.tsx"],"sourcesContent":["/** @jsxRuntime automatic */\n/** @jsxImportSource @fluentui/react-jsx-runtime */\n\nimport { assertSlots } from '@fluentui/react-components';\nimport type { JSXElement } from '@fluentui/react-components';\nimport type { SuggestionListState, SuggestionListSlots } from './SuggestionList.types';\n\n/**\n * Render the final JSX of SuggestionList\n */\nexport const renderSuggestionList_unstable = (state: SuggestionListState): JSXElement => {\n assertSlots<SuggestionListSlots>(state);\n\n return (\n <state.root>\n {state.root.children}\n {state.action && <state.action />}\n </state.root>\n );\n};\n"],"names":["renderSuggestionList_unstable","state","assertSlots","_jsxs","root","children","action","_jsx"],"rangeMappings":";;;;;;;;;;;;;;;;;;;;","mappings":";;;;+BAUaA;;;eAAAA;;;4BATb;iCAE4B;AAOrB,MAAMA,gCAAgC,CAACC;IAC5CC,IAAAA,4BAAAA,EAAiCD;IAEjC,OAAA,WAAA,GACEE,IAAAA,gBAAA,EAACF,MAAMG,IAAI,EAAA;;YACRH,MAAMG,IAAI,CAACC,QAAQ;YACnBJ,MAAMK,MAAM,IAAA,WAAA,GAAIC,IAAAA,eAAA,EAACN,MAAMK,MAAM,EAAA,CAAA;;;AAGpC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluentui-copilot/react-suggestions",
3
- "version": "0.13.5",
3
+ "version": "0.13.6",
4
4
  "description": "A Fluent AI package",
5
5
  "main": "lib-commonjs/index.js",
6
6
  "module": "lib/index.js",
@@ -12,21 +12,21 @@
12
12
  },
13
13
  "license": "MIT",
14
14
  "dependencies": {
15
- "@fluentui-copilot/react-provider": "^0.12.5",
16
- "@fluentui-copilot/tokens": "^0.3.14",
15
+ "@fluentui-copilot/react-provider": "^0.12.6",
16
+ "@fluentui-copilot/tokens": "^0.3.15",
17
17
  "@swc/helpers": "^0.5.1"
18
18
  },
19
19
  "peerDependencies": {
20
- "@fluentui/react-components": ">=9.66.0 <10.0.0",
21
- "@fluentui/react-context-selector": ">=9.2.1 <10.0.0",
20
+ "@fluentui/react-components": ">=9.70.0 <10.0.0",
21
+ "@fluentui/react-context-selector": ">=9.2.7 <10.0.0",
22
22
  "@fluentui/react-icons": ">=2.0.303 <3.0.0",
23
- "@fluentui/react-jsx-runtime": ">=9.1.1 <10.0.0",
24
- "@fluentui/react-shared-contexts": ">=9.24.0 <10.0.0",
25
- "@fluentui/react-utilities": ">=9.21.1 <10.0.0",
26
- "@types/react": ">=16.14.0 <19.0.0",
27
- "@types/react-dom": ">=16.9.8 <19.0.0",
28
- "react": ">=16.14.0 <19.0.0",
29
- "react-dom": ">=16.14.0 <19.0.0"
23
+ "@fluentui/react-jsx-runtime": ">=9.2.0 <10.0.0",
24
+ "@fluentui/react-shared-contexts": ">=9.25.1 <10.0.0",
25
+ "@fluentui/react-utilities": ">=9.24.1 <10.0.0",
26
+ "@types/react": ">=16.14.0 <20.0.0",
27
+ "@types/react-dom": ">=16.9.8 <20.0.0",
28
+ "react": ">=16.14.0 <20.0.0",
29
+ "react-dom": ">=16.14.0 <20.0.0"
30
30
  },
31
31
  "beachball": {
32
32
  "disallowedChangeTypes": [