@atlaskit/editor-core 201.1.0 → 201.1.1
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 +9 -0
- package/dist/cjs/ui/Appearance/FullPage/StyledComponents.js +1 -1
- package/dist/cjs/version-wrapper.js +1 -1
- package/dist/es2019/ui/Appearance/FullPage/StyledComponents.js +1 -1
- package/dist/es2019/version-wrapper.js +1 -1
- package/dist/esm/ui/Appearance/FullPage/StyledComponents.js +1 -1
- package/dist/esm/version-wrapper.js +1 -1
- package/dist/types/create-editor/create-universal-preset.d.ts +243 -34
- package/dist/types/presets/default.d.ts +156 -28
- package/dist/types/presets/universal.d.ts +243 -34
- package/dist/types/presets/useUniversalPreset.d.ts +243 -34
- package/dist/types-ts4.5/create-editor/create-universal-preset.d.ts +293 -34
- package/dist/types-ts4.5/presets/default.d.ts +186 -28
- package/dist/types-ts4.5/presets/universal.d.ts +293 -34
- package/dist/types-ts4.5/presets/useUniversalPreset.d.ts +293 -34
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# @atlaskit/editor-core
|
|
2
2
|
|
|
3
|
+
## 201.1.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#156102](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/156102)
|
|
8
|
+
[`05bfe209f2801`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/05bfe209f2801) -
|
|
9
|
+
Replace platform.editor.core.increase-full-page-guttering with new FG
|
|
10
|
+
- Updated dependencies
|
|
11
|
+
|
|
3
12
|
## 201.1.0
|
|
4
13
|
|
|
5
14
|
### Minor Changes
|
|
@@ -199,7 +199,7 @@ _commonStyles.tableFullPageEditorStyles, {
|
|
|
199
199
|
|
|
200
200
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles -- Ignored via go/DSP-18766
|
|
201
201
|
var editorContentGutterStyle = exports.editorContentGutterStyle = function editorContentGutterStyle() {
|
|
202
|
-
var padding = (0, _platformFeatureFlags.fg)('
|
|
202
|
+
var padding = (0, _platformFeatureFlags.fg)('platform_editor_core_increase_full_page_guttering') ? // there is no space token for 52px
|
|
203
203
|
"0 52px" : "0 ".concat("var(--ds-space-400, 32px)");
|
|
204
204
|
return (0, _react.css)({
|
|
205
205
|
boxSizing: 'border-box',
|
|
@@ -189,7 +189,7 @@ tableFullPageEditorStyles, {
|
|
|
189
189
|
|
|
190
190
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles -- Ignored via go/DSP-18766
|
|
191
191
|
export const editorContentGutterStyle = () => {
|
|
192
|
-
const padding = fg('
|
|
192
|
+
const padding = fg('platform_editor_core_increase_full_page_guttering') ?
|
|
193
193
|
// there is no space token for 52px
|
|
194
194
|
`0 52px` : `0 ${"var(--ds-space-400, 32px)"}`;
|
|
195
195
|
return css({
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export const name = "@atlaskit/editor-core";
|
|
2
|
-
export const version = "201.1.
|
|
2
|
+
export const version = "201.1.1";
|
|
@@ -194,7 +194,7 @@ tableFullPageEditorStyles, {
|
|
|
194
194
|
|
|
195
195
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles -- Ignored via go/DSP-18766
|
|
196
196
|
export var editorContentGutterStyle = function editorContentGutterStyle() {
|
|
197
|
-
var padding = fg('
|
|
197
|
+
var padding = fg('platform_editor_core_increase_full_page_guttering') ? // there is no space token for 52px
|
|
198
198
|
"0 52px" : "0 ".concat("var(--ds-space-400, 32px)");
|
|
199
199
|
return css({
|
|
200
200
|
boxSizing: 'border-box',
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export var name = "@atlaskit/editor-core";
|
|
2
|
-
export var version = "201.1.
|
|
2
|
+
export var version = "201.1.1";
|