@atlaskit/editor-plugin-text-color 1.4.0 → 1.5.0
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 +171 -157
- package/LICENSE.md +6 -8
- package/dist/cjs/commands/toggle-color.js +13 -7
- package/dist/cjs/pm-plugins/main.js +3 -2
- package/dist/cjs/utils/color.js +3 -9
- package/dist/cjs/utils/constants.js +14 -0
- package/dist/cjs/utils/disabled.js +11 -25
- package/dist/es2019/commands/toggle-color.js +16 -8
- package/dist/es2019/pm-plugins/main.js +3 -2
- package/dist/es2019/utils/color.js +1 -7
- package/dist/es2019/utils/constants.js +8 -0
- package/dist/es2019/utils/disabled.js +12 -46
- package/dist/esm/commands/toggle-color.js +14 -8
- package/dist/esm/pm-plugins/main.js +3 -2
- package/dist/esm/utils/color.js +1 -7
- package/dist/esm/utils/constants.js +8 -0
- package/dist/esm/utils/disabled.js +12 -26
- package/dist/types/index.d.ts +1 -1
- package/dist/types/pm-plugins/main.d.ts +1 -1
- package/dist/types/types.d.ts +1 -4
- package/dist/types/utils/color.d.ts +0 -4
- package/dist/types/utils/constants.d.ts +5 -0
- package/dist/types-ts4.5/index.d.ts +1 -1
- package/dist/types-ts4.5/pm-plugins/main.d.ts +1 -1
- package/dist/types-ts4.5/utils/color.d.ts +0 -4
- package/dist/types-ts4.5/utils/constants.d.ts +5 -0
- package/package.json +5 -7
- package/report.api.md +21 -20
package/.eslintrc.js
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -1,412 +1,426 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-text-color
|
|
2
2
|
|
|
3
|
+
## 1.5.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#108745](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/108745)
|
|
8
|
+
[`ef4a6d8a3ef73`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/ef4a6d8a3ef73) -
|
|
9
|
+
[ux] [ED-23513] Allow text color mark to replace backgroundColor
|
|
10
|
+
|
|
11
|
+
## 1.4.1
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Updated dependencies
|
|
16
|
+
|
|
3
17
|
## 1.4.0
|
|
4
18
|
|
|
5
19
|
### Minor Changes
|
|
6
20
|
|
|
7
|
-
-
|
|
8
|
-
|
|
9
|
-
|
|
21
|
+
- [#101406](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/101406)
|
|
22
|
+
[`6daffd65aec4`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/6daffd65aec4) -
|
|
23
|
+
[ED-23298] Extract primary toolbar components to editor plugin to allow for custom ordering
|
|
10
24
|
|
|
11
25
|
### Patch Changes
|
|
12
26
|
|
|
13
|
-
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
-
|
|
27
|
+
- [#102478](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/102478)
|
|
28
|
+
[`3378951608b0`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/3378951608b0) -
|
|
29
|
+
[ED-23332] Update adf-schema package to 36.10.1
|
|
30
|
+
- Updated dependencies
|
|
17
31
|
|
|
18
32
|
## 1.3.3
|
|
19
33
|
|
|
20
34
|
### Patch Changes
|
|
21
35
|
|
|
22
|
-
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
36
|
+
- [#101513](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/101513)
|
|
37
|
+
[`98b5dfc33bed`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/98b5dfc33bed) -
|
|
38
|
+
[ux] [ED-23156] The highlight primary toolbar button is disabled when trying to apply it on nodes
|
|
39
|
+
that don't enable the mark and when in a gap cursor. The text color primary toolbar button is
|
|
40
|
+
disabled when selecting text with a highlight.
|
|
27
41
|
|
|
28
42
|
## 1.3.2
|
|
29
43
|
|
|
30
44
|
### Patch Changes
|
|
31
45
|
|
|
32
|
-
-
|
|
33
|
-
|
|
34
|
-
|
|
46
|
+
- [#101524](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/101524)
|
|
47
|
+
[`4821570088e6`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/4821570088e6) -
|
|
48
|
+
ED-23362 Bump ADF schema to version 36.8.1 and add support for adf validation and transformation
|
|
35
49
|
|
|
36
50
|
## 1.3.1
|
|
37
51
|
|
|
38
52
|
### Patch Changes
|
|
39
53
|
|
|
40
|
-
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
-
|
|
54
|
+
- [#100495](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/100495)
|
|
55
|
+
[`dbb78a011fac`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/dbb78a011fac) -
|
|
56
|
+
[ux] [ED-23150] Added `changeColor` command for editor-plugin-highlight, including new
|
|
57
|
+
`removeMark` command for editor-common. Fixed bug with editor-plugin-text-color which prevented
|
|
58
|
+
color from being removed when user selects all.
|
|
59
|
+
- Updated dependencies
|
|
46
60
|
|
|
47
61
|
## 1.3.0
|
|
48
62
|
|
|
49
63
|
### Minor Changes
|
|
50
64
|
|
|
51
|
-
-
|
|
52
|
-
|
|
53
|
-
|
|
65
|
+
- [#99579](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/99579)
|
|
66
|
+
[`f222af5687e9`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/f222af5687e9) -
|
|
67
|
+
Bump adf-schema to 36.3.0 and adf-schema-json to 1.14.0
|
|
54
68
|
|
|
55
69
|
### Patch Changes
|
|
56
70
|
|
|
57
|
-
-
|
|
71
|
+
- Updated dependencies
|
|
58
72
|
|
|
59
73
|
## 1.2.2
|
|
60
74
|
|
|
61
75
|
### Patch Changes
|
|
62
76
|
|
|
63
|
-
-
|
|
77
|
+
- Updated dependencies
|
|
64
78
|
|
|
65
79
|
## 1.2.1
|
|
66
80
|
|
|
67
81
|
### Patch Changes
|
|
68
82
|
|
|
69
|
-
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
-
|
|
83
|
+
- [#99242](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/99242)
|
|
84
|
+
[`854acdf04f29`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/854acdf04f29) -
|
|
85
|
+
Adjust tooltip text for editor toolbar buttons
|
|
86
|
+
- Updated dependencies
|
|
73
87
|
|
|
74
88
|
## 1.2.0
|
|
75
89
|
|
|
76
90
|
### Minor Changes
|
|
77
91
|
|
|
78
|
-
-
|
|
79
|
-
|
|
80
|
-
|
|
92
|
+
- [#98130](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/98130)
|
|
93
|
+
[`6a3c0d9d6382`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/6a3c0d9d6382) -
|
|
94
|
+
[ED-23154] Add highlight option to main toolbar in editor
|
|
81
95
|
|
|
82
96
|
### Patch Changes
|
|
83
97
|
|
|
84
|
-
-
|
|
98
|
+
- Updated dependencies
|
|
85
99
|
|
|
86
100
|
## 1.1.8
|
|
87
101
|
|
|
88
102
|
### Patch Changes
|
|
89
103
|
|
|
90
|
-
-
|
|
91
|
-
|
|
92
|
-
|
|
104
|
+
- [#97599](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/97599)
|
|
105
|
+
[`32c3130b08fe`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/32c3130b08fe) -
|
|
106
|
+
[ED-22282] Bump adf-schema to 36.1.0
|
|
93
107
|
|
|
94
108
|
## 1.1.7
|
|
95
109
|
|
|
96
110
|
### Patch Changes
|
|
97
111
|
|
|
98
|
-
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
112
|
+
- [#97698](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/97698)
|
|
113
|
+
[`1c7b378c0d3b`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/1c7b378c0d3b) -
|
|
114
|
+
[HOT-108999] We had an incident where the cursor jumps back a character in table headers for any
|
|
115
|
+
language triggering composition on an empty line.This was fixed in a patch bump of
|
|
116
|
+
prosemirror-view. https://github.com/ProseMirror/prosemirror-view/compare/1.33.4...1.33.5
|
|
103
117
|
|
|
104
118
|
## 1.1.6
|
|
105
119
|
|
|
106
120
|
### Patch Changes
|
|
107
121
|
|
|
108
|
-
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
-
|
|
122
|
+
- [#93784](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/93784)
|
|
123
|
+
[`de2e52677025`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/de2e52677025) -
|
|
124
|
+
ECA11Y-217 Improve editor toolbar screen reader text for text styles and color
|
|
125
|
+
- Updated dependencies
|
|
112
126
|
|
|
113
127
|
## 1.1.5
|
|
114
128
|
|
|
115
129
|
### Patch Changes
|
|
116
130
|
|
|
117
|
-
-
|
|
131
|
+
- Updated dependencies
|
|
118
132
|
|
|
119
133
|
## 1.1.4
|
|
120
134
|
|
|
121
135
|
### Patch Changes
|
|
122
136
|
|
|
123
|
-
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
137
|
+
- [#96237](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/96237)
|
|
138
|
+
[`0401e7b5a88e`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/0401e7b5a88e) -
|
|
139
|
+
[ED-23102] Bump ADF schema to version 35.12.2
|
|
140
|
+
- [#96613](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/96613)
|
|
141
|
+
[`398961a2b0a1`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/398961a2b0a1) -
|
|
142
|
+
[ux] [ED-23133] Moved stepped rainbow text colour icon styles to editor-common and refactored to
|
|
143
|
+
be reusable
|
|
130
144
|
|
|
131
145
|
## 1.1.3
|
|
132
146
|
|
|
133
147
|
### Patch Changes
|
|
134
148
|
|
|
135
|
-
-
|
|
149
|
+
- Updated dependencies
|
|
136
150
|
|
|
137
151
|
## 1.1.2
|
|
138
152
|
|
|
139
153
|
### Patch Changes
|
|
140
154
|
|
|
141
|
-
-
|
|
142
|
-
|
|
143
|
-
|
|
155
|
+
- [#94901](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/94901)
|
|
156
|
+
[`da964fcdc828`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/da964fcdc828) -
|
|
157
|
+
[ED-23097] Bump ADF schema to version 35.12.1
|
|
144
158
|
|
|
145
159
|
## 1.1.1
|
|
146
160
|
|
|
147
161
|
### Patch Changes
|
|
148
162
|
|
|
149
|
-
-
|
|
150
|
-
|
|
151
|
-
|
|
163
|
+
- [#93689](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/93689)
|
|
164
|
+
[`5ba5d2b4a9ac`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/5ba5d2b4a9ac) -
|
|
165
|
+
Updating adf-schema version to 35.10.0
|
|
152
166
|
|
|
153
167
|
## 1.1.0
|
|
154
168
|
|
|
155
169
|
### Minor Changes
|
|
156
170
|
|
|
157
|
-
-
|
|
158
|
-
|
|
159
|
-
|
|
171
|
+
- [#91934](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/91934)
|
|
172
|
+
[`b76a78c6a199`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/b76a78c6a199) -
|
|
173
|
+
bumped editor-prosemirror version to 4.0.0
|
|
160
174
|
|
|
161
175
|
### Patch Changes
|
|
162
176
|
|
|
163
|
-
-
|
|
177
|
+
- Updated dependencies
|
|
164
178
|
|
|
165
179
|
## 1.0.8
|
|
166
180
|
|
|
167
181
|
### Patch Changes
|
|
168
182
|
|
|
169
|
-
-
|
|
170
|
-
|
|
171
|
-
|
|
183
|
+
- [#92426](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/92426)
|
|
184
|
+
[`32c76c7c225c`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/32c76c7c225c) -
|
|
185
|
+
Bump adf-schema to 35.9.2 to support table alignment options
|
|
172
186
|
|
|
173
187
|
## 1.0.7
|
|
174
188
|
|
|
175
189
|
### Patch Changes
|
|
176
190
|
|
|
177
|
-
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
-
|
|
191
|
+
- [#91106](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/91106)
|
|
192
|
+
[`b6ffa30186b9`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/b6ffa30186b9) -
|
|
193
|
+
Bump ADF-schema package to version 35.0.0
|
|
194
|
+
- Updated dependencies
|
|
181
195
|
|
|
182
196
|
## 1.0.6
|
|
183
197
|
|
|
184
198
|
### Patch Changes
|
|
185
199
|
|
|
186
|
-
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
200
|
+
- [#86724](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/86724)
|
|
201
|
+
[`718a9aa2424d`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/718a9aa2424d) -
|
|
202
|
+
[ED-22607] Remove references to maxFrames for multi bodied extensions and bump adf-schema from
|
|
203
|
+
35.7.0 to 35.8.0
|
|
190
204
|
|
|
191
205
|
## 1.0.5
|
|
192
206
|
|
|
193
207
|
### Patch Changes
|
|
194
208
|
|
|
195
|
-
-
|
|
196
|
-
|
|
197
|
-
|
|
209
|
+
- [#81777](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/81777)
|
|
210
|
+
[`c6d7a5378751`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/c6d7a5378751) -
|
|
211
|
+
Bump adf-schema to 35.7.0
|
|
198
212
|
|
|
199
213
|
## 1.0.4
|
|
200
214
|
|
|
201
215
|
### Patch Changes
|
|
202
216
|
|
|
203
|
-
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
-
|
|
217
|
+
- [#83116](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/83116)
|
|
218
|
+
[`8d4e99057fe0`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/8d4e99057fe0) -
|
|
219
|
+
Upgrade Typescript from `4.9.5` to `5.4.2`
|
|
220
|
+
- Updated dependencies
|
|
207
221
|
|
|
208
222
|
## 1.0.3
|
|
209
223
|
|
|
210
224
|
### Patch Changes
|
|
211
225
|
|
|
212
|
-
-
|
|
213
|
-
|
|
214
|
-
|
|
226
|
+
- [#80679](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/80679)
|
|
227
|
+
[`104eb9443b7e`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/104eb9443b7e) -
|
|
228
|
+
ED-22553 Updating adf-schema version to 35.6.0
|
|
215
229
|
|
|
216
230
|
## 1.0.2
|
|
217
231
|
|
|
218
232
|
### Patch Changes
|
|
219
233
|
|
|
220
|
-
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
-
|
|
234
|
+
- [#78224](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/78224)
|
|
235
|
+
[`6b4c9dd4ad34`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/6b4c9dd4ad34) -
|
|
236
|
+
ED-22219: adf-schema updated to 35.5.2
|
|
237
|
+
- Updated dependencies
|
|
224
238
|
|
|
225
239
|
## 1.0.1
|
|
226
240
|
|
|
227
241
|
### Patch Changes
|
|
228
242
|
|
|
229
|
-
-
|
|
243
|
+
- Updated dependencies
|
|
230
244
|
|
|
231
245
|
## 1.0.0
|
|
232
246
|
|
|
233
247
|
### Major Changes
|
|
234
248
|
|
|
235
|
-
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
249
|
+
- [#72386](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/72386)
|
|
250
|
+
[`0c52b0be40c1`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/0c52b0be40c1) -
|
|
251
|
+
This changeset exists to bump all editor plugins that currently don't have a major version. This
|
|
252
|
+
is to address an issue with Jira plugin consumption.
|
|
239
253
|
|
|
240
254
|
### Patch Changes
|
|
241
255
|
|
|
242
|
-
-
|
|
256
|
+
- Updated dependencies
|
|
243
257
|
|
|
244
258
|
## 0.2.3
|
|
245
259
|
|
|
246
260
|
### Patch Changes
|
|
247
261
|
|
|
248
|
-
-
|
|
249
|
-
|
|
250
|
-
|
|
262
|
+
- [#68572](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/68572)
|
|
263
|
+
[`15d407fe5143`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/15d407fe5143) -
|
|
264
|
+
Upgrading @atlaskit/editor-prosemirror dependency
|
|
251
265
|
|
|
252
266
|
## 0.2.2
|
|
253
267
|
|
|
254
268
|
### Patch Changes
|
|
255
269
|
|
|
256
|
-
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
-
|
|
270
|
+
- [#71136](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/71136)
|
|
271
|
+
[`c803fea1e6a4`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/c803fea1e6a4) -
|
|
272
|
+
Move all plugin translations to editor-common
|
|
273
|
+
- Updated dependencies
|
|
260
274
|
|
|
261
275
|
## 0.2.1
|
|
262
276
|
|
|
263
277
|
### Patch Changes
|
|
264
278
|
|
|
265
|
-
-
|
|
266
|
-
|
|
267
|
-
|
|
279
|
+
- [#70152](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/70152)
|
|
280
|
+
[`53ed3673df28`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/53ed3673df28) -
|
|
281
|
+
Updating adf-schema version to 35.5.1
|
|
268
282
|
|
|
269
283
|
## 0.2.0
|
|
270
284
|
|
|
271
285
|
### Minor Changes
|
|
272
286
|
|
|
273
|
-
-
|
|
274
|
-
|
|
275
|
-
|
|
287
|
+
- [#68790](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/68790)
|
|
288
|
+
[`c6d8affc52d1`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/c6d8affc52d1) -
|
|
289
|
+
Support maybeAdd plugins in usePreset. Add typing support for universal preset.
|
|
276
290
|
|
|
277
|
-
|
|
291
|
+
Now when using the editor API with the universal preset
|
|
278
292
|
|
|
279
293
|
### Patch Changes
|
|
280
294
|
|
|
281
|
-
-
|
|
295
|
+
- Updated dependencies
|
|
282
296
|
|
|
283
297
|
## 0.1.17
|
|
284
298
|
|
|
285
299
|
### Patch Changes
|
|
286
300
|
|
|
287
|
-
-
|
|
301
|
+
- Updated dependencies
|
|
288
302
|
|
|
289
303
|
## 0.1.16
|
|
290
304
|
|
|
291
305
|
### Patch Changes
|
|
292
306
|
|
|
293
|
-
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
-
|
|
307
|
+
- [#67557](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/67557)
|
|
308
|
+
[`124d0c6d5286`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/124d0c6d5286) -
|
|
309
|
+
Migrating block-type, text-color, and text-formatting to use useSharedPluginState rather than
|
|
310
|
+
WithPluginState. Removing unused option on default preset. Adding formattingIsPresent prop to
|
|
311
|
+
TextFormattingState.
|
|
312
|
+
- Updated dependencies
|
|
299
313
|
|
|
300
314
|
## 0.1.15
|
|
301
315
|
|
|
302
316
|
### Patch Changes
|
|
303
317
|
|
|
304
|
-
-
|
|
305
|
-
|
|
306
|
-
|
|
318
|
+
- [#65802](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/65802)
|
|
319
|
+
[`438ead060875`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/438ead060875) -
|
|
320
|
+
Ensure all editor plugins are marked as singletons
|
|
307
321
|
|
|
308
322
|
## 0.1.14
|
|
309
323
|
|
|
310
324
|
### Patch Changes
|
|
311
325
|
|
|
312
|
-
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
-
|
|
326
|
+
- [#65031](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/65031)
|
|
327
|
+
[`a00094111b5a`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/a00094111b5a) -
|
|
328
|
+
ED-21609 Update adf-schema to 35.3.0
|
|
329
|
+
- Updated dependencies
|
|
316
330
|
|
|
317
331
|
## 0.1.13
|
|
318
332
|
|
|
319
333
|
### Patch Changes
|
|
320
334
|
|
|
321
|
-
-
|
|
322
|
-
|
|
323
|
-
|
|
335
|
+
- [#62165](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/62165)
|
|
336
|
+
[`b44ac0968d79`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/b44ac0968d79) -
|
|
337
|
+
[ED-21562] Bump @atlaskit/adf-schema to 35.2.0 for border mark update
|
|
324
338
|
|
|
325
339
|
## 0.1.12
|
|
326
340
|
|
|
327
341
|
### Patch Changes
|
|
328
342
|
|
|
329
|
-
-
|
|
330
|
-
|
|
331
|
-
|
|
343
|
+
- [#62088](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/62088)
|
|
344
|
+
[`cbb82175953e`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/cbb82175953e) -
|
|
345
|
+
[ux] Fixes the text color popup not disappearing when clicking on the toolbar icon.
|
|
332
346
|
|
|
333
347
|
## 0.1.11
|
|
334
348
|
|
|
335
349
|
### Patch Changes
|
|
336
350
|
|
|
337
|
-
-
|
|
338
|
-
|
|
339
|
-
|
|
351
|
+
- [#60808](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/60808)
|
|
352
|
+
[`f509a21be124`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/f509a21be124) -
|
|
353
|
+
ED-21506: @atlaskit/adf-schema upgraded to 35.1.1 to support renderer for MBE
|
|
340
354
|
|
|
341
355
|
## 0.1.10
|
|
342
356
|
|
|
343
357
|
### Patch Changes
|
|
344
358
|
|
|
345
|
-
-
|
|
346
|
-
|
|
347
|
-
|
|
359
|
+
- [#58246](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/58246)
|
|
360
|
+
[`a381b2599716`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/a381b2599716) -
|
|
361
|
+
ED-21371 Update adf-schema to 35.1.0
|
|
348
362
|
|
|
349
363
|
## 0.1.9
|
|
350
364
|
|
|
351
365
|
### Patch Changes
|
|
352
366
|
|
|
353
|
-
-
|
|
367
|
+
- Updated dependencies
|
|
354
368
|
|
|
355
369
|
## 0.1.8
|
|
356
370
|
|
|
357
371
|
### Patch Changes
|
|
358
372
|
|
|
359
|
-
-
|
|
360
|
-
|
|
361
|
-
|
|
373
|
+
- [#59147](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/59147)
|
|
374
|
+
[`f12e489f23b0`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/f12e489f23b0) -
|
|
375
|
+
Re-build and deploy packages to NPM to resolve React/Compiled not found error (HOT-106483).
|
|
362
376
|
|
|
363
377
|
## 0.1.7
|
|
364
378
|
|
|
365
379
|
### Patch Changes
|
|
366
380
|
|
|
367
|
-
-
|
|
368
|
-
|
|
369
|
-
|
|
381
|
+
- [#58763](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/58763)
|
|
382
|
+
[`0fdbd64522bf`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/0fdbd64522bf) -
|
|
383
|
+
update ADF schema
|
|
370
384
|
|
|
371
385
|
## 0.1.6
|
|
372
386
|
|
|
373
387
|
### Patch Changes
|
|
374
388
|
|
|
375
|
-
-
|
|
376
|
-
|
|
377
|
-
|
|
389
|
+
- [#56790](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/56790)
|
|
390
|
+
[`ff577a7969d4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ff577a7969d4) -
|
|
391
|
+
ED-21266: Updated @atlaskit/adf-schema to 34.0.1
|
|
378
392
|
|
|
379
393
|
## 0.1.5
|
|
380
394
|
|
|
381
395
|
### Patch Changes
|
|
382
396
|
|
|
383
|
-
-
|
|
384
|
-
|
|
385
|
-
|
|
397
|
+
- [#43417](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/43417)
|
|
398
|
+
[`3f3c17f0273`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3f3c17f0273) - ED-20971
|
|
399
|
+
Upgrade adf-schema package to ^34.0.0
|
|
386
400
|
|
|
387
401
|
## 0.1.4
|
|
388
402
|
|
|
389
403
|
### Patch Changes
|
|
390
404
|
|
|
391
|
-
-
|
|
405
|
+
- Updated dependencies
|
|
392
406
|
|
|
393
407
|
## 0.1.3
|
|
394
408
|
|
|
395
409
|
### Patch Changes
|
|
396
410
|
|
|
397
|
-
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
-
|
|
411
|
+
- [#43379](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/43379)
|
|
412
|
+
[`482c025520d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/482c025520d) - ED-20763
|
|
413
|
+
Upgrade ADF schema version to 33.2.3 for MBE nodes.
|
|
414
|
+
- Updated dependencies
|
|
401
415
|
|
|
402
416
|
## 0.1.2
|
|
403
417
|
|
|
404
418
|
### Patch Changes
|
|
405
419
|
|
|
406
|
-
-
|
|
420
|
+
- Updated dependencies
|
|
407
421
|
|
|
408
422
|
## 0.1.1
|
|
409
423
|
|
|
410
424
|
### Patch Changes
|
|
411
425
|
|
|
412
|
-
-
|
|
426
|
+
- 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.
|