@atlaskit/editor-core 209.3.5 → 209.4.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 +21 -0
- package/afm-cc/tsconfig.json +107 -101
- package/afm-jira/tsconfig.json +7 -1
- package/afm-post-office/tsconfig.json +7 -1
- package/afm-rovo-extension/tsconfig.json +7 -1
- package/afm-townsquare/tsconfig.json +7 -1
- package/build/tsconfig.json +7 -1
- 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 +3 -0
- package/dist/types-ts4.5/presets/universal.d.ts +3 -0
- package/package.json +8 -8
- package/tsconfig.json +8 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# @atlaskit/editor-core
|
|
2
2
|
|
|
3
|
+
## 209.4.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#193889](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/193889)
|
|
8
|
+
[`6d4374ce318fd`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/6d4374ce318fd) -
|
|
9
|
+
[EDITOR-1073] Add i18n for Track Changes button & toggle button on toolbar with plugin option
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Updated dependencies
|
|
14
|
+
|
|
15
|
+
## 209.3.6
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- [#193870](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/193870)
|
|
20
|
+
[`703c443a064fe`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/703c443a064fe) -
|
|
21
|
+
[ux] EDITOR-342 clean up nested table feature gate platform_editor_nested_table_drag_controls
|
|
22
|
+
- Updated dependencies
|
|
23
|
+
|
|
3
24
|
## 209.3.5
|
|
4
25
|
|
|
5
26
|
### Patch Changes
|
package/afm-cc/tsconfig.json
CHANGED
|
@@ -1,103 +1,109 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
2
|
+
"extends": "../../../../tsconfig.entry-points.confluence.json",
|
|
3
|
+
"compilerOptions": {
|
|
4
|
+
"declaration": true,
|
|
5
|
+
"target": "es5",
|
|
6
|
+
"composite": true,
|
|
7
|
+
"outDir": "../../../../../confluence/tsDist/@atlaskit__editor-core",
|
|
8
|
+
"rootDir": "../"
|
|
9
|
+
},
|
|
10
|
+
"include": [
|
|
11
|
+
"../src/**/*.ts",
|
|
12
|
+
"../src/**/*.tsx"
|
|
13
|
+
],
|
|
14
|
+
"exclude": [
|
|
15
|
+
"../src/**/__tests__/*",
|
|
16
|
+
"../src/**/*.test.*",
|
|
17
|
+
"../src/**/test.*",
|
|
18
|
+
"../src/stories/*",
|
|
19
|
+
"../src/**/examples.*",
|
|
20
|
+
"../src/**/examples/*",
|
|
21
|
+
"../src/**/examples/**/*",
|
|
22
|
+
"../src/**/*.stories.*",
|
|
23
|
+
"../src/**/stories/*",
|
|
24
|
+
"../src/**/stories/**/*"
|
|
25
|
+
],
|
|
26
|
+
"references": [
|
|
27
|
+
{
|
|
28
|
+
"path": "../../activity-provider/afm-cc/tsconfig.json"
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"path": "../../../analytics/analytics-namespaced-context/afm-cc/tsconfig.json"
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"path": "../../../analytics/analytics-next/afm-cc/tsconfig.json"
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"path": "../../../design-system/button/afm-cc/tsconfig.json"
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"path": "../../../design-system/css/afm-cc/tsconfig.json"
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"path": "../../editor-json-transformer/afm-cc/tsconfig.json"
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"path": "../../editor-performance-metrics/afm-cc/tsconfig.json"
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"path": "../../editor-plugin-quick-insert/afm-cc/tsconfig.json"
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"path": "../../editor-plugin-user-preferences/afm-cc/tsconfig.json"
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"path": "../../editor-plugins/afm-cc/tsconfig.json"
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"path": "../../editor-shared-styles/afm-cc/tsconfig.json"
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
"path": "../../../elements/emoji/afm-cc/tsconfig.json"
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"path": "../../../design-system/icon/afm-cc/tsconfig.json"
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"path": "../../../design-system/link/afm-cc/tsconfig.json"
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
"path": "../../../media/media-card/afm-cc/tsconfig.json"
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"path": "../../../elements/mention/afm-cc/tsconfig.json"
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"path": "../../../platform/feature-flags/afm-cc/tsconfig.json"
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"path": "../../../platform/feature-flags-react/afm-cc/tsconfig.json"
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
"path": "../../../react-ufo/atlaskit/afm-cc/tsconfig.json"
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
"path": "../../../elements/task-decision/afm-cc/tsconfig.json"
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"path": "../../tmp-editor-statsig/afm-cc/tsconfig.json"
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
"path": "../../../design-system/tokens/afm-cc/tsconfig.json"
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"path": "../../../design-system/tooltip/afm-cc/tsconfig.json"
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
"path": "../../../design-system/width-detector/afm-cc/tsconfig.json"
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
"path": "../../editor-common/afm-cc/tsconfig.json"
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
"path": "../../../linking-platform/link-provider/afm-cc/tsconfig.json"
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
"path": "../../../media/media-core/afm-cc/tsconfig.json"
|
|
107
|
+
}
|
|
108
|
+
]
|
|
103
109
|
}
|
package/afm-jira/tsconfig.json
CHANGED
|
@@ -15,7 +15,13 @@
|
|
|
15
15
|
"../src/**/__tests__/*",
|
|
16
16
|
"../src/**/*.test.*",
|
|
17
17
|
"../src/**/test.*",
|
|
18
|
-
"../src/stories/*"
|
|
18
|
+
"../src/stories/*",
|
|
19
|
+
"../src/**/examples.*",
|
|
20
|
+
"../src/**/examples/*",
|
|
21
|
+
"../src/**/examples/**/*",
|
|
22
|
+
"../src/**/*.stories.*",
|
|
23
|
+
"../src/**/stories/*",
|
|
24
|
+
"../src/**/stories/**/*"
|
|
19
25
|
],
|
|
20
26
|
"references": [
|
|
21
27
|
{
|
|
@@ -15,7 +15,13 @@
|
|
|
15
15
|
"../src/**/__tests__/*",
|
|
16
16
|
"../src/**/*.test.*",
|
|
17
17
|
"../src/**/test.*",
|
|
18
|
-
"../src/stories/*"
|
|
18
|
+
"../src/stories/*",
|
|
19
|
+
"../src/**/examples.*",
|
|
20
|
+
"../src/**/examples/*",
|
|
21
|
+
"../src/**/examples/**/*",
|
|
22
|
+
"../src/**/*.stories.*",
|
|
23
|
+
"../src/**/stories/*",
|
|
24
|
+
"../src/**/stories/**/*"
|
|
19
25
|
],
|
|
20
26
|
"references": [
|
|
21
27
|
{
|
|
@@ -15,7 +15,13 @@
|
|
|
15
15
|
"../src/**/__tests__/*",
|
|
16
16
|
"../src/**/*.test.*",
|
|
17
17
|
"../src/**/test.*",
|
|
18
|
-
"../src/stories/*"
|
|
18
|
+
"../src/stories/*",
|
|
19
|
+
"../src/**/examples.*",
|
|
20
|
+
"../src/**/examples/*",
|
|
21
|
+
"../src/**/examples/**/*",
|
|
22
|
+
"../src/**/*.stories.*",
|
|
23
|
+
"../src/**/stories/*",
|
|
24
|
+
"../src/**/stories/**/*"
|
|
19
25
|
],
|
|
20
26
|
"references": [
|
|
21
27
|
{
|
|
@@ -15,7 +15,13 @@
|
|
|
15
15
|
"../src/**/__tests__/*",
|
|
16
16
|
"../src/**/*.test.*",
|
|
17
17
|
"../src/**/test.*",
|
|
18
|
-
"../src/stories/*"
|
|
18
|
+
"../src/stories/*",
|
|
19
|
+
"../src/**/examples.*",
|
|
20
|
+
"../src/**/examples/*",
|
|
21
|
+
"../src/**/examples/**/*",
|
|
22
|
+
"../src/**/*.stories.*",
|
|
23
|
+
"../src/**/stories/*",
|
|
24
|
+
"../src/**/stories/**/*"
|
|
19
25
|
],
|
|
20
26
|
"references": [
|
|
21
27
|
{
|
package/build/tsconfig.json
CHANGED
|
@@ -13,6 +13,12 @@
|
|
|
13
13
|
"../src/**/__tests__/*",
|
|
14
14
|
"../src/**/*.test.*",
|
|
15
15
|
"../src/**/test.*",
|
|
16
|
-
"../src/stories/*"
|
|
16
|
+
"../src/stories/*",
|
|
17
|
+
"../src/**/examples.*",
|
|
18
|
+
"../src/**/examples/*",
|
|
19
|
+
"../src/**/examples/**/*",
|
|
20
|
+
"../src/**/*.stories.*",
|
|
21
|
+
"../src/**/stories/*",
|
|
22
|
+
"../src/**/stories/**/*"
|
|
17
23
|
]
|
|
18
24
|
}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export const name = "@atlaskit/editor-core";
|
|
2
|
-
export const version = "209.3.
|
|
2
|
+
export const version = "209.3.6";
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export var name = "@atlaskit/editor-core";
|
|
2
|
-
export var version = "209.3.
|
|
2
|
+
export var version = "209.3.6";
|
|
@@ -30,6 +30,9 @@ export type InitialPluginConfiguration = {
|
|
|
30
30
|
extensionPlugin?: {
|
|
31
31
|
__rendererExtensionOptions?: ExtensionPluginOptions['__rendererExtensionOptions'];
|
|
32
32
|
};
|
|
33
|
+
trackChangesPlugin?: {
|
|
34
|
+
showOnToolbar?: boolean;
|
|
35
|
+
};
|
|
33
36
|
};
|
|
34
37
|
/**
|
|
35
38
|
* Creates a preset with all of the available plugins.
|
|
@@ -30,6 +30,9 @@ export type InitialPluginConfiguration = {
|
|
|
30
30
|
extensionPlugin?: {
|
|
31
31
|
__rendererExtensionOptions?: ExtensionPluginOptions['__rendererExtensionOptions'];
|
|
32
32
|
};
|
|
33
|
+
trackChangesPlugin?: {
|
|
34
|
+
showOnToolbar?: boolean;
|
|
35
|
+
};
|
|
33
36
|
};
|
|
34
37
|
/**
|
|
35
38
|
* Creates a preset with all of the available plugins.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-core",
|
|
3
|
-
"version": "209.
|
|
3
|
+
"version": "209.4.0",
|
|
4
4
|
"description": "A package contains Atlassian editor core functionality",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
"@atlaskit/platform-feature-flags-react": "^0.2.0",
|
|
62
62
|
"@atlaskit/react-ufo": "^4.1.0",
|
|
63
63
|
"@atlaskit/task-decision": "^19.2.0",
|
|
64
|
-
"@atlaskit/tmp-editor-statsig": "^9.
|
|
64
|
+
"@atlaskit/tmp-editor-statsig": "^9.18.0",
|
|
65
65
|
"@atlaskit/tokens": "^5.6.0",
|
|
66
66
|
"@atlaskit/tooltip": "^20.4.0",
|
|
67
67
|
"@atlaskit/width-detector": "^5.0.0",
|
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
"uuid": "^3.1.0"
|
|
79
79
|
},
|
|
80
80
|
"peerDependencies": {
|
|
81
|
-
"@atlaskit/editor-common": "^107.
|
|
81
|
+
"@atlaskit/editor-common": "^107.14.0",
|
|
82
82
|
"@atlaskit/link-provider": "^3.4.0",
|
|
83
83
|
"@atlaskit/media-core": "^37.0.0",
|
|
84
84
|
"react": "^18.2.0",
|
|
@@ -104,7 +104,7 @@
|
|
|
104
104
|
"@atlaskit/primitives": "^14.11.0",
|
|
105
105
|
"@atlaskit/renderer": "^120.3.0",
|
|
106
106
|
"@atlaskit/section-message": "^8.5.0",
|
|
107
|
-
"@atlaskit/smart-card": "^40.
|
|
107
|
+
"@atlaskit/smart-card": "^40.6.0",
|
|
108
108
|
"@atlaskit/synchrony-test-helpers": "workspace:^",
|
|
109
109
|
"@atlaskit/toggle": "^15.1.0",
|
|
110
110
|
"@atlaskit/util-data-test": "^18.0.0",
|
|
@@ -294,6 +294,10 @@
|
|
|
294
294
|
"type": "boolean",
|
|
295
295
|
"referenceOnly": true
|
|
296
296
|
},
|
|
297
|
+
"platform_editor_ai_in_document_streaming": {
|
|
298
|
+
"type": "boolean",
|
|
299
|
+
"referenceOnly": true
|
|
300
|
+
},
|
|
297
301
|
"platform_editor_dnd_update_drag_start_target": {
|
|
298
302
|
"type": "boolean",
|
|
299
303
|
"referenceOnly": true
|
|
@@ -336,10 +340,6 @@
|
|
|
336
340
|
"type": "boolean",
|
|
337
341
|
"referenceOnly": true
|
|
338
342
|
},
|
|
339
|
-
"platform_editor_nested_table_drag_controls": {
|
|
340
|
-
"type": "boolean",
|
|
341
|
-
"referenceOnly": true
|
|
342
|
-
},
|
|
343
343
|
"platform_editor_querySelector_fix_table_renderer": {
|
|
344
344
|
"type": "boolean",
|
|
345
345
|
"referenceOnly": true
|
package/tsconfig.json
CHANGED
|
@@ -9,8 +9,13 @@
|
|
|
9
9
|
"./examples/**/*.tsx",
|
|
10
10
|
"./example-helpers/**/*.ts",
|
|
11
11
|
"./example-helpers/**/*.tsx",
|
|
12
|
-
"./playwright/**/*.ts"
|
|
12
|
+
"./playwright/**/*.ts",
|
|
13
|
+
"**/stories.ts",
|
|
14
|
+
"**/stories.tsx",
|
|
15
|
+
"**/stories/*.ts",
|
|
16
|
+
"**/stories/*.tsx",
|
|
17
|
+
"**/stories/**/*.ts",
|
|
18
|
+
"**/stories/**/*.tsx"
|
|
13
19
|
],
|
|
14
|
-
"compilerOptions": {
|
|
15
|
-
}
|
|
20
|
+
"compilerOptions": {}
|
|
16
21
|
}
|