@atlaskit/editor-core 216.9.1 → 216.9.2
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/presets/universal.d.ts +2 -2
- package/dist/types-ts4.5/presets/universal.d.ts +2 -2
- package/package.json +2 -6
- package/tsconfig.json +1 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @atlaskit/editor-core
|
|
2
2
|
|
|
3
|
+
## 216.9.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`d1ee0512f85f4`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/d1ee0512f85f4) -
|
|
8
|
+
[EDITOR-4531] Cleans up FG platform_editor_table_numbered_table_border
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
|
|
3
11
|
## 216.9.1
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export const name = "@atlaskit/editor-core";
|
|
2
|
-
export const version = "216.9.
|
|
2
|
+
export const version = "216.9.1";
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export var name = "@atlaskit/editor-core";
|
|
2
|
-
export var version = "216.9.
|
|
2
|
+
export var version = "216.9.1";
|
|
@@ -673,10 +673,10 @@ export default function createUniversalPresetInternal({ appearance, props, featu
|
|
|
673
673
|
}) => boolean;
|
|
674
674
|
findHandlerByTrigger: (trigger: string) => import("@atlaskit/editor-common/types").TypeAheadHandler | null;
|
|
675
675
|
insert: (props: {
|
|
676
|
-
contentItem: import("@atlaskit/editor-common/
|
|
676
|
+
contentItem: import("@atlaskit/editor-common/provider-factory").TypeAheadItem;
|
|
677
677
|
mode?: import("@atlaskit/editor-common/type-ahead").SelectItemMode;
|
|
678
678
|
query: string;
|
|
679
|
-
sourceListItem: import("@atlaskit/editor-common/
|
|
679
|
+
sourceListItem: import("@atlaskit/editor-common/provider-factory").TypeAheadItem[];
|
|
680
680
|
triggerHandler: import("@atlaskit/editor-common/types").TypeAheadHandler;
|
|
681
681
|
}) => boolean;
|
|
682
682
|
isAllowed: (editorState: import("prosemirror-state").EditorState) => boolean;
|
|
@@ -929,10 +929,10 @@ export default function createUniversalPresetInternal({ appearance, props, featu
|
|
|
929
929
|
}) => boolean;
|
|
930
930
|
findHandlerByTrigger: (trigger: string) => import("@atlaskit/editor-common/types").TypeAheadHandler | null;
|
|
931
931
|
insert: (props: {
|
|
932
|
-
contentItem: import("@atlaskit/editor-common/
|
|
932
|
+
contentItem: import("@atlaskit/editor-common/provider-factory").TypeAheadItem;
|
|
933
933
|
mode?: import("@atlaskit/editor-common/type-ahead").SelectItemMode;
|
|
934
934
|
query: string;
|
|
935
|
-
sourceListItem: import("@atlaskit/editor-common/
|
|
935
|
+
sourceListItem: import("@atlaskit/editor-common/provider-factory").TypeAheadItem[];
|
|
936
936
|
triggerHandler: import("@atlaskit/editor-common/types").TypeAheadHandler;
|
|
937
937
|
}) => boolean;
|
|
938
938
|
isAllowed: (editorState: import("prosemirror-state").EditorState) => boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-core",
|
|
3
|
-
"version": "216.9.
|
|
3
|
+
"version": "216.9.2",
|
|
4
4
|
"description": "A package contains Atlassian editor core functionality",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -64,7 +64,7 @@
|
|
|
64
64
|
"@atlaskit/mention": "^24.4.0",
|
|
65
65
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
66
66
|
"@atlaskit/platform-feature-flags-react": "^0.4.0",
|
|
67
|
-
"@atlaskit/react-ufo": "^5.
|
|
67
|
+
"@atlaskit/react-ufo": "^5.2.0",
|
|
68
68
|
"@atlaskit/task-decision": "^19.2.0",
|
|
69
69
|
"@atlaskit/tmp-editor-statsig": "^23.0.0",
|
|
70
70
|
"@atlaskit/tokens": "^11.0.0",
|
|
@@ -159,10 +159,6 @@
|
|
|
159
159
|
"type": "boolean",
|
|
160
160
|
"referenceOnly": "true"
|
|
161
161
|
},
|
|
162
|
-
"platform_editor_table_numbered_table_border": {
|
|
163
|
-
"type": "boolean",
|
|
164
|
-
"referenceOnly": true
|
|
165
|
-
},
|
|
166
162
|
"platform_editor_prevent_toolbar_width_reflow": {
|
|
167
163
|
"type": "boolean"
|
|
168
164
|
},
|