@atlaskit/editor-plugin-quick-insert 2.2.4 → 2.3.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/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-quick-insert
|
|
2
2
|
|
|
3
|
+
## 2.3.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#139139](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/139139)
|
|
8
|
+
[`7f6b665d778dd`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/7f6b665d778dd) -
|
|
9
|
+
[https://product-fabric.atlassian.net/browse/ED-27499](ED-27499) - the new
|
|
10
|
+
`@atlassian/confluence-presets` package with Confluence `full-page` preset is created
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies
|
|
15
|
+
|
|
3
16
|
## 2.2.4
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
package/dist/types/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export { quickInsertPlugin } from './quickInsertPlugin';
|
|
2
|
-
export type { QuickInsertPlugin, QuickInsertSharedState } from './quickInsertPluginType';
|
|
2
|
+
export type { QuickInsertPlugin, QuickInsertSharedState, QuickInsertPluginOptions, } from './quickInsertPluginType';
|
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
import type { INPUT_METHOD } from '@atlaskit/editor-common/analytics';
|
|
2
2
|
import type { QuickInsertItem } from '@atlaskit/editor-common/provider-factory';
|
|
3
|
-
import type { Command, QuickInsertSharedState as CommonQuickInsertSharedState, EditorCommand, NextEditorPlugin, OptionalPlugin, QuickInsertHandler, QuickInsertPluginOptions, QuickInsertSearchOptions, TypeAheadHandler } from '@atlaskit/editor-common/types';
|
|
3
|
+
import type { Command, QuickInsertSharedState as CommonQuickInsertSharedState, EditorCommand, NextEditorPlugin, OptionalPlugin, QuickInsertHandler, QuickInsertPluginOptions as CommonQuickInsertPluginOptions, QuickInsertSearchOptions, TypeAheadHandler } from '@atlaskit/editor-common/types';
|
|
4
4
|
import { type ConnectivityPlugin } from '@atlaskit/editor-plugin-connectivity';
|
|
5
5
|
import type { TypeAheadInputMethod, TypeAheadPlugin } from '@atlaskit/editor-plugin-type-ahead';
|
|
6
6
|
export type QuickInsertSharedState = CommonQuickInsertSharedState & {
|
|
7
7
|
typeAheadHandler: TypeAheadHandler;
|
|
8
8
|
};
|
|
9
|
+
export type QuickInsertPluginOptions = CommonQuickInsertPluginOptions;
|
|
9
10
|
export type QuickInsertPlugin = NextEditorPlugin<'quickInsert', {
|
|
10
11
|
pluginConfiguration: QuickInsertPluginOptions | undefined;
|
|
11
12
|
dependencies: [TypeAheadPlugin, OptionalPlugin<ConnectivityPlugin>];
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export { quickInsertPlugin } from './quickInsertPlugin';
|
|
2
|
-
export type { QuickInsertPlugin, QuickInsertSharedState } from './quickInsertPluginType';
|
|
2
|
+
export type { QuickInsertPlugin, QuickInsertSharedState, QuickInsertPluginOptions, } from './quickInsertPluginType';
|
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
import type { INPUT_METHOD } from '@atlaskit/editor-common/analytics';
|
|
2
2
|
import type { QuickInsertItem } from '@atlaskit/editor-common/provider-factory';
|
|
3
|
-
import type { Command, QuickInsertSharedState as CommonQuickInsertSharedState, EditorCommand, NextEditorPlugin, OptionalPlugin, QuickInsertHandler, QuickInsertPluginOptions, QuickInsertSearchOptions, TypeAheadHandler } from '@atlaskit/editor-common/types';
|
|
3
|
+
import type { Command, QuickInsertSharedState as CommonQuickInsertSharedState, EditorCommand, NextEditorPlugin, OptionalPlugin, QuickInsertHandler, QuickInsertPluginOptions as CommonQuickInsertPluginOptions, QuickInsertSearchOptions, TypeAheadHandler } from '@atlaskit/editor-common/types';
|
|
4
4
|
import { type ConnectivityPlugin } from '@atlaskit/editor-plugin-connectivity';
|
|
5
5
|
import type { TypeAheadInputMethod, TypeAheadPlugin } from '@atlaskit/editor-plugin-type-ahead';
|
|
6
6
|
export type QuickInsertSharedState = CommonQuickInsertSharedState & {
|
|
7
7
|
typeAheadHandler: TypeAheadHandler;
|
|
8
8
|
};
|
|
9
|
+
export type QuickInsertPluginOptions = CommonQuickInsertPluginOptions;
|
|
9
10
|
export type QuickInsertPlugin = NextEditorPlugin<'quickInsert', {
|
|
10
11
|
pluginConfiguration: QuickInsertPluginOptions | undefined;
|
|
11
12
|
dependencies: [
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-quick-insert",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.3.0",
|
|
4
4
|
"description": "Quick insert plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"@atlaskit/button": "^23.0.0",
|
|
37
|
-
"@atlaskit/editor-common": "^103.
|
|
37
|
+
"@atlaskit/editor-common": "^103.4.0",
|
|
38
38
|
"@atlaskit/editor-plugin-connectivity": "^2.0.0",
|
|
39
39
|
"@atlaskit/editor-plugin-type-ahead": "^2.3.0",
|
|
40
40
|
"@atlaskit/editor-prosemirror": "7.0.0",
|