@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.
Files changed (174) hide show
  1. package/CHANGELOG.json +943 -0
  2. package/CHANGELOG.md +281 -0
  3. package/LICENSE +23 -0
  4. package/README.md +5 -0
  5. package/dist/index.d.ts +539 -0
  6. package/lib/Citation.js +2 -0
  7. package/lib/Citation.js.map +1 -0
  8. package/lib/Reference.js +2 -0
  9. package/lib/Reference.js.map +1 -0
  10. package/lib/ReferenceGroup.js +2 -0
  11. package/lib/ReferenceGroup.js.map +1 -0
  12. package/lib/ReferenceGroupToggle.js +2 -0
  13. package/lib/ReferenceGroupToggle.js.map +1 -0
  14. package/lib/ReferenceList.js +2 -0
  15. package/lib/ReferenceList.js.map +1 -0
  16. package/lib/components/Citation/Citation.js +14 -0
  17. package/lib/components/Citation/Citation.js.map +1 -0
  18. package/lib/components/Citation/Citation.types.js +2 -0
  19. package/lib/components/Citation/Citation.types.js.map +1 -0
  20. package/lib/components/Citation/index.js +6 -0
  21. package/lib/components/Citation/index.js.map +1 -0
  22. package/lib/components/Citation/renderCitation.js +29 -0
  23. package/lib/components/Citation/renderCitation.js.map +1 -0
  24. package/lib/components/Citation/useCitation.js +191 -0
  25. package/lib/components/Citation/useCitation.js.map +1 -0
  26. package/lib/components/Citation/useCitationStyles.js +44 -0
  27. package/lib/components/Citation/useCitationStyles.js.map +1 -0
  28. package/lib/components/Reference/Reference.js +14 -0
  29. package/lib/components/Reference/Reference.js.map +1 -0
  30. package/lib/components/Reference/Reference.types.js +2 -0
  31. package/lib/components/Reference/Reference.types.js.map +1 -0
  32. package/lib/components/Reference/index.js +6 -0
  33. package/lib/components/Reference/index.js.map +1 -0
  34. package/lib/components/Reference/renderReference.js +16 -0
  35. package/lib/components/Reference/renderReference.js.map +1 -0
  36. package/lib/components/Reference/useReference.js +197 -0
  37. package/lib/components/Reference/useReference.js.map +1 -0
  38. package/lib/components/Reference/useReferenceStyles.js +253 -0
  39. package/lib/components/Reference/useReferenceStyles.js.map +1 -0
  40. package/lib/components/ReferenceGroup/ReferenceGroup.js +19 -0
  41. package/lib/components/ReferenceGroup/ReferenceGroup.js.map +1 -0
  42. package/lib/components/ReferenceGroup/ReferenceGroup.types.js +2 -0
  43. package/lib/components/ReferenceGroup/ReferenceGroup.types.js.map +1 -0
  44. package/lib/components/ReferenceGroup/index.js +6 -0
  45. package/lib/components/ReferenceGroup/index.js.map +1 -0
  46. package/lib/components/ReferenceGroup/renderReferenceGroup.js +21 -0
  47. package/lib/components/ReferenceGroup/renderReferenceGroup.js.map +1 -0
  48. package/lib/components/ReferenceGroup/useReferenceGroup.js +104 -0
  49. package/lib/components/ReferenceGroup/useReferenceGroup.js.map +1 -0
  50. package/lib/components/ReferenceGroup/useReferenceGroupContextValues.js +10 -0
  51. package/lib/components/ReferenceGroup/useReferenceGroupContextValues.js.map +1 -0
  52. package/lib/components/ReferenceGroup/useReferenceGroupStyles.js +50 -0
  53. package/lib/components/ReferenceGroup/useReferenceGroupStyles.js.map +1 -0
  54. package/lib/components/ReferenceGroupToggle/ReferenceGroupToggle.js +12 -0
  55. package/lib/components/ReferenceGroupToggle/ReferenceGroupToggle.js.map +1 -0
  56. package/lib/components/ReferenceGroupToggle/ReferenceGroupToggle.types.js +2 -0
  57. package/lib/components/ReferenceGroupToggle/ReferenceGroupToggle.types.js.map +1 -0
  58. package/lib/components/ReferenceGroupToggle/index.js +6 -0
  59. package/lib/components/ReferenceGroupToggle/index.js.map +1 -0
  60. package/lib/components/ReferenceGroupToggle/renderReferenceGroupToggle.js +12 -0
  61. package/lib/components/ReferenceGroupToggle/renderReferenceGroupToggle.js.map +1 -0
  62. package/lib/components/ReferenceGroupToggle/useReferenceGroupToggle.js +40 -0
  63. package/lib/components/ReferenceGroupToggle/useReferenceGroupToggle.js.map +1 -0
  64. package/lib/components/ReferenceGroupToggle/useReferenceGroupToggleStyles.js +20 -0
  65. package/lib/components/ReferenceGroupToggle/useReferenceGroupToggleStyles.js.map +1 -0
  66. package/lib/components/ReferenceList/ReferenceList.js +14 -0
  67. package/lib/components/ReferenceList/ReferenceList.js.map +1 -0
  68. package/lib/components/ReferenceList/ReferenceList.types.js +2 -0
  69. package/lib/components/ReferenceList/ReferenceList.types.js.map +1 -0
  70. package/lib/components/ReferenceList/index.js +6 -0
  71. package/lib/components/ReferenceList/index.js.map +1 -0
  72. package/lib/components/ReferenceList/renderReferenceList.js +10 -0
  73. package/lib/components/ReferenceList/renderReferenceList.js.map +1 -0
  74. package/lib/components/ReferenceList/useReferenceList.js +30 -0
  75. package/lib/components/ReferenceList/useReferenceList.js.map +1 -0
  76. package/lib/components/ReferenceList/useReferenceListStyles.js +17 -0
  77. package/lib/components/ReferenceList/useReferenceListStyles.js.map +1 -0
  78. package/lib/context/ReferenceGroupContext.js +11 -0
  79. package/lib/context/ReferenceGroupContext.js.map +1 -0
  80. package/lib/hooks/index.js +4 -0
  81. package/lib/hooks/index.js.map +1 -0
  82. package/lib/hooks/useReferenceCitation.js +77 -0
  83. package/lib/hooks/useReferenceCitation.js.map +1 -0
  84. package/lib/hooks/useReferenceCitationPreview.js +128 -0
  85. package/lib/hooks/useReferenceCitationPreview.js.map +1 -0
  86. package/lib/hooks/useReferenceGroup.js +40 -0
  87. package/lib/hooks/useReferenceGroup.js.map +1 -0
  88. package/lib/index.js +7 -0
  89. package/lib/index.js.map +1 -0
  90. package/lib-commonjs/Citation.js +7 -0
  91. package/lib-commonjs/Citation.js.map +1 -0
  92. package/lib-commonjs/Reference.js +7 -0
  93. package/lib-commonjs/Reference.js.map +1 -0
  94. package/lib-commonjs/ReferenceGroup.js +7 -0
  95. package/lib-commonjs/ReferenceGroup.js.map +1 -0
  96. package/lib-commonjs/ReferenceGroupToggle.js +7 -0
  97. package/lib-commonjs/ReferenceGroupToggle.js.map +1 -0
  98. package/lib-commonjs/ReferenceList.js +7 -0
  99. package/lib-commonjs/ReferenceList.js.map +1 -0
  100. package/lib-commonjs/components/Citation/Citation.js +23 -0
  101. package/lib-commonjs/components/Citation/Citation.js.map +1 -0
  102. package/lib-commonjs/components/Citation/Citation.types.js +5 -0
  103. package/lib-commonjs/components/Citation/Citation.types.js.map +1 -0
  104. package/lib-commonjs/components/Citation/index.js +11 -0
  105. package/lib-commonjs/components/Citation/index.js.map +1 -0
  106. package/lib-commonjs/components/Citation/renderCitation.js +38 -0
  107. package/lib-commonjs/components/Citation/renderCitation.js.map +1 -0
  108. package/lib-commonjs/components/Citation/useCitation.js +185 -0
  109. package/lib-commonjs/components/Citation/useCitation.js.map +1 -0
  110. package/lib-commonjs/components/Citation/useCitationStyles.js +100 -0
  111. package/lib-commonjs/components/Citation/useCitationStyles.js.map +1 -0
  112. package/lib-commonjs/components/Reference/Reference.js +23 -0
  113. package/lib-commonjs/components/Reference/Reference.js.map +1 -0
  114. package/lib-commonjs/components/Reference/Reference.types.js +5 -0
  115. package/lib-commonjs/components/Reference/Reference.types.js.map +1 -0
  116. package/lib-commonjs/components/Reference/index.js +11 -0
  117. package/lib-commonjs/components/Reference/index.js.map +1 -0
  118. package/lib-commonjs/components/Reference/renderReference.js +40 -0
  119. package/lib-commonjs/components/Reference/renderReference.js.map +1 -0
  120. package/lib-commonjs/components/Reference/useReference.js +201 -0
  121. package/lib-commonjs/components/Reference/useReference.js.map +1 -0
  122. package/lib-commonjs/components/Reference/useReferenceStyles.js +454 -0
  123. package/lib-commonjs/components/Reference/useReferenceStyles.js.map +1 -0
  124. package/lib-commonjs/components/ReferenceGroup/ReferenceGroup.js +25 -0
  125. package/lib-commonjs/components/ReferenceGroup/ReferenceGroup.js.map +1 -0
  126. package/lib-commonjs/components/ReferenceGroup/ReferenceGroup.types.js +5 -0
  127. package/lib-commonjs/components/ReferenceGroup/ReferenceGroup.types.js.map +1 -0
  128. package/lib-commonjs/components/ReferenceGroup/index.js +11 -0
  129. package/lib-commonjs/components/ReferenceGroup/index.js.map +1 -0
  130. package/lib-commonjs/components/ReferenceGroup/renderReferenceGroup.js +33 -0
  131. package/lib-commonjs/components/ReferenceGroup/renderReferenceGroup.js.map +1 -0
  132. package/lib-commonjs/components/ReferenceGroup/useReferenceGroup.js +103 -0
  133. package/lib-commonjs/components/ReferenceGroup/useReferenceGroup.js.map +1 -0
  134. package/lib-commonjs/components/ReferenceGroup/useReferenceGroupContextValues.js +23 -0
  135. package/lib-commonjs/components/ReferenceGroup/useReferenceGroupContextValues.js.map +1 -0
  136. package/lib-commonjs/components/ReferenceGroup/useReferenceGroupStyles.js +75 -0
  137. package/lib-commonjs/components/ReferenceGroup/useReferenceGroupStyles.js.map +1 -0
  138. package/lib-commonjs/components/ReferenceGroupToggle/ReferenceGroupToggle.js +21 -0
  139. package/lib-commonjs/components/ReferenceGroupToggle/ReferenceGroupToggle.js.map +1 -0
  140. package/lib-commonjs/components/ReferenceGroupToggle/ReferenceGroupToggle.types.js +5 -0
  141. package/lib-commonjs/components/ReferenceGroupToggle/ReferenceGroupToggle.types.js.map +1 -0
  142. package/lib-commonjs/components/ReferenceGroupToggle/index.js +11 -0
  143. package/lib-commonjs/components/ReferenceGroupToggle/index.js.map +1 -0
  144. package/lib-commonjs/components/ReferenceGroupToggle/renderReferenceGroupToggle.js +21 -0
  145. package/lib-commonjs/components/ReferenceGroupToggle/renderReferenceGroupToggle.js.map +1 -0
  146. package/lib-commonjs/components/ReferenceGroupToggle/useReferenceGroupToggle.js +39 -0
  147. package/lib-commonjs/components/ReferenceGroupToggle/useReferenceGroupToggle.js.map +1 -0
  148. package/lib-commonjs/components/ReferenceGroupToggle/useReferenceGroupToggleStyles.js +39 -0
  149. package/lib-commonjs/components/ReferenceGroupToggle/useReferenceGroupToggleStyles.js.map +1 -0
  150. package/lib-commonjs/components/ReferenceList/ReferenceList.js +23 -0
  151. package/lib-commonjs/components/ReferenceList/ReferenceList.js.map +1 -0
  152. package/lib-commonjs/components/ReferenceList/ReferenceList.types.js +5 -0
  153. package/lib-commonjs/components/ReferenceList/ReferenceList.types.js.map +1 -0
  154. package/lib-commonjs/components/ReferenceList/index.js +11 -0
  155. package/lib-commonjs/components/ReferenceList/index.js.map +1 -0
  156. package/lib-commonjs/components/ReferenceList/renderReferenceList.js +16 -0
  157. package/lib-commonjs/components/ReferenceList/renderReferenceList.js.map +1 -0
  158. package/lib-commonjs/components/ReferenceList/useReferenceList.js +30 -0
  159. package/lib-commonjs/components/ReferenceList/useReferenceList.js.map +1 -0
  160. package/lib-commonjs/components/ReferenceList/useReferenceListStyles.js +36 -0
  161. package/lib-commonjs/components/ReferenceList/useReferenceListStyles.js.map +1 -0
  162. package/lib-commonjs/context/ReferenceGroupContext.js +29 -0
  163. package/lib-commonjs/context/ReferenceGroupContext.js.map +1 -0
  164. package/lib-commonjs/hooks/index.js +15 -0
  165. package/lib-commonjs/hooks/index.js.map +1 -0
  166. package/lib-commonjs/hooks/useReferenceCitation.js +78 -0
  167. package/lib-commonjs/hooks/useReferenceCitation.js.map +1 -0
  168. package/lib-commonjs/hooks/useReferenceCitationPreview.js +141 -0
  169. package/lib-commonjs/hooks/useReferenceCitationPreview.js.map +1 -0
  170. package/lib-commonjs/hooks/useReferenceGroup.js +49 -0
  171. package/lib-commonjs/hooks/useReferenceGroup.js.map +1 -0
  172. package/lib-commonjs/index.js +103 -0
  173. package/lib-commonjs/index.js.map +1 -0
  174. package/package.json +43 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,281 @@
1
+ # Change Log - @fluentui-copilot/react-reference
2
+
3
+ This log was last generated on Wed, 13 Mar 2024 04:09:45 GMT and should not be manually modified.
4
+
5
+ <!-- Start content -->
6
+
7
+ ## [0.0.0-nightly-20240313-0404-8abc883d.1](https://github.com/microsoft/fluentai/tree/@fluentui-copilot/react-reference_v0.0.0-nightly-20240313-0404-8abc883d.1)
8
+
9
+ Wed, 13 Mar 2024 04:09:45 GMT
10
+ [Compare changes](https://github.com/microsoft/fluentai/compare/@fluentai/reference_v0.8.2..@fluentui-copilot/react-reference_v0.0.0-nightly-20240313-0404-8abc883d.1)
11
+
12
+ ### Changes
13
+
14
+ - Release nightly ([commit](https://github.com/microsoft/fluentai/commit/not available) by fluentui-internal@service.microsoft.com)
15
+ - Bump @fluentui-copilot/react-preview to v0.0.0-nightly-20240313-0404-8abc883d.1 ([commit](https://github.com/microsoft/fluentai/commit/6953fd36fa1f984fe4271557d1ab88e559056e47) by beachball)
16
+ - Bump @fluentui-copilot/react-provider to v0.0.0-nightly-20240313-0404-8abc883d.1 ([commit](https://github.com/microsoft/fluentai/commit/6953fd36fa1f984fe4271557d1ab88e559056e47) by beachball)
17
+ - Bump @fluentui-copilot/react-sensitivity-label to v0.0.0-nightly-20240313-0404-8abc883d.1 ([commit](https://github.com/microsoft/fluentai/commit/6953fd36fa1f984fe4271557d1ab88e559056e47) by beachball)
18
+
19
+ ## [0.8.0](https://github.com/microsoft/fluentai/tree/@fluentai/reference_v0.8.0)
20
+
21
+ Thu, 15 Feb 2024 20:24:47 GMT
22
+ [Compare changes](https://github.com/microsoft/fluentai/compare/@fluentai/reference_v0.7.3..@fluentai/reference_v0.8.0)
23
+
24
+ ### Minor changes
25
+
26
+ - chore: initial release to NPM. ([PR #1358](https://github.com/microsoft/fluentai/pull/1358) by tristan.watanabe@gmail.com)
27
+
28
+ ## [0.7.3](https://github.com/microsoft/fluentai/tree/@fluentai/reference_v0.7.3)
29
+
30
+ Fri, 09 Feb 2024 17:34:09 GMT
31
+ [Compare changes](https://github.com/microsoft/fluentai/compare/@fluentai/reference_v0.7.2..@fluentai/reference_v0.7.3)
32
+
33
+ ### Patches
34
+
35
+ - fix: change citation locked foreground to properly contrast in HC ([PR #1341](https://github.com/microsoft/fluentai/pull/1341) by mgodbolt@microsoft.com)
36
+
37
+ ## [0.7.2](https://github.com/microsoft/fluentai/tree/@fluentai/reference_v0.7.2)
38
+
39
+ Fri, 02 Feb 2024 01:07:14 GMT
40
+ [Compare changes](https://github.com/microsoft/fluentai/compare/@fluentai/reference_v0.7.1..@fluentai/reference_v0.7.2)
41
+
42
+ ### Patches
43
+
44
+ - fix: add missing peer dependencies from other Fluent AI package dependency. ([PR #1329](https://github.com/microsoft/fluentai/pull/1329) by tristan.watanabe@gmail.com)
45
+
46
+ ## [0.7.1](https://github.com/microsoft/fluentai/tree/@fluentai/reference_v0.7.1)
47
+
48
+ Thu, 18 Jan 2024 00:29:43 GMT
49
+ [Compare changes](https://github.com/microsoft/fluentai/compare/@fluentai/reference_v0.7.0..@fluentai/reference_v0.7.1)
50
+
51
+ ### Patches
52
+
53
+ - chore: Export UseReferenceCitationPreview type. ([PR #1323](https://github.com/microsoft/fluentai/pull/1323) by owcampbe@microsoft.com)
54
+ - chore: import from react-components instead of react-utilities. ([PR #1314](https://github.com/microsoft/fluentai/pull/1314) by tristan.watanabe@gmail.com)
55
+ - fix: Details button on References no longer expands on focus. ([PR #1315](https://github.com/microsoft/fluentai/pull/1315) by humbertomakotomorimoto@gmail.com)
56
+
57
+ ## [0.7.0](https://github.com/microsoft/fluentai/tree/@fluentai/reference_v0.7.0)
58
+
59
+ Thu, 11 Jan 2024 22:33:55 GMT
60
+ [Compare changes](https://github.com/microsoft/fluentai/compare/@fluentai/reference_v0.6.2..@fluentai/reference_v0.7.0)
61
+
62
+ ### Minor changes
63
+
64
+ - chore: Deprecating old way of handling Citation popovers. ([PR #1309](https://github.com/microsoft/fluentai/pull/1309) by humbertomakotomorimoto@gmail.com)
65
+
66
+ ## [0.6.2](https://github.com/microsoft/fluentai/tree/@fluentai/reference_v0.6.2)
67
+
68
+ Tue, 09 Jan 2024 21:07:24 GMT
69
+ [Compare changes](https://github.com/microsoft/fluentai/compare/@fluentai/reference_v0.6.0..@fluentai/reference_v0.6.2)
70
+
71
+ ### Patches
72
+
73
+ - chore: export all types from reference package. ([PR #1296](https://github.com/microsoft/fluentai/pull/1296) by mgodbolt@microsoft.com)
74
+
75
+ ## [0.6.0](https://github.com/microsoft/fluentai/tree/@fluentai/reference_v0.6.0)
76
+
77
+ Tue, 12 Dec 2023 16:35:16 GMT
78
+ [Compare changes](https://github.com/microsoft/fluentai/compare/@fluentai/reference_v0.5.0..@fluentai/reference_v0.6.0)
79
+
80
+ ### Minor changes
81
+
82
+ - feat: Convert `useReferenceGroup` to return props objects instead of components. ([PR #1218](https://github.com/microsoft/fluentai/pull/1218) by owcampbe@microsoft.com)
83
+
84
+ ### Patches
85
+
86
+ - feat: Add useReferenceGroup hook and ReferenceGroupToggle component. ([PR #1174](https://github.com/microsoft/fluentai/pull/1174) by owcampbe@microsoft.com)
87
+ - fix: updated color, background and stroke to match spec and work properly in grey theme ([PR #1224](https://github.com/microsoft/fluentai/pull/1224) by mgodbolt@microsoft.com)
88
+ - feat: Add sensitivity slot and deprecate sensitivityLabel slot. ([PR #1237](https://github.com/microsoft/fluentai/pull/1237) by owcampbe@microsoft.com)
89
+ - add block layout to citation and use it in reference ([PR #1251](https://github.com/microsoft/fluentai/pull/1251) by mgodbolt@microsoft.com)
90
+ - fix: Citation has locked styles when Preview has been locked using the useReferenceCitationPreview hook. ([PR #1252](https://github.com/microsoft/fluentai/pull/1252) by Humberto.Morimoto@microsoft.com)
91
+ - fix: change ReferenceList and ReferenceGroup spacing to match spec. ([PR #1186](https://github.com/microsoft/fluentai/pull/1186) by owcampbe@microsoft.com)
92
+
93
+ ## [0.5.0](https://github.com/microsoft/fluentai/tree/@fluentai/reference_v0.5.0)
94
+
95
+ Wed, 15 Nov 2023 00:55:22 GMT
96
+ [Compare changes](https://github.com/microsoft/fluentai/compare/@fluentai/reference_v0.4.2..@fluentai/reference_v0.5.0)
97
+
98
+ ### Minor changes
99
+
100
+ - chore: move @fluentui dependencies to peer dependencies. ([PR #979](https://github.com/microsoft/fluentai/pull/979) by tristan.watanabe@gmail.com)
101
+ - Bump @fluentai/provider to v0.6.0 ([PR #1169](https://github.com/microsoft/fluentai/pull/1169) by beachball)
102
+ - Bump @fluentai/react-preview to v0.1.0 ([PR #1169](https://github.com/microsoft/fluentai/pull/1169) by beachball)
103
+
104
+ ### Patches
105
+
106
+ - feat: Implementing useReferenceCitationPreview hook that builds together a Reference/Citation/Preview experience from a set of passed in props. ([PR #1115](https://github.com/microsoft/fluentai/pull/1115) by Humberto.Morimoto@microsoft.com)
107
+ - fix: popover nested in citation can escape without closing citation ([PR #1079](https://github.com/microsoft/fluentai/pull/1079) by sarah.higley@microsoft.com)
108
+ - chore: Adding tests for useReferenceCitationPreview hook. ([PR #1151](https://github.com/microsoft/fluentai/pull/1151) by Humberto.Morimoto@microsoft.com)
109
+ - chore: Migrate to new slots API. ([PR #1102](https://github.com/microsoft/fluentai/pull/1102) by owcampbe@microsoft.com)
110
+ - chore: bump peer deep range to latest @fluentui/react-components 9.37.3. ([PR #1125](https://github.com/microsoft/fluentai/pull/1125) by tristan.watanabe@gmail.com)
111
+ - chore: Renaming key of makeStyles object to more correctly refer to when it is applied." ([PR #980](https://github.com/microsoft/fluentai/pull/980) by Humberto.Morimoto@microsoft.com)
112
+ - fix: Adding close button behavior to Citation within Preview in useReferenceCitationPreview hook. ([PR #1148](https://github.com/microsoft/fluentai/pull/1148) by Humberto.Morimoto@microsoft.com)
113
+
114
+ ## [0.4.2](https://github.com/microsoft/fluentai/tree/@fluentai/reference_v0.4.2)
115
+
116
+ Wed, 18 Oct 2023 00:23:50 GMT
117
+ [Compare changes](https://github.com/microsoft/fluentai/compare/@fluentai/reference_v0.4.1..@fluentai/reference_v0.4.2)
118
+
119
+ ### Patches
120
+
121
+ - fix: collapsed reference content was focusable and screen reader-accessible ([PR #1039](https://github.com/microsoft/fluentai/pull/1039) by sarah.higley@microsoft.com)
122
+ - fix: Adding overflow boundary padding to Citation Popover. ([PR #1043](https://github.com/microsoft/fluentai/pull/1043) by Humberto.Morimoto@microsoft.com)
123
+
124
+ ## [0.4.1](https://github.com/microsoft/fluentai/tree/@fluentai/reference_v0.4.1)
125
+
126
+ Mon, 25 Sep 2023 20:31:08 GMT
127
+ [Compare changes](https://github.com/microsoft/fluentai/compare/@fluentai/reference_v0.4.0..@fluentai/reference_v0.4.1)
128
+
129
+ ### Patches
130
+
131
+ - fix: bump swc core to mitigate transpilation memory leaks. ([PR #972](https://github.com/microsoft/fluentai/pull/972) by tristan.watanabe@gmail.com)
132
+ - Bump @fluentai/provider to v0.5.1 ([commit](https://github.com/microsoft/fluentai/commit/f633e55414cd3ed596793f7e8916d87a242d8c0d) by beachball)
133
+
134
+ ## [0.4.0](https://github.com/microsoft/fluentai/tree/@fluentai/reference_v0.4.0)
135
+
136
+ Fri, 22 Sep 2023 02:11:56 GMT
137
+ [Compare changes](https://github.com/microsoft/fluentai/compare/@fluentai/reference_v0.3.4..@fluentai/reference_v0.4.0)
138
+
139
+ ### Minor changes
140
+
141
+ - Bump @fluentai/provider to v0.5.0 ([PR #961](https://github.com/microsoft/fluentai/pull/961) by beachball)
142
+
143
+ ### Patches
144
+
145
+ - chore: bump fluentui v9 dependencies to latest. ([PR #928](https://github.com/microsoft/fluentai/pull/928) by tristan.watanabe@gmail.com)
146
+ - fix: Reference popover citation number is a close button ([PR #954](https://github.com/microsoft/fluentai/pull/954) by sarah.higley@microsoft.com)
147
+ - fix: Citation popover positioning opens by default from below. ([PR #941](https://github.com/microsoft/fluentai/pull/941) by makotom@microsoft.com)
148
+
149
+ ## [0.3.4](https://github.com/microsoft/fluentai/tree/@fluentai/reference_v0.3.4)
150
+
151
+ Fri, 08 Sep 2023 18:32:55 GMT
152
+ [Compare changes](https://github.com/microsoft/fluentai/compare/@fluentai/reference_v0.3.3..@fluentai/reference_v0.3.4)
153
+
154
+ ### Patches
155
+
156
+ - chore: fix citation styles for hover, active, locked open, updated examples ([PR #913](https://github.com/microsoft/fluentai/pull/913) by mgodbolt@microsoft.com)
157
+ - fix: Citation popover itself is focused when opened via click or keyboard. ([PR #901](https://github.com/microsoft/fluentai/pull/901) by makotom@microsoft.com)
158
+ - fix: Citation popover should have a named dialog and no nested group ([PR #902](https://github.com/microsoft/fluentai/pull/902) by sarah.higley@microsoft.com)
159
+ - test: add playwright e2e testing setup and WCAG testing. ([PR #872](https://github.com/microsoft/fluentai/pull/872) by tristan.watanabe@gmail.com)
160
+
161
+ ## [0.3.3](https://github.com/microsoft/fluentai/tree/@fluentai/reference_v0.3.3)
162
+
163
+ Thu, 24 Aug 2023 00:37:05 GMT
164
+ [Compare changes](https://github.com/microsoft/fluentai/compare/@fluentai/reference_v0.3.2..@fluentai/reference_v0.3.3)
165
+
166
+ ### Patches
167
+
168
+ - fix: Improving handling of citation popover internal state. ([PR #882](https://github.com/microsoft/fluentai/pull/882) by Humberto.Morimoto@microsoft.com)
169
+ - fix: Make Reference content break between lines by word instead of by character. ([PR #881](https://github.com/microsoft/fluentai/pull/881) by Humberto.Morimoto@microsoft.com)
170
+
171
+ ## [0.3.2](https://github.com/microsoft/fluentai/tree/@fluentai/reference_v0.3.2)
172
+
173
+ Tue, 22 Aug 2023 23:54:16 GMT
174
+ [Compare changes](https://github.com/microsoft/fluentai/compare/@fluentai/reference_v0.3.1..@fluentai/reference_v0.3.2)
175
+
176
+ ### Patches
177
+
178
+ - chore: bump fluentui dependencies. ([PR #836](https://github.com/microsoft/fluentai/pull/836) by tristan.watanabe@gmail.com)
179
+ - fix: Make media slot be descriptor of label/title. ([PR #845](https://github.com/microsoft/fluentai/pull/845) by Humberto.Morimoto@microsoft.com)
180
+ - add useCustomStyleHook to all components ([PR #843](https://github.com/microsoft/fluentai/pull/843) by eysjiang@gmail.com)
181
+ - feat: Adding sensitivityLabel slot to Reference component. ([PR #878](https://github.com/microsoft/fluentai/pull/878) by Humberto.Morimoto@microsoft.com)
182
+ - fix: Improve citation/reference experience. ([PR #859](https://github.com/microsoft/fluentai/pull/859) by Humberto.Morimoto@microsoft.com)
183
+ - Bump @fluentai/provider to v0.4.0 ([PR #878](https://github.com/microsoft/fluentai/pull/878) by beachball)
184
+
185
+ ## [0.3.1](https://github.com/microsoft/fluentai/tree/@fluentai/reference_v0.3.1)
186
+
187
+ Thu, 10 Aug 2023 17:07:07 GMT
188
+ [Compare changes](https://github.com/microsoft/fluentai/compare/@fluentai/reference_v0.3.0..@fluentai/reference_v0.3.1)
189
+
190
+ ### Patches
191
+
192
+ - fix: update ReferenceGroup to not expose collapsed accordion contents ([PR #722](https://github.com/microsoft/fluentai/pull/722) by sarah.higley@microsoft.com)
193
+
194
+ ## [0.3.0](https://github.com/microsoft/fluentai/tree/@fluentai/reference_v0.3.0)
195
+
196
+ Mon, 24 Jul 2023 22:38:51 GMT
197
+ [Compare changes](https://github.com/microsoft/fluentai/compare/@fluentai/reference_v0.2.3..@fluentai/reference_v0.3.0)
198
+
199
+ ### Minor changes
200
+
201
+ - Bump @fluentai/provider to v0.3.0 ([PR #778](https://github.com/microsoft/fluentai/pull/778) by beachball)
202
+
203
+ ### Patches
204
+
205
+ - fix: Adding word-break styles to Reference content. ([PR #732](https://github.com/microsoft/fluentai/pull/732) by Humberto.Morimoto@microsoft.com)
206
+ - chore: bump react-components to latest ([PR #741](https://github.com/microsoft/fluentai/pull/741) by mgodbolt@microsoft.com)
207
+ - fix: Updating citation/reference interaction model to adhere to latest design specification. ([PR #726](https://github.com/microsoft/fluentai/pull/726) by Humberto.Morimoto@microsoft.com)
208
+ - fix: Stop hover behavior from overriding popover's open/close state when it has been opened via click or focus+enter. ([PR #778](https://github.com/microsoft/fluentai/pull/778) by Humberto.Morimoto@microsoft.com)
209
+
210
+ ## [0.2.3](https://github.com/microsoft/fluentai/tree/@fluentai/reference_v0.2.3)
211
+
212
+ Wed, 28 Jun 2023 21:11:32 GMT
213
+ [Compare changes](https://github.com/microsoft/fluentai/compare/@fluentai/reference_v0.2.2..@fluentai/reference_v0.2.3)
214
+
215
+ ### Patches
216
+
217
+ - fix: only use griffel preset during babel transpilation in build step. ([PR #662](https://github.com/microsoft/fluentai/pull/662) by tristan.watanabe@gmail.com)
218
+ - Bump @fluentai/provider to v0.2.2 ([PR #662](https://github.com/microsoft/fluentai/pull/662) by beachball)
219
+
220
+ ## [0.2.2](https://github.com/microsoft/fluentai/tree/@fluentai/reference_v0.2.2)
221
+
222
+ Mon, 26 Jun 2023 18:30:47 GMT
223
+ [Compare changes](https://github.com/microsoft/fluentai/compare/@fluentai/reference_v0.2.1..@fluentai/reference_v0.2.2)
224
+
225
+ ### Patches
226
+
227
+ - chore: enable 'ref' conformance test for ReferenceGroup ([PR #584](https://github.com/microsoft/fluentai/pull/584) by seanmonahan@microsoft.com)
228
+ - fix: update Reference styles to better handle long titles ([PR #595](https://github.com/microsoft/fluentai/pull/595) by seanmonahan@microsoft.com)
229
+ - chore: update babel configuration to support Griffel build time optimizations. ([PR #618](https://github.com/microsoft/fluentai/pull/618) by seanmonahan@microsoft.com)
230
+ - chore: add LICENSE file to package. ([PR #606](https://github.com/microsoft/fluentai/pull/606) by tristan.watanabe@gmail.com)
231
+ - Bump @fluentai/provider to v0.2.1 ([PR #618](https://github.com/microsoft/fluentai/pull/618) by beachball)
232
+
233
+ ## [0.2.1](https://github.com/microsoft/fluentai/tree/@fluentai/reference_v0.2.1)
234
+
235
+ Mon, 12 Jun 2023 20:28:32 GMT
236
+ [Compare changes](https://github.com/microsoft/fluentai/compare/@fluentai/reference_v0.2.0..@fluentai/reference_v0.2.1)
237
+
238
+ ### Patches
239
+
240
+ - chore: bump @swc/helpers dependency. ([PR #514](https://github.com/microsoft/fluentai/pull/514) by tristan.watanabe@gmail.com)
241
+ - add package dependencies ([PR #575](https://github.com/microsoft/fluentai/pull/575) by mgodbolt@microsoft.com)
242
+ - fix: accessibility fixes for @fluentai/reference ([PR #461](https://github.com/microsoft/fluentai/pull/461) by seanmonahan@microsoft.com)
243
+ - fix: Visual bug fixes for Reference. ([PR #462](https://github.com/microsoft/fluentai/pull/462) by seanmonahan@microsoft.com)
244
+ - Updates mode to listen to context ([PR #507](https://github.com/microsoft/fluentai/pull/507) by matejera@microsoft.com)
245
+ - chore: bump @fluentui/react-components dependency to latest. ([PR #523](https://github.com/microsoft/fluentai/pull/523) by tristan.watanabe@gmail.com)
246
+ - fix: properly export static classnames and use fai- classname prefix. ([PR #550](https://github.com/microsoft/fluentai/pull/550) by tristan.watanabe@gmail.com)
247
+ - fix: update Citation colors at rest ([PR #480](https://github.com/microsoft/fluentai/pull/480) by seanmonahan@microsoft.com)
248
+ - fix: add missing fluentui dependencies to package.json. ([PR #509](https://github.com/microsoft/fluentai/pull/509) by tristan.watanabe@gmail.com)
249
+ - Bump @fluentai/provider to v0.2.0 ([PR #573](https://github.com/microsoft/fluentai/pull/573) by beachball)
250
+
251
+ ## 0.2.0
252
+
253
+ Mon, 22 May 2023 18:06:18 GMT
254
+
255
+ ### Minor changes
256
+
257
+ - BREAKING CHANGE: refactors Reference to use more Slots (seanmonahan@microsoft.com)
258
+ - Bump @fluentai/provider to v0.1.6
259
+
260
+ ### Patches
261
+
262
+ - basic unit tests for reference package (seanmonahan@microsoft.com)
263
+ - Adds dependency on fluentai/provider and CopilotMode (matejera@microsoft.com)
264
+ - revert use of 'hidden' attribute for references (seanmonahan@microsoft.com)
265
+ - implement Citation/Reference popover (seanmonahan@microsoft.com)
266
+
267
+ ## 0.1.2
268
+
269
+ Mon, 08 May 2023 15:45:26 GMT
270
+
271
+ ### Patches
272
+
273
+ - fix: publish missing lib and lib-commonjs folders. (tristan.watanabe@gmail.com)
274
+
275
+ ## 0.1.1
276
+
277
+ Wed, 03 May 2023 22:41:34 GMT
278
+
279
+ ### Patches
280
+
281
+ - chore: Make @fluentai/reference package public (seanmonahan@microsoft.com)
package/LICENSE ADDED
@@ -0,0 +1,23 @@
1
+ @fluentui-copilot/react-reference
2
+
3
+ MIT License
4
+
5
+ Copyright (c) Microsoft Corporation.
6
+
7
+ Permission is hereby granted, free of charge, to any person obtaining a copy
8
+ of this software and associated documentation files (the "Software"), to deal
9
+ in the Software without restriction, including without limitation the rights
10
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11
+ copies of the Software, and to permit persons to whom the Software is
12
+ furnished to do so, subject to the following conditions:
13
+
14
+ The above copyright notice and this permission notice shall be included in all
15
+ copies or substantial portions of the Software.
16
+
17
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23
+ SOFTWARE
package/README.md ADDED
@@ -0,0 +1,5 @@
1
+ # @fluentui-copilot/react-reference
2
+
3
+ **For internal use only. External use is not supported at this time.**
4
+
5
+ **Reference components for [Fluent AI React](https://ai.fluentui.dev/)**