@atlaskit/editor-core 193.27.8 → 193.27.14
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 +13 -0
- package/afm-cc/tsconfig.json +0 -3
- package/dist/cjs/index.js +1 -47
- package/dist/cjs/version-wrapper.js +1 -1
- package/dist/es2019/index.js +0 -10
- package/dist/es2019/version-wrapper.js +1 -1
- package/dist/esm/index.js +0 -10
- package/dist/esm/version-wrapper.js +1 -1
- package/dist/types/create-editor/create-preset.d.ts +140 -958
- package/dist/types/presets/default.d.ts +98 -846
- package/dist/types/presets/universal.d.ts +140 -958
- package/dist/types/presets/useUniversalPreset.d.ts +140 -958
- package/dist/types-ts4.5/create-editor/create-preset.d.ts +173 -1105
- package/dist/types-ts4.5/presets/default.d.ts +113 -969
- package/dist/types-ts4.5/presets/universal.d.ts +173 -1105
- package/dist/types-ts4.5/presets/useUniversalPreset.d.ts +173 -1105
- package/package.json +13 -14
- package/tsconfig.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @atlaskit/editor-core
|
|
2
2
|
|
|
3
|
+
## 193.27.14
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#111892](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/111892)
|
|
8
|
+
[`f95eaf80a5a47`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/f95eaf80a5a47) -
|
|
9
|
+
ED-23476 Migrates UFO logging to editor-examples-helpers
|
|
10
|
+
- [#112947](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/112947)
|
|
11
|
+
[`ec865ff1780db`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/ec865ff1780db) -
|
|
12
|
+
[ux] [ED-23760] Refactor Editor Highlight toolbar button to facilitate reuse and add a (currently
|
|
13
|
+
unused) Floating toolbar button
|
|
14
|
+
- Updated dependencies
|
|
15
|
+
|
|
3
16
|
## 193.27.8
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
package/afm-cc/tsconfig.json
CHANGED
package/dist/cjs/index.js
CHANGED
|
@@ -166,7 +166,6 @@ Object.defineProperty(exports, "version", {
|
|
|
166
166
|
return _versionWrapper.version;
|
|
167
167
|
}
|
|
168
168
|
});
|
|
169
|
-
var _platformFeatureFlags = require("@atlaskit/platform-feature-flags");
|
|
170
169
|
var _versionWrapper = require("./version-wrapper");
|
|
171
170
|
var _editor = _interopRequireDefault(require("./editor"));
|
|
172
171
|
var _EditorContext = _interopRequireDefault(require("./ui/EditorContext"));
|
|
@@ -184,49 +183,4 @@ var _analytics = require("@atlaskit/editor-common/analytics");
|
|
|
184
183
|
var _utils = require("./utils");
|
|
185
184
|
var _actions = _interopRequireDefault(require("./actions"));
|
|
186
185
|
var _portalProvider = require("@atlaskit/editor-common/portal-provider");
|
|
187
|
-
var _ContentStyles = require("./ui/ContentStyles");
|
|
188
|
-
// [ED-22843] use FF in editor-core for sake of example
|
|
189
|
-
|
|
190
|
-
// Used in products integration code
|
|
191
|
-
|
|
192
|
-
/**
|
|
193
|
-
* @deprecated
|
|
194
|
-
* DO NOT USE THIS WILL BE REMOVED SOON AND IS UNSAFE.
|
|
195
|
-
* This is here while we work to extract the annotation plugin.
|
|
196
|
-
* Please use the export from `@atlaskit/editor-common/annotation`.
|
|
197
|
-
*/
|
|
198
|
-
|
|
199
|
-
/**
|
|
200
|
-
* @deprecated
|
|
201
|
-
* DO NOT USE THIS WILL BE REMOVED SOON AND IS UNSAFE.
|
|
202
|
-
* This is here while we work to extract the annotation plugin.
|
|
203
|
-
* Please use the export from `@atlaskit/editor-plugins/annotation`.
|
|
204
|
-
*/
|
|
205
|
-
|
|
206
|
-
// Used in mobile bridge
|
|
207
|
-
|
|
208
|
-
// Used in editor-test-helpers and mobile bridge
|
|
209
|
-
|
|
210
|
-
// Re-export from provider factory to not cause a breaking change
|
|
211
|
-
|
|
212
|
-
/**
|
|
213
|
-
* @deprecated
|
|
214
|
-
* DO NOT USE THIS WILL BE REMOVED SOON AND IS UNSAFE.
|
|
215
|
-
* This is here while we work to extract the media plugin.
|
|
216
|
-
* Please use the export from `@atlaskit/editor-common/provider-factory`.
|
|
217
|
-
*/
|
|
218
|
-
|
|
219
|
-
/**
|
|
220
|
-
* @deprecated
|
|
221
|
-
* DO NOT USE THIS WILL BE REMOVED SOON AND IS UNSAFE.
|
|
222
|
-
* This is here while we work to extract the media plugin.
|
|
223
|
-
* Please use the export from `@atlaskit/editor-plugins/media/types`.
|
|
224
|
-
*/
|
|
225
|
-
|
|
226
|
-
// [ED-22843] use FF in editor-core for sake of example
|
|
227
|
-
// @ts-expect-error function is not being used
|
|
228
|
-
var ignoreFunction = function ignoreFunction() {
|
|
229
|
-
// eslint-disable-next-line @atlaskit/platform/no-invalid-feature-flag-usage, @atlaskit/platform/ensure-feature-flag-prefix
|
|
230
|
-
(0, _platformFeatureFlags.getBooleanFF)('__live-view-toggle');
|
|
231
|
-
return;
|
|
232
|
-
};
|
|
186
|
+
var _ContentStyles = require("./ui/ContentStyles");
|
package/dist/es2019/index.js
CHANGED
|
@@ -1,6 +1,3 @@
|
|
|
1
|
-
// [ED-22843] use FF in editor-core for sake of example
|
|
2
|
-
import { getBooleanFF } from '@atlaskit/platform-feature-flags';
|
|
3
|
-
|
|
4
1
|
// Used in products integration code
|
|
5
2
|
export { name, version } from './version-wrapper';
|
|
6
3
|
export { default as Editor } from './editor';
|
|
@@ -53,11 +50,4 @@ export { PortalProvider, LegacyPortalProviderAPI, PortalRenderer } from '@atlask
|
|
|
53
50
|
* Please use the export from `@atlaskit/editor-plugins/media/types`.
|
|
54
51
|
*/
|
|
55
52
|
|
|
56
|
-
// [ED-22843] use FF in editor-core for sake of example
|
|
57
|
-
// @ts-expect-error function is not being used
|
|
58
|
-
const ignoreFunction = () => {
|
|
59
|
-
// eslint-disable-next-line @atlaskit/platform/no-invalid-feature-flag-usage, @atlaskit/platform/ensure-feature-flag-prefix
|
|
60
|
-
getBooleanFF('__live-view-toggle');
|
|
61
|
-
return;
|
|
62
|
-
};
|
|
63
53
|
export { createEditorContentStyle } from './ui/ContentStyles';
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export const name = "@atlaskit/editor-core";
|
|
2
|
-
export const version = "193.27.
|
|
2
|
+
export const version = "193.27.14";
|
package/dist/esm/index.js
CHANGED
|
@@ -1,6 +1,3 @@
|
|
|
1
|
-
// [ED-22843] use FF in editor-core for sake of example
|
|
2
|
-
import { getBooleanFF } from '@atlaskit/platform-feature-flags';
|
|
3
|
-
|
|
4
1
|
// Used in products integration code
|
|
5
2
|
export { name, version } from './version-wrapper';
|
|
6
3
|
export { default as Editor } from './editor';
|
|
@@ -53,11 +50,4 @@ export { PortalProvider, LegacyPortalProviderAPI, PortalRenderer } from '@atlask
|
|
|
53
50
|
* Please use the export from `@atlaskit/editor-plugins/media/types`.
|
|
54
51
|
*/
|
|
55
52
|
|
|
56
|
-
// [ED-22843] use FF in editor-core for sake of example
|
|
57
|
-
// @ts-expect-error function is not being used
|
|
58
|
-
var ignoreFunction = function ignoreFunction() {
|
|
59
|
-
// eslint-disable-next-line @atlaskit/platform/no-invalid-feature-flag-usage, @atlaskit/platform/ensure-feature-flag-prefix
|
|
60
|
-
getBooleanFF('__live-view-toggle');
|
|
61
|
-
return;
|
|
62
|
-
};
|
|
63
53
|
export { createEditorContentStyle } from './ui/ContentStyles';
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export var name = "@atlaskit/editor-core";
|
|
2
|
-
export var version = "193.27.
|
|
2
|
+
export var version = "193.27.14";
|