@atlaskit/editor-plugin-help-dialog 1.1.1 → 1.2.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 +16 -0
- package/dist/cjs/ui/Format.js +5 -0
- package/dist/cjs/ui/Modal.js +21 -0
- package/dist/cjs/ui/ModalContent.js +67 -0
- package/dist/cjs/ui/ModalFooter.js +26 -0
- package/dist/cjs/ui/ModalHeader.js +35 -0
- package/dist/cjs/ui/formatting.js +492 -0
- package/dist/cjs/ui/index.js +12 -561
- package/dist/cjs/ui/styles.js +90 -14
- package/dist/cjs/ui/utils.js +55 -0
- package/dist/es2019/ui/Format.js +1 -0
- package/dist/es2019/ui/Modal.js +16 -0
- package/dist/es2019/ui/ModalContent.js +48 -0
- package/dist/es2019/ui/ModalFooter.js +16 -0
- package/dist/es2019/ui/ModalHeader.js +30 -0
- package/dist/es2019/ui/formatting.js +355 -0
- package/dist/es2019/ui/index.js +7 -423
- package/dist/es2019/ui/styles.js +90 -90
- package/dist/es2019/ui/utils.js +48 -0
- package/dist/esm/ui/Format.js +1 -0
- package/dist/esm/ui/Modal.js +14 -0
- package/dist/esm/ui/ModalContent.js +59 -0
- package/dist/esm/ui/ModalFooter.js +18 -0
- package/dist/esm/ui/ModalHeader.js +27 -0
- package/dist/esm/ui/formatting.js +484 -0
- package/dist/esm/ui/index.js +12 -561
- package/dist/esm/ui/styles.js +90 -13
- package/dist/esm/ui/utils.js +48 -0
- package/dist/types/ui/Format.d.ts +8 -0
- package/dist/types/ui/Modal.d.ts +8 -0
- package/dist/types/ui/ModalContent.d.ts +9 -0
- package/dist/types/ui/ModalFooter.d.ts +4 -0
- package/dist/types/ui/ModalHeader.d.ts +10 -0
- package/dist/types/ui/formatting.d.ts +5 -0
- package/dist/types/ui/index.d.ts +3 -16
- package/dist/types/ui/utils.d.ts +5 -0
- package/dist/types-ts4.5/ui/Format.d.ts +8 -0
- package/dist/types-ts4.5/ui/Modal.d.ts +8 -0
- package/dist/types-ts4.5/ui/ModalContent.d.ts +9 -0
- package/dist/types-ts4.5/ui/ModalFooter.d.ts +4 -0
- package/dist/types-ts4.5/ui/ModalHeader.d.ts +10 -0
- package/dist/types-ts4.5/ui/formatting.d.ts +5 -0
- package/dist/types-ts4.5/ui/index.d.ts +3 -16
- package/dist/types-ts4.5/ui/utils.d.ts +5 -0
- package/package.json +14 -16
package/dist/esm/ui/styles.js
CHANGED
|
@@ -1,21 +1,67 @@
|
|
|
1
|
-
import _taggedTemplateLiteral from "@babel/runtime/helpers/taggedTemplateLiteral";
|
|
2
|
-
var _templateObject, _templateObject2, _templateObject3, _templateObject4, _templateObject5, _templateObject6, _templateObject7, _templateObject8, _templateObject9, _templateObject10, _templateObject11;
|
|
3
1
|
import { css } from '@emotion/react';
|
|
4
2
|
import { akEditorUnitZIndex, relativeFontSizeToBase16 } from '@atlaskit/editor-shared-styles';
|
|
5
3
|
import * as colors from '@atlaskit/theme/colors';
|
|
6
4
|
import { N400 } from '@atlaskit/theme/colors';
|
|
7
|
-
export var header = css(
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
5
|
+
export var header = css({
|
|
6
|
+
zIndex: akEditorUnitZIndex,
|
|
7
|
+
minHeight: "var(--ds-space-300, 24px)",
|
|
8
|
+
padding: "var(--ds-space-250, 20px)".concat(" ", "var(--ds-space-500, 40px)"),
|
|
9
|
+
fontSize: relativeFontSizeToBase16(24),
|
|
10
|
+
display: 'flex',
|
|
11
|
+
justifyContent: 'space-between',
|
|
12
|
+
alignItems: 'center',
|
|
13
|
+
boxShadow: "'none'",
|
|
14
|
+
color: "var(--ds-text, ".concat(colors.N400, ")"),
|
|
15
|
+
backgroundColor: "var(--ds-background-neutral-subtle, ".concat(colors.N0, ")"),
|
|
16
|
+
borderRadius: "var(--ds-border-radius, 3px)"
|
|
17
|
+
});
|
|
18
|
+
export var footer = css({
|
|
19
|
+
zIndex: akEditorUnitZIndex,
|
|
20
|
+
fontSize: relativeFontSizeToBase16(14),
|
|
21
|
+
lineHeight: "var(--ds-space-250, 20px)",
|
|
22
|
+
color: "var(--ds-text-subtlest, ".concat(colors.N300, ")"),
|
|
23
|
+
padding: "var(--ds-space-300, 24px)",
|
|
24
|
+
textAlign: 'right',
|
|
25
|
+
boxShadow: "'none'"
|
|
26
|
+
});
|
|
27
|
+
export var contentWrapper = css({
|
|
28
|
+
padding: "var(--ds-space-250, 20px)".concat(" ", "var(--ds-space-500, 40px)"),
|
|
29
|
+
borderBottomRightRadius: "var(--ds-border-radius, 3px)",
|
|
30
|
+
overflow: 'auto',
|
|
31
|
+
position: 'relative',
|
|
32
|
+
color: "var(--ds-text-subtle, ".concat(colors.N400, ")"),
|
|
33
|
+
backgroundColor: "var(--ds-background-neutral-subtle, ".concat(colors.N0, ")")
|
|
34
|
+
});
|
|
35
|
+
export var line = css({
|
|
36
|
+
background: "var(--ds-background-neutral-subtle, #fff)",
|
|
37
|
+
content: "''",
|
|
38
|
+
display: 'block',
|
|
39
|
+
height: "var(--ds-space-025, 2px)",
|
|
40
|
+
left: 0,
|
|
41
|
+
position: 'absolute',
|
|
42
|
+
top: 0,
|
|
43
|
+
right: 0,
|
|
44
|
+
width: '100%',
|
|
45
|
+
minWidth: '604px'
|
|
46
|
+
});
|
|
47
|
+
export var content = css({
|
|
48
|
+
minWidth: '524px',
|
|
49
|
+
width: '100%',
|
|
50
|
+
position: 'relative',
|
|
51
|
+
display: 'flex',
|
|
52
|
+
justifyContent: 'space-between'
|
|
53
|
+
});
|
|
12
54
|
export var column = {
|
|
13
55
|
width: '44%',
|
|
14
56
|
'& > ul': {
|
|
15
57
|
padding: 0
|
|
16
58
|
}
|
|
17
59
|
};
|
|
18
|
-
export var row = css(
|
|
60
|
+
export var row = css({
|
|
61
|
+
margin: "var(--ds-space-250, 20px)".concat(" 0"),
|
|
62
|
+
display: 'flex',
|
|
63
|
+
justifyContent: 'space-between'
|
|
64
|
+
});
|
|
19
65
|
export var dialogHeader = {
|
|
20
66
|
'&': {
|
|
21
67
|
fontSize: relativeFontSizeToBase16(24),
|
|
@@ -34,8 +80,39 @@ export var title = {
|
|
|
34
80
|
lineHeight: 1.42857142857143
|
|
35
81
|
}
|
|
36
82
|
};
|
|
37
|
-
export var codeSm = css(
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
83
|
+
export var codeSm = css({
|
|
84
|
+
backgroundColor: "var(--ds-background-neutral, ".concat(colors.N20, ")"),
|
|
85
|
+
borderRadius: "var(--ds-border-radius, 3px)",
|
|
86
|
+
width: "var(--ds-space-300, 24px)",
|
|
87
|
+
display: 'inline-block',
|
|
88
|
+
height: "var(--ds-space-300, 24px)",
|
|
89
|
+
lineHeight: '24px',
|
|
90
|
+
textAlign: 'center'
|
|
91
|
+
});
|
|
92
|
+
export var codeMd = css({
|
|
93
|
+
backgroundColor: "var(--ds-background-neutral, ".concat(colors.N20, ")"),
|
|
94
|
+
borderRadius: "var(--ds-border-radius, 3px)",
|
|
95
|
+
display: 'inline-block',
|
|
96
|
+
height: "var(--ds-space-300, 24px)",
|
|
97
|
+
lineHeight: '24px',
|
|
98
|
+
width: '50px',
|
|
99
|
+
textAlign: 'center'
|
|
100
|
+
});
|
|
101
|
+
export var codeLg = css({
|
|
102
|
+
backgroundColor: "var(--ds-background-neutral, ".concat(colors.N20, ")"),
|
|
103
|
+
borderRadius: "var(--ds-border-radius, 3px)",
|
|
104
|
+
display: 'inline-block',
|
|
105
|
+
height: "var(--ds-space-300, 24px)",
|
|
106
|
+
lineHeight: "var(--ds-space-300, 24px)",
|
|
107
|
+
padding: "0 ".concat("var(--ds-space-150, 12px)"),
|
|
108
|
+
textAlign: 'center'
|
|
109
|
+
});
|
|
110
|
+
export var shortcutsArray = css({
|
|
111
|
+
display: 'flex',
|
|
112
|
+
flexDirection: 'column',
|
|
113
|
+
flexShrink: 0,
|
|
114
|
+
gap: "var(--ds-space-150, 12px)"
|
|
115
|
+
});
|
|
116
|
+
export var componentFromKeymapWrapperStyles = css({
|
|
117
|
+
flexShrink: 0
|
|
118
|
+
});
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
/** @jsx jsx */
|
|
2
|
+
import { jsx } from '@emotion/react';
|
|
3
|
+
import { browser } from '@atlaskit/editor-common/utils';
|
|
4
|
+
import { codeLg, codeMd, codeSm, componentFromKeymapWrapperStyles } from './styles';
|
|
5
|
+
var getKeyParts = function getKeyParts(keymap) {
|
|
6
|
+
var shortcut = keymap[browser.mac ? 'mac' : 'windows'];
|
|
7
|
+
if (browser.mac) {
|
|
8
|
+
shortcut = shortcut.replace('Alt', 'Opt');
|
|
9
|
+
}
|
|
10
|
+
return shortcut.replace(/\-(?=.)/g, ' + ').split(' ');
|
|
11
|
+
};
|
|
12
|
+
export var shortcutNamesWithoutKeymap = ['emoji', 'mention', 'quickInsert'];
|
|
13
|
+
export var getComponentFromKeymap = function getComponentFromKeymap(keymap) {
|
|
14
|
+
var keyParts = getKeyParts(keymap);
|
|
15
|
+
return jsx("span", {
|
|
16
|
+
css: componentFromKeymapWrapperStyles
|
|
17
|
+
}, keyParts.map(function (part, index) {
|
|
18
|
+
if (part === '+') {
|
|
19
|
+
return jsx("span", {
|
|
20
|
+
key: "".concat(keyParts, "-").concat(index)
|
|
21
|
+
}, ' + ');
|
|
22
|
+
} else if (part === 'Cmd') {
|
|
23
|
+
return jsx("span", {
|
|
24
|
+
css: codeSm,
|
|
25
|
+
key: "".concat(keyParts, "-").concat(index)
|
|
26
|
+
}, "\u2318");
|
|
27
|
+
} else if (['ctrl', 'alt', 'opt', 'shift'].indexOf(part.toLowerCase()) >= 0) {
|
|
28
|
+
return jsx("span", {
|
|
29
|
+
css: codeMd,
|
|
30
|
+
key: "".concat(keyParts, "-").concat(index)
|
|
31
|
+
}, part);
|
|
32
|
+
} else if (['f9', 'f10'].indexOf(part.toLowerCase()) >= 0) {
|
|
33
|
+
return jsx("span", {
|
|
34
|
+
css: codeLg,
|
|
35
|
+
key: "".concat(keyParts, "-").concat(index)
|
|
36
|
+
}, part);
|
|
37
|
+
} else if (part.toLowerCase() === 'enter') {
|
|
38
|
+
return jsx("span", {
|
|
39
|
+
css: codeSm,
|
|
40
|
+
key: "".concat(keyParts, "-").concat(index)
|
|
41
|
+
}, '⏎');
|
|
42
|
+
}
|
|
43
|
+
return jsx("span", {
|
|
44
|
+
css: codeSm,
|
|
45
|
+
key: "".concat(keyParts, "-").concat(index)
|
|
46
|
+
}, part.toUpperCase());
|
|
47
|
+
}));
|
|
48
|
+
};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { jsx } from '@emotion/react';
|
|
2
|
+
import type { OnCloseHandler } from '@atlaskit/modal-dialog';
|
|
3
|
+
import type Format from './Format';
|
|
4
|
+
interface ModalContentProps {
|
|
5
|
+
formatting: Format[];
|
|
6
|
+
onClose: OnCloseHandler | undefined;
|
|
7
|
+
}
|
|
8
|
+
export declare const ModalContent: ({ formatting, onClose }: ModalContentProps) => jsx.JSX.Element;
|
|
9
|
+
export default ModalContent;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import type { WrappedComponentProps } from 'react-intl-next';
|
|
3
|
+
import type { OnCloseHandler } from '@atlaskit/modal-dialog';
|
|
4
|
+
interface ModalHeaderProps extends WrappedComponentProps {
|
|
5
|
+
onClose: OnCloseHandler | undefined;
|
|
6
|
+
}
|
|
7
|
+
declare const ModalHeader: import("react").FC<import("react-intl-next").WithIntlProps<ModalHeaderProps>> & {
|
|
8
|
+
WrappedComponent: import("react").ComponentType<ModalHeaderProps>;
|
|
9
|
+
};
|
|
10
|
+
export default ModalHeader;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import type { IntlShape } from 'react-intl-next';
|
|
2
|
+
import type { Schema } from '@atlaskit/editor-prosemirror/model';
|
|
3
|
+
import type Format from './Format';
|
|
4
|
+
export declare const formatting: (intl: IntlShape) => Format[];
|
|
5
|
+
export declare const getSupportedFormatting: (schema: Schema, intl: IntlShape, imageEnabled?: boolean, quickInsertEnabled?: boolean) => Format[];
|
package/dist/types/ui/index.d.ts
CHANGED
|
@@ -1,27 +1,14 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import {
|
|
3
|
-
import type { IntlShape, WrappedComponentProps } from 'react-intl-next';
|
|
4
|
-
import type { Keymap } from '@atlaskit/editor-common/keymaps';
|
|
2
|
+
import type { WrappedComponentProps } from 'react-intl-next';
|
|
5
3
|
import type { ExtractInjectionAPI } from '@atlaskit/editor-common/types';
|
|
6
|
-
import type { Schema } from '@atlaskit/editor-prosemirror/model';
|
|
7
4
|
import type { EditorView } from '@atlaskit/editor-prosemirror/view';
|
|
8
5
|
import type { HelpDialogPlugin } from '../types';
|
|
9
|
-
export interface Format {
|
|
10
|
-
name: string;
|
|
11
|
-
type: string;
|
|
12
|
-
keymap?: Function;
|
|
13
|
-
autoFormatting?: Function;
|
|
14
|
-
imageEnabled?: boolean;
|
|
15
|
-
}
|
|
16
|
-
export declare const formatting: (intl: IntlShape) => Format[];
|
|
17
|
-
export declare const getSupportedFormatting: (schema: Schema, intl: IntlShape, imageEnabled?: boolean, quickInsertEnabled?: boolean) => Format[];
|
|
18
|
-
export declare const getComponentFromKeymap: (keymap: Keymap) => jsx.JSX.Element;
|
|
19
6
|
export interface HelpDialogProps {
|
|
20
7
|
pluginInjectionApi: ExtractInjectionAPI<HelpDialogPlugin> | undefined;
|
|
21
8
|
editorView: EditorView;
|
|
22
9
|
quickInsertEnabled?: boolean;
|
|
23
10
|
}
|
|
24
|
-
declare const _default: import("react").FC<import("react-intl-next").WithIntlProps<HelpDialogProps & WrappedComponentProps
|
|
25
|
-
WrappedComponent: import("react").ComponentType<HelpDialogProps & WrappedComponentProps
|
|
11
|
+
declare const _default: import("react").FC<import("react-intl-next").WithIntlProps<HelpDialogProps & WrappedComponentProps>> & {
|
|
12
|
+
WrappedComponent: import("react").ComponentType<HelpDialogProps & WrappedComponentProps>;
|
|
26
13
|
};
|
|
27
14
|
export default _default;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { jsx } from '@emotion/react';
|
|
2
|
+
import type { OnCloseHandler } from '@atlaskit/modal-dialog';
|
|
3
|
+
import type Format from './Format';
|
|
4
|
+
interface ModalContentProps {
|
|
5
|
+
formatting: Format[];
|
|
6
|
+
onClose: OnCloseHandler | undefined;
|
|
7
|
+
}
|
|
8
|
+
export declare const ModalContent: ({ formatting, onClose }: ModalContentProps) => jsx.JSX.Element;
|
|
9
|
+
export default ModalContent;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import type { WrappedComponentProps } from 'react-intl-next';
|
|
3
|
+
import type { OnCloseHandler } from '@atlaskit/modal-dialog';
|
|
4
|
+
interface ModalHeaderProps extends WrappedComponentProps {
|
|
5
|
+
onClose: OnCloseHandler | undefined;
|
|
6
|
+
}
|
|
7
|
+
declare const ModalHeader: import("react").FC<import("react-intl-next").WithIntlProps<ModalHeaderProps>> & {
|
|
8
|
+
WrappedComponent: import("react").ComponentType<ModalHeaderProps>;
|
|
9
|
+
};
|
|
10
|
+
export default ModalHeader;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import type { IntlShape } from 'react-intl-next';
|
|
2
|
+
import type { Schema } from '@atlaskit/editor-prosemirror/model';
|
|
3
|
+
import type Format from './Format';
|
|
4
|
+
export declare const formatting: (intl: IntlShape) => Format[];
|
|
5
|
+
export declare const getSupportedFormatting: (schema: Schema, intl: IntlShape, imageEnabled?: boolean, quickInsertEnabled?: boolean) => Format[];
|
|
@@ -1,27 +1,14 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import {
|
|
3
|
-
import type { IntlShape, WrappedComponentProps } from 'react-intl-next';
|
|
4
|
-
import type { Keymap } from '@atlaskit/editor-common/keymaps';
|
|
2
|
+
import type { WrappedComponentProps } from 'react-intl-next';
|
|
5
3
|
import type { ExtractInjectionAPI } from '@atlaskit/editor-common/types';
|
|
6
|
-
import type { Schema } from '@atlaskit/editor-prosemirror/model';
|
|
7
4
|
import type { EditorView } from '@atlaskit/editor-prosemirror/view';
|
|
8
5
|
import type { HelpDialogPlugin } from '../types';
|
|
9
|
-
export interface Format {
|
|
10
|
-
name: string;
|
|
11
|
-
type: string;
|
|
12
|
-
keymap?: Function;
|
|
13
|
-
autoFormatting?: Function;
|
|
14
|
-
imageEnabled?: boolean;
|
|
15
|
-
}
|
|
16
|
-
export declare const formatting: (intl: IntlShape) => Format[];
|
|
17
|
-
export declare const getSupportedFormatting: (schema: Schema, intl: IntlShape, imageEnabled?: boolean, quickInsertEnabled?: boolean) => Format[];
|
|
18
|
-
export declare const getComponentFromKeymap: (keymap: Keymap) => jsx.JSX.Element;
|
|
19
6
|
export interface HelpDialogProps {
|
|
20
7
|
pluginInjectionApi: ExtractInjectionAPI<HelpDialogPlugin> | undefined;
|
|
21
8
|
editorView: EditorView;
|
|
22
9
|
quickInsertEnabled?: boolean;
|
|
23
10
|
}
|
|
24
|
-
declare const _default: import("react").FC<import("react-intl-next").WithIntlProps<HelpDialogProps & WrappedComponentProps
|
|
25
|
-
WrappedComponent: import("react").ComponentType<HelpDialogProps & WrappedComponentProps
|
|
11
|
+
declare const _default: import("react").FC<import("react-intl-next").WithIntlProps<HelpDialogProps & WrappedComponentProps>> & {
|
|
12
|
+
WrappedComponent: import("react").ComponentType<HelpDialogProps & WrappedComponentProps>;
|
|
26
13
|
};
|
|
27
14
|
export default _default;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-help-dialog",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2.0",
|
|
4
4
|
"description": "Help Dialog plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -32,16 +32,16 @@
|
|
|
32
32
|
".": "./src/index.ts"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@atlaskit/editor-common": "^78.
|
|
36
|
-
"@atlaskit/editor-plugin-analytics": "^1.
|
|
37
|
-
"@atlaskit/editor-plugin-quick-insert": "^1.
|
|
38
|
-
"@atlaskit/editor-prosemirror": "
|
|
35
|
+
"@atlaskit/editor-common": "^78.31.0",
|
|
36
|
+
"@atlaskit/editor-plugin-analytics": "^1.1.0",
|
|
37
|
+
"@atlaskit/editor-plugin-quick-insert": "^1.1.0",
|
|
38
|
+
"@atlaskit/editor-prosemirror": "4.0.0",
|
|
39
39
|
"@atlaskit/editor-shared-styles": "^2.9.0",
|
|
40
40
|
"@atlaskit/icon": "^22.1.0",
|
|
41
|
-
"@atlaskit/modal-dialog": "^12.
|
|
41
|
+
"@atlaskit/modal-dialog": "^12.11.0",
|
|
42
42
|
"@atlaskit/platform-feature-flags": "^0.2.5",
|
|
43
|
-
"@atlaskit/theme": "^12.
|
|
44
|
-
"@atlaskit/tokens": "^1.
|
|
43
|
+
"@atlaskit/theme": "^12.7.0",
|
|
44
|
+
"@atlaskit/tokens": "^1.43.0",
|
|
45
45
|
"@babel/runtime": "^7.0.0",
|
|
46
46
|
"@emotion/react": "^11.7.1",
|
|
47
47
|
"react-intl-next": "npm:react-intl@^5.18.1",
|
|
@@ -77,20 +77,15 @@
|
|
|
77
77
|
"ui-components": [
|
|
78
78
|
"lite-mode"
|
|
79
79
|
],
|
|
80
|
-
"deprecation":
|
|
81
|
-
"no-deprecated-imports"
|
|
82
|
-
],
|
|
80
|
+
"deprecation": "no-deprecated-imports",
|
|
83
81
|
"styling": [
|
|
84
|
-
"
|
|
82
|
+
"emotion",
|
|
85
83
|
"emotion"
|
|
86
84
|
]
|
|
87
85
|
}
|
|
88
86
|
},
|
|
89
87
|
"prettier": "@atlassian/atlassian-frontend-prettier-config-1.0.0",
|
|
90
88
|
"platform-feature-flags": {
|
|
91
|
-
"platform.editor.a11y.table-selection_9uv33": {
|
|
92
|
-
"type": "boolean"
|
|
93
|
-
},
|
|
94
89
|
"platform.editor.a11y-media-resizing_b5v0o": {
|
|
95
90
|
"type": "boolean"
|
|
96
91
|
},
|
|
@@ -99,6 +94,9 @@
|
|
|
99
94
|
},
|
|
100
95
|
"platform.editor.text-alignment-keyboard-shortcuts": {
|
|
101
96
|
"type": "boolean"
|
|
97
|
+
},
|
|
98
|
+
"platform.editor.a11y-column-resizing_emcvz": {
|
|
99
|
+
"type": "boolean"
|
|
102
100
|
}
|
|
103
101
|
}
|
|
104
|
-
}
|
|
102
|
+
}
|