@atlaskit/editor-plugin-type-ahead 1.8.3 → 1.8.4
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 +10 -0
- package/dist/types/types.d.ts +6 -1
- package/dist/types-ts4.5/types.d.ts +6 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-type-ahead
|
|
2
2
|
|
|
3
|
+
## 1.8.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#137234](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/137234)
|
|
8
|
+
[`e80c81de138e9`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/e80c81de138e9) -
|
|
9
|
+
[ux] [ED-24803] Experiment for editor block controls which adds a button to insert quickInsert
|
|
10
|
+
elements
|
|
11
|
+
- Updated dependencies
|
|
12
|
+
|
|
3
13
|
## 1.8.3
|
|
4
14
|
|
|
5
15
|
### Patch Changes
|
package/dist/types/types.d.ts
CHANGED
|
@@ -63,7 +63,12 @@ export type CreateTypeAheadDecorations = (tr: ReadonlyTransaction, options: {
|
|
|
63
63
|
stats: TypeAheadStatsSerializable | null;
|
|
64
64
|
};
|
|
65
65
|
export type RemoveTypeAheadDecorations = (decorationSet?: DecorationSet) => boolean;
|
|
66
|
-
export type TypeAheadInputMethod = INPUT_METHOD.INSERT_MENU | INPUT_METHOD.KEYBOARD | INPUT_METHOD.QUICK_INSERT | INPUT_METHOD.TOOLBAR
|
|
66
|
+
export type TypeAheadInputMethod = INPUT_METHOD.INSERT_MENU | INPUT_METHOD.KEYBOARD | INPUT_METHOD.QUICK_INSERT | INPUT_METHOD.TOOLBAR
|
|
67
|
+
/**
|
|
68
|
+
* For Typeahead - Empty line prompt experiment
|
|
69
|
+
* Clean up ticket ED-24824
|
|
70
|
+
*/
|
|
71
|
+
| 'blockControl';
|
|
67
72
|
export type TypeAheadPluginOptions = {
|
|
68
73
|
isMobile?: boolean;
|
|
69
74
|
};
|
|
@@ -63,7 +63,12 @@ export type CreateTypeAheadDecorations = (tr: ReadonlyTransaction, options: {
|
|
|
63
63
|
stats: TypeAheadStatsSerializable | null;
|
|
64
64
|
};
|
|
65
65
|
export type RemoveTypeAheadDecorations = (decorationSet?: DecorationSet) => boolean;
|
|
66
|
-
export type TypeAheadInputMethod = INPUT_METHOD.INSERT_MENU | INPUT_METHOD.KEYBOARD | INPUT_METHOD.QUICK_INSERT | INPUT_METHOD.TOOLBAR
|
|
66
|
+
export type TypeAheadInputMethod = INPUT_METHOD.INSERT_MENU | INPUT_METHOD.KEYBOARD | INPUT_METHOD.QUICK_INSERT | INPUT_METHOD.TOOLBAR
|
|
67
|
+
/**
|
|
68
|
+
* For Typeahead - Empty line prompt experiment
|
|
69
|
+
* Clean up ticket ED-24824
|
|
70
|
+
*/
|
|
71
|
+
| 'blockControl';
|
|
67
72
|
export type TypeAheadPluginOptions = {
|
|
68
73
|
isMobile?: boolean;
|
|
69
74
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-type-ahead",
|
|
3
|
-
"version": "1.8.
|
|
3
|
+
"version": "1.8.4",
|
|
4
4
|
"description": "Type-ahead plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"@atlaskit/adf-schema": "^40.9.0",
|
|
35
|
-
"@atlaskit/editor-common": "^88.
|
|
35
|
+
"@atlaskit/editor-common": "^88.9.0",
|
|
36
36
|
"@atlaskit/editor-plugin-analytics": "^1.8.0",
|
|
37
37
|
"@atlaskit/editor-prosemirror": "5.0.1",
|
|
38
38
|
"@atlaskit/editor-shared-styles": "^2.13.0",
|