@atlaskit/editor-core 192.5.0 → 192.6.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 +10 -0
- package/dist/cjs/ui/Appearance/FullPage/StyledComponents.js +6 -0
- package/dist/cjs/version-wrapper.js +1 -1
- package/dist/es2019/ui/Appearance/FullPage/StyledComponents.js +6 -0
- package/dist/es2019/version-wrapper.js +1 -1
- package/dist/esm/ui/Appearance/FullPage/StyledComponents.js +6 -0
- package/dist/esm/version-wrapper.js +1 -1
- package/package.json +10 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# @atlaskit/editor-core
|
|
2
2
|
|
|
3
|
+
## 192.6.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#63691](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/63691) [`02293e70771b`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/02293e70771b) - add allowWidthDetector option to be used to skip width detector in renderer, to make media single works in inline extension like excerpt include
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies
|
|
12
|
+
|
|
3
13
|
## 192.5.0
|
|
4
14
|
|
|
5
15
|
### Minor Changes
|
|
@@ -82,6 +82,12 @@ var editorContentAreaContainerStyle = function editorContentAreaContainerStyle(c
|
|
|
82
82
|
'.pm-table-container, .code-block, .extension-container': {
|
|
83
83
|
maxWidth: "".concat(containerWidth - TOTAL_PADDING - _consts.tableMarginFullWidthMode * 2, "px")
|
|
84
84
|
},
|
|
85
|
+
'.extension-container.inline': {
|
|
86
|
+
maxWidth: '100%'
|
|
87
|
+
},
|
|
88
|
+
'td .extension-container.inline': {
|
|
89
|
+
maxWidth: 'inherit'
|
|
90
|
+
},
|
|
85
91
|
'.multiBodiedExtension--container': {
|
|
86
92
|
maxWidth: "".concat(containerWidth - TOTAL_PADDING - _consts.tableMarginFullWidthMode * 2, "px")
|
|
87
93
|
},
|
|
@@ -72,6 +72,12 @@ const editorContentAreaContainerStyle = containerWidth => css({
|
|
|
72
72
|
'.pm-table-container, .code-block, .extension-container': {
|
|
73
73
|
maxWidth: `${containerWidth - TOTAL_PADDING - tableMarginFullWidthMode * 2}px`
|
|
74
74
|
},
|
|
75
|
+
'.extension-container.inline': {
|
|
76
|
+
maxWidth: '100%'
|
|
77
|
+
},
|
|
78
|
+
'td .extension-container.inline': {
|
|
79
|
+
maxWidth: 'inherit'
|
|
80
|
+
},
|
|
75
81
|
'.multiBodiedExtension--container': {
|
|
76
82
|
maxWidth: `${containerWidth - TOTAL_PADDING - tableMarginFullWidthMode * 2}px`
|
|
77
83
|
},
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export const name = "@atlaskit/editor-core";
|
|
2
|
-
export const version = "192.
|
|
2
|
+
export const version = "192.6.0";
|
|
@@ -75,6 +75,12 @@ var editorContentAreaContainerStyle = function editorContentAreaContainerStyle(c
|
|
|
75
75
|
'.pm-table-container, .code-block, .extension-container': {
|
|
76
76
|
maxWidth: "".concat(containerWidth - TOTAL_PADDING - tableMarginFullWidthMode * 2, "px")
|
|
77
77
|
},
|
|
78
|
+
'.extension-container.inline': {
|
|
79
|
+
maxWidth: '100%'
|
|
80
|
+
},
|
|
81
|
+
'td .extension-container.inline': {
|
|
82
|
+
maxWidth: 'inherit'
|
|
83
|
+
},
|
|
78
84
|
'.multiBodiedExtension--container': {
|
|
79
85
|
maxWidth: "".concat(containerWidth - TOTAL_PADDING - tableMarginFullWidthMode * 2, "px")
|
|
80
86
|
},
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export var name = "@atlaskit/editor-core";
|
|
2
|
-
export var version = "192.
|
|
2
|
+
export var version = "192.6.0";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-core",
|
|
3
|
-
"version": "192.
|
|
3
|
+
"version": "192.6.0",
|
|
4
4
|
"description": "A package contains Atlassian editor core functionality",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"@atlaskit/analytics-next": "^9.2.0",
|
|
47
47
|
"@atlaskit/analytics-next-stable-react-context": "1.0.1",
|
|
48
48
|
"@atlaskit/button": "^17.6.0",
|
|
49
|
-
"@atlaskit/editor-common": "^78.
|
|
49
|
+
"@atlaskit/editor-common": "^78.11.0",
|
|
50
50
|
"@atlaskit/editor-json-transformer": "^8.10.0",
|
|
51
51
|
"@atlaskit/editor-plugins": "^1.5.0",
|
|
52
52
|
"@atlaskit/editor-prosemirror": "3.0.0",
|
|
@@ -88,8 +88,8 @@
|
|
|
88
88
|
"@atlaskit/adf-utils": "^19.0.0",
|
|
89
89
|
"@atlaskit/analytics-listeners": "^8.9.1",
|
|
90
90
|
"@atlaskit/checkbox": "^13.0.0",
|
|
91
|
-
"@atlaskit/collab-provider": "9.25.
|
|
92
|
-
"@atlaskit/dropdown-menu": "^12.
|
|
91
|
+
"@atlaskit/collab-provider": "9.25.4",
|
|
92
|
+
"@atlaskit/dropdown-menu": "^12.7.0",
|
|
93
93
|
"@atlaskit/editor-plugin-annotation": "1.1.0",
|
|
94
94
|
"@atlaskit/editor-plugin-card": "^1.1.0",
|
|
95
95
|
"@atlaskit/editor-plugin-editor-viewmode": "^1.0.0",
|
|
@@ -105,8 +105,8 @@
|
|
|
105
105
|
"@atlaskit/media-test-helpers": "^33.0.27",
|
|
106
106
|
"@atlaskit/modal-dialog": "^12.10.0",
|
|
107
107
|
"@atlaskit/primitives": "^4.0.0",
|
|
108
|
-
"@atlaskit/renderer": "^109.
|
|
109
|
-
"@atlaskit/select": "^17.
|
|
108
|
+
"@atlaskit/renderer": "^109.7.0",
|
|
109
|
+
"@atlaskit/select": "^17.2.0",
|
|
110
110
|
"@atlaskit/smart-card": "^26.48.0",
|
|
111
111
|
"@atlaskit/synchrony-test-helpers": "^2.3.0",
|
|
112
112
|
"@atlaskit/util-data-test": "^17.9.0",
|
|
@@ -237,6 +237,10 @@
|
|
|
237
237
|
},
|
|
238
238
|
"platform.editor.media.preview-in-full-page": {
|
|
239
239
|
"type": "boolean"
|
|
240
|
+
},
|
|
241
|
+
"platform.editor.inline_extension.extended_lcqdn": {
|
|
242
|
+
"type": "boolean",
|
|
243
|
+
"referenceOnly": "true"
|
|
240
244
|
}
|
|
241
245
|
},
|
|
242
246
|
"stricter": {
|