@fluentui-copilot/react-reference 0.0.0-nightly-20250625-0406-23f68f36.1 → 0.0.0-nightly-20250626-0404-886e4207.1
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 +3 -3
- package/CHANGELOG.md +4 -4
- package/dist/index.d.ts +6 -8
- package/package.json +11 -11
package/CHANGELOG.json
CHANGED
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
"name": "@fluentui-copilot/react-reference",
|
|
3
3
|
"entries": [
|
|
4
4
|
{
|
|
5
|
-
"date": "
|
|
6
|
-
"tag": "@fluentui-copilot/react-reference_v0.0.0-nightly-
|
|
7
|
-
"version": "0.0.0-nightly-
|
|
5
|
+
"date": "Thu, 26 Jun 2025 04:14:48 GMT",
|
|
6
|
+
"tag": "@fluentui-copilot/react-reference_v0.0.0-nightly-20250626-0404-886e4207.1",
|
|
7
|
+
"version": "0.0.0-nightly-20250626-0404-886e4207.1",
|
|
8
8
|
"comments": {
|
|
9
9
|
"prerelease": [
|
|
10
10
|
{
|
package/CHANGELOG.md
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
# Change Log - @fluentui-copilot/react-reference
|
|
2
2
|
|
|
3
|
-
This log was last generated on
|
|
3
|
+
This log was last generated on Thu, 26 Jun 2025 04:14:48 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
-
## [0.0.0-nightly-
|
|
7
|
+
## [0.0.0-nightly-20250626-0404-886e4207.1](https://github.com/microsoft/fluentai/tree/@fluentui-copilot/react-reference_v0.0.0-nightly-20250626-0404-886e4207.1)
|
|
8
8
|
|
|
9
|
-
|
|
10
|
-
[Compare changes](https://github.com/microsoft/fluentai/compare/@fluentui-copilot/react-reference_v0.16.0..@fluentui-copilot/react-reference_v0.0.0-nightly-
|
|
9
|
+
Thu, 26 Jun 2025 04:14:48 GMT
|
|
10
|
+
[Compare changes](https://github.com/microsoft/fluentai/compare/@fluentui-copilot/react-reference_v0.16.0..@fluentui-copilot/react-reference_v0.0.0-nightly-20250626-0404-886e4207.1)
|
|
11
11
|
|
|
12
12
|
### Changes
|
|
13
13
|
|
package/dist/index.d.ts
CHANGED
|
@@ -6,8 +6,7 @@ import type { Context } from '@fluentui/react-context-selector';
|
|
|
6
6
|
import type { ContextSelector } from '@fluentui/react-context-selector';
|
|
7
7
|
import type { DesignVersion } from '@fluentui-copilot/react-provider';
|
|
8
8
|
import { FC } from 'react';
|
|
9
|
-
import
|
|
10
|
-
import { ForwardRefComponent as ForwardRefComponent_2 } from '@fluentui/react-utilities';
|
|
9
|
+
import { ForwardRefComponent } from '@fluentui/react-components';
|
|
11
10
|
import type { PreviewHeaderProps } from '@fluentui-copilot/react-preview';
|
|
12
11
|
import type { PreviewMetadataProps } from '@fluentui-copilot/react-preview';
|
|
13
12
|
import type { PreviewProps } from '@fluentui-copilot/react-preview';
|
|
@@ -18,8 +17,7 @@ import * as React_2 from 'react';
|
|
|
18
17
|
import { Ref } from 'react';
|
|
19
18
|
import type { SensitivityLabelProps } from '@fluentui-copilot/react-sensitivity-label';
|
|
20
19
|
import type { Slot } from '@fluentui/react-components';
|
|
21
|
-
import
|
|
22
|
-
import { SlotClassNames as SlotClassNames_2 } from '@fluentui/react-utilities';
|
|
20
|
+
import { SlotClassNames } from '@fluentui/react-components';
|
|
23
21
|
|
|
24
22
|
export declare const Citation: ForwardRefComponent<CitationProps>;
|
|
25
23
|
|
|
@@ -166,10 +164,10 @@ export declare type ReferenceListState = ComponentState<ReferenceListSlots> & Pi
|
|
|
166
164
|
};
|
|
167
165
|
|
|
168
166
|
/** @deprecated use ReferenceList */
|
|
169
|
-
export declare const ReferenceListV2:
|
|
167
|
+
export declare const ReferenceListV2: ForwardRefComponent<ReferenceListProps>;
|
|
170
168
|
|
|
171
169
|
/** @deprecated use referenceListClassNames */
|
|
172
|
-
export declare const referenceListV2ClassNames:
|
|
170
|
+
export declare const referenceListV2ClassNames: SlotClassNames<ReferenceListSlots>;
|
|
173
171
|
|
|
174
172
|
/** @deprecated use ReferenceListContextValues */
|
|
175
173
|
export declare type ReferenceListV2ContextValues = ReferenceListContextValues;
|
|
@@ -230,10 +228,10 @@ export declare type ReferenceSlots = {
|
|
|
230
228
|
export declare type ReferenceState = ComponentState<ReferenceSlots> & Required<Pick<ReferenceProps, 'id' | 'designVersion'>> & Pick<ReferenceListState, 'shouldUseOverflow'>;
|
|
231
229
|
|
|
232
230
|
/** @deprecated use Reference */
|
|
233
|
-
export declare const ReferenceV2:
|
|
231
|
+
export declare const ReferenceV2: ForwardRefComponent<ReferenceProps>;
|
|
234
232
|
|
|
235
233
|
/** @deprecated use referenceClassNames */
|
|
236
|
-
export declare const referenceV2ClassNames:
|
|
234
|
+
export declare const referenceV2ClassNames: SlotClassNames<ReferenceSlots>;
|
|
237
235
|
|
|
238
236
|
/** @deprecated use referenceExtraClassNames */
|
|
239
237
|
export declare const referenceV2ExtraClassNames: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluentui-copilot/react-reference",
|
|
3
|
-
"version": "0.0.0-nightly-
|
|
3
|
+
"version": "0.0.0-nightly-20250626-0404-886e4207.1",
|
|
4
4
|
"description": "Fluent AI controls for citations and references",
|
|
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-preview": "^0.0.0-nightly-
|
|
16
|
-
"@fluentui-copilot/react-provider": "^0.0.0-nightly-
|
|
17
|
-
"@fluentui-copilot/react-sensitivity-label": "^0.0.0-nightly-
|
|
18
|
-
"@fluentui-copilot/react-utilities": "^0.0.0-nightly-
|
|
19
|
-
"@fluentui-copilot/tokens": "^0.0.0-nightly-
|
|
15
|
+
"@fluentui-copilot/react-preview": "^0.0.0-nightly-20250626-0404-886e4207.1",
|
|
16
|
+
"@fluentui-copilot/react-provider": "^0.0.0-nightly-20250626-0404-886e4207.1",
|
|
17
|
+
"@fluentui-copilot/react-sensitivity-label": "^0.0.0-nightly-20250626-0404-886e4207.1",
|
|
18
|
+
"@fluentui-copilot/react-utilities": "^0.0.0-nightly-20250626-0404-886e4207.1",
|
|
19
|
+
"@fluentui-copilot/tokens": "^0.0.0-nightly-20250626-0404-886e4207.1",
|
|
20
20
|
"@swc/helpers": "^0.5.1"
|
|
21
21
|
},
|
|
22
22
|
"peerDependencies": {
|
|
23
23
|
"@fluentui/keyboard-keys": ">=9.0.8 <10.0.0",
|
|
24
|
-
"@fluentui/react-components": ">=9.
|
|
25
|
-
"@fluentui/react-context-selector": ">=9.1
|
|
26
|
-
"@fluentui/react-icons": ">=2.0.
|
|
27
|
-
"@fluentui/react-jsx-runtime": ">=9.0
|
|
24
|
+
"@fluentui/react-components": ">=9.66.0 <10.0.0",
|
|
25
|
+
"@fluentui/react-context-selector": ">=9.2.1 <10.0.0",
|
|
26
|
+
"@fluentui/react-icons": ">=2.0.303 <3.0.0",
|
|
27
|
+
"@fluentui/react-jsx-runtime": ">=9.1.0 <10.0.0",
|
|
28
28
|
"@fluentui/react-shared-contexts": ">=9.23.1 <10.0.0",
|
|
29
|
-
"@fluentui/react-utilities": ">=9.
|
|
29
|
+
"@fluentui/react-utilities": ">=9.21.0 <10.0.0",
|
|
30
30
|
"@types/react": ">=16.14.0 <19.0.0",
|
|
31
31
|
"@types/react-dom": ">=16.9.8 <19.0.0",
|
|
32
32
|
"react": ">=16.14.0 <19.0.0",
|