@atlaskit/editor-core 203.11.8 → 203.11.9
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 +8 -0
- package/dist/cjs/version-wrapper.js +1 -1
- package/dist/es2019/version-wrapper.js +1 -1
- package/dist/esm/version-wrapper.js +1 -1
- package/dist/types/utils/prepare-quick-insert-provider.d.ts +1 -2
- package/dist/types-ts4.5/utils/prepare-quick-insert-provider.d.ts +1 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @atlaskit/editor-core
|
|
2
2
|
|
|
3
|
+
## 203.11.9
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#104847](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/104847)
|
|
8
|
+
[`b55fc11242d17`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/b55fc11242d17) -
|
|
9
|
+
Consolidate duplicate import statements
|
|
10
|
+
|
|
3
11
|
## 203.11.8
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export const name = "@atlaskit/editor-core";
|
|
2
|
-
export const version = "203.11.
|
|
2
|
+
export const version = "203.11.9";
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export var name = "@atlaskit/editor-core";
|
|
2
|
-
export var version = "203.11.
|
|
2
|
+
export var version = "203.11.9";
|
|
@@ -2,8 +2,7 @@
|
|
|
2
2
|
import type { CreateUIAnalyticsEvent } from '@atlaskit/analytics-next/types';
|
|
3
3
|
import type { ExtensionProvider } from '@atlaskit/editor-common/extensions';
|
|
4
4
|
import type { QuickInsertProvider } from '@atlaskit/editor-common/provider-factory';
|
|
5
|
-
import type { QuickInsertOptions } from '@atlaskit/editor-common/types';
|
|
6
|
-
import { type PublicPluginAPI } from '@atlaskit/editor-common/types';
|
|
5
|
+
import type { QuickInsertOptions, PublicPluginAPI } from '@atlaskit/editor-common/types';
|
|
7
6
|
import type { ExtensionPlugin } from '@atlaskit/editor-plugins/extension';
|
|
8
7
|
import type EditorActions from '../actions';
|
|
9
8
|
/**
|
|
@@ -2,8 +2,7 @@
|
|
|
2
2
|
import type { CreateUIAnalyticsEvent } from '@atlaskit/analytics-next/types';
|
|
3
3
|
import type { ExtensionProvider } from '@atlaskit/editor-common/extensions';
|
|
4
4
|
import type { QuickInsertProvider } from '@atlaskit/editor-common/provider-factory';
|
|
5
|
-
import type { QuickInsertOptions } from '@atlaskit/editor-common/types';
|
|
6
|
-
import { type PublicPluginAPI } from '@atlaskit/editor-common/types';
|
|
5
|
+
import type { QuickInsertOptions, PublicPluginAPI } from '@atlaskit/editor-common/types';
|
|
7
6
|
import type { ExtensionPlugin } from '@atlaskit/editor-plugins/extension';
|
|
8
7
|
import type EditorActions from '../actions';
|
|
9
8
|
/**
|