@fluentui-copilot/react-attachments 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 +662 -0
- package/CHANGELOG.md +213 -0
- package/LICENSE +23 -0
- package/README.md +5 -0
- package/dist/index.d.ts +107 -0
- package/lib/AttachmentTag.js +2 -0
- package/lib/AttachmentTag.js.map +1 -0
- package/lib/AttachmentTagItem.js +2 -0
- package/lib/AttachmentTagItem.js.map +1 -0
- package/lib/AttachmentTagList.js +2 -0
- package/lib/AttachmentTagList.js.map +1 -0
- package/lib/components/AttachmentTag/AttachmentTag.js +14 -0
- package/lib/components/AttachmentTag/AttachmentTag.js.map +1 -0
- package/lib/components/AttachmentTag/AttachmentTag.types.js +2 -0
- package/lib/components/AttachmentTag/AttachmentTag.types.js.map +1 -0
- package/lib/components/AttachmentTag/index.js +6 -0
- package/lib/components/AttachmentTag/index.js.map +1 -0
- package/lib/components/AttachmentTag/renderAttachmentTag.js +12 -0
- package/lib/components/AttachmentTag/renderAttachmentTag.js.map +1 -0
- package/lib/components/AttachmentTag/useAttachmentTag.js +64 -0
- package/lib/components/AttachmentTag/useAttachmentTag.js.map +1 -0
- package/lib/components/AttachmentTag/useAttachmentTagStyles.js +30 -0
- package/lib/components/AttachmentTag/useAttachmentTagStyles.js.map +1 -0
- package/lib/components/AttachmentTagItem/AttachmentTagItem.js +12 -0
- package/lib/components/AttachmentTagItem/AttachmentTagItem.js.map +1 -0
- package/lib/components/AttachmentTagItem/AttachmentTagItem.types.js +3 -0
- package/lib/components/AttachmentTagItem/AttachmentTagItem.types.js.map +1 -0
- package/lib/components/AttachmentTagItem/index.js +6 -0
- package/lib/components/AttachmentTagItem/index.js.map +1 -0
- package/lib/components/AttachmentTagItem/renderAttachmentTagItem.js +11 -0
- package/lib/components/AttachmentTagItem/renderAttachmentTagItem.js.map +1 -0
- package/lib/components/AttachmentTagItem/useAttachmentTagItem.js +29 -0
- package/lib/components/AttachmentTagItem/useAttachmentTagItem.js.map +1 -0
- package/lib/components/AttachmentTagItem/useAttachmentTagItemStyles.js +21 -0
- package/lib/components/AttachmentTagItem/useAttachmentTagItemStyles.js.map +1 -0
- package/lib/components/AttachmentTagList/AttachmentTagList.js +16 -0
- package/lib/components/AttachmentTagList/AttachmentTagList.js.map +1 -0
- package/lib/components/AttachmentTagList/AttachmentTagList.types.js +2 -0
- package/lib/components/AttachmentTagList/AttachmentTagList.types.js.map +1 -0
- package/lib/components/AttachmentTagList/index.js +6 -0
- package/lib/components/AttachmentTagList/index.js.map +1 -0
- package/lib/components/AttachmentTagList/renderAttachmentTagList.js +14 -0
- package/lib/components/AttachmentTagList/renderAttachmentTagList.js.map +1 -0
- package/lib/components/AttachmentTagList/useAttachmentTagList.js +35 -0
- package/lib/components/AttachmentTagList/useAttachmentTagList.js.map +1 -0
- package/lib/components/AttachmentTagList/useAttachmentTagListContextValues.js +13 -0
- package/lib/components/AttachmentTagList/useAttachmentTagListContextValues.js.map +1 -0
- package/lib/components/AttachmentTagList/useAttachmentTagListStyles.js +14 -0
- package/lib/components/AttachmentTagList/useAttachmentTagListStyles.js.map +1 -0
- package/lib/components/index.js +3 -0
- package/lib/components/index.js.map +1 -0
- package/lib/contexts/attachmentTagListContext.js +8 -0
- package/lib/contexts/attachmentTagListContext.js.map +1 -0
- package/lib/index.js +3 -0
- package/lib/index.js.map +1 -0
- package/lib-commonjs/AttachmentTag.js +7 -0
- package/lib-commonjs/AttachmentTag.js.map +1 -0
- package/lib-commonjs/AttachmentTagItem.js +7 -0
- package/lib-commonjs/AttachmentTagItem.js.map +1 -0
- package/lib-commonjs/AttachmentTagList.js +7 -0
- package/lib-commonjs/AttachmentTagList.js.map +1 -0
- package/lib-commonjs/components/AttachmentTag/AttachmentTag.js +23 -0
- package/lib-commonjs/components/AttachmentTag/AttachmentTag.js.map +1 -0
- package/lib-commonjs/components/AttachmentTag/AttachmentTag.types.js +5 -0
- package/lib-commonjs/components/AttachmentTag/AttachmentTag.types.js.map +1 -0
- package/lib-commonjs/components/AttachmentTag/index.js +11 -0
- package/lib-commonjs/components/AttachmentTag/index.js.map +1 -0
- package/lib-commonjs/components/AttachmentTag/renderAttachmentTag.js +22 -0
- package/lib-commonjs/components/AttachmentTag/renderAttachmentTag.js.map +1 -0
- package/lib-commonjs/components/AttachmentTag/useAttachmentTag.js +61 -0
- package/lib-commonjs/components/AttachmentTag/useAttachmentTag.js.map +1 -0
- package/lib-commonjs/components/AttachmentTag/useAttachmentTagStyles.js +65 -0
- package/lib-commonjs/components/AttachmentTag/useAttachmentTagStyles.js.map +1 -0
- package/lib-commonjs/components/AttachmentTagItem/AttachmentTagItem.js +21 -0
- package/lib-commonjs/components/AttachmentTagItem/AttachmentTagItem.js.map +1 -0
- package/lib-commonjs/components/AttachmentTagItem/AttachmentTagItem.types.js +7 -0
- package/lib-commonjs/components/AttachmentTagItem/AttachmentTagItem.types.js.map +1 -0
- package/lib-commonjs/components/AttachmentTagItem/index.js +11 -0
- package/lib-commonjs/components/AttachmentTagItem/index.js.map +1 -0
- package/lib-commonjs/components/AttachmentTagItem/renderAttachmentTagItem.js +17 -0
- package/lib-commonjs/components/AttachmentTagItem/renderAttachmentTagItem.js.map +1 -0
- package/lib-commonjs/components/AttachmentTagItem/useAttachmentTagItem.js +28 -0
- package/lib-commonjs/components/AttachmentTagItem/useAttachmentTagItem.js.map +1 -0
- package/lib-commonjs/components/AttachmentTagItem/useAttachmentTagItemStyles.js +34 -0
- package/lib-commonjs/components/AttachmentTagItem/useAttachmentTagItemStyles.js.map +1 -0
- package/lib-commonjs/components/AttachmentTagList/AttachmentTagList.js +25 -0
- package/lib-commonjs/components/AttachmentTagList/AttachmentTagList.js.map +1 -0
- package/lib-commonjs/components/AttachmentTagList/AttachmentTagList.types.js +5 -0
- package/lib-commonjs/components/AttachmentTagList/AttachmentTagList.types.js.map +1 -0
- package/lib-commonjs/components/AttachmentTagList/index.js +11 -0
- package/lib-commonjs/components/AttachmentTagList/index.js.map +1 -0
- package/lib-commonjs/components/AttachmentTagList/renderAttachmentTagList.js +20 -0
- package/lib-commonjs/components/AttachmentTagList/renderAttachmentTagList.js.map +1 -0
- package/lib-commonjs/components/AttachmentTagList/useAttachmentTagList.js +33 -0
- package/lib-commonjs/components/AttachmentTagList/useAttachmentTagList.js.map +1 -0
- package/lib-commonjs/components/AttachmentTagList/useAttachmentTagListContextValues.js +20 -0
- package/lib-commonjs/components/AttachmentTagList/useAttachmentTagListContextValues.js.map +1 -0
- package/lib-commonjs/components/AttachmentTagList/useAttachmentTagListStyles.js +30 -0
- package/lib-commonjs/components/AttachmentTagList/useAttachmentTagListStyles.js.map +1 -0
- package/lib-commonjs/components/index.js +8 -0
- package/lib-commonjs/components/index.js.map +1 -0
- package/lib-commonjs/contexts/attachmentTagListContext.js +28 -0
- package/lib-commonjs/contexts/attachmentTagListContext.js.map +1 -0
- package/lib-commonjs/index.js +45 -0
- package/lib-commonjs/index.js.map +1 -0
- package/package.json +40 -0
package/CHANGELOG.json
ADDED
|
@@ -0,0 +1,662 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@fluentui-copilot/react-attachments",
|
|
3
|
+
"entries": [
|
|
4
|
+
{
|
|
5
|
+
"date": "Wed, 13 Mar 2024 04:09:45 GMT",
|
|
6
|
+
"tag": "@fluentui-copilot/react-attachments_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-attachments",
|
|
13
|
+
"commit": "not available",
|
|
14
|
+
"comment": "Release nightly"
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"author": "beachball",
|
|
18
|
+
"package": "@fluentui-copilot/react-attachments",
|
|
19
|
+
"comment": "Bump @fluentui-copilot/react-provider to v0.0.0-nightly-20240313-0404-8abc883d.1",
|
|
20
|
+
"commit": "6953fd36fa1f984fe4271557d1ab88e559056e47"
|
|
21
|
+
}
|
|
22
|
+
]
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"date": "Mon, 11 Mar 2024 23:45:37 GMT",
|
|
27
|
+
"tag": "@fluentai/attachments_v0.7.1",
|
|
28
|
+
"version": "0.7.1",
|
|
29
|
+
"comments": {
|
|
30
|
+
"none": [
|
|
31
|
+
{
|
|
32
|
+
"author": "tristan.watanabe@gmail.com",
|
|
33
|
+
"package": "@fluentai/attachments",
|
|
34
|
+
"commit": "15071d732e66bc42ee133e915bde02896270deb9",
|
|
35
|
+
"comment": "chore: scaffold AttachmentTagItem component."
|
|
36
|
+
}
|
|
37
|
+
]
|
|
38
|
+
}
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"date": "Fri, 08 Mar 2024 00:29:21 GMT",
|
|
42
|
+
"tag": "@fluentai/attachments_v0.7.1",
|
|
43
|
+
"version": "0.7.1",
|
|
44
|
+
"comments": {
|
|
45
|
+
"none": [
|
|
46
|
+
{
|
|
47
|
+
"author": "owcampbe@microsoft.com",
|
|
48
|
+
"package": "@fluentai/attachments",
|
|
49
|
+
"commit": "877a68c8be7de14d9efe095e578f44733b317914",
|
|
50
|
+
"comment": "Merge branch '0.11' into user/owcampbe/Update0.11"
|
|
51
|
+
}
|
|
52
|
+
]
|
|
53
|
+
}
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
"date": "Fri, 01 Mar 2024 20:07:29 GMT",
|
|
57
|
+
"tag": "@fluentai/attachments_v0.7.1",
|
|
58
|
+
"version": "0.7.1",
|
|
59
|
+
"comments": {
|
|
60
|
+
"none": [
|
|
61
|
+
{
|
|
62
|
+
"author": "estebanmu@microsoft.com",
|
|
63
|
+
"package": "@fluentai/attachments",
|
|
64
|
+
"commit": "cb1a21b8465c9a9ff86e52d29a398af35f9d0d3d",
|
|
65
|
+
"comment": "chore: Add tests for SSR."
|
|
66
|
+
}
|
|
67
|
+
],
|
|
68
|
+
"patch": [
|
|
69
|
+
{
|
|
70
|
+
"author": "tristan.watanabe@gmail.com",
|
|
71
|
+
"package": "@fluentai/attachments",
|
|
72
|
+
"commit": "4e432ced7f3e552fbce17ef43c4bd8db0b296249",
|
|
73
|
+
"comment": "fix: hook up AttachmentTag ref correctly."
|
|
74
|
+
}
|
|
75
|
+
]
|
|
76
|
+
}
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"date": "Thu, 15 Feb 2024 20:24:48 GMT",
|
|
80
|
+
"tag": "@fluentai/attachments_v0.7.0",
|
|
81
|
+
"version": "0.7.0",
|
|
82
|
+
"comments": {
|
|
83
|
+
"minor": [
|
|
84
|
+
{
|
|
85
|
+
"author": "tristan.watanabe@gmail.com",
|
|
86
|
+
"package": "@fluentai/attachments",
|
|
87
|
+
"commit": "cd80fe52dd6c3d2b48c96c0ddb26b31cc232b4ca",
|
|
88
|
+
"comment": "chore: initial release to NPM."
|
|
89
|
+
}
|
|
90
|
+
],
|
|
91
|
+
"none": [
|
|
92
|
+
{
|
|
93
|
+
"author": "tristan.watanabe@gmail.com",
|
|
94
|
+
"package": "@fluentai/attachments",
|
|
95
|
+
"commit": "31ae3ad9098d67abbaf7ac83c402312748bc2ea8",
|
|
96
|
+
"comment": "chore: no longer shipping test related files."
|
|
97
|
+
}
|
|
98
|
+
]
|
|
99
|
+
}
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"date": "Thu, 15 Feb 2024 19:00:00 GMT",
|
|
103
|
+
"tag": "@fluentai/attachments_v0.6.4",
|
|
104
|
+
"version": "0.6.4",
|
|
105
|
+
"comments": {
|
|
106
|
+
"none": [
|
|
107
|
+
{
|
|
108
|
+
"author": "tristan.watanabe@gmail.com",
|
|
109
|
+
"package": "@fluentai/attachments",
|
|
110
|
+
"commit": "12c785efdd7e75542f017b70fff7a2d5b00b3df9",
|
|
111
|
+
"comment": "chore: disallow minor package bumps."
|
|
112
|
+
}
|
|
113
|
+
]
|
|
114
|
+
}
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
"date": "Thu, 18 Jan 2024 00:29:43 GMT",
|
|
118
|
+
"tag": "@fluentai/attachments_v0.6.3",
|
|
119
|
+
"version": "0.6.3",
|
|
120
|
+
"comments": {
|
|
121
|
+
"patch": [
|
|
122
|
+
{
|
|
123
|
+
"author": "tristan.watanabe@gmail.com",
|
|
124
|
+
"package": "@fluentai/attachments",
|
|
125
|
+
"commit": "b89ef2f1c0a794bca702f11e63ea8f92ce3688d8",
|
|
126
|
+
"comment": "chore: remove unneeded peer dependencies."
|
|
127
|
+
}
|
|
128
|
+
]
|
|
129
|
+
}
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
"date": "Tue, 09 Jan 2024 21:07:23 GMT",
|
|
133
|
+
"tag": "@fluentai/attachments_v0.6.2",
|
|
134
|
+
"version": "0.6.2",
|
|
135
|
+
"comments": {
|
|
136
|
+
"patch": [
|
|
137
|
+
{
|
|
138
|
+
"author": "etwinter@microsoft.com",
|
|
139
|
+
"package": "@fluentai/attachments",
|
|
140
|
+
"commit": "9cd0bbcfb7077d99236c8c2e5521742f024475e0",
|
|
141
|
+
"comment": "fix: Attachment icon uses correct hover token, improving HC theme"
|
|
142
|
+
}
|
|
143
|
+
]
|
|
144
|
+
}
|
|
145
|
+
},
|
|
146
|
+
{
|
|
147
|
+
"date": "Tue, 12 Dec 2023 16:35:16 GMT",
|
|
148
|
+
"tag": "@fluentai/attachments_v0.6.0",
|
|
149
|
+
"version": "0.6.0",
|
|
150
|
+
"comments": {
|
|
151
|
+
"none": [
|
|
152
|
+
{
|
|
153
|
+
"author": "tristan.watanabe@gmail.com",
|
|
154
|
+
"package": "@fluentai/attachments",
|
|
155
|
+
"commit": "d678a67851c48124410bcf3776fb08dfe2ea3102",
|
|
156
|
+
"comment": "chore: upgrade to use yarn 3."
|
|
157
|
+
}
|
|
158
|
+
],
|
|
159
|
+
"minor": [
|
|
160
|
+
{
|
|
161
|
+
"author": "Humberto.Morimoto@microsoft.com",
|
|
162
|
+
"package": "@fluentai/attachments",
|
|
163
|
+
"commit": "48e80c2b5729686e9c100f31c9a66f48139fc054",
|
|
164
|
+
"comment": "chore: Removing deprecated components in @fluentai/attachments."
|
|
165
|
+
}
|
|
166
|
+
]
|
|
167
|
+
}
|
|
168
|
+
},
|
|
169
|
+
{
|
|
170
|
+
"date": "Wed, 15 Nov 2023 00:55:21 GMT",
|
|
171
|
+
"tag": "@fluentai/attachments_v0.5.0",
|
|
172
|
+
"version": "0.5.0",
|
|
173
|
+
"comments": {
|
|
174
|
+
"patch": [
|
|
175
|
+
{
|
|
176
|
+
"author": "owcampbe@microsoft.com",
|
|
177
|
+
"package": "@fluentai/attachments",
|
|
178
|
+
"commit": "20b677436e31be3a9e0fefffd42ecf6f7837c75f",
|
|
179
|
+
"comment": "chore: Migrate to new slots API."
|
|
180
|
+
},
|
|
181
|
+
{
|
|
182
|
+
"author": "tristan.watanabe@gmail.com",
|
|
183
|
+
"package": "@fluentai/attachments",
|
|
184
|
+
"commit": "0f8bee2a01c127a911afd5974efe899d70bddcf6",
|
|
185
|
+
"comment": "chore: bump peer deep range to latest @fluentui/react-components 9.37.3."
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
"author": "tristan.watanabe@gmail.com",
|
|
189
|
+
"package": "@fluentai/attachments",
|
|
190
|
+
"commit": "b40885976ace4f49dac58829c43ef9d6c39d158c",
|
|
191
|
+
"comment": "fix: align peer dependency ranges with all other react copilot components."
|
|
192
|
+
},
|
|
193
|
+
{
|
|
194
|
+
"author": "tristan.watanabe@gmail.com",
|
|
195
|
+
"package": "@fluentai/attachments",
|
|
196
|
+
"commit": "3b0ca4cdb531c8446509ce04b608f3eb20013e1e",
|
|
197
|
+
"comment": "chore: deprecate AttachmentMenu,AttachmentMenuList,AttachmentMenuTrigger,AttachmentMenuPopover & AttachmentMenuItem."
|
|
198
|
+
}
|
|
199
|
+
],
|
|
200
|
+
"minor": [
|
|
201
|
+
{
|
|
202
|
+
"author": "tristan.watanabe@gmail.com",
|
|
203
|
+
"package": "@fluentai/attachments",
|
|
204
|
+
"commit": "de4d0645ade56badaab3b5e2b72937e02aecf831",
|
|
205
|
+
"comment": "chore: move @fluentui dependencies to peer dependencies."
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
"author": "beachball",
|
|
209
|
+
"package": "@fluentai/attachments",
|
|
210
|
+
"comment": "Bump @fluentai/provider to v0.6.0",
|
|
211
|
+
"commit": "1c9815cdebf4846b7edc4776fb6c711bf02b26f5"
|
|
212
|
+
}
|
|
213
|
+
]
|
|
214
|
+
}
|
|
215
|
+
},
|
|
216
|
+
{
|
|
217
|
+
"date": "Mon, 25 Sep 2023 20:31:08 GMT",
|
|
218
|
+
"tag": "@fluentai/attachments_v0.4.1",
|
|
219
|
+
"version": "0.4.1",
|
|
220
|
+
"comments": {
|
|
221
|
+
"none": [
|
|
222
|
+
{
|
|
223
|
+
"author": "tristan.watanabe@gmail.com",
|
|
224
|
+
"package": "@fluentai/attachments",
|
|
225
|
+
"commit": "5da9480d5a59872ac5148097a287e04d842d6dd6",
|
|
226
|
+
"comment": "chore: update swc transpilation to use swc-transpile script instead of cli."
|
|
227
|
+
}
|
|
228
|
+
],
|
|
229
|
+
"patch": [
|
|
230
|
+
{
|
|
231
|
+
"author": "tristan.watanabe@gmail.com",
|
|
232
|
+
"package": "@fluentai/attachments",
|
|
233
|
+
"commit": "3af73688a366aae72ea810e441c7096635e2efdd",
|
|
234
|
+
"comment": "fix: bump swc core to mitigate transpilation memory leaks."
|
|
235
|
+
},
|
|
236
|
+
{
|
|
237
|
+
"author": "beachball",
|
|
238
|
+
"package": "@fluentai/attachments",
|
|
239
|
+
"comment": "Bump @fluentai/provider to v0.5.1",
|
|
240
|
+
"commit": "f633e55414cd3ed596793f7e8916d87a242d8c0d"
|
|
241
|
+
}
|
|
242
|
+
]
|
|
243
|
+
}
|
|
244
|
+
},
|
|
245
|
+
{
|
|
246
|
+
"date": "Fri, 22 Sep 2023 02:11:56 GMT",
|
|
247
|
+
"tag": "@fluentai/attachments_v0.4.0",
|
|
248
|
+
"version": "0.4.0",
|
|
249
|
+
"comments": {
|
|
250
|
+
"patch": [
|
|
251
|
+
{
|
|
252
|
+
"author": "tristan.watanabe@gmail.com",
|
|
253
|
+
"package": "@fluentai/attachments",
|
|
254
|
+
"commit": "a206564fcbe9ebe96455a8f5e80fb8e508bd8cd8",
|
|
255
|
+
"comment": "chore: bump fluentui v9 dependencies to latest."
|
|
256
|
+
}
|
|
257
|
+
],
|
|
258
|
+
"minor": [
|
|
259
|
+
{
|
|
260
|
+
"author": "beachball",
|
|
261
|
+
"package": "@fluentai/attachments",
|
|
262
|
+
"comment": "Bump @fluentai/provider to v0.5.0",
|
|
263
|
+
"commit": "f6ef7c9c7854fa3f877cb0d4b9e8e8818b3b50a2"
|
|
264
|
+
}
|
|
265
|
+
]
|
|
266
|
+
}
|
|
267
|
+
},
|
|
268
|
+
{
|
|
269
|
+
"date": "Fri, 08 Sep 2023 18:32:55 GMT",
|
|
270
|
+
"tag": "@fluentai/attachments_v0.3.0",
|
|
271
|
+
"version": "0.3.0",
|
|
272
|
+
"comments": {
|
|
273
|
+
"minor": [
|
|
274
|
+
{
|
|
275
|
+
"author": "mgodbolt@microsoft.com",
|
|
276
|
+
"package": "@fluentai/attachments",
|
|
277
|
+
"commit": "98d63c1ce25b70114ec4bc2c0839808b84ab237d",
|
|
278
|
+
"comment": "[breaking]: removed default Tooltip that showed even if text was not truncated"
|
|
279
|
+
}
|
|
280
|
+
],
|
|
281
|
+
"patch": [
|
|
282
|
+
{
|
|
283
|
+
"author": "tristan.watanabe@gmail.com",
|
|
284
|
+
"package": "@fluentai/attachments",
|
|
285
|
+
"commit": "62a924edba08635ca57d8e14c1e2c83312cc05c7",
|
|
286
|
+
"comment": "test: add playwright e2e testing setup and WCAG testing."
|
|
287
|
+
}
|
|
288
|
+
]
|
|
289
|
+
}
|
|
290
|
+
},
|
|
291
|
+
{
|
|
292
|
+
"date": "Tue, 22 Aug 2023 23:54:15 GMT",
|
|
293
|
+
"tag": "@fluentai/attachments_v0.2.1",
|
|
294
|
+
"version": "0.2.1",
|
|
295
|
+
"comments": {
|
|
296
|
+
"patch": [
|
|
297
|
+
{
|
|
298
|
+
"author": "tristan.watanabe@gmail.com",
|
|
299
|
+
"package": "@fluentai/attachments",
|
|
300
|
+
"commit": "85042a8790abc66f6cd011356ac3756d34748973",
|
|
301
|
+
"comment": "chore: bump fluentui dependencies."
|
|
302
|
+
},
|
|
303
|
+
{
|
|
304
|
+
"author": "eysjiang@gmail.com",
|
|
305
|
+
"package": "@fluentai/attachments",
|
|
306
|
+
"commit": "053b6ace2e6f9433ad062d44865b2d5488760f6b",
|
|
307
|
+
"comment": "add useCustomStyleHook to all components"
|
|
308
|
+
},
|
|
309
|
+
{
|
|
310
|
+
"author": "Humberto.Morimoto@microsoft.com",
|
|
311
|
+
"package": "@fluentai/attachments",
|
|
312
|
+
"commit": "60c280441637ccba46405d009d9b58839cc5a457",
|
|
313
|
+
"comment": "chore: Use menu util exported from fluentui and remove duplicated local one."
|
|
314
|
+
},
|
|
315
|
+
{
|
|
316
|
+
"author": "beachball",
|
|
317
|
+
"package": "@fluentai/attachments",
|
|
318
|
+
"comment": "Bump @fluentai/provider to v0.4.0",
|
|
319
|
+
"commit": "d24e43b7f82b52f9728a6c977222a5f1bc23bb0e"
|
|
320
|
+
}
|
|
321
|
+
],
|
|
322
|
+
"none": [
|
|
323
|
+
{
|
|
324
|
+
"author": "mgodbolt@microsoft.com",
|
|
325
|
+
"package": "@fluentai/attachments",
|
|
326
|
+
"commit": "f5bb0b1b247fcd53b92d73bc57ded8551c8163d3",
|
|
327
|
+
"comment": "remove the unstable suffix from the new custom styles api"
|
|
328
|
+
}
|
|
329
|
+
]
|
|
330
|
+
}
|
|
331
|
+
},
|
|
332
|
+
{
|
|
333
|
+
"date": "Thu, 10 Aug 2023 17:07:07 GMT",
|
|
334
|
+
"tag": "@fluentai/attachments_v0.2.0",
|
|
335
|
+
"version": "0.2.0",
|
|
336
|
+
"comments": {
|
|
337
|
+
"none": [
|
|
338
|
+
{
|
|
339
|
+
"author": "eysjiang@gmail.com",
|
|
340
|
+
"package": "@fluentai/attachments",
|
|
341
|
+
"commit": "efd4619a9480e31a6406210fee8c6e74d66f8987",
|
|
342
|
+
"comment": "bump react-components version"
|
|
343
|
+
},
|
|
344
|
+
{
|
|
345
|
+
"author": "tristan.watanabe@gmail.com",
|
|
346
|
+
"package": "@fluentai/attachments",
|
|
347
|
+
"commit": "1499ae1d03b0bf17d7afc0e063601cb4113ba86d",
|
|
348
|
+
"comment": "chore: replace @nrwl references with @nx"
|
|
349
|
+
},
|
|
350
|
+
{
|
|
351
|
+
"author": "tristan.watanabe@gmail.com",
|
|
352
|
+
"package": "@fluentai/attachments",
|
|
353
|
+
"commit": "b2993df8489fa316982f409161b9ca2e408b44a4",
|
|
354
|
+
"comment": "chore: add bundle size testing."
|
|
355
|
+
}
|
|
356
|
+
]
|
|
357
|
+
}
|
|
358
|
+
},
|
|
359
|
+
{
|
|
360
|
+
"date": "Mon, 24 Jul 2023 22:38:51 GMT",
|
|
361
|
+
"tag": "@fluentai/attachments_v0.2.0",
|
|
362
|
+
"version": "0.2.0",
|
|
363
|
+
"comments": {
|
|
364
|
+
"none": [
|
|
365
|
+
{
|
|
366
|
+
"author": "eysjiang@gmail.com",
|
|
367
|
+
"package": "@fluentai/attachments",
|
|
368
|
+
"commit": "90f482102fb4439cc5f8dfb1c58209f5a712393f",
|
|
369
|
+
"comment": "add version"
|
|
370
|
+
},
|
|
371
|
+
{
|
|
372
|
+
"author": "tristan.watanabe@gmail.com",
|
|
373
|
+
"package": "@fluentai/attachments",
|
|
374
|
+
"commit": "64dd83687bcb7de0570a0a18f4b79c94f0f56680",
|
|
375
|
+
"comment": "chore: remove unneeded .babelrc.json file."
|
|
376
|
+
},
|
|
377
|
+
{
|
|
378
|
+
"author": "mgodbolt@microsoft.com",
|
|
379
|
+
"package": "@fluentai/attachments",
|
|
380
|
+
"commit": "add2ea5b6e4c81f53f259ff4761e9672698812d1",
|
|
381
|
+
"comment": "remove warnings from controls"
|
|
382
|
+
}
|
|
383
|
+
],
|
|
384
|
+
"patch": [
|
|
385
|
+
{
|
|
386
|
+
"author": "mgodbolt@microsoft.com",
|
|
387
|
+
"package": "@fluentai/attachments",
|
|
388
|
+
"commit": "6b08c2438c7cd35083eee6f224269d7beda6cd05",
|
|
389
|
+
"comment": "Added explicit button color to ensure dark mode compatibility"
|
|
390
|
+
},
|
|
391
|
+
{
|
|
392
|
+
"author": "mgodbolt@microsoft.com",
|
|
393
|
+
"package": "@fluentai/attachments",
|
|
394
|
+
"commit": "987a7b548fbb3b07bd37faccbe3547624cb70d72",
|
|
395
|
+
"comment": "chore: bump react-components to latest"
|
|
396
|
+
}
|
|
397
|
+
],
|
|
398
|
+
"minor": [
|
|
399
|
+
{
|
|
400
|
+
"author": "beachball",
|
|
401
|
+
"package": "@fluentai/attachments",
|
|
402
|
+
"comment": "Bump @fluentai/provider to v0.3.0",
|
|
403
|
+
"commit": "045c9887a4f0b786cfc2fe1366e5c34a3007b8b8"
|
|
404
|
+
}
|
|
405
|
+
]
|
|
406
|
+
}
|
|
407
|
+
},
|
|
408
|
+
{
|
|
409
|
+
"date": "Wed, 28 Jun 2023 21:11:32 GMT",
|
|
410
|
+
"tag": "@fluentai/attachments_v0.1.7",
|
|
411
|
+
"version": "0.1.7",
|
|
412
|
+
"comments": {
|
|
413
|
+
"patch": [
|
|
414
|
+
{
|
|
415
|
+
"author": "tristan.watanabe@gmail.com",
|
|
416
|
+
"package": "@fluentai/attachments",
|
|
417
|
+
"commit": "1a9fea7f28553690ebec7a02795ab66e9a8d9463",
|
|
418
|
+
"comment": "fix: only use griffel preset during babel transpilation in build step."
|
|
419
|
+
},
|
|
420
|
+
{
|
|
421
|
+
"author": "beachball",
|
|
422
|
+
"package": "@fluentai/attachments",
|
|
423
|
+
"comment": "Bump @fluentai/provider to v0.2.2",
|
|
424
|
+
"commit": "1a9fea7f28553690ebec7a02795ab66e9a8d9463"
|
|
425
|
+
}
|
|
426
|
+
],
|
|
427
|
+
"none": [
|
|
428
|
+
{
|
|
429
|
+
"author": "Humberto.Morimoto@microsoft.com",
|
|
430
|
+
"package": "@fluentai/attachments",
|
|
431
|
+
"commit": "ffa821cd89a0a89af74f474b6bb094bda8cd4469",
|
|
432
|
+
"comment": "chore: Moving attachments into react-copilot folder."
|
|
433
|
+
}
|
|
434
|
+
]
|
|
435
|
+
}
|
|
436
|
+
},
|
|
437
|
+
{
|
|
438
|
+
"date": "Mon, 26 Jun 2023 18:30:47 GMT",
|
|
439
|
+
"tag": "@fluentai/attachments_v0.1.6",
|
|
440
|
+
"version": "0.1.6",
|
|
441
|
+
"comments": {
|
|
442
|
+
"none": [
|
|
443
|
+
{
|
|
444
|
+
"author": "Humberto.Morimoto@microsoft.com",
|
|
445
|
+
"package": "@fluentai/attachments",
|
|
446
|
+
"commit": "485b589d98017adf7de70001b596fa6a33e49adf",
|
|
447
|
+
"comment": "docs: Fixing typo in AttachmentMenuComplete story."
|
|
448
|
+
},
|
|
449
|
+
{
|
|
450
|
+
"author": "tristan.watanabe@gmail.com",
|
|
451
|
+
"package": "@fluentai/attachments",
|
|
452
|
+
"commit": "be6745148a63d8e2b8d37c8a731273dc8a516379",
|
|
453
|
+
"comment": "docs: replace JSDoc comment with regular comment to prevent SB from rendering TODO items to Docs page."
|
|
454
|
+
},
|
|
455
|
+
{
|
|
456
|
+
"author": "tristan.watanabe@gmail.com",
|
|
457
|
+
"package": "@fluentai/attachments",
|
|
458
|
+
"commit": "d7b549b8b2745c1287a45ca8ad9839c81aaecda5",
|
|
459
|
+
"comment": "chore: update .babelrc.json file to import from root."
|
|
460
|
+
},
|
|
461
|
+
{
|
|
462
|
+
"author": "mgodbolt@microsoft.com",
|
|
463
|
+
"package": "@fluentai/attachments",
|
|
464
|
+
"commit": "b0c39bae6727c751f6289a3867a5b2db0c86097b",
|
|
465
|
+
"comment": "docs cleanup"
|
|
466
|
+
}
|
|
467
|
+
],
|
|
468
|
+
"patch": [
|
|
469
|
+
{
|
|
470
|
+
"author": "tristan.watanabe@gmail.com",
|
|
471
|
+
"package": "@fluentai/attachments",
|
|
472
|
+
"commit": "aff477510087d77c1949c8cd94165cfe271567db",
|
|
473
|
+
"comment": "chore: add LICENSE file to package."
|
|
474
|
+
},
|
|
475
|
+
{
|
|
476
|
+
"author": "seanmonahan@microsoft.com",
|
|
477
|
+
"package": "@fluentai/attachments",
|
|
478
|
+
"commit": "b6b4d7dbc2b4ed8f939e82e75ae7980711c35b3c",
|
|
479
|
+
"comment": "chore: update babel configuration to support Griffel build time optimizations."
|
|
480
|
+
},
|
|
481
|
+
{
|
|
482
|
+
"author": "beachball",
|
|
483
|
+
"package": "@fluentai/attachments",
|
|
484
|
+
"comment": "Bump @fluentai/provider to v0.2.1",
|
|
485
|
+
"commit": "b6b4d7dbc2b4ed8f939e82e75ae7980711c35b3c"
|
|
486
|
+
}
|
|
487
|
+
]
|
|
488
|
+
}
|
|
489
|
+
},
|
|
490
|
+
{
|
|
491
|
+
"date": "Mon, 12 Jun 2023 20:28:32 GMT",
|
|
492
|
+
"tag": "@fluentai/attachments_v0.1.5",
|
|
493
|
+
"version": "0.1.5",
|
|
494
|
+
"comments": {
|
|
495
|
+
"patch": [
|
|
496
|
+
{
|
|
497
|
+
"author": "Humberto.Morimoto@microsoft.com",
|
|
498
|
+
"package": "@fluentai/attachments",
|
|
499
|
+
"commit": "752911a167dedf875d392eb7920821c1a8fd3c99",
|
|
500
|
+
"comment": "chore: Moving AttachmentTag and AttachmentTagList out of 'in development'."
|
|
501
|
+
},
|
|
502
|
+
{
|
|
503
|
+
"author": "mgodbolt@microsoft.com",
|
|
504
|
+
"package": "@fluentai/attachments",
|
|
505
|
+
"commit": "9732a0eeb12a875b45628786880e006ef9b822bf",
|
|
506
|
+
"comment": "fix: add provider dependency"
|
|
507
|
+
},
|
|
508
|
+
{
|
|
509
|
+
"author": "makotom@microsoft.com",
|
|
510
|
+
"package": "@fluentai/attachments",
|
|
511
|
+
"commit": "deecd7796de88acd9f6e5fe588f500fe959ec302",
|
|
512
|
+
"comment": "feat: Adding initial AttachmentMenu, AttachmentMenuPopover and AttachmentMenuTrigger components."
|
|
513
|
+
},
|
|
514
|
+
{
|
|
515
|
+
"author": "mgodbolt@microsoft.com",
|
|
516
|
+
"package": "@fluentai/attachments",
|
|
517
|
+
"commit": "d817b7ca19559b9564f7db2c27fcb6063bea8e09",
|
|
518
|
+
"comment": "add package dependencies"
|
|
519
|
+
},
|
|
520
|
+
{
|
|
521
|
+
"author": "Humberto.Morimoto@microsoft.com",
|
|
522
|
+
"package": "@fluentai/attachments",
|
|
523
|
+
"commit": "569ad9850ca2b3b1bbd6b0fb8b60168164612ad5",
|
|
524
|
+
"comment": "feat: Building end-to-end example and adding callbacks for adding and removing attachments."
|
|
525
|
+
},
|
|
526
|
+
{
|
|
527
|
+
"author": "tristan.watanabe@gmail.com",
|
|
528
|
+
"package": "@fluentai/attachments",
|
|
529
|
+
"commit": "1ab8bf651fdf863478c75c070166260421bf6a80",
|
|
530
|
+
"comment": "chore: bump @fluentui/react-components and shared-contexts dependency to latest."
|
|
531
|
+
},
|
|
532
|
+
{
|
|
533
|
+
"author": "makotom@microsoft.com",
|
|
534
|
+
"package": "@fluentai/attachments",
|
|
535
|
+
"commit": "04fd72e29d0ec15c0256b94b29b4f95634ce9b54",
|
|
536
|
+
"comment": "fix: Fixing some a11y issues in the AttachmentMenu pattern."
|
|
537
|
+
},
|
|
538
|
+
{
|
|
539
|
+
"author": "tristan.watanabe@gmail.com",
|
|
540
|
+
"package": "@fluentai/attachments",
|
|
541
|
+
"commit": "5458218afef8ec1d2e4bf9be68b6c2ccdff697ae",
|
|
542
|
+
"comment": "chore: bump @fluentui/react-icons to 2.0.201."
|
|
543
|
+
},
|
|
544
|
+
{
|
|
545
|
+
"author": "tristan.watanabe@gmail.com",
|
|
546
|
+
"package": "@fluentai/attachments",
|
|
547
|
+
"commit": "0e49d9fa5b780cc1211e4b917d14a60f87443493",
|
|
548
|
+
"comment": "fix: add missing fluentui dependencies to package.json."
|
|
549
|
+
},
|
|
550
|
+
{
|
|
551
|
+
"author": "tristan.watanabe@gmail.com",
|
|
552
|
+
"package": "@fluentai/attachments",
|
|
553
|
+
"commit": "e9bbc512bea09ec244ac986657e173f3525d7025",
|
|
554
|
+
"comment": "fix: add missing dependencies."
|
|
555
|
+
},
|
|
556
|
+
{
|
|
557
|
+
"author": "beachball",
|
|
558
|
+
"package": "@fluentai/attachments",
|
|
559
|
+
"comment": "Bump @fluentai/provider to v0.2.0",
|
|
560
|
+
"commit": "296df4bd9c15df69fca4ce24f09b9bf7b490b693"
|
|
561
|
+
}
|
|
562
|
+
],
|
|
563
|
+
"none": [
|
|
564
|
+
{
|
|
565
|
+
"author": "tristan.watanabe@gmail.com",
|
|
566
|
+
"package": "@fluentai/attachments",
|
|
567
|
+
"commit": "590bd4bfe08d708aa7a9310c2332faa9fdab90fd",
|
|
568
|
+
"comment": "chore: enable conformance testing."
|
|
569
|
+
}
|
|
570
|
+
]
|
|
571
|
+
}
|
|
572
|
+
},
|
|
573
|
+
{
|
|
574
|
+
"date": "Mon, 22 May 2023 18:06:18 GMT",
|
|
575
|
+
"tag": "@fluentai/attachments_v0.1.4",
|
|
576
|
+
"version": "0.1.4",
|
|
577
|
+
"comments": {
|
|
578
|
+
"patch": [
|
|
579
|
+
{
|
|
580
|
+
"author": "Humberto.Morimoto@microsoft.com",
|
|
581
|
+
"package": "@fluentai/attachments",
|
|
582
|
+
"commit": "6e45c0311c62eda7a920193fd6d1502d61047b35",
|
|
583
|
+
"comment": "feat: Adding initial AttachmentMenuItem and AttachmentMenuList components."
|
|
584
|
+
},
|
|
585
|
+
{
|
|
586
|
+
"author": "makotom@microsoft.com",
|
|
587
|
+
"package": "@fluentai/attachments",
|
|
588
|
+
"commit": "6e45c0311c62eda7a920193fd6d1502d61047b35",
|
|
589
|
+
"comment": "fix: Make AttachmentTag and AttachmentTagList more accessible."
|
|
590
|
+
}
|
|
591
|
+
],
|
|
592
|
+
"none": [
|
|
593
|
+
{
|
|
594
|
+
"author": "tristan.watanabe@gmail.com",
|
|
595
|
+
"package": "@fluentai/attachments",
|
|
596
|
+
"commit": "6e45c0311c62eda7a920193fd6d1502d61047b35",
|
|
597
|
+
"comment": "chore: enable minor beachball changes."
|
|
598
|
+
}
|
|
599
|
+
]
|
|
600
|
+
}
|
|
601
|
+
},
|
|
602
|
+
{
|
|
603
|
+
"date": "Mon, 08 May 2023 15:45:26 GMT",
|
|
604
|
+
"tag": "@fluentai/attachments_v0.1.3",
|
|
605
|
+
"version": "0.1.3",
|
|
606
|
+
"comments": {
|
|
607
|
+
"patch": [
|
|
608
|
+
{
|
|
609
|
+
"author": "tristan.watanabe@gmail.com",
|
|
610
|
+
"package": "@fluentai/attachments",
|
|
611
|
+
"commit": "3b1eba552f3d02d6a335ef94d1f2ca1ee5f26ac6",
|
|
612
|
+
"comment": "fix: publish missing lib and lib-commonjs folders."
|
|
613
|
+
}
|
|
614
|
+
]
|
|
615
|
+
}
|
|
616
|
+
},
|
|
617
|
+
{
|
|
618
|
+
"date": "Mon, 08 May 2023 14:06:39 GMT",
|
|
619
|
+
"tag": "@fluentai/attachments_v0.1.2",
|
|
620
|
+
"version": "0.1.2",
|
|
621
|
+
"comments": {
|
|
622
|
+
"none": [
|
|
623
|
+
{
|
|
624
|
+
"author": "tristan.watanabe@gmail.com",
|
|
625
|
+
"package": "@fluentai/attachments",
|
|
626
|
+
"commit": "aa8cc7ebe8ec134e1dc6983c3e219d6b30d479d7",
|
|
627
|
+
"comment": "chore: run migration generator."
|
|
628
|
+
}
|
|
629
|
+
],
|
|
630
|
+
"patch": [
|
|
631
|
+
{
|
|
632
|
+
"author": "tristan.watanabe@gmail.com",
|
|
633
|
+
"package": "@fluentai/attachments",
|
|
634
|
+
"commit": "aa8cc7ebe8ec134e1dc6983c3e219d6b30d479d7",
|
|
635
|
+
"comment": "chore: remove star exports and explicitly define package exports."
|
|
636
|
+
},
|
|
637
|
+
{
|
|
638
|
+
"author": "Humberto.Morimoto@microsoft.com",
|
|
639
|
+
"package": "@fluentai/attachments",
|
|
640
|
+
"commit": "aa8cc7ebe8ec134e1dc6983c3e219d6b30d479d7",
|
|
641
|
+
"comment": "chore: Scaffolding components needed for attach menu pattern."
|
|
642
|
+
}
|
|
643
|
+
]
|
|
644
|
+
}
|
|
645
|
+
},
|
|
646
|
+
{
|
|
647
|
+
"date": "Wed, 03 May 2023 22:41:34 GMT",
|
|
648
|
+
"tag": "@fluentai/attachments_v0.1.1",
|
|
649
|
+
"version": "0.1.1",
|
|
650
|
+
"comments": {
|
|
651
|
+
"patch": [
|
|
652
|
+
{
|
|
653
|
+
"author": "Humberto.Morimoto@microsoft.com",
|
|
654
|
+
"package": "@fluentai/attachments",
|
|
655
|
+
"commit": "ebd9ced9c53d3ec4015d6adbc8b96ec87b9bf328",
|
|
656
|
+
"comment": "chore: Making @fluentai/attachments public."
|
|
657
|
+
}
|
|
658
|
+
]
|
|
659
|
+
}
|
|
660
|
+
}
|
|
661
|
+
]
|
|
662
|
+
}
|