@atlaskit/editor-plugin-mentions 1.4.1 → 1.5.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/.eslintrc.js +4 -4
- package/CHANGELOG.md +169 -151
- package/LICENSE.md +6 -8
- package/dist/cjs/nodeviews/mention.js +29 -8
- package/dist/cjs/ui/Mention/index.js +4 -0
- package/dist/cjs/ui/Mention/mention.js +182 -0
- package/dist/es2019/nodeviews/mention.js +29 -8
- package/dist/es2019/ui/Mention/index.js +5 -2
- package/dist/es2019/ui/Mention/mention.js +120 -0
- package/dist/esm/nodeviews/mention.js +29 -8
- package/dist/esm/ui/Mention/index.js +5 -2
- package/dist/esm/ui/Mention/mention.js +173 -0
- package/dist/types/types.d.ts +2 -0
- package/dist/types/ui/Mention/index.d.ts +4 -0
- package/dist/types/ui/Mention/mention.d.ts +18 -0
- package/dist/types-ts4.5/types.d.ts +2 -0
- package/dist/types-ts4.5/ui/Mention/index.d.ts +4 -0
- package/dist/types-ts4.5/ui/Mention/mention.d.ts +18 -0
- package/package.json +9 -5
- package/report.api.md +27 -26
package/.eslintrc.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
module.exports = {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
2
|
+
rules: {
|
|
3
|
+
'@atlaskit/design-system/consistent-css-prop-usage': 'warn',
|
|
4
|
+
'@repo/internal/react/no-class-components': 'warn',
|
|
5
|
+
},
|
|
6
6
|
};
|
package/CHANGELOG.md
CHANGED
|
@@ -1,412 +1,430 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-mentions
|
|
2
2
|
|
|
3
|
+
## 1.5.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
|
|
9
|
+
## 1.5.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- [#103169](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/103169)
|
|
14
|
+
[`e9d45fc94064`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/e9d45fc94064) -
|
|
15
|
+
[ux] [ED-23248] -
|
|
16
|
+
|
|
17
|
+
**@atlaskit/editor-core**: Added optional profilecardProvider to Mention plugin in universal
|
|
18
|
+
composable editor **@atlaskit/editor-plugin-mentions**: Made mentions render with profile cards on
|
|
19
|
+
click if the feature flag: `platform.editor.mentions-in-editor-popup-on-click` is turned on
|
|
20
|
+
|
|
3
21
|
## 1.4.1
|
|
4
22
|
|
|
5
23
|
### Patch Changes
|
|
6
24
|
|
|
7
|
-
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
-
|
|
25
|
+
- [#102478](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/102478)
|
|
26
|
+
[`3378951608b0`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/3378951608b0) -
|
|
27
|
+
[ED-23332] Update adf-schema package to 36.10.1
|
|
28
|
+
- Updated dependencies
|
|
11
29
|
|
|
12
30
|
## 1.4.0
|
|
13
31
|
|
|
14
32
|
### Minor Changes
|
|
15
33
|
|
|
16
|
-
-
|
|
17
|
-
|
|
18
|
-
|
|
34
|
+
- [#103099](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/103099)
|
|
35
|
+
[`ab382e121799`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/ab382e121799) -
|
|
36
|
+
[ux] [ED-23248] -
|
|
19
37
|
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
38
|
+
**@atlaskit/editor-core**: REVERT: Added optional profilecardProvider to Mention plugin in
|
|
39
|
+
universal composable editor **@atlaskit/editor-plugin-mentions**: REVERT: Made mentions render
|
|
40
|
+
with profile cards on click if the feature flag:
|
|
41
|
+
`platform.editor.mentions-in-editor-popup-on-click` is turned on
|
|
24
42
|
|
|
25
43
|
## 1.3.0
|
|
26
44
|
|
|
27
45
|
### Minor Changes
|
|
28
46
|
|
|
29
|
-
-
|
|
30
|
-
|
|
31
|
-
|
|
47
|
+
- [#98647](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/98647)
|
|
48
|
+
[`19eb20751225`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/19eb20751225) -
|
|
49
|
+
[ux] [ED-23248] -
|
|
32
50
|
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
51
|
+
**@atlaskit/editor-core**: Added optional profilecardProvider to Mention plugin in universal
|
|
52
|
+
composable editor **@atlaskit/editor-plugin-mentions**: Made mentions render with profile cards on
|
|
53
|
+
click if the feature flag: `platform.editor.mentions-in-editor-popup-on-click` is turned on
|
|
36
54
|
|
|
37
55
|
## 1.2.1
|
|
38
56
|
|
|
39
57
|
### Patch Changes
|
|
40
58
|
|
|
41
|
-
-
|
|
42
|
-
|
|
43
|
-
|
|
59
|
+
- [#101524](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/101524)
|
|
60
|
+
[`4821570088e6`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/4821570088e6) -
|
|
61
|
+
ED-23362 Bump ADF schema to version 36.8.1 and add support for adf validation and transformation
|
|
44
62
|
|
|
45
63
|
## 1.2.0
|
|
46
64
|
|
|
47
65
|
### Minor Changes
|
|
48
66
|
|
|
49
|
-
-
|
|
50
|
-
|
|
51
|
-
|
|
67
|
+
- [#99579](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/99579)
|
|
68
|
+
[`f222af5687e9`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/f222af5687e9) -
|
|
69
|
+
Bump adf-schema to 36.3.0 and adf-schema-json to 1.14.0
|
|
52
70
|
|
|
53
71
|
### Patch Changes
|
|
54
72
|
|
|
55
|
-
-
|
|
73
|
+
- Updated dependencies
|
|
56
74
|
|
|
57
75
|
## 1.1.8
|
|
58
76
|
|
|
59
77
|
### Patch Changes
|
|
60
78
|
|
|
61
|
-
-
|
|
79
|
+
- Updated dependencies
|
|
62
80
|
|
|
63
81
|
## 1.1.7
|
|
64
82
|
|
|
65
83
|
### Patch Changes
|
|
66
84
|
|
|
67
|
-
-
|
|
68
|
-
|
|
69
|
-
|
|
85
|
+
- [#98103](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/98103)
|
|
86
|
+
[`14c055a65f67`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/14c055a65f67) -
|
|
87
|
+
removed invite from mention experiment check
|
|
70
88
|
|
|
71
89
|
## 1.1.6
|
|
72
90
|
|
|
73
91
|
### Patch Changes
|
|
74
92
|
|
|
75
|
-
-
|
|
76
|
-
|
|
77
|
-
|
|
93
|
+
- [#97599](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/97599)
|
|
94
|
+
[`32c3130b08fe`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/32c3130b08fe) -
|
|
95
|
+
[ED-22282] Bump adf-schema to 36.1.0
|
|
78
96
|
|
|
79
97
|
## 1.1.5
|
|
80
98
|
|
|
81
99
|
### Patch Changes
|
|
82
100
|
|
|
83
|
-
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
101
|
+
- [#97698](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/97698)
|
|
102
|
+
[`1c7b378c0d3b`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/1c7b378c0d3b) -
|
|
103
|
+
[HOT-108999] We had an incident where the cursor jumps back a character in table headers for any
|
|
104
|
+
language triggering composition on an empty line.This was fixed in a patch bump of
|
|
105
|
+
prosemirror-view. https://github.com/ProseMirror/prosemirror-view/compare/1.33.4...1.33.5
|
|
88
106
|
|
|
89
107
|
## 1.1.4
|
|
90
108
|
|
|
91
109
|
### Patch Changes
|
|
92
110
|
|
|
93
|
-
-
|
|
111
|
+
- Updated dependencies
|
|
94
112
|
|
|
95
113
|
## 1.1.3
|
|
96
114
|
|
|
97
115
|
### Patch Changes
|
|
98
116
|
|
|
99
|
-
-
|
|
100
|
-
|
|
101
|
-
|
|
117
|
+
- [#96237](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/96237)
|
|
118
|
+
[`0401e7b5a88e`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/0401e7b5a88e) -
|
|
119
|
+
[ED-23102] Bump ADF schema to version 35.12.2
|
|
102
120
|
|
|
103
121
|
## 1.1.2
|
|
104
122
|
|
|
105
123
|
### Patch Changes
|
|
106
124
|
|
|
107
|
-
-
|
|
108
|
-
|
|
109
|
-
|
|
125
|
+
- [#94901](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/94901)
|
|
126
|
+
[`da964fcdc828`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/da964fcdc828) -
|
|
127
|
+
[ED-23097] Bump ADF schema to version 35.12.1
|
|
110
128
|
|
|
111
129
|
## 1.1.1
|
|
112
130
|
|
|
113
131
|
### Patch Changes
|
|
114
132
|
|
|
115
|
-
-
|
|
116
|
-
|
|
117
|
-
|
|
133
|
+
- [#93689](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/93689)
|
|
134
|
+
[`5ba5d2b4a9ac`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/5ba5d2b4a9ac) -
|
|
135
|
+
Updating adf-schema version to 35.10.0
|
|
118
136
|
|
|
119
137
|
## 1.1.0
|
|
120
138
|
|
|
121
139
|
### Minor Changes
|
|
122
140
|
|
|
123
|
-
-
|
|
124
|
-
|
|
125
|
-
|
|
141
|
+
- [#91934](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/91934)
|
|
142
|
+
[`b76a78c6a199`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/b76a78c6a199) -
|
|
143
|
+
bumped editor-prosemirror version to 4.0.0
|
|
126
144
|
|
|
127
145
|
### Patch Changes
|
|
128
146
|
|
|
129
|
-
-
|
|
147
|
+
- Updated dependencies
|
|
130
148
|
|
|
131
149
|
## 1.0.10
|
|
132
150
|
|
|
133
151
|
### Patch Changes
|
|
134
152
|
|
|
135
|
-
-
|
|
136
|
-
|
|
137
|
-
|
|
153
|
+
- [#92426](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/92426)
|
|
154
|
+
[`32c76c7c225c`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/32c76c7c225c) -
|
|
155
|
+
Bump adf-schema to 35.9.2 to support table alignment options
|
|
138
156
|
|
|
139
157
|
## 1.0.9
|
|
140
158
|
|
|
141
159
|
### Patch Changes
|
|
142
160
|
|
|
143
|
-
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
-
|
|
161
|
+
- [#91106](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/91106)
|
|
162
|
+
[`b6ffa30186b9`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/b6ffa30186b9) -
|
|
163
|
+
Bump ADF-schema package to version 35.0.0
|
|
164
|
+
- Updated dependencies
|
|
147
165
|
|
|
148
166
|
## 1.0.8
|
|
149
167
|
|
|
150
168
|
### Patch Changes
|
|
151
169
|
|
|
152
|
-
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
170
|
+
- [#86724](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/86724)
|
|
171
|
+
[`718a9aa2424d`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/718a9aa2424d) -
|
|
172
|
+
[ED-22607] Remove references to maxFrames for multi bodied extensions and bump adf-schema from
|
|
173
|
+
35.7.0 to 35.8.0
|
|
156
174
|
|
|
157
175
|
## 1.0.7
|
|
158
176
|
|
|
159
177
|
### Patch Changes
|
|
160
178
|
|
|
161
|
-
-
|
|
162
|
-
|
|
163
|
-
|
|
179
|
+
- [#81777](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/81777)
|
|
180
|
+
[`c6d7a5378751`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/c6d7a5378751) -
|
|
181
|
+
Bump adf-schema to 35.7.0
|
|
164
182
|
|
|
165
183
|
## 1.0.6
|
|
166
184
|
|
|
167
185
|
### Patch Changes
|
|
168
186
|
|
|
169
|
-
-
|
|
170
|
-
|
|
171
|
-
|
|
187
|
+
- [#83116](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/83116)
|
|
188
|
+
[`8d4e99057fe0`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/8d4e99057fe0) -
|
|
189
|
+
Upgrade Typescript from `4.9.5` to `5.4.2`
|
|
172
190
|
|
|
173
191
|
## 1.0.5
|
|
174
192
|
|
|
175
193
|
### Patch Changes
|
|
176
194
|
|
|
177
|
-
-
|
|
178
|
-
|
|
179
|
-
|
|
195
|
+
- [#81852](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/81852)
|
|
196
|
+
[`0641eef91f65`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/0641eef91f65) -
|
|
197
|
+
React 18 types for editor-plugin-mentions
|
|
180
198
|
|
|
181
199
|
## 1.0.4
|
|
182
200
|
|
|
183
201
|
### Patch Changes
|
|
184
202
|
|
|
185
|
-
-
|
|
186
|
-
|
|
187
|
-
|
|
203
|
+
- [#80679](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/80679)
|
|
204
|
+
[`104eb9443b7e`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/104eb9443b7e) -
|
|
205
|
+
ED-22553 Updating adf-schema version to 35.6.0
|
|
188
206
|
|
|
189
207
|
## 1.0.3
|
|
190
208
|
|
|
191
209
|
### Patch Changes
|
|
192
210
|
|
|
193
|
-
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
-
|
|
211
|
+
- [#78224](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/78224)
|
|
212
|
+
[`6b4c9dd4ad34`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/6b4c9dd4ad34) -
|
|
213
|
+
ED-22219: adf-schema updated to 35.5.2
|
|
214
|
+
- Updated dependencies
|
|
197
215
|
|
|
198
216
|
## 1.0.2
|
|
199
217
|
|
|
200
218
|
### Patch Changes
|
|
201
219
|
|
|
202
|
-
-
|
|
220
|
+
- Updated dependencies
|
|
203
221
|
|
|
204
222
|
## 1.0.1
|
|
205
223
|
|
|
206
224
|
### Patch Changes
|
|
207
225
|
|
|
208
|
-
-
|
|
226
|
+
- Updated dependencies
|
|
209
227
|
|
|
210
228
|
## 1.0.0
|
|
211
229
|
|
|
212
230
|
### Major Changes
|
|
213
231
|
|
|
214
|
-
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
232
|
+
- [#72386](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/72386)
|
|
233
|
+
[`0c52b0be40c1`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/0c52b0be40c1) -
|
|
234
|
+
This changeset exists to bump all editor plugins that currently don't have a major version. This
|
|
235
|
+
is to address an issue with Jira plugin consumption.
|
|
218
236
|
|
|
219
237
|
### Patch Changes
|
|
220
238
|
|
|
221
|
-
-
|
|
239
|
+
- Updated dependencies
|
|
222
240
|
|
|
223
241
|
## 0.2.3
|
|
224
242
|
|
|
225
243
|
### Patch Changes
|
|
226
244
|
|
|
227
|
-
-
|
|
228
|
-
|
|
229
|
-
|
|
245
|
+
- [#68572](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/68572)
|
|
246
|
+
[`15d407fe5143`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/15d407fe5143) -
|
|
247
|
+
Upgrading @atlaskit/editor-prosemirror dependency
|
|
230
248
|
|
|
231
249
|
## 0.2.2
|
|
232
250
|
|
|
233
251
|
### Patch Changes
|
|
234
252
|
|
|
235
|
-
-
|
|
236
|
-
|
|
237
|
-
|
|
253
|
+
- [#70152](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/70152)
|
|
254
|
+
[`53ed3673df28`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/53ed3673df28) -
|
|
255
|
+
Updating adf-schema version to 35.5.1
|
|
238
256
|
|
|
239
257
|
## 0.2.1
|
|
240
258
|
|
|
241
259
|
### Patch Changes
|
|
242
260
|
|
|
243
|
-
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
-
|
|
261
|
+
- [#68640](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/68640)
|
|
262
|
+
[`6a3ea210641a`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/6a3ea210641a) -
|
|
263
|
+
Create new context identifier plugin which contains the provider.
|
|
264
|
+
- Updated dependencies
|
|
247
265
|
|
|
248
266
|
## 0.2.0
|
|
249
267
|
|
|
250
268
|
### Minor Changes
|
|
251
269
|
|
|
252
|
-
-
|
|
253
|
-
|
|
254
|
-
|
|
270
|
+
- [#68790](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/68790)
|
|
271
|
+
[`c6d8affc52d1`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/c6d8affc52d1) -
|
|
272
|
+
Support maybeAdd plugins in usePreset. Add typing support for universal preset.
|
|
255
273
|
|
|
256
|
-
|
|
274
|
+
Now when using the editor API with the universal preset
|
|
257
275
|
|
|
258
276
|
### Patch Changes
|
|
259
277
|
|
|
260
|
-
-
|
|
278
|
+
- Updated dependencies
|
|
261
279
|
|
|
262
280
|
## 0.1.20
|
|
263
281
|
|
|
264
282
|
### Patch Changes
|
|
265
283
|
|
|
266
|
-
-
|
|
284
|
+
- Updated dependencies
|
|
267
285
|
|
|
268
286
|
## 0.1.19
|
|
269
287
|
|
|
270
288
|
### Patch Changes
|
|
271
289
|
|
|
272
|
-
-
|
|
273
|
-
|
|
274
|
-
|
|
290
|
+
- [#67238](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/67238)
|
|
291
|
+
[`40533849b2ec`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/40533849b2ec) -
|
|
292
|
+
[ED-21835] Change EditorAPI type to always union with undefined
|
|
275
293
|
|
|
276
294
|
## 0.1.18
|
|
277
295
|
|
|
278
296
|
### Patch Changes
|
|
279
297
|
|
|
280
|
-
-
|
|
281
|
-
|
|
282
|
-
|
|
298
|
+
- [#67189](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/67189)
|
|
299
|
+
[`93cbf53ca0e0`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/93cbf53ca0e0) -
|
|
300
|
+
Removing instances of WithPluginState from mentions and type-ahead plugins.
|
|
283
301
|
|
|
284
302
|
## 0.1.17
|
|
285
303
|
|
|
286
304
|
### Patch Changes
|
|
287
305
|
|
|
288
|
-
-
|
|
289
|
-
|
|
290
|
-
|
|
306
|
+
- [#65802](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/65802)
|
|
307
|
+
[`438ead060875`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/438ead060875) -
|
|
308
|
+
Ensure all editor plugins are marked as singletons
|
|
291
309
|
|
|
292
310
|
## 0.1.16
|
|
293
311
|
|
|
294
312
|
### Patch Changes
|
|
295
313
|
|
|
296
|
-
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
-
|
|
314
|
+
- [#65031](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/65031)
|
|
315
|
+
[`a00094111b5a`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/a00094111b5a) -
|
|
316
|
+
ED-21609 Update adf-schema to 35.3.0
|
|
317
|
+
- Updated dependencies
|
|
300
318
|
|
|
301
319
|
## 0.1.15
|
|
302
320
|
|
|
303
321
|
### Patch Changes
|
|
304
322
|
|
|
305
|
-
-
|
|
323
|
+
- Updated dependencies
|
|
306
324
|
|
|
307
325
|
## 0.1.14
|
|
308
326
|
|
|
309
327
|
### Patch Changes
|
|
310
328
|
|
|
311
|
-
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
-
|
|
329
|
+
- [#64538](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/64538)
|
|
330
|
+
[`264115ce5ec4`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/264115ce5ec4) -
|
|
331
|
+
DTR-2096: Add taskListId and taskItemId to mention typeAhead clicked and pressed analytic events,
|
|
332
|
+
when inserted within actions or tasks
|
|
333
|
+
- Updated dependencies
|
|
316
334
|
|
|
317
335
|
## 0.1.13
|
|
318
336
|
|
|
319
337
|
### Patch Changes
|
|
320
338
|
|
|
321
|
-
-
|
|
322
|
-
|
|
323
|
-
|
|
339
|
+
- [#62165](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/62165)
|
|
340
|
+
[`b44ac0968d79`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/b44ac0968d79) -
|
|
341
|
+
[ED-21562] Bump @atlaskit/adf-schema to 35.2.0 for border mark update
|
|
324
342
|
|
|
325
343
|
## 0.1.12
|
|
326
344
|
|
|
327
345
|
### Patch Changes
|
|
328
346
|
|
|
329
|
-
-
|
|
330
|
-
|
|
331
|
-
|
|
347
|
+
- [#60808](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/60808)
|
|
348
|
+
[`f509a21be124`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/f509a21be124) -
|
|
349
|
+
ED-21506: @atlaskit/adf-schema upgraded to 35.1.1 to support renderer for MBE
|
|
332
350
|
|
|
333
351
|
## 0.1.11
|
|
334
352
|
|
|
335
353
|
### Patch Changes
|
|
336
354
|
|
|
337
|
-
-
|
|
338
|
-
|
|
339
|
-
|
|
355
|
+
- [#58246](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/58246)
|
|
356
|
+
[`a381b2599716`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/a381b2599716) -
|
|
357
|
+
ED-21371 Update adf-schema to 35.1.0
|
|
340
358
|
|
|
341
359
|
## 0.1.10
|
|
342
360
|
|
|
343
361
|
### Patch Changes
|
|
344
362
|
|
|
345
|
-
-
|
|
363
|
+
- Updated dependencies
|
|
346
364
|
|
|
347
365
|
## 0.1.9
|
|
348
366
|
|
|
349
367
|
### Patch Changes
|
|
350
368
|
|
|
351
|
-
-
|
|
369
|
+
- Updated dependencies
|
|
352
370
|
|
|
353
371
|
## 0.1.8
|
|
354
372
|
|
|
355
373
|
### Patch Changes
|
|
356
374
|
|
|
357
|
-
-
|
|
358
|
-
|
|
359
|
-
|
|
375
|
+
- [#59147](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/59147)
|
|
376
|
+
[`f12e489f23b0`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/f12e489f23b0) -
|
|
377
|
+
Re-build and deploy packages to NPM to resolve React/Compiled not found error (HOT-106483).
|
|
360
378
|
|
|
361
379
|
## 0.1.7
|
|
362
380
|
|
|
363
381
|
### Patch Changes
|
|
364
382
|
|
|
365
|
-
-
|
|
366
|
-
|
|
367
|
-
|
|
383
|
+
- [#58763](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/58763)
|
|
384
|
+
[`0fdbd64522bf`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/0fdbd64522bf) -
|
|
385
|
+
update ADF schema
|
|
368
386
|
|
|
369
387
|
## 0.1.6
|
|
370
388
|
|
|
371
389
|
### Patch Changes
|
|
372
390
|
|
|
373
|
-
-
|
|
374
|
-
|
|
375
|
-
|
|
391
|
+
- [#56790](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/56790)
|
|
392
|
+
[`ff577a7969d4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ff577a7969d4) -
|
|
393
|
+
ED-21266: Updated @atlaskit/adf-schema to 34.0.1
|
|
376
394
|
|
|
377
395
|
## 0.1.5
|
|
378
396
|
|
|
379
397
|
### Patch Changes
|
|
380
398
|
|
|
381
|
-
-
|
|
382
|
-
|
|
383
|
-
|
|
399
|
+
- [#43417](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/43417)
|
|
400
|
+
[`3f3c17f0273`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3f3c17f0273) - ED-20971
|
|
401
|
+
Upgrade adf-schema package to ^34.0.0
|
|
384
402
|
|
|
385
403
|
## 0.1.4
|
|
386
404
|
|
|
387
405
|
### Patch Changes
|
|
388
406
|
|
|
389
|
-
-
|
|
407
|
+
- Updated dependencies
|
|
390
408
|
|
|
391
409
|
## 0.1.3
|
|
392
410
|
|
|
393
411
|
### Patch Changes
|
|
394
412
|
|
|
395
|
-
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
-
|
|
413
|
+
- [#43379](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/43379)
|
|
414
|
+
[`482c025520d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/482c025520d) - ED-20763
|
|
415
|
+
Upgrade ADF schema version to 33.2.3 for MBE nodes.
|
|
416
|
+
- Updated dependencies
|
|
399
417
|
|
|
400
418
|
## 0.1.2
|
|
401
419
|
|
|
402
420
|
### Patch Changes
|
|
403
421
|
|
|
404
|
-
-
|
|
405
|
-
|
|
406
|
-
|
|
422
|
+
- [#42451](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42451)
|
|
423
|
+
[`36764ad64a9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/36764ad64a9) -
|
|
424
|
+
[ECA11Y-87] Mentioned name is not communicated to the users of screen reader
|
|
407
425
|
|
|
408
426
|
## 0.1.1
|
|
409
427
|
|
|
410
428
|
### Patch Changes
|
|
411
429
|
|
|
412
|
-
-
|
|
430
|
+
- Updated dependencies
|
package/LICENSE.md
CHANGED
|
@@ -1,13 +1,11 @@
|
|
|
1
1
|
Copyright 2023 Atlassian Pty Ltd
|
|
2
2
|
|
|
3
|
-
Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
-
|
|
5
|
-
You may obtain a copy of the License at
|
|
3
|
+
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in
|
|
4
|
+
compliance with the License. You may obtain a copy of the License at
|
|
6
5
|
|
|
7
6
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
8
7
|
|
|
9
|
-
Unless required by applicable law or agreed to in writing, software
|
|
10
|
-
distributed
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
limitations under the License.
|
|
8
|
+
Unless required by applicable law or agreed to in writing, software distributed under the License is
|
|
9
|
+
distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
10
|
+
implied. See the License for the specific language governing permissions and limitations under the
|
|
11
|
+
License.
|