@atlaskit/editor-plugins 9.4.23 → 9.4.25
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.md +15 -0
- package/dist/es2019/find-replace/ui/styles.js +1 -1
- package/dist/esm/find-replace/ui/styles.js +1 -1
- package/dist/types/editor-disabled/index.d.ts +1 -1
- package/dist/types/find-replace/ui/styles.d.ts +1 -1
- package/dist/types/metrics/index.d.ts +1 -1
- package/dist/types-ts4.5/editor-disabled/index.d.ts +1 -1
- package/dist/types-ts4.5/find-replace/ui/styles.d.ts +1 -1
- package/dist/types-ts4.5/metrics/index.d.ts +1 -1
- package/package.json +91 -95
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @atlaskit/editor-plugins
|
|
2
2
|
|
|
3
|
+
## 9.4.25
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#172541](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/172541)
|
|
8
|
+
[`6da45cbd2c77f`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/6da45cbd2c77f) -
|
|
9
|
+
clean up FF for batch media update attributes
|
|
10
|
+
- Updated dependencies
|
|
11
|
+
|
|
12
|
+
## 9.4.24
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- Updated dependencies
|
|
17
|
+
|
|
3
18
|
## 9.4.23
|
|
4
19
|
|
|
5
20
|
### Patch Changes
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
// THIS FILE IS GENERATED via packages/editor/editor-plugins/scripts/update-editor-plugins.ts. DO NOT MODIFY IT MANUALLY.
|
|
2
2
|
// Disable no-re-export rule for entry point files
|
|
3
3
|
/* eslint-disable @atlaskit/editor/no-re-export */
|
|
4
|
-
export { searchMatchClass, searchMatchTextClass,
|
|
4
|
+
export { searchMatchClass, searchMatchTextClass, selectedSearchMatchClass, blockSearchMatchClass, selectedBlockSearchMatchClass, darkModeSearchMatchClass, searchMatchExpandTitleClass, findReplaceStyles, findReplaceStylesNewYellow, findReplaceStylesNewMagenta } from '@atlaskit/editor-plugin-find-replace/styles';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
// THIS FILE IS GENERATED via packages/editor/editor-plugins/scripts/update-editor-plugins.ts. DO NOT MODIFY IT MANUALLY.
|
|
2
2
|
// Disable no-re-export rule for entry point files
|
|
3
3
|
/* eslint-disable @atlaskit/editor/no-re-export */
|
|
4
|
-
export { searchMatchClass, searchMatchTextClass,
|
|
4
|
+
export { searchMatchClass, searchMatchTextClass, selectedSearchMatchClass, blockSearchMatchClass, selectedBlockSearchMatchClass, darkModeSearchMatchClass, searchMatchExpandTitleClass, findReplaceStyles, findReplaceStylesNewYellow, findReplaceStylesNewMagenta } from '@atlaskit/editor-plugin-find-replace/styles';
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export { editorDisabledPlugin } from '@atlaskit/editor-plugin-editor-disabled';
|
|
2
|
-
export type { EditorDisabledPluginState, EditorDisabledPlugin, } from '@atlaskit/editor-plugin-editor-disabled';
|
|
2
|
+
export type { EditorDisabledPluginState, EditorDisabledPlugin, EditorDisabledPluginOptions, } from '@atlaskit/editor-plugin-editor-disabled';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { searchMatchClass, searchMatchTextClass,
|
|
1
|
+
export { searchMatchClass, searchMatchTextClass, selectedSearchMatchClass, blockSearchMatchClass, selectedBlockSearchMatchClass, darkModeSearchMatchClass, searchMatchExpandTitleClass, findReplaceStyles, findReplaceStylesNewYellow, findReplaceStylesNewMagenta, } from '@atlaskit/editor-plugin-find-replace/styles';
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export { metricsPlugin } from '@atlaskit/editor-plugin-metrics';
|
|
2
|
-
export type { MetricsPlugin, MetricsState } from '@atlaskit/editor-plugin-metrics';
|
|
2
|
+
export type { MetricsPlugin, MetricsPluginOptions, MetricsState, } from '@atlaskit/editor-plugin-metrics';
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export { editorDisabledPlugin } from '@atlaskit/editor-plugin-editor-disabled';
|
|
2
|
-
export type { EditorDisabledPluginState, EditorDisabledPlugin, } from '@atlaskit/editor-plugin-editor-disabled';
|
|
2
|
+
export type { EditorDisabledPluginState, EditorDisabledPlugin, EditorDisabledPluginOptions, } from '@atlaskit/editor-plugin-editor-disabled';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { searchMatchClass, searchMatchTextClass,
|
|
1
|
+
export { searchMatchClass, searchMatchTextClass, selectedSearchMatchClass, blockSearchMatchClass, selectedBlockSearchMatchClass, darkModeSearchMatchClass, searchMatchExpandTitleClass, findReplaceStyles, findReplaceStylesNewYellow, findReplaceStylesNewMagenta, } from '@atlaskit/editor-plugin-find-replace/styles';
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export { metricsPlugin } from '@atlaskit/editor-plugin-metrics';
|
|
2
|
-
export type { MetricsPlugin, MetricsState } from '@atlaskit/editor-plugin-metrics';
|
|
2
|
+
export type { MetricsPlugin, MetricsPluginOptions, MetricsState, } from '@atlaskit/editor-plugin-metrics';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugins",
|
|
3
|
-
"version": "9.4.
|
|
3
|
+
"version": "9.4.25",
|
|
4
4
|
"description": "A convenience facade package that exposes all @atlaskit/editor-plugin-* plugins so that users can add this package without having to manually add all their plugins",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -133,96 +133,96 @@
|
|
|
133
133
|
"update-editor-plugins": "run-ts scripts/update-editor-plugins.ts"
|
|
134
134
|
},
|
|
135
135
|
"dependencies": {
|
|
136
|
-
"@atlaskit/editor-plugin-accessibility-utils": "
|
|
137
|
-
"@atlaskit/editor-plugin-alignment": "
|
|
138
|
-
"@atlaskit/editor-plugin-analytics": "
|
|
139
|
-
"@atlaskit/editor-plugin-annotation": "
|
|
140
|
-
"@atlaskit/editor-plugin-avatar-group": "
|
|
141
|
-
"@atlaskit/editor-plugin-base": "
|
|
142
|
-
"@atlaskit/editor-plugin-batch-attribute-updates": "
|
|
143
|
-
"@atlaskit/editor-plugin-before-primary-toolbar": "
|
|
144
|
-
"@atlaskit/editor-plugin-better-type-history": "
|
|
145
|
-
"@atlaskit/editor-plugin-block-controls": "
|
|
146
|
-
"@atlaskit/editor-plugin-block-type": "
|
|
147
|
-
"@atlaskit/editor-plugin-border": "
|
|
148
|
-
"@atlaskit/editor-plugin-breakout": "
|
|
149
|
-
"@atlaskit/editor-plugin-caption": "
|
|
150
|
-
"@atlaskit/editor-plugin-card": "
|
|
151
|
-
"@atlaskit/editor-plugin-clear-marks-on-empty-doc": "
|
|
152
|
-
"@atlaskit/editor-plugin-clipboard": "
|
|
153
|
-
"@atlaskit/editor-plugin-code-bidi-warning": "
|
|
154
|
-
"@atlaskit/editor-plugin-code-block": "
|
|
155
|
-
"@atlaskit/editor-plugin-collab-edit": "
|
|
156
|
-
"@atlaskit/editor-plugin-composition": "
|
|
157
|
-
"@atlaskit/editor-plugin-connectivity": "
|
|
158
|
-
"@atlaskit/editor-plugin-content-insertion": "
|
|
159
|
-
"@atlaskit/editor-plugin-context-identifier": "
|
|
160
|
-
"@atlaskit/editor-plugin-context-panel": "
|
|
161
|
-
"@atlaskit/editor-plugin-copy-button": "
|
|
162
|
-
"@atlaskit/editor-plugin-custom-autoformat": "
|
|
163
|
-
"@atlaskit/editor-plugin-data-consumer": "
|
|
164
|
-
"@atlaskit/editor-plugin-date": "
|
|
165
|
-
"@atlaskit/editor-plugin-decorations": "
|
|
166
|
-
"@atlaskit/editor-plugin-editor-disabled": "
|
|
167
|
-
"@atlaskit/editor-plugin-editor-viewmode": "
|
|
168
|
-
"@atlaskit/editor-plugin-editor-viewmode-effects": "
|
|
169
|
-
"@atlaskit/editor-plugin-emoji": "
|
|
170
|
-
"@atlaskit/editor-plugin-engagement-platform": "
|
|
171
|
-
"@atlaskit/editor-plugin-expand": "
|
|
172
|
-
"@atlaskit/editor-plugin-extension": "
|
|
173
|
-
"@atlaskit/editor-plugin-feature-flags": "
|
|
174
|
-
"@atlaskit/editor-plugin-feedback-dialog": "
|
|
175
|
-
"@atlaskit/editor-plugin-find-replace": "
|
|
176
|
-
"@atlaskit/editor-plugin-floating-toolbar": "
|
|
177
|
-
"@atlaskit/editor-plugin-focus": "
|
|
178
|
-
"@atlaskit/editor-plugin-fragment": "
|
|
179
|
-
"@atlaskit/editor-plugin-grid": "
|
|
180
|
-
"@atlaskit/editor-plugin-guideline": "
|
|
181
|
-
"@atlaskit/editor-plugin-help-dialog": "
|
|
182
|
-
"@atlaskit/editor-plugin-highlight": "
|
|
183
|
-
"@atlaskit/editor-plugin-history": "
|
|
184
|
-
"@atlaskit/editor-plugin-hyperlink": "
|
|
185
|
-
"@atlaskit/editor-plugin-image-upload": "
|
|
186
|
-
"@atlaskit/editor-plugin-indentation": "
|
|
187
|
-
"@atlaskit/editor-plugin-insert-block": "
|
|
188
|
-
"@atlaskit/editor-plugin-interaction": "
|
|
189
|
-
"@atlaskit/editor-plugin-layout": "
|
|
190
|
-
"@atlaskit/editor-plugin-list": "
|
|
191
|
-
"@atlaskit/editor-plugin-loom": "
|
|
192
|
-
"@atlaskit/editor-plugin-max-content-size": "
|
|
193
|
-
"@atlaskit/editor-plugin-media": "
|
|
194
|
-
"@atlaskit/editor-plugin-media-insert": "
|
|
195
|
-
"@atlaskit/editor-plugin-mentions": "
|
|
196
|
-
"@atlaskit/editor-plugin-metrics": "
|
|
197
|
-
"@atlaskit/editor-plugin-ncs-step-metrics": "
|
|
198
|
-
"@atlaskit/editor-plugin-panel": "
|
|
199
|
-
"@atlaskit/editor-plugin-paste": "
|
|
200
|
-
"@atlaskit/editor-plugin-paste-options-toolbar": "
|
|
201
|
-
"@atlaskit/editor-plugin-placeholder": "
|
|
202
|
-
"@atlaskit/editor-plugin-placeholder-text": "
|
|
203
|
-
"@atlaskit/editor-plugin-primary-toolbar": "
|
|
204
|
-
"@atlaskit/editor-plugin-quick-insert": "
|
|
205
|
-
"@atlaskit/editor-plugin-rule": "
|
|
206
|
-
"@atlaskit/editor-plugin-save-on-enter": "
|
|
207
|
-
"@atlaskit/editor-plugin-scroll-into-view": "
|
|
208
|
-
"@atlaskit/editor-plugin-selection": "
|
|
209
|
-
"@atlaskit/editor-plugin-selection-extension": "
|
|
210
|
-
"@atlaskit/editor-plugin-selection-marker": "
|
|
211
|
-
"@atlaskit/editor-plugin-selection-toolbar": "
|
|
212
|
-
"@atlaskit/editor-plugin-status": "
|
|
213
|
-
"@atlaskit/editor-plugin-submit-editor": "
|
|
214
|
-
"@atlaskit/editor-plugin-table": "
|
|
215
|
-
"@atlaskit/editor-plugin-tasks-and-decisions": "
|
|
216
|
-
"@atlaskit/editor-plugin-text-color": "
|
|
217
|
-
"@atlaskit/editor-plugin-text-formatting": "
|
|
218
|
-
"@atlaskit/editor-plugin-toolbar-lists-indentation": "
|
|
219
|
-
"@atlaskit/editor-plugin-type-ahead": "
|
|
220
|
-
"@atlaskit/editor-plugin-ufo": "
|
|
221
|
-
"@atlaskit/editor-plugin-undo-redo": "
|
|
222
|
-
"@atlaskit/editor-plugin-unsupported-content": "
|
|
223
|
-
"@atlaskit/editor-plugin-user-intent": "0.
|
|
224
|
-
"@atlaskit/editor-plugin-user-preferences": "
|
|
225
|
-
"@atlaskit/editor-plugin-width": "
|
|
136
|
+
"@atlaskit/editor-plugin-accessibility-utils": "3.0.0",
|
|
137
|
+
"@atlaskit/editor-plugin-alignment": "4.0.0",
|
|
138
|
+
"@atlaskit/editor-plugin-analytics": "3.0.0",
|
|
139
|
+
"@atlaskit/editor-plugin-annotation": "3.0.0",
|
|
140
|
+
"@atlaskit/editor-plugin-avatar-group": "4.0.0",
|
|
141
|
+
"@atlaskit/editor-plugin-base": "4.0.0",
|
|
142
|
+
"@atlaskit/editor-plugin-batch-attribute-updates": "3.0.0",
|
|
143
|
+
"@atlaskit/editor-plugin-before-primary-toolbar": "3.0.0",
|
|
144
|
+
"@atlaskit/editor-plugin-better-type-history": "3.0.0",
|
|
145
|
+
"@atlaskit/editor-plugin-block-controls": "4.0.0",
|
|
146
|
+
"@atlaskit/editor-plugin-block-type": "6.0.0",
|
|
147
|
+
"@atlaskit/editor-plugin-border": "3.0.0",
|
|
148
|
+
"@atlaskit/editor-plugin-breakout": "3.0.0",
|
|
149
|
+
"@atlaskit/editor-plugin-caption": "3.0.0",
|
|
150
|
+
"@atlaskit/editor-plugin-card": "7.0.0",
|
|
151
|
+
"@atlaskit/editor-plugin-clear-marks-on-empty-doc": "3.0.0",
|
|
152
|
+
"@atlaskit/editor-plugin-clipboard": "3.0.0",
|
|
153
|
+
"@atlaskit/editor-plugin-code-bidi-warning": "3.0.0",
|
|
154
|
+
"@atlaskit/editor-plugin-code-block": "5.0.0",
|
|
155
|
+
"@atlaskit/editor-plugin-collab-edit": "4.0.0",
|
|
156
|
+
"@atlaskit/editor-plugin-composition": "2.0.0",
|
|
157
|
+
"@atlaskit/editor-plugin-connectivity": "3.0.0",
|
|
158
|
+
"@atlaskit/editor-plugin-content-insertion": "3.0.0",
|
|
159
|
+
"@atlaskit/editor-plugin-context-identifier": "3.0.0",
|
|
160
|
+
"@atlaskit/editor-plugin-context-panel": "5.0.0",
|
|
161
|
+
"@atlaskit/editor-plugin-copy-button": "3.0.0",
|
|
162
|
+
"@atlaskit/editor-plugin-custom-autoformat": "3.0.0",
|
|
163
|
+
"@atlaskit/editor-plugin-data-consumer": "3.0.0",
|
|
164
|
+
"@atlaskit/editor-plugin-date": "5.0.0",
|
|
165
|
+
"@atlaskit/editor-plugin-decorations": "3.0.0",
|
|
166
|
+
"@atlaskit/editor-plugin-editor-disabled": "3.0.0",
|
|
167
|
+
"@atlaskit/editor-plugin-editor-viewmode": "5.0.0",
|
|
168
|
+
"@atlaskit/editor-plugin-editor-viewmode-effects": "3.0.0",
|
|
169
|
+
"@atlaskit/editor-plugin-emoji": "4.0.0",
|
|
170
|
+
"@atlaskit/editor-plugin-engagement-platform": "4.0.0",
|
|
171
|
+
"@atlaskit/editor-plugin-expand": "4.0.0",
|
|
172
|
+
"@atlaskit/editor-plugin-extension": "6.0.0",
|
|
173
|
+
"@atlaskit/editor-plugin-feature-flags": "2.0.0",
|
|
174
|
+
"@atlaskit/editor-plugin-feedback-dialog": "3.0.0",
|
|
175
|
+
"@atlaskit/editor-plugin-find-replace": "3.0.0",
|
|
176
|
+
"@atlaskit/editor-plugin-floating-toolbar": "5.0.0",
|
|
177
|
+
"@atlaskit/editor-plugin-focus": "2.0.0",
|
|
178
|
+
"@atlaskit/editor-plugin-fragment": "3.0.0",
|
|
179
|
+
"@atlaskit/editor-plugin-grid": "3.0.0",
|
|
180
|
+
"@atlaskit/editor-plugin-guideline": "3.0.0",
|
|
181
|
+
"@atlaskit/editor-plugin-help-dialog": "3.0.0",
|
|
182
|
+
"@atlaskit/editor-plugin-highlight": "3.0.0",
|
|
183
|
+
"@atlaskit/editor-plugin-history": "3.0.0",
|
|
184
|
+
"@atlaskit/editor-plugin-hyperlink": "5.0.0",
|
|
185
|
+
"@atlaskit/editor-plugin-image-upload": "3.0.0",
|
|
186
|
+
"@atlaskit/editor-plugin-indentation": "3.0.0",
|
|
187
|
+
"@atlaskit/editor-plugin-insert-block": "4.0.0",
|
|
188
|
+
"@atlaskit/editor-plugin-interaction": "4.0.0",
|
|
189
|
+
"@atlaskit/editor-plugin-layout": "3.0.0",
|
|
190
|
+
"@atlaskit/editor-plugin-list": "5.0.0",
|
|
191
|
+
"@atlaskit/editor-plugin-loom": "5.0.0",
|
|
192
|
+
"@atlaskit/editor-plugin-max-content-size": "3.0.0",
|
|
193
|
+
"@atlaskit/editor-plugin-media": "5.0.1",
|
|
194
|
+
"@atlaskit/editor-plugin-media-insert": "8.0.0",
|
|
195
|
+
"@atlaskit/editor-plugin-mentions": "5.0.0",
|
|
196
|
+
"@atlaskit/editor-plugin-metrics": "4.0.0",
|
|
197
|
+
"@atlaskit/editor-plugin-ncs-step-metrics": "2.0.0",
|
|
198
|
+
"@atlaskit/editor-plugin-panel": "5.0.0",
|
|
199
|
+
"@atlaskit/editor-plugin-paste": "4.0.0",
|
|
200
|
+
"@atlaskit/editor-plugin-paste-options-toolbar": "3.0.0",
|
|
201
|
+
"@atlaskit/editor-plugin-placeholder": "3.0.0",
|
|
202
|
+
"@atlaskit/editor-plugin-placeholder-text": "3.0.0",
|
|
203
|
+
"@atlaskit/editor-plugin-primary-toolbar": "4.0.0",
|
|
204
|
+
"@atlaskit/editor-plugin-quick-insert": "3.0.0",
|
|
205
|
+
"@atlaskit/editor-plugin-rule": "3.0.0",
|
|
206
|
+
"@atlaskit/editor-plugin-save-on-enter": "3.0.0",
|
|
207
|
+
"@atlaskit/editor-plugin-scroll-into-view": "3.0.0",
|
|
208
|
+
"@atlaskit/editor-plugin-selection": "3.0.0",
|
|
209
|
+
"@atlaskit/editor-plugin-selection-extension": "3.0.0",
|
|
210
|
+
"@atlaskit/editor-plugin-selection-marker": "3.0.0",
|
|
211
|
+
"@atlaskit/editor-plugin-selection-toolbar": "4.0.0",
|
|
212
|
+
"@atlaskit/editor-plugin-status": "4.0.0",
|
|
213
|
+
"@atlaskit/editor-plugin-submit-editor": "3.0.0",
|
|
214
|
+
"@atlaskit/editor-plugin-table": "11.0.0",
|
|
215
|
+
"@atlaskit/editor-plugin-tasks-and-decisions": "6.0.0",
|
|
216
|
+
"@atlaskit/editor-plugin-text-color": "3.0.0",
|
|
217
|
+
"@atlaskit/editor-plugin-text-formatting": "3.0.0",
|
|
218
|
+
"@atlaskit/editor-plugin-toolbar-lists-indentation": "4.0.0",
|
|
219
|
+
"@atlaskit/editor-plugin-type-ahead": "3.0.1",
|
|
220
|
+
"@atlaskit/editor-plugin-ufo": "3.0.0",
|
|
221
|
+
"@atlaskit/editor-plugin-undo-redo": "3.0.0",
|
|
222
|
+
"@atlaskit/editor-plugin-unsupported-content": "3.0.0",
|
|
223
|
+
"@atlaskit/editor-plugin-user-intent": "1.0.0",
|
|
224
|
+
"@atlaskit/editor-plugin-user-preferences": "1.1.0",
|
|
225
|
+
"@atlaskit/editor-plugin-width": "4.0.0",
|
|
226
226
|
"@babel/runtime": "^7.0.0"
|
|
227
227
|
},
|
|
228
228
|
"peerDependencies": {
|
|
@@ -287,10 +287,6 @@
|
|
|
287
287
|
"platform_editor_element_drag_and_drop_ed_23873": {
|
|
288
288
|
"type": "boolean",
|
|
289
289
|
"referenceOnly": true
|
|
290
|
-
},
|
|
291
|
-
"platform_editor_media_batch_updates": {
|
|
292
|
-
"type": "boolean",
|
|
293
|
-
"referenceOnly": true
|
|
294
290
|
}
|
|
295
291
|
}
|
|
296
292
|
}
|