@fluentui-copilot/react-reference 0.0.0-nightly-20240313-0404-8abc883d.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 +943 -0
- package/CHANGELOG.md +281 -0
- package/LICENSE +23 -0
- package/README.md +5 -0
- package/dist/index.d.ts +539 -0
- package/lib/Citation.js +2 -0
- package/lib/Citation.js.map +1 -0
- package/lib/Reference.js +2 -0
- package/lib/Reference.js.map +1 -0
- package/lib/ReferenceGroup.js +2 -0
- package/lib/ReferenceGroup.js.map +1 -0
- package/lib/ReferenceGroupToggle.js +2 -0
- package/lib/ReferenceGroupToggle.js.map +1 -0
- package/lib/ReferenceList.js +2 -0
- package/lib/ReferenceList.js.map +1 -0
- package/lib/components/Citation/Citation.js +14 -0
- package/lib/components/Citation/Citation.js.map +1 -0
- package/lib/components/Citation/Citation.types.js +2 -0
- package/lib/components/Citation/Citation.types.js.map +1 -0
- package/lib/components/Citation/index.js +6 -0
- package/lib/components/Citation/index.js.map +1 -0
- package/lib/components/Citation/renderCitation.js +29 -0
- package/lib/components/Citation/renderCitation.js.map +1 -0
- package/lib/components/Citation/useCitation.js +191 -0
- package/lib/components/Citation/useCitation.js.map +1 -0
- package/lib/components/Citation/useCitationStyles.js +44 -0
- package/lib/components/Citation/useCitationStyles.js.map +1 -0
- package/lib/components/Reference/Reference.js +14 -0
- package/lib/components/Reference/Reference.js.map +1 -0
- package/lib/components/Reference/Reference.types.js +2 -0
- package/lib/components/Reference/Reference.types.js.map +1 -0
- package/lib/components/Reference/index.js +6 -0
- package/lib/components/Reference/index.js.map +1 -0
- package/lib/components/Reference/renderReference.js +16 -0
- package/lib/components/Reference/renderReference.js.map +1 -0
- package/lib/components/Reference/useReference.js +197 -0
- package/lib/components/Reference/useReference.js.map +1 -0
- package/lib/components/Reference/useReferenceStyles.js +253 -0
- package/lib/components/Reference/useReferenceStyles.js.map +1 -0
- package/lib/components/ReferenceGroup/ReferenceGroup.js +19 -0
- package/lib/components/ReferenceGroup/ReferenceGroup.js.map +1 -0
- package/lib/components/ReferenceGroup/ReferenceGroup.types.js +2 -0
- package/lib/components/ReferenceGroup/ReferenceGroup.types.js.map +1 -0
- package/lib/components/ReferenceGroup/index.js +6 -0
- package/lib/components/ReferenceGroup/index.js.map +1 -0
- package/lib/components/ReferenceGroup/renderReferenceGroup.js +21 -0
- package/lib/components/ReferenceGroup/renderReferenceGroup.js.map +1 -0
- package/lib/components/ReferenceGroup/useReferenceGroup.js +104 -0
- package/lib/components/ReferenceGroup/useReferenceGroup.js.map +1 -0
- package/lib/components/ReferenceGroup/useReferenceGroupContextValues.js +10 -0
- package/lib/components/ReferenceGroup/useReferenceGroupContextValues.js.map +1 -0
- package/lib/components/ReferenceGroup/useReferenceGroupStyles.js +50 -0
- package/lib/components/ReferenceGroup/useReferenceGroupStyles.js.map +1 -0
- package/lib/components/ReferenceGroupToggle/ReferenceGroupToggle.js +12 -0
- package/lib/components/ReferenceGroupToggle/ReferenceGroupToggle.js.map +1 -0
- package/lib/components/ReferenceGroupToggle/ReferenceGroupToggle.types.js +2 -0
- package/lib/components/ReferenceGroupToggle/ReferenceGroupToggle.types.js.map +1 -0
- package/lib/components/ReferenceGroupToggle/index.js +6 -0
- package/lib/components/ReferenceGroupToggle/index.js.map +1 -0
- package/lib/components/ReferenceGroupToggle/renderReferenceGroupToggle.js +12 -0
- package/lib/components/ReferenceGroupToggle/renderReferenceGroupToggle.js.map +1 -0
- package/lib/components/ReferenceGroupToggle/useReferenceGroupToggle.js +40 -0
- package/lib/components/ReferenceGroupToggle/useReferenceGroupToggle.js.map +1 -0
- package/lib/components/ReferenceGroupToggle/useReferenceGroupToggleStyles.js +20 -0
- package/lib/components/ReferenceGroupToggle/useReferenceGroupToggleStyles.js.map +1 -0
- package/lib/components/ReferenceList/ReferenceList.js +14 -0
- package/lib/components/ReferenceList/ReferenceList.js.map +1 -0
- package/lib/components/ReferenceList/ReferenceList.types.js +2 -0
- package/lib/components/ReferenceList/ReferenceList.types.js.map +1 -0
- package/lib/components/ReferenceList/index.js +6 -0
- package/lib/components/ReferenceList/index.js.map +1 -0
- package/lib/components/ReferenceList/renderReferenceList.js +10 -0
- package/lib/components/ReferenceList/renderReferenceList.js.map +1 -0
- package/lib/components/ReferenceList/useReferenceList.js +30 -0
- package/lib/components/ReferenceList/useReferenceList.js.map +1 -0
- package/lib/components/ReferenceList/useReferenceListStyles.js +17 -0
- package/lib/components/ReferenceList/useReferenceListStyles.js.map +1 -0
- package/lib/context/ReferenceGroupContext.js +11 -0
- package/lib/context/ReferenceGroupContext.js.map +1 -0
- package/lib/hooks/index.js +4 -0
- package/lib/hooks/index.js.map +1 -0
- package/lib/hooks/useReferenceCitation.js +77 -0
- package/lib/hooks/useReferenceCitation.js.map +1 -0
- package/lib/hooks/useReferenceCitationPreview.js +128 -0
- package/lib/hooks/useReferenceCitationPreview.js.map +1 -0
- package/lib/hooks/useReferenceGroup.js +40 -0
- package/lib/hooks/useReferenceGroup.js.map +1 -0
- package/lib/index.js +7 -0
- package/lib/index.js.map +1 -0
- package/lib-commonjs/Citation.js +7 -0
- package/lib-commonjs/Citation.js.map +1 -0
- package/lib-commonjs/Reference.js +7 -0
- package/lib-commonjs/Reference.js.map +1 -0
- package/lib-commonjs/ReferenceGroup.js +7 -0
- package/lib-commonjs/ReferenceGroup.js.map +1 -0
- package/lib-commonjs/ReferenceGroupToggle.js +7 -0
- package/lib-commonjs/ReferenceGroupToggle.js.map +1 -0
- package/lib-commonjs/ReferenceList.js +7 -0
- package/lib-commonjs/ReferenceList.js.map +1 -0
- package/lib-commonjs/components/Citation/Citation.js +23 -0
- package/lib-commonjs/components/Citation/Citation.js.map +1 -0
- package/lib-commonjs/components/Citation/Citation.types.js +5 -0
- package/lib-commonjs/components/Citation/Citation.types.js.map +1 -0
- package/lib-commonjs/components/Citation/index.js +11 -0
- package/lib-commonjs/components/Citation/index.js.map +1 -0
- package/lib-commonjs/components/Citation/renderCitation.js +38 -0
- package/lib-commonjs/components/Citation/renderCitation.js.map +1 -0
- package/lib-commonjs/components/Citation/useCitation.js +185 -0
- package/lib-commonjs/components/Citation/useCitation.js.map +1 -0
- package/lib-commonjs/components/Citation/useCitationStyles.js +100 -0
- package/lib-commonjs/components/Citation/useCitationStyles.js.map +1 -0
- package/lib-commonjs/components/Reference/Reference.js +23 -0
- package/lib-commonjs/components/Reference/Reference.js.map +1 -0
- package/lib-commonjs/components/Reference/Reference.types.js +5 -0
- package/lib-commonjs/components/Reference/Reference.types.js.map +1 -0
- package/lib-commonjs/components/Reference/index.js +11 -0
- package/lib-commonjs/components/Reference/index.js.map +1 -0
- package/lib-commonjs/components/Reference/renderReference.js +40 -0
- package/lib-commonjs/components/Reference/renderReference.js.map +1 -0
- package/lib-commonjs/components/Reference/useReference.js +201 -0
- package/lib-commonjs/components/Reference/useReference.js.map +1 -0
- package/lib-commonjs/components/Reference/useReferenceStyles.js +454 -0
- package/lib-commonjs/components/Reference/useReferenceStyles.js.map +1 -0
- package/lib-commonjs/components/ReferenceGroup/ReferenceGroup.js +25 -0
- package/lib-commonjs/components/ReferenceGroup/ReferenceGroup.js.map +1 -0
- package/lib-commonjs/components/ReferenceGroup/ReferenceGroup.types.js +5 -0
- package/lib-commonjs/components/ReferenceGroup/ReferenceGroup.types.js.map +1 -0
- package/lib-commonjs/components/ReferenceGroup/index.js +11 -0
- package/lib-commonjs/components/ReferenceGroup/index.js.map +1 -0
- package/lib-commonjs/components/ReferenceGroup/renderReferenceGroup.js +33 -0
- package/lib-commonjs/components/ReferenceGroup/renderReferenceGroup.js.map +1 -0
- package/lib-commonjs/components/ReferenceGroup/useReferenceGroup.js +103 -0
- package/lib-commonjs/components/ReferenceGroup/useReferenceGroup.js.map +1 -0
- package/lib-commonjs/components/ReferenceGroup/useReferenceGroupContextValues.js +23 -0
- package/lib-commonjs/components/ReferenceGroup/useReferenceGroupContextValues.js.map +1 -0
- package/lib-commonjs/components/ReferenceGroup/useReferenceGroupStyles.js +75 -0
- package/lib-commonjs/components/ReferenceGroup/useReferenceGroupStyles.js.map +1 -0
- package/lib-commonjs/components/ReferenceGroupToggle/ReferenceGroupToggle.js +21 -0
- package/lib-commonjs/components/ReferenceGroupToggle/ReferenceGroupToggle.js.map +1 -0
- package/lib-commonjs/components/ReferenceGroupToggle/ReferenceGroupToggle.types.js +5 -0
- package/lib-commonjs/components/ReferenceGroupToggle/ReferenceGroupToggle.types.js.map +1 -0
- package/lib-commonjs/components/ReferenceGroupToggle/index.js +11 -0
- package/lib-commonjs/components/ReferenceGroupToggle/index.js.map +1 -0
- package/lib-commonjs/components/ReferenceGroupToggle/renderReferenceGroupToggle.js +21 -0
- package/lib-commonjs/components/ReferenceGroupToggle/renderReferenceGroupToggle.js.map +1 -0
- package/lib-commonjs/components/ReferenceGroupToggle/useReferenceGroupToggle.js +39 -0
- package/lib-commonjs/components/ReferenceGroupToggle/useReferenceGroupToggle.js.map +1 -0
- package/lib-commonjs/components/ReferenceGroupToggle/useReferenceGroupToggleStyles.js +39 -0
- package/lib-commonjs/components/ReferenceGroupToggle/useReferenceGroupToggleStyles.js.map +1 -0
- package/lib-commonjs/components/ReferenceList/ReferenceList.js +23 -0
- package/lib-commonjs/components/ReferenceList/ReferenceList.js.map +1 -0
- package/lib-commonjs/components/ReferenceList/ReferenceList.types.js +5 -0
- package/lib-commonjs/components/ReferenceList/ReferenceList.types.js.map +1 -0
- package/lib-commonjs/components/ReferenceList/index.js +11 -0
- package/lib-commonjs/components/ReferenceList/index.js.map +1 -0
- package/lib-commonjs/components/ReferenceList/renderReferenceList.js +16 -0
- package/lib-commonjs/components/ReferenceList/renderReferenceList.js.map +1 -0
- package/lib-commonjs/components/ReferenceList/useReferenceList.js +30 -0
- package/lib-commonjs/components/ReferenceList/useReferenceList.js.map +1 -0
- package/lib-commonjs/components/ReferenceList/useReferenceListStyles.js +36 -0
- package/lib-commonjs/components/ReferenceList/useReferenceListStyles.js.map +1 -0
- package/lib-commonjs/context/ReferenceGroupContext.js +29 -0
- package/lib-commonjs/context/ReferenceGroupContext.js.map +1 -0
- package/lib-commonjs/hooks/index.js +15 -0
- package/lib-commonjs/hooks/index.js.map +1 -0
- package/lib-commonjs/hooks/useReferenceCitation.js +78 -0
- package/lib-commonjs/hooks/useReferenceCitation.js.map +1 -0
- package/lib-commonjs/hooks/useReferenceCitationPreview.js +141 -0
- package/lib-commonjs/hooks/useReferenceCitationPreview.js.map +1 -0
- package/lib-commonjs/hooks/useReferenceGroup.js +49 -0
- package/lib-commonjs/hooks/useReferenceGroup.js.map +1 -0
- package/lib-commonjs/index.js +103 -0
- package/lib-commonjs/index.js.map +1 -0
- package/package.json +43 -0
package/CHANGELOG.json
ADDED
|
@@ -0,0 +1,943 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@fluentui-copilot/react-reference",
|
|
3
|
+
"entries": [
|
|
4
|
+
{
|
|
5
|
+
"date": "Wed, 13 Mar 2024 04:09:45 GMT",
|
|
6
|
+
"tag": "@fluentui-copilot/react-reference_v0.0.0-nightly-20240313-0404-8abc883d.1",
|
|
7
|
+
"version": "0.0.0-nightly-20240313-0404-8abc883d.1",
|
|
8
|
+
"comments": {
|
|
9
|
+
"prerelease": [
|
|
10
|
+
{
|
|
11
|
+
"author": "fluentui-internal@service.microsoft.com",
|
|
12
|
+
"package": "@fluentui-copilot/react-reference",
|
|
13
|
+
"commit": "not available",
|
|
14
|
+
"comment": "Release nightly"
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"author": "beachball",
|
|
18
|
+
"package": "@fluentui-copilot/react-reference",
|
|
19
|
+
"comment": "Bump @fluentui-copilot/react-preview to v0.0.0-nightly-20240313-0404-8abc883d.1",
|
|
20
|
+
"commit": "6953fd36fa1f984fe4271557d1ab88e559056e47"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"author": "beachball",
|
|
24
|
+
"package": "@fluentui-copilot/react-reference",
|
|
25
|
+
"comment": "Bump @fluentui-copilot/react-provider to v0.0.0-nightly-20240313-0404-8abc883d.1",
|
|
26
|
+
"commit": "6953fd36fa1f984fe4271557d1ab88e559056e47"
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"author": "beachball",
|
|
30
|
+
"package": "@fluentui-copilot/react-reference",
|
|
31
|
+
"comment": "Bump @fluentui-copilot/react-sensitivity-label to v0.0.0-nightly-20240313-0404-8abc883d.1",
|
|
32
|
+
"commit": "6953fd36fa1f984fe4271557d1ab88e559056e47"
|
|
33
|
+
}
|
|
34
|
+
]
|
|
35
|
+
}
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"date": "Mon, 11 Mar 2024 23:45:38 GMT",
|
|
39
|
+
"tag": "@fluentai/reference_v0.8.2",
|
|
40
|
+
"version": "0.8.2",
|
|
41
|
+
"comments": {
|
|
42
|
+
"none": [
|
|
43
|
+
{
|
|
44
|
+
"author": "owcampbe@microsoft.com",
|
|
45
|
+
"package": "@fluentai/reference",
|
|
46
|
+
"commit": "a5aa219a519bdd019ce577b19809a9772f3fecb8",
|
|
47
|
+
"comment": "applying package updates"
|
|
48
|
+
}
|
|
49
|
+
]
|
|
50
|
+
}
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"date": "Fri, 08 Mar 2024 00:29:22 GMT",
|
|
54
|
+
"tag": "@fluentai/reference_v0.8.2",
|
|
55
|
+
"version": "0.8.2",
|
|
56
|
+
"comments": {
|
|
57
|
+
"none": [
|
|
58
|
+
{
|
|
59
|
+
"author": "owcampbe@microsoft.com",
|
|
60
|
+
"package": "@fluentai/reference",
|
|
61
|
+
"commit": "877a68c8be7de14d9efe095e578f44733b317914",
|
|
62
|
+
"comment": "Merge branch '0.11' into user/owcampbe/Update0.11"
|
|
63
|
+
}
|
|
64
|
+
]
|
|
65
|
+
}
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
"date": "Fri, 01 Mar 2024 20:07:29 GMT",
|
|
69
|
+
"tag": "@fluentai/reference_v0.8.1",
|
|
70
|
+
"version": "0.8.1",
|
|
71
|
+
"comments": {
|
|
72
|
+
"none": [
|
|
73
|
+
{
|
|
74
|
+
"author": "estebanmu@microsoft.com",
|
|
75
|
+
"package": "@fluentai/reference",
|
|
76
|
+
"commit": "cb1a21b8465c9a9ff86e52d29a398af35f9d0d3d",
|
|
77
|
+
"comment": "chore: Add tests for SSR."
|
|
78
|
+
}
|
|
79
|
+
]
|
|
80
|
+
}
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
"date": "Thu, 15 Feb 2024 20:24:47 GMT",
|
|
84
|
+
"tag": "@fluentai/reference_v0.8.0",
|
|
85
|
+
"version": "0.8.0",
|
|
86
|
+
"comments": {
|
|
87
|
+
"none": [
|
|
88
|
+
{
|
|
89
|
+
"author": "tristan.watanabe@gmail.com",
|
|
90
|
+
"package": "@fluentai/reference",
|
|
91
|
+
"commit": "31ae3ad9098d67abbaf7ac83c402312748bc2ea8",
|
|
92
|
+
"comment": "chore: no longer shipping test related files."
|
|
93
|
+
}
|
|
94
|
+
],
|
|
95
|
+
"minor": [
|
|
96
|
+
{
|
|
97
|
+
"author": "tristan.watanabe@gmail.com",
|
|
98
|
+
"package": "@fluentai/reference",
|
|
99
|
+
"commit": "cd80fe52dd6c3d2b48c96c0ddb26b31cc232b4ca",
|
|
100
|
+
"comment": "chore: initial release to NPM."
|
|
101
|
+
}
|
|
102
|
+
]
|
|
103
|
+
}
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
"date": "Thu, 15 Feb 2024 19:00:00 GMT",
|
|
107
|
+
"tag": "@fluentai/reference_v0.7.3",
|
|
108
|
+
"version": "0.7.3",
|
|
109
|
+
"comments": {
|
|
110
|
+
"none": [
|
|
111
|
+
{
|
|
112
|
+
"author": "tristan.watanabe@gmail.com",
|
|
113
|
+
"package": "@fluentai/reference",
|
|
114
|
+
"commit": "12c785efdd7e75542f017b70fff7a2d5b00b3df9",
|
|
115
|
+
"comment": "chore: disallow minor package bumps."
|
|
116
|
+
}
|
|
117
|
+
]
|
|
118
|
+
}
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
"date": "Fri, 09 Feb 2024 17:34:09 GMT",
|
|
122
|
+
"tag": "@fluentai/reference_v0.7.3",
|
|
123
|
+
"version": "0.7.3",
|
|
124
|
+
"comments": {
|
|
125
|
+
"patch": [
|
|
126
|
+
{
|
|
127
|
+
"author": "mgodbolt@microsoft.com",
|
|
128
|
+
"package": "@fluentai/reference",
|
|
129
|
+
"commit": "69c62912399ad4ac768a1bb9078d6243ae3b7fac",
|
|
130
|
+
"comment": "fix: change citation locked foreground to properly contrast in HC"
|
|
131
|
+
}
|
|
132
|
+
]
|
|
133
|
+
}
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
"date": "Fri, 02 Feb 2024 01:07:14 GMT",
|
|
137
|
+
"tag": "@fluentai/reference_v0.7.2",
|
|
138
|
+
"version": "0.7.2",
|
|
139
|
+
"comments": {
|
|
140
|
+
"patch": [
|
|
141
|
+
{
|
|
142
|
+
"author": "tristan.watanabe@gmail.com",
|
|
143
|
+
"package": "@fluentai/reference",
|
|
144
|
+
"commit": "85f5233474af6636d6e13b2f9e1be92ccb825ebd",
|
|
145
|
+
"comment": "fix: add missing peer dependencies from other Fluent AI package dependency."
|
|
146
|
+
}
|
|
147
|
+
]
|
|
148
|
+
}
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
"date": "Thu, 18 Jan 2024 00:29:43 GMT",
|
|
152
|
+
"tag": "@fluentai/reference_v0.7.1",
|
|
153
|
+
"version": "0.7.1",
|
|
154
|
+
"comments": {
|
|
155
|
+
"patch": [
|
|
156
|
+
{
|
|
157
|
+
"author": "owcampbe@microsoft.com",
|
|
158
|
+
"package": "@fluentai/reference",
|
|
159
|
+
"commit": "8798b96073e20eebcfe24fd034d86ba5da99f7a7",
|
|
160
|
+
"comment": "chore: Export UseReferenceCitationPreview type."
|
|
161
|
+
},
|
|
162
|
+
{
|
|
163
|
+
"author": "tristan.watanabe@gmail.com",
|
|
164
|
+
"package": "@fluentai/reference",
|
|
165
|
+
"commit": "b89ef2f1c0a794bca702f11e63ea8f92ce3688d8",
|
|
166
|
+
"comment": "chore: import from react-components instead of react-utilities."
|
|
167
|
+
},
|
|
168
|
+
{
|
|
169
|
+
"author": "humbertomakotomorimoto@gmail.com",
|
|
170
|
+
"package": "@fluentai/reference",
|
|
171
|
+
"commit": "c363c23224b8fa6ae488daae2616a5699d7558d5",
|
|
172
|
+
"comment": "fix: Details button on References no longer expands on focus."
|
|
173
|
+
}
|
|
174
|
+
]
|
|
175
|
+
}
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
"date": "Thu, 11 Jan 2024 22:33:55 GMT",
|
|
179
|
+
"tag": "@fluentai/reference_v0.7.0",
|
|
180
|
+
"version": "0.7.0",
|
|
181
|
+
"comments": {
|
|
182
|
+
"minor": [
|
|
183
|
+
{
|
|
184
|
+
"author": "humbertomakotomorimoto@gmail.com",
|
|
185
|
+
"package": "@fluentai/reference",
|
|
186
|
+
"commit": "d29e30d81c78ece83f34a8fc4a44e675fb6b8d23",
|
|
187
|
+
"comment": "chore: Deprecating old way of handling Citation popovers."
|
|
188
|
+
}
|
|
189
|
+
]
|
|
190
|
+
}
|
|
191
|
+
},
|
|
192
|
+
{
|
|
193
|
+
"date": "Tue, 09 Jan 2024 21:07:24 GMT",
|
|
194
|
+
"tag": "@fluentai/reference_v0.6.2",
|
|
195
|
+
"version": "0.6.2",
|
|
196
|
+
"comments": {
|
|
197
|
+
"patch": [
|
|
198
|
+
{
|
|
199
|
+
"author": "mgodbolt@microsoft.com",
|
|
200
|
+
"package": "@fluentai/reference",
|
|
201
|
+
"commit": "313b5b1ea7d170996c5ce37431caf7beca61593e",
|
|
202
|
+
"comment": "chore: export all types from reference package."
|
|
203
|
+
}
|
|
204
|
+
]
|
|
205
|
+
}
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
"date": "Tue, 12 Dec 2023 16:35:16 GMT",
|
|
209
|
+
"tag": "@fluentai/reference_v0.6.0",
|
|
210
|
+
"version": "0.6.0",
|
|
211
|
+
"comments": {
|
|
212
|
+
"none": [
|
|
213
|
+
{
|
|
214
|
+
"author": "tristan.watanabe@gmail.com",
|
|
215
|
+
"package": "@fluentai/reference",
|
|
216
|
+
"commit": "d678a67851c48124410bcf3776fb08dfe2ea3102",
|
|
217
|
+
"comment": "chore: upgrade to use yarn 3."
|
|
218
|
+
},
|
|
219
|
+
{
|
|
220
|
+
"author": "tristan.watanabe@gmail.com",
|
|
221
|
+
"package": "@fluentai/reference",
|
|
222
|
+
"commit": "d1a45acf99b543999e9afb06d68f4f884ab05e5a",
|
|
223
|
+
"comment": "chore: docsite stories should not be snapshotted by chromatic."
|
|
224
|
+
}
|
|
225
|
+
],
|
|
226
|
+
"patch": [
|
|
227
|
+
{
|
|
228
|
+
"author": "owcampbe@microsoft.com",
|
|
229
|
+
"package": "@fluentai/reference",
|
|
230
|
+
"commit": "8f0dd444cb86476ca311b057c15a0be4079bf135",
|
|
231
|
+
"comment": "feat: Add useReferenceGroup hook and ReferenceGroupToggle component."
|
|
232
|
+
},
|
|
233
|
+
{
|
|
234
|
+
"author": "mgodbolt@microsoft.com",
|
|
235
|
+
"package": "@fluentai/reference",
|
|
236
|
+
"commit": "43d002742e460ea048a7fcc67a4632b89e0316e9",
|
|
237
|
+
"comment": "fix: updated color, background and stroke to match spec and work properly in grey theme"
|
|
238
|
+
},
|
|
239
|
+
{
|
|
240
|
+
"author": "owcampbe@microsoft.com",
|
|
241
|
+
"package": "@fluentai/reference",
|
|
242
|
+
"commit": "99c91f933007aa7bccef62226dc58ca03e33ac9b",
|
|
243
|
+
"comment": "feat: Add sensitivity slot and deprecate sensitivityLabel slot."
|
|
244
|
+
},
|
|
245
|
+
{
|
|
246
|
+
"author": "mgodbolt@microsoft.com",
|
|
247
|
+
"package": "@fluentai/reference",
|
|
248
|
+
"commit": "6e264c6d2143889b9cefe4722e765e413d32445e",
|
|
249
|
+
"comment": "add block layout to citation and use it in reference"
|
|
250
|
+
},
|
|
251
|
+
{
|
|
252
|
+
"author": "Humberto.Morimoto@microsoft.com",
|
|
253
|
+
"package": "@fluentai/reference",
|
|
254
|
+
"commit": "2002c3a2d9be30cba86db62208858b2afb907534",
|
|
255
|
+
"comment": "fix: Citation has locked styles when Preview has been locked using the useReferenceCitationPreview hook."
|
|
256
|
+
},
|
|
257
|
+
{
|
|
258
|
+
"author": "owcampbe@microsoft.com",
|
|
259
|
+
"package": "@fluentai/reference",
|
|
260
|
+
"commit": "390360236ec373908f9a732bfde64a0f9fa326d6",
|
|
261
|
+
"comment": "fix: change ReferenceList and ReferenceGroup spacing to match spec."
|
|
262
|
+
}
|
|
263
|
+
],
|
|
264
|
+
"minor": [
|
|
265
|
+
{
|
|
266
|
+
"author": "owcampbe@microsoft.com",
|
|
267
|
+
"package": "@fluentai/reference",
|
|
268
|
+
"commit": "dfea56546078e2fb2b5e7dda5fb6720eecc0ee14",
|
|
269
|
+
"comment": "feat: Convert `useReferenceGroup` to return props objects instead of components."
|
|
270
|
+
}
|
|
271
|
+
]
|
|
272
|
+
}
|
|
273
|
+
},
|
|
274
|
+
{
|
|
275
|
+
"date": "Wed, 15 Nov 2023 00:55:22 GMT",
|
|
276
|
+
"tag": "@fluentai/reference_v0.5.0",
|
|
277
|
+
"version": "0.5.0",
|
|
278
|
+
"comments": {
|
|
279
|
+
"patch": [
|
|
280
|
+
{
|
|
281
|
+
"author": "Humberto.Morimoto@microsoft.com",
|
|
282
|
+
"package": "@fluentai/reference",
|
|
283
|
+
"commit": "95db1820516bc2bfde3b2970fc01bf8e7f01f28b",
|
|
284
|
+
"comment": "feat: Implementing useReferenceCitationPreview hook that builds together a Reference/Citation/Preview experience from a set of passed in props."
|
|
285
|
+
},
|
|
286
|
+
{
|
|
287
|
+
"author": "sarah.higley@microsoft.com",
|
|
288
|
+
"package": "@fluentai/reference",
|
|
289
|
+
"commit": "8f7af69b12cb396c8984275dbdfe1889ca363b6a",
|
|
290
|
+
"comment": "fix: popover nested in citation can escape without closing citation"
|
|
291
|
+
},
|
|
292
|
+
{
|
|
293
|
+
"author": "Humberto.Morimoto@microsoft.com",
|
|
294
|
+
"package": "@fluentai/reference",
|
|
295
|
+
"commit": "8adccbdcf977b186e21fc2ee826b28dd2485bf09",
|
|
296
|
+
"comment": "chore: Adding tests for useReferenceCitationPreview hook."
|
|
297
|
+
},
|
|
298
|
+
{
|
|
299
|
+
"author": "owcampbe@microsoft.com",
|
|
300
|
+
"package": "@fluentai/reference",
|
|
301
|
+
"commit": "0d8d79f7301d382ef0b380ea3f2ad758674e807b",
|
|
302
|
+
"comment": "chore: Migrate to new slots API."
|
|
303
|
+
},
|
|
304
|
+
{
|
|
305
|
+
"author": "tristan.watanabe@gmail.com",
|
|
306
|
+
"package": "@fluentai/reference",
|
|
307
|
+
"commit": "0f8bee2a01c127a911afd5974efe899d70bddcf6",
|
|
308
|
+
"comment": "chore: bump peer deep range to latest @fluentui/react-components 9.37.3."
|
|
309
|
+
},
|
|
310
|
+
{
|
|
311
|
+
"author": "Humberto.Morimoto@microsoft.com",
|
|
312
|
+
"package": "@fluentai/reference",
|
|
313
|
+
"commit": "ea9078be8acf2317b0d198435e95608fda5945c4",
|
|
314
|
+
"comment": "chore: Renaming key of makeStyles object to more correctly refer to when it is applied.\""
|
|
315
|
+
},
|
|
316
|
+
{
|
|
317
|
+
"author": "Humberto.Morimoto@microsoft.com",
|
|
318
|
+
"package": "@fluentai/reference",
|
|
319
|
+
"commit": "e57b3f6e5b20978ef0b49c9623611b388b9c5959",
|
|
320
|
+
"comment": "fix: Adding close button behavior to Citation within Preview in useReferenceCitationPreview hook."
|
|
321
|
+
}
|
|
322
|
+
],
|
|
323
|
+
"none": [
|
|
324
|
+
{
|
|
325
|
+
"author": "tristan.watanabe@gmail.com",
|
|
326
|
+
"package": "@fluentai/reference",
|
|
327
|
+
"commit": "2669f4e858c959ce1b30674956ec097cfb20b76a",
|
|
328
|
+
"comment": "fix: update story used for playwright e2e testing."
|
|
329
|
+
},
|
|
330
|
+
{
|
|
331
|
+
"author": "humbertomakotomorimoto@gmail.com",
|
|
332
|
+
"package": "@fluentai/reference",
|
|
333
|
+
"commit": "1c9815cdebf4846b7edc4776fb6c711bf02b26f5",
|
|
334
|
+
"comment": "docs: Cleaning up Citation/Reference documentation."
|
|
335
|
+
},
|
|
336
|
+
{
|
|
337
|
+
"author": "tristan.watanabe@gmail.com",
|
|
338
|
+
"package": "@fluentai/reference",
|
|
339
|
+
"commit": "3033548b5f8e3c2d95fe227cbf1eb825e4815e58",
|
|
340
|
+
"comment": "chore: sync to latest version after react-copilot 0.7.3 publish."
|
|
341
|
+
},
|
|
342
|
+
{
|
|
343
|
+
"author": "tristan.watanabe@gmail.com",
|
|
344
|
+
"package": "@fluentai/reference",
|
|
345
|
+
"commit": "ab7bd7979a6cc8d756dde7198bd099e0ed59ad4c",
|
|
346
|
+
"comment": "chore: add Citation E2E tests."
|
|
347
|
+
}
|
|
348
|
+
],
|
|
349
|
+
"minor": [
|
|
350
|
+
{
|
|
351
|
+
"author": "tristan.watanabe@gmail.com",
|
|
352
|
+
"package": "@fluentai/reference",
|
|
353
|
+
"commit": "de4d0645ade56badaab3b5e2b72937e02aecf831",
|
|
354
|
+
"comment": "chore: move @fluentui dependencies to peer dependencies."
|
|
355
|
+
},
|
|
356
|
+
{
|
|
357
|
+
"author": "beachball",
|
|
358
|
+
"package": "@fluentai/reference",
|
|
359
|
+
"comment": "Bump @fluentai/provider to v0.6.0",
|
|
360
|
+
"commit": "1c9815cdebf4846b7edc4776fb6c711bf02b26f5"
|
|
361
|
+
},
|
|
362
|
+
{
|
|
363
|
+
"author": "beachball",
|
|
364
|
+
"package": "@fluentai/reference",
|
|
365
|
+
"comment": "Bump @fluentai/react-preview to v0.1.0",
|
|
366
|
+
"commit": "1c9815cdebf4846b7edc4776fb6c711bf02b26f5"
|
|
367
|
+
}
|
|
368
|
+
]
|
|
369
|
+
}
|
|
370
|
+
},
|
|
371
|
+
{
|
|
372
|
+
"date": "Wed, 18 Oct 2023 00:23:50 GMT",
|
|
373
|
+
"tag": "@fluentai/reference_v0.4.2",
|
|
374
|
+
"version": "0.4.2",
|
|
375
|
+
"comments": {
|
|
376
|
+
"patch": [
|
|
377
|
+
{
|
|
378
|
+
"author": "sarah.higley@microsoft.com",
|
|
379
|
+
"package": "@fluentai/reference",
|
|
380
|
+
"commit": "10a70d5d0224abe3b9ba17b96accaadefb6f0457",
|
|
381
|
+
"comment": "fix: collapsed reference content was focusable and screen reader-accessible"
|
|
382
|
+
},
|
|
383
|
+
{
|
|
384
|
+
"author": "Humberto.Morimoto@microsoft.com",
|
|
385
|
+
"package": "@fluentai/reference",
|
|
386
|
+
"commit": "43146e34dcf1ec4aa4a43263f8b11bf5f3325086",
|
|
387
|
+
"comment": "fix: Adding overflow boundary padding to Citation Popover."
|
|
388
|
+
}
|
|
389
|
+
]
|
|
390
|
+
}
|
|
391
|
+
},
|
|
392
|
+
{
|
|
393
|
+
"date": "Mon, 25 Sep 2023 20:31:08 GMT",
|
|
394
|
+
"tag": "@fluentai/reference_v0.4.1",
|
|
395
|
+
"version": "0.4.1",
|
|
396
|
+
"comments": {
|
|
397
|
+
"none": [
|
|
398
|
+
{
|
|
399
|
+
"author": "tristan.watanabe@gmail.com",
|
|
400
|
+
"package": "@fluentai/reference",
|
|
401
|
+
"commit": "5da9480d5a59872ac5148097a287e04d842d6dd6",
|
|
402
|
+
"comment": "chore: update swc transpilation to use swc-transpile script instead of cli."
|
|
403
|
+
}
|
|
404
|
+
],
|
|
405
|
+
"patch": [
|
|
406
|
+
{
|
|
407
|
+
"author": "tristan.watanabe@gmail.com",
|
|
408
|
+
"package": "@fluentai/reference",
|
|
409
|
+
"commit": "3af73688a366aae72ea810e441c7096635e2efdd",
|
|
410
|
+
"comment": "fix: bump swc core to mitigate transpilation memory leaks."
|
|
411
|
+
},
|
|
412
|
+
{
|
|
413
|
+
"author": "beachball",
|
|
414
|
+
"package": "@fluentai/reference",
|
|
415
|
+
"comment": "Bump @fluentai/provider to v0.5.1",
|
|
416
|
+
"commit": "f633e55414cd3ed596793f7e8916d87a242d8c0d"
|
|
417
|
+
}
|
|
418
|
+
]
|
|
419
|
+
}
|
|
420
|
+
},
|
|
421
|
+
{
|
|
422
|
+
"date": "Fri, 22 Sep 2023 02:11:56 GMT",
|
|
423
|
+
"tag": "@fluentai/reference_v0.4.0",
|
|
424
|
+
"version": "0.4.0",
|
|
425
|
+
"comments": {
|
|
426
|
+
"patch": [
|
|
427
|
+
{
|
|
428
|
+
"author": "tristan.watanabe@gmail.com",
|
|
429
|
+
"package": "@fluentai/reference",
|
|
430
|
+
"commit": "a206564fcbe9ebe96455a8f5e80fb8e508bd8cd8",
|
|
431
|
+
"comment": "chore: bump fluentui v9 dependencies to latest."
|
|
432
|
+
},
|
|
433
|
+
{
|
|
434
|
+
"author": "sarah.higley@microsoft.com",
|
|
435
|
+
"package": "@fluentai/reference",
|
|
436
|
+
"commit": "89434c0757adf450a7535f2a75a090bcc629855e",
|
|
437
|
+
"comment": "fix: Reference popover citation number is a close button"
|
|
438
|
+
},
|
|
439
|
+
{
|
|
440
|
+
"author": "makotom@microsoft.com",
|
|
441
|
+
"package": "@fluentai/reference",
|
|
442
|
+
"commit": "130765bd7d86660a5a22b7c79d1aaee5ca37567b",
|
|
443
|
+
"comment": "fix: Citation popover positioning opens by default from below."
|
|
444
|
+
}
|
|
445
|
+
],
|
|
446
|
+
"minor": [
|
|
447
|
+
{
|
|
448
|
+
"author": "beachball",
|
|
449
|
+
"package": "@fluentai/reference",
|
|
450
|
+
"comment": "Bump @fluentai/provider to v0.5.0",
|
|
451
|
+
"commit": "f6ef7c9c7854fa3f877cb0d4b9e8e8818b3b50a2"
|
|
452
|
+
}
|
|
453
|
+
]
|
|
454
|
+
}
|
|
455
|
+
},
|
|
456
|
+
{
|
|
457
|
+
"date": "Fri, 08 Sep 2023 18:32:55 GMT",
|
|
458
|
+
"tag": "@fluentai/reference_v0.3.4",
|
|
459
|
+
"version": "0.3.4",
|
|
460
|
+
"comments": {
|
|
461
|
+
"patch": [
|
|
462
|
+
{
|
|
463
|
+
"author": "mgodbolt@microsoft.com",
|
|
464
|
+
"package": "@fluentai/reference",
|
|
465
|
+
"commit": "048fedc4af7c4b5ebefe7528c188aacc833b000b",
|
|
466
|
+
"comment": "chore: fix citation styles for hover, active, locked open, updated examples"
|
|
467
|
+
},
|
|
468
|
+
{
|
|
469
|
+
"author": "makotom@microsoft.com",
|
|
470
|
+
"package": "@fluentai/reference",
|
|
471
|
+
"commit": "afa013cf0ceb8f95ff7a1837217b2e40b9ce85a0",
|
|
472
|
+
"comment": "fix: Citation popover itself is focused when opened via click or keyboard."
|
|
473
|
+
},
|
|
474
|
+
{
|
|
475
|
+
"author": "sarah.higley@microsoft.com",
|
|
476
|
+
"package": "@fluentai/reference",
|
|
477
|
+
"commit": "2d941f0083ad12423977482c1a7d6485494fee6c",
|
|
478
|
+
"comment": "fix: Citation popover should have a named dialog and no nested group"
|
|
479
|
+
},
|
|
480
|
+
{
|
|
481
|
+
"author": "tristan.watanabe@gmail.com",
|
|
482
|
+
"package": "@fluentai/reference",
|
|
483
|
+
"commit": "3810244b936b9d468d297a3fc170fea960312a4a",
|
|
484
|
+
"comment": "test: add playwright e2e testing setup and WCAG testing."
|
|
485
|
+
}
|
|
486
|
+
]
|
|
487
|
+
}
|
|
488
|
+
},
|
|
489
|
+
{
|
|
490
|
+
"date": "Thu, 24 Aug 2023 00:37:05 GMT",
|
|
491
|
+
"tag": "@fluentai/reference_v0.3.3",
|
|
492
|
+
"version": "0.3.3",
|
|
493
|
+
"comments": {
|
|
494
|
+
"patch": [
|
|
495
|
+
{
|
|
496
|
+
"author": "Humberto.Morimoto@microsoft.com",
|
|
497
|
+
"package": "@fluentai/reference",
|
|
498
|
+
"commit": "864085c3284f3a509c3478b0a104c9fadd23d0c3",
|
|
499
|
+
"comment": "fix: Improving handling of citation popover internal state."
|
|
500
|
+
},
|
|
501
|
+
{
|
|
502
|
+
"author": "Humberto.Morimoto@microsoft.com",
|
|
503
|
+
"package": "@fluentai/reference",
|
|
504
|
+
"commit": "579ceb9aaf1654a6f4fa8e156eb9a86ebbf83c50",
|
|
505
|
+
"comment": "fix: Make Reference content break between lines by word instead of by character."
|
|
506
|
+
}
|
|
507
|
+
]
|
|
508
|
+
}
|
|
509
|
+
},
|
|
510
|
+
{
|
|
511
|
+
"date": "Tue, 22 Aug 2023 23:54:16 GMT",
|
|
512
|
+
"tag": "@fluentai/reference_v0.3.2",
|
|
513
|
+
"version": "0.3.2",
|
|
514
|
+
"comments": {
|
|
515
|
+
"patch": [
|
|
516
|
+
{
|
|
517
|
+
"author": "tristan.watanabe@gmail.com",
|
|
518
|
+
"package": "@fluentai/reference",
|
|
519
|
+
"commit": "85042a8790abc66f6cd011356ac3756d34748973",
|
|
520
|
+
"comment": "chore: bump fluentui dependencies."
|
|
521
|
+
},
|
|
522
|
+
{
|
|
523
|
+
"author": "Humberto.Morimoto@microsoft.com",
|
|
524
|
+
"package": "@fluentai/reference",
|
|
525
|
+
"commit": "b67343603566c0d4c6d1fc9b6f79be24045be7fb",
|
|
526
|
+
"comment": "fix: Make media slot be descriptor of label/title."
|
|
527
|
+
},
|
|
528
|
+
{
|
|
529
|
+
"author": "eysjiang@gmail.com",
|
|
530
|
+
"package": "@fluentai/reference",
|
|
531
|
+
"commit": "053b6ace2e6f9433ad062d44865b2d5488760f6b",
|
|
532
|
+
"comment": "add useCustomStyleHook to all components"
|
|
533
|
+
},
|
|
534
|
+
{
|
|
535
|
+
"author": "Humberto.Morimoto@microsoft.com",
|
|
536
|
+
"package": "@fluentai/reference",
|
|
537
|
+
"commit": "d24e43b7f82b52f9728a6c977222a5f1bc23bb0e",
|
|
538
|
+
"comment": "feat: Adding sensitivityLabel slot to Reference component."
|
|
539
|
+
},
|
|
540
|
+
{
|
|
541
|
+
"author": "Humberto.Morimoto@microsoft.com",
|
|
542
|
+
"package": "@fluentai/reference",
|
|
543
|
+
"commit": "6280767f95ab21dae6b6e25febb786876d15deed",
|
|
544
|
+
"comment": "fix: Improve citation/reference experience."
|
|
545
|
+
},
|
|
546
|
+
{
|
|
547
|
+
"author": "beachball",
|
|
548
|
+
"package": "@fluentai/reference",
|
|
549
|
+
"comment": "Bump @fluentai/provider to v0.4.0",
|
|
550
|
+
"commit": "d24e43b7f82b52f9728a6c977222a5f1bc23bb0e"
|
|
551
|
+
}
|
|
552
|
+
],
|
|
553
|
+
"none": [
|
|
554
|
+
{
|
|
555
|
+
"author": "mgodbolt@microsoft.com",
|
|
556
|
+
"package": "@fluentai/reference",
|
|
557
|
+
"commit": "f5bb0b1b247fcd53b92d73bc57ded8551c8163d3",
|
|
558
|
+
"comment": "remove the unstable suffix from the new custom styles api"
|
|
559
|
+
}
|
|
560
|
+
]
|
|
561
|
+
}
|
|
562
|
+
},
|
|
563
|
+
{
|
|
564
|
+
"date": "Thu, 10 Aug 2023 17:07:07 GMT",
|
|
565
|
+
"tag": "@fluentai/reference_v0.3.1",
|
|
566
|
+
"version": "0.3.1",
|
|
567
|
+
"comments": {
|
|
568
|
+
"none": [
|
|
569
|
+
{
|
|
570
|
+
"author": "tristan.watanabe@gmail.com",
|
|
571
|
+
"package": "@fluentai/reference",
|
|
572
|
+
"commit": "1499ae1d03b0bf17d7afc0e063601cb4113ba86d",
|
|
573
|
+
"comment": "chore: replace @nrwl references with @nx"
|
|
574
|
+
},
|
|
575
|
+
{
|
|
576
|
+
"author": "Humberto.Morimoto@microsoft.com",
|
|
577
|
+
"package": "@fluentai/reference",
|
|
578
|
+
"commit": "af71bfcf826da88b2e54ce33392a76e9c0f2289a",
|
|
579
|
+
"comment": "fix: Fixing uppercase inconsistency in method name."
|
|
580
|
+
},
|
|
581
|
+
{
|
|
582
|
+
"author": "eysjiang@gmail.com",
|
|
583
|
+
"package": "@fluentai/reference",
|
|
584
|
+
"commit": "efd4619a9480e31a6406210fee8c6e74d66f8987",
|
|
585
|
+
"comment": "bump react-components version"
|
|
586
|
+
},
|
|
587
|
+
{
|
|
588
|
+
"author": "tristan.watanabe@gmail.com",
|
|
589
|
+
"package": "@fluentai/reference",
|
|
590
|
+
"commit": "b2993df8489fa316982f409161b9ca2e408b44a4",
|
|
591
|
+
"comment": "chore: add bundle size testing."
|
|
592
|
+
}
|
|
593
|
+
],
|
|
594
|
+
"patch": [
|
|
595
|
+
{
|
|
596
|
+
"author": "sarah.higley@microsoft.com",
|
|
597
|
+
"package": "@fluentai/reference",
|
|
598
|
+
"commit": "1e2fc89757982dad7e215177a791c82bd2d21b12",
|
|
599
|
+
"comment": "fix: update ReferenceGroup to not expose collapsed accordion contents"
|
|
600
|
+
}
|
|
601
|
+
]
|
|
602
|
+
}
|
|
603
|
+
},
|
|
604
|
+
{
|
|
605
|
+
"date": "Mon, 24 Jul 2023 22:38:51 GMT",
|
|
606
|
+
"tag": "@fluentai/reference_v0.3.0",
|
|
607
|
+
"version": "0.3.0",
|
|
608
|
+
"comments": {
|
|
609
|
+
"none": [
|
|
610
|
+
{
|
|
611
|
+
"author": "mgodbolt@microsoft.com",
|
|
612
|
+
"package": "@fluentai/reference",
|
|
613
|
+
"commit": "add2ea5b6e4c81f53f259ff4761e9672698812d1",
|
|
614
|
+
"comment": "remove warnings from controls"
|
|
615
|
+
},
|
|
616
|
+
{
|
|
617
|
+
"author": "tristan.watanabe@gmail.com",
|
|
618
|
+
"package": "@fluentai/reference",
|
|
619
|
+
"commit": "64dd83687bcb7de0570a0a18f4b79c94f0f56680",
|
|
620
|
+
"comment": "chore: remove unneeded .babelrc.json file."
|
|
621
|
+
},
|
|
622
|
+
{
|
|
623
|
+
"author": "eysjiang@gmail.com",
|
|
624
|
+
"package": "@fluentai/reference",
|
|
625
|
+
"commit": "90f482102fb4439cc5f8dfb1c58209f5a712393f",
|
|
626
|
+
"comment": "add version"
|
|
627
|
+
}
|
|
628
|
+
],
|
|
629
|
+
"patch": [
|
|
630
|
+
{
|
|
631
|
+
"author": "Humberto.Morimoto@microsoft.com",
|
|
632
|
+
"package": "@fluentai/reference",
|
|
633
|
+
"commit": "2970f29afae33ffba45eac61d4309732cd50775b",
|
|
634
|
+
"comment": "fix: Adding word-break styles to Reference content."
|
|
635
|
+
},
|
|
636
|
+
{
|
|
637
|
+
"author": "mgodbolt@microsoft.com",
|
|
638
|
+
"package": "@fluentai/reference",
|
|
639
|
+
"commit": "987a7b548fbb3b07bd37faccbe3547624cb70d72",
|
|
640
|
+
"comment": "chore: bump react-components to latest"
|
|
641
|
+
},
|
|
642
|
+
{
|
|
643
|
+
"author": "Humberto.Morimoto@microsoft.com",
|
|
644
|
+
"package": "@fluentai/reference",
|
|
645
|
+
"commit": "ef5e76125ceacae158676a2b3e345cacbb4db69d",
|
|
646
|
+
"comment": "fix: Updating citation/reference interaction model to adhere to latest design specification."
|
|
647
|
+
},
|
|
648
|
+
{
|
|
649
|
+
"author": "Humberto.Morimoto@microsoft.com",
|
|
650
|
+
"package": "@fluentai/reference",
|
|
651
|
+
"commit": "045c9887a4f0b786cfc2fe1366e5c34a3007b8b8",
|
|
652
|
+
"comment": "fix: Stop hover behavior from overriding popover's open/close state when it has been opened via click or focus+enter."
|
|
653
|
+
}
|
|
654
|
+
],
|
|
655
|
+
"minor": [
|
|
656
|
+
{
|
|
657
|
+
"author": "beachball",
|
|
658
|
+
"package": "@fluentai/reference",
|
|
659
|
+
"comment": "Bump @fluentai/provider to v0.3.0",
|
|
660
|
+
"commit": "045c9887a4f0b786cfc2fe1366e5c34a3007b8b8"
|
|
661
|
+
}
|
|
662
|
+
]
|
|
663
|
+
}
|
|
664
|
+
},
|
|
665
|
+
{
|
|
666
|
+
"date": "Wed, 28 Jun 2023 21:11:32 GMT",
|
|
667
|
+
"tag": "@fluentai/reference_v0.2.3",
|
|
668
|
+
"version": "0.2.3",
|
|
669
|
+
"comments": {
|
|
670
|
+
"none": [
|
|
671
|
+
{
|
|
672
|
+
"author": "Humberto.Morimoto@microsoft.com",
|
|
673
|
+
"package": "@fluentai/reference",
|
|
674
|
+
"commit": "0a8452354a484d3cf70b3596ee5364de555838de",
|
|
675
|
+
"comment": "chore: Moving reference package into react-copilot folder."
|
|
676
|
+
}
|
|
677
|
+
],
|
|
678
|
+
"patch": [
|
|
679
|
+
{
|
|
680
|
+
"author": "tristan.watanabe@gmail.com",
|
|
681
|
+
"package": "@fluentai/reference",
|
|
682
|
+
"commit": "1a9fea7f28553690ebec7a02795ab66e9a8d9463",
|
|
683
|
+
"comment": "fix: only use griffel preset during babel transpilation in build step."
|
|
684
|
+
},
|
|
685
|
+
{
|
|
686
|
+
"author": "beachball",
|
|
687
|
+
"package": "@fluentai/reference",
|
|
688
|
+
"comment": "Bump @fluentai/provider to v0.2.2",
|
|
689
|
+
"commit": "1a9fea7f28553690ebec7a02795ab66e9a8d9463"
|
|
690
|
+
}
|
|
691
|
+
]
|
|
692
|
+
}
|
|
693
|
+
},
|
|
694
|
+
{
|
|
695
|
+
"date": "Mon, 26 Jun 2023 18:30:47 GMT",
|
|
696
|
+
"tag": "@fluentai/reference_v0.2.2",
|
|
697
|
+
"version": "0.2.2",
|
|
698
|
+
"comments": {
|
|
699
|
+
"patch": [
|
|
700
|
+
{
|
|
701
|
+
"author": "seanmonahan@microsoft.com",
|
|
702
|
+
"package": "@fluentai/reference",
|
|
703
|
+
"commit": "762d30003bea432a216c8410fab06d864d645194",
|
|
704
|
+
"comment": "chore: enable 'ref' conformance test for ReferenceGroup"
|
|
705
|
+
},
|
|
706
|
+
{
|
|
707
|
+
"author": "seanmonahan@microsoft.com",
|
|
708
|
+
"package": "@fluentai/reference",
|
|
709
|
+
"commit": "baca213af22ce4f5fcfee97384952be8fe1ea2ac",
|
|
710
|
+
"comment": "fix: update Reference styles to better handle long titles"
|
|
711
|
+
},
|
|
712
|
+
{
|
|
713
|
+
"author": "seanmonahan@microsoft.com",
|
|
714
|
+
"package": "@fluentai/reference",
|
|
715
|
+
"commit": "b6b4d7dbc2b4ed8f939e82e75ae7980711c35b3c",
|
|
716
|
+
"comment": "chore: update babel configuration to support Griffel build time optimizations."
|
|
717
|
+
},
|
|
718
|
+
{
|
|
719
|
+
"author": "tristan.watanabe@gmail.com",
|
|
720
|
+
"package": "@fluentai/reference",
|
|
721
|
+
"commit": "aff477510087d77c1949c8cd94165cfe271567db",
|
|
722
|
+
"comment": "chore: add LICENSE file to package."
|
|
723
|
+
},
|
|
724
|
+
{
|
|
725
|
+
"author": "beachball",
|
|
726
|
+
"package": "@fluentai/reference",
|
|
727
|
+
"comment": "Bump @fluentai/provider to v0.2.1",
|
|
728
|
+
"commit": "b6b4d7dbc2b4ed8f939e82e75ae7980711c35b3c"
|
|
729
|
+
}
|
|
730
|
+
],
|
|
731
|
+
"none": [
|
|
732
|
+
{
|
|
733
|
+
"author": "mgodbolt@microsoft.com",
|
|
734
|
+
"package": "@fluentai/reference",
|
|
735
|
+
"commit": "b0c39bae6727c751f6289a3867a5b2db0c86097b",
|
|
736
|
+
"comment": "updated readme"
|
|
737
|
+
},
|
|
738
|
+
{
|
|
739
|
+
"author": "tristan.watanabe@gmail.com",
|
|
740
|
+
"package": "@fluentai/reference",
|
|
741
|
+
"commit": "be6745148a63d8e2b8d37c8a731273dc8a516379",
|
|
742
|
+
"comment": "docs: replace JSDoc comment with regular comment to prevent SB from rendering TODO items to Docs page."
|
|
743
|
+
},
|
|
744
|
+
{
|
|
745
|
+
"author": "tristan.watanabe@gmail.com",
|
|
746
|
+
"package": "@fluentai/reference",
|
|
747
|
+
"commit": "d7b549b8b2745c1287a45ca8ad9839c81aaecda5",
|
|
748
|
+
"comment": "chore: update .babelrc.json file to import from root."
|
|
749
|
+
}
|
|
750
|
+
]
|
|
751
|
+
}
|
|
752
|
+
},
|
|
753
|
+
{
|
|
754
|
+
"date": "Mon, 12 Jun 2023 20:28:32 GMT",
|
|
755
|
+
"tag": "@fluentai/reference_v0.2.1",
|
|
756
|
+
"version": "0.2.1",
|
|
757
|
+
"comments": {
|
|
758
|
+
"patch": [
|
|
759
|
+
{
|
|
760
|
+
"author": "tristan.watanabe@gmail.com",
|
|
761
|
+
"package": "@fluentai/reference",
|
|
762
|
+
"commit": "5458218afef8ec1d2e4bf9be68b6c2ccdff697ae",
|
|
763
|
+
"comment": "chore: bump @swc/helpers dependency."
|
|
764
|
+
},
|
|
765
|
+
{
|
|
766
|
+
"author": "mgodbolt@microsoft.com",
|
|
767
|
+
"package": "@fluentai/reference",
|
|
768
|
+
"commit": "d817b7ca19559b9564f7db2c27fcb6063bea8e09",
|
|
769
|
+
"comment": "add package dependencies"
|
|
770
|
+
},
|
|
771
|
+
{
|
|
772
|
+
"author": "seanmonahan@microsoft.com",
|
|
773
|
+
"package": "@fluentai/reference",
|
|
774
|
+
"commit": "ddd6839688ef857967e03b179dd0790f5c74f3c5",
|
|
775
|
+
"comment": "fix: accessibility fixes for @fluentai/reference"
|
|
776
|
+
},
|
|
777
|
+
{
|
|
778
|
+
"author": "seanmonahan@microsoft.com",
|
|
779
|
+
"package": "@fluentai/reference",
|
|
780
|
+
"commit": "29ed7fc7f4d1efe7c0ed2d6eaaed62b227fb1c7b",
|
|
781
|
+
"comment": "fix: Visual bug fixes for Reference."
|
|
782
|
+
},
|
|
783
|
+
{
|
|
784
|
+
"author": "matejera@microsoft.com",
|
|
785
|
+
"package": "@fluentai/reference",
|
|
786
|
+
"commit": "f2b692d48507393365ba8651b9ebc3a8755d3764",
|
|
787
|
+
"comment": "Updates mode to listen to context"
|
|
788
|
+
},
|
|
789
|
+
{
|
|
790
|
+
"author": "tristan.watanabe@gmail.com",
|
|
791
|
+
"package": "@fluentai/reference",
|
|
792
|
+
"commit": "1ab8bf651fdf863478c75c070166260421bf6a80",
|
|
793
|
+
"comment": "chore: bump @fluentui/react-components dependency to latest."
|
|
794
|
+
},
|
|
795
|
+
{
|
|
796
|
+
"author": "tristan.watanabe@gmail.com",
|
|
797
|
+
"package": "@fluentai/reference",
|
|
798
|
+
"commit": "4d94dc0240f46846b0308f33a4fabcc0bbd8e15d",
|
|
799
|
+
"comment": "fix: properly export static classnames and use fai- classname prefix."
|
|
800
|
+
},
|
|
801
|
+
{
|
|
802
|
+
"author": "seanmonahan@microsoft.com",
|
|
803
|
+
"package": "@fluentai/reference",
|
|
804
|
+
"commit": "b13cdd28c5c4e9ef6cfcf2c466aa6d8694bba7c2",
|
|
805
|
+
"comment": "fix: update Citation colors at rest"
|
|
806
|
+
},
|
|
807
|
+
{
|
|
808
|
+
"author": "tristan.watanabe@gmail.com",
|
|
809
|
+
"package": "@fluentai/reference",
|
|
810
|
+
"commit": "0e49d9fa5b780cc1211e4b917d14a60f87443493",
|
|
811
|
+
"comment": "fix: add missing fluentui dependencies to package.json."
|
|
812
|
+
},
|
|
813
|
+
{
|
|
814
|
+
"author": "beachball",
|
|
815
|
+
"package": "@fluentai/reference",
|
|
816
|
+
"comment": "Bump @fluentai/provider to v0.2.0",
|
|
817
|
+
"commit": "296df4bd9c15df69fca4ce24f09b9bf7b490b693"
|
|
818
|
+
}
|
|
819
|
+
],
|
|
820
|
+
"none": [
|
|
821
|
+
{
|
|
822
|
+
"author": "mgodbolt@microsoft.com",
|
|
823
|
+
"package": "@fluentai/reference",
|
|
824
|
+
"commit": "257442f20c2169f413c23d89c53b0328a2737a2a",
|
|
825
|
+
"comment": "reference api.md comment removed by update-api"
|
|
826
|
+
},
|
|
827
|
+
{
|
|
828
|
+
"author": "matejera@microsoft.com",
|
|
829
|
+
"package": "@fluentai/reference",
|
|
830
|
+
"commit": "695ebe05570d7d5dc40feb9b01f041aa70f66f88",
|
|
831
|
+
"comment": "chore: Updating API file."
|
|
832
|
+
},
|
|
833
|
+
{
|
|
834
|
+
"author": "tristan.watanabe@gmail.com",
|
|
835
|
+
"package": "@fluentai/reference",
|
|
836
|
+
"commit": "590bd4bfe08d708aa7a9310c2332faa9fdab90fd",
|
|
837
|
+
"comment": "chore: enable conformance testing."
|
|
838
|
+
}
|
|
839
|
+
]
|
|
840
|
+
}
|
|
841
|
+
},
|
|
842
|
+
{
|
|
843
|
+
"date": "Mon, 22 May 2023 18:06:18 GMT",
|
|
844
|
+
"tag": "@fluentai/reference_v0.2.0",
|
|
845
|
+
"version": "0.2.0",
|
|
846
|
+
"comments": {
|
|
847
|
+
"none": [
|
|
848
|
+
{
|
|
849
|
+
"author": "tristan.watanabe@gmail.com",
|
|
850
|
+
"package": "@fluentai/reference",
|
|
851
|
+
"commit": "6e45c0311c62eda7a920193fd6d1502d61047b35",
|
|
852
|
+
"comment": "chore: enable minor beachball changes."
|
|
853
|
+
}
|
|
854
|
+
],
|
|
855
|
+
"patch": [
|
|
856
|
+
{
|
|
857
|
+
"author": "seanmonahan@microsoft.com",
|
|
858
|
+
"package": "@fluentai/reference",
|
|
859
|
+
"commit": "6e45c0311c62eda7a920193fd6d1502d61047b35",
|
|
860
|
+
"comment": "basic unit tests for reference package"
|
|
861
|
+
},
|
|
862
|
+
{
|
|
863
|
+
"author": "matejera@microsoft.com",
|
|
864
|
+
"package": "@fluentai/reference",
|
|
865
|
+
"commit": "6e45c0311c62eda7a920193fd6d1502d61047b35",
|
|
866
|
+
"comment": "Adds dependency on fluentai/provider and CopilotMode"
|
|
867
|
+
},
|
|
868
|
+
{
|
|
869
|
+
"author": "seanmonahan@microsoft.com",
|
|
870
|
+
"package": "@fluentai/reference",
|
|
871
|
+
"commit": "6e45c0311c62eda7a920193fd6d1502d61047b35",
|
|
872
|
+
"comment": "revert use of 'hidden' attribute for references"
|
|
873
|
+
},
|
|
874
|
+
{
|
|
875
|
+
"author": "seanmonahan@microsoft.com",
|
|
876
|
+
"package": "@fluentai/reference",
|
|
877
|
+
"commit": "6e45c0311c62eda7a920193fd6d1502d61047b35",
|
|
878
|
+
"comment": "implement Citation/Reference popover"
|
|
879
|
+
}
|
|
880
|
+
],
|
|
881
|
+
"minor": [
|
|
882
|
+
{
|
|
883
|
+
"author": "seanmonahan@microsoft.com",
|
|
884
|
+
"package": "@fluentai/reference",
|
|
885
|
+
"commit": "6e45c0311c62eda7a920193fd6d1502d61047b35",
|
|
886
|
+
"comment": "BREAKING CHANGE: refactors Reference to use more Slots"
|
|
887
|
+
},
|
|
888
|
+
{
|
|
889
|
+
"author": "beachball",
|
|
890
|
+
"package": "@fluentai/reference",
|
|
891
|
+
"comment": "Bump @fluentai/provider to v0.1.6",
|
|
892
|
+
"commit": "6e45c0311c62eda7a920193fd6d1502d61047b35"
|
|
893
|
+
}
|
|
894
|
+
]
|
|
895
|
+
}
|
|
896
|
+
},
|
|
897
|
+
{
|
|
898
|
+
"date": "Mon, 08 May 2023 15:45:26 GMT",
|
|
899
|
+
"tag": "@fluentai/reference_v0.1.2",
|
|
900
|
+
"version": "0.1.2",
|
|
901
|
+
"comments": {
|
|
902
|
+
"patch": [
|
|
903
|
+
{
|
|
904
|
+
"author": "tristan.watanabe@gmail.com",
|
|
905
|
+
"package": "@fluentai/reference",
|
|
906
|
+
"commit": "3b1eba552f3d02d6a335ef94d1f2ca1ee5f26ac6",
|
|
907
|
+
"comment": "fix: publish missing lib and lib-commonjs folders."
|
|
908
|
+
}
|
|
909
|
+
]
|
|
910
|
+
}
|
|
911
|
+
},
|
|
912
|
+
{
|
|
913
|
+
"date": "Mon, 08 May 2023 14:06:39 GMT",
|
|
914
|
+
"tag": "@fluentai/reference_v0.1.1",
|
|
915
|
+
"version": "0.1.1",
|
|
916
|
+
"comments": {
|
|
917
|
+
"none": [
|
|
918
|
+
{
|
|
919
|
+
"author": "tristan.watanabe@gmail.com",
|
|
920
|
+
"package": "@fluentai/reference",
|
|
921
|
+
"commit": "aa8cc7ebe8ec134e1dc6983c3e219d6b30d479d7",
|
|
922
|
+
"comment": "chore: run migration generator."
|
|
923
|
+
}
|
|
924
|
+
]
|
|
925
|
+
}
|
|
926
|
+
},
|
|
927
|
+
{
|
|
928
|
+
"date": "Wed, 03 May 2023 22:41:34 GMT",
|
|
929
|
+
"tag": "@fluentai/reference_v0.1.1",
|
|
930
|
+
"version": "0.1.1",
|
|
931
|
+
"comments": {
|
|
932
|
+
"patch": [
|
|
933
|
+
{
|
|
934
|
+
"author": "seanmonahan@microsoft.com",
|
|
935
|
+
"package": "@fluentai/reference",
|
|
936
|
+
"commit": "ebd9ced9c53d3ec4015d6adbc8b96ec87b9bf328",
|
|
937
|
+
"comment": "chore: Make @fluentai/reference package public"
|
|
938
|
+
}
|
|
939
|
+
]
|
|
940
|
+
}
|
|
941
|
+
}
|
|
942
|
+
]
|
|
943
|
+
}
|