@atlaskit/editor-core 197.8.3 → 197.9.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/.eslintrc.js +0 -20
- package/CHANGELOG.md +25 -0
- package/afm-cc/tsconfig.json +3 -0
- package/afm-jira/tsconfig.json +3 -0
- package/dist/cjs/ts-hack.js +5 -0
- package/dist/cjs/ui/Appearance/FullPage/FullPageContentArea.js +2 -2
- package/dist/cjs/ui/ContentStyles/expand.js +2 -2
- package/dist/cjs/ui/ContentStyles/layout.js +1 -1
- package/dist/cjs/ui/ContentStyles/panel.js +2 -1
- package/dist/cjs/version-wrapper.js +1 -1
- package/dist/es2019/ts-hack.js +1 -0
- package/dist/es2019/ui/Appearance/FullPage/FullPageContentArea.js +2 -2
- package/dist/es2019/ui/ContentStyles/expand.js +10 -2
- package/dist/es2019/ui/ContentStyles/layout.js +5 -1
- package/dist/es2019/ui/ContentStyles/panel.js +10 -0
- package/dist/es2019/version-wrapper.js +1 -1
- package/dist/esm/ts-hack.js +1 -0
- package/dist/esm/ui/Appearance/FullPage/FullPageContentArea.js +2 -2
- package/dist/esm/ui/ContentStyles/expand.js +2 -2
- package/dist/esm/ui/ContentStyles/layout.js +1 -1
- package/dist/esm/ui/ContentStyles/panel.js +2 -1
- package/dist/esm/version-wrapper.js +1 -1
- package/dist/types/create-editor/create-universal-preset.d.ts +13 -0
- package/dist/types/presets/default.d.ts +12 -0
- package/dist/types/presets/universal.d.ts +13 -0
- package/dist/types/presets/useUniversalPreset.d.ts +13 -0
- package/dist/types/ts-hack.d.ts +10 -0
- package/dist/types-ts4.5/create-editor/create-universal-preset.d.ts +13 -0
- package/dist/types-ts4.5/presets/default.d.ts +12 -0
- package/dist/types-ts4.5/presets/universal.d.ts +13 -0
- package/dist/types-ts4.5/presets/useUniversalPreset.d.ts +13 -0
- package/dist/types-ts4.5/ts-hack.d.ts +10 -0
- package/package.json +8 -7
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file is a temporary hack to allow the editor to have references to the QuickInsertPlugin type.
|
|
3
|
+
*
|
|
4
|
+
* There is bug in tsconfig references generation, where it only adds references to the immediate dependencies of the project.
|
|
5
|
+
* and not transitive dependencies. Typescript doesnt look into transitive dependencies tp update cached declarations of a package.
|
|
6
|
+
*
|
|
7
|
+
* Typecheck team is working on a fix for this issue.
|
|
8
|
+
**/
|
|
9
|
+
import { type QuickInsertPlugin } from '@atlaskit/editor-plugin-quick-insert';
|
|
10
|
+
export type tmpQuickInsertPlugin = QuickInsertPlugin;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-core",
|
|
3
|
-
"version": "197.
|
|
3
|
+
"version": "197.9.0",
|
|
4
4
|
"description": "A package contains Atlassian editor core functionality",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -43,8 +43,9 @@
|
|
|
43
43
|
"@atlaskit/analytics-next": "^10.1.0",
|
|
44
44
|
"@atlaskit/analytics-next-stable-react-context": "1.0.1",
|
|
45
45
|
"@atlaskit/button": "^20.1.0",
|
|
46
|
-
"@atlaskit/editor-common": "^
|
|
46
|
+
"@atlaskit/editor-common": "^90.0.0",
|
|
47
47
|
"@atlaskit/editor-json-transformer": "^8.18.0",
|
|
48
|
+
"@atlaskit/editor-plugin-quick-insert": "1.4.1",
|
|
48
49
|
"@atlaskit/editor-plugins": "^5.3.0",
|
|
49
50
|
"@atlaskit/editor-prosemirror": "6.0.0",
|
|
50
51
|
"@atlaskit/editor-shared-styles": "^2.13.0",
|
|
@@ -78,13 +79,13 @@
|
|
|
78
79
|
"react-intl-next": "npm:react-intl@^5.18.1"
|
|
79
80
|
},
|
|
80
81
|
"devDependencies": {
|
|
81
|
-
"@af/editor-examples-helpers": "0.3.
|
|
82
|
+
"@af/editor-examples-helpers": "0.3.11",
|
|
82
83
|
"@af/editor-libra": "*",
|
|
83
84
|
"@af/visual-regression": "*",
|
|
84
85
|
"@atlaskit/adf-utils": "^19.8.0",
|
|
85
86
|
"@atlaskit/analytics-listeners": "^8.11.0",
|
|
86
|
-
"@atlaskit/collab-provider": "9.40.
|
|
87
|
-
"@atlaskit/editor-plugin-annotation": "1.19.
|
|
87
|
+
"@atlaskit/collab-provider": "9.40.4",
|
|
88
|
+
"@atlaskit/editor-plugin-annotation": "1.19.7",
|
|
88
89
|
"@atlaskit/editor-plugin-card": "^3.0.0",
|
|
89
90
|
"@atlaskit/editor-plugin-editor-viewmode": "^2.1.0",
|
|
90
91
|
"@atlaskit/editor-plugin-list": "^3.8.0",
|
|
@@ -97,7 +98,7 @@
|
|
|
97
98
|
"@atlaskit/media-test-helpers": "^34.4.0",
|
|
98
99
|
"@atlaskit/modal-dialog": "^12.16.0",
|
|
99
100
|
"@atlaskit/primitives": "^12.1.0",
|
|
100
|
-
"@atlaskit/renderer": "^110.
|
|
101
|
+
"@atlaskit/renderer": "^110.3.0",
|
|
101
102
|
"@atlaskit/smart-card": "^28.1.0",
|
|
102
103
|
"@atlaskit/synchrony-test-helpers": "^2.5.0",
|
|
103
104
|
"@atlaskit/toggle": "^13.4.0",
|
|
@@ -105,7 +106,7 @@
|
|
|
105
106
|
"@atlaskit/visual-regression": "*",
|
|
106
107
|
"@atlassian/adf-schema-json": "^1.22.0",
|
|
107
108
|
"@atlassian/feature-flags-test-utils": "*",
|
|
108
|
-
"@atlassian/search-provider": "2.4.
|
|
109
|
+
"@atlassian/search-provider": "2.4.136",
|
|
109
110
|
"@emotion/jest": "^11.8.0",
|
|
110
111
|
"@storybook/addon-knobs": "^5.3.18",
|
|
111
112
|
"@testing-library/react": "^12.1.5",
|