@atlaskit/editor-plugin-block-controls 2.17.0 → 2.17.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 +11 -0
- package/dist/cjs/pm-plugins/handle-mouse-over.js +1 -1
- package/dist/cjs/ui/global-styles.js +3 -11
- package/dist/es2019/pm-plugins/handle-mouse-over.js +1 -1
- package/dist/es2019/ui/global-styles.js +4 -15
- package/dist/esm/pm-plugins/handle-mouse-over.js +1 -1
- package/dist/esm/ui/global-styles.js +3 -11
- package/package.json +1 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-block-controls
|
|
2
2
|
|
|
3
|
+
## 2.17.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#100897](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/100897)
|
|
8
|
+
[`afd84cc21d588`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/afd84cc21d588) -
|
|
9
|
+
Remove FG
|
|
10
|
+
- [#100902](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/100902)
|
|
11
|
+
[`40de6a66cb5e7`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/40de6a66cb5e7) -
|
|
12
|
+
Remove old FG
|
|
13
|
+
|
|
3
14
|
## 2.17.0
|
|
4
15
|
|
|
5
16
|
### Minor Changes
|
|
@@ -73,7 +73,7 @@ var handleMouseOver = exports.handleMouseOver = function handleMouseOver(view, e
|
|
|
73
73
|
// We want to exlude handles from showing for wrapped nodes
|
|
74
74
|
// TODO We should be able remove these check if we decided to
|
|
75
75
|
// go we not decoration for wrapped image solution.
|
|
76
|
-
if (['wrap-right', 'wrap-left'].includes(rootElement.getAttribute('layout') || '')
|
|
76
|
+
if (['wrap-right', 'wrap-left'].includes(rootElement.getAttribute('layout') || '')) {
|
|
77
77
|
return false;
|
|
78
78
|
}
|
|
79
79
|
var parentRootElement = rootElement.parentElement;
|
|
@@ -104,13 +104,8 @@ var paragraphWithPlaceholder = '+ p > .placeholder-decoration';
|
|
|
104
104
|
var dragHandleContainer = '.ProseMirror-widget[data-blocks-drag-handle-container="true"]';
|
|
105
105
|
var dragHandleSelector = 'button[data-testid="block-ctrl-drag-handle"]';
|
|
106
106
|
var dropTargetContainer = '.ProseMirror-widget[data-blocks-drop-target-container="true"]';
|
|
107
|
-
var withInlineNodeStyleSelectors = [".ProseMirror-widget[data-blocks-drag-handle-container=\"true\"]:has(".concat(paragraphWithTrailingBreakAsOnlyChild, ")"), ".ProseMirror-widget[data-blocks-drag-handle-container=\"true\"]:has(".concat(indentatedParagraphWithTrailingBreakAsOnlyChild, ")"), ".ProseMirror-widget[data-blocks-drag-handle-container=\"true\"]:has(".concat(paragraphWithPlaceholder, ")")].join(', ');
|
|
108
107
|
var dividerBodiedInCustomPanelWithNoIconSelector = '[data-panel-type].ak-editor-panel__no-icon .ProseMirror-widget:first-child + .ProseMirror-widget:nth-child(2) + hr, [data-panel-type] hr:first-child';
|
|
109
|
-
var
|
|
110
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-important-styles
|
|
111
|
-
display: 'none !important'
|
|
112
|
-
}));
|
|
113
|
-
var withInlineNodeStyleWithChromeFixSelectors = ["".concat(dragHandleContainer, ":has(").concat(paragraphWithTrailingBreakAsOnlyChild, ") ").concat(dragHandleSelector), "".concat(dragHandleContainer, ":has(").concat(indentatedParagraphWithTrailingBreakAsOnlyChild, ") ").concat(dragHandleSelector), "".concat(dragHandleContainer, ":has(").concat(paragraphWithPlaceholder, ") ").concat(dragHandleSelector)].join(', ');
|
|
108
|
+
var withInlineNodeStyleSelectors = ["".concat(dragHandleContainer, ":has(").concat(paragraphWithTrailingBreakAsOnlyChild, ") ").concat(dragHandleSelector), "".concat(dragHandleContainer, ":has(").concat(indentatedParagraphWithTrailingBreakAsOnlyChild, ") ").concat(dragHandleSelector), "".concat(dragHandleContainer, ":has(").concat(paragraphWithPlaceholder, ") ").concat(dragHandleSelector)].join(', ');
|
|
114
109
|
var withFormatInLayoutStyleFixSelectors = ["".concat(dragHandleContainer, ":first-child + .fabric-editor-indentation-mark > p:first-child"), "".concat(dragHandleContainer, ":first-child + .fabric-editor-alignment > p:first-child"), "".concat(dragHandleContainer, ":first-child + ").concat(dropTargetContainer, " + .fabric-editor-indentation-mark > p:first-child"), "".concat(dragHandleContainer, ":first-child + ").concat(dropTargetContainer, " + .fabric-editor-alignment > p:first-child"), "".concat(dropTargetContainer, ":first-child + .fabric-editor-alignment > p:first-child"), "".concat(dropTargetContainer, ":first-child + .fabric-editor-indentation-mark > p:first-child"), "".concat(dragHandleContainer, ":first-child + .fabric-editor-indentation-mark > :is(h1, h2, h3, h4, h5, h6):first-child")].join(', ');
|
|
115
110
|
|
|
116
111
|
/**
|
|
@@ -118,7 +113,7 @@ var withFormatInLayoutStyleFixSelectors = ["".concat(dragHandleContainer, ":firs
|
|
|
118
113
|
* Otherwise it might break composition input for Chrome
|
|
119
114
|
* https://product-fabric.atlassian.net/browse/ED-24136
|
|
120
115
|
*/
|
|
121
|
-
var
|
|
116
|
+
var withInlineNodeStyle = (0, _react.css)((0, _defineProperty2.default)({}, withInlineNodeStyleSelectors, {
|
|
122
117
|
transform: 'scale(0)'
|
|
123
118
|
}));
|
|
124
119
|
var legacyBreakoutWideLayoutStyle = (0, _react.css)({
|
|
@@ -189,9 +184,6 @@ var headingWithIndentationInLayoutStyleFix = (0, _react.css)((0, _defineProperty
|
|
|
189
184
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-important-styles
|
|
190
185
|
marginTop: '0 !important'
|
|
191
186
|
}));
|
|
192
|
-
var getTextNodeStyle = function getTextNodeStyle() {
|
|
193
|
-
return (0, _platformFeatureFlags.fg)('platform_editor_element_controls_chrome_input_fix') ? withInlineNodeStyleWithChromeFix : withInlineNodeStyle;
|
|
194
|
-
};
|
|
195
187
|
var withRelativePosStyle = (0, _react.css)({
|
|
196
188
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
197
189
|
'.ProseMirror': (0, _defineProperty2.default)({}, "&& ".concat(dragHandlerAnchorSelector), {
|
|
@@ -230,6 +222,6 @@ var blockCardWithoutLayout = (0, _react.css)({
|
|
|
230
222
|
});
|
|
231
223
|
var GlobalStylesWrapper = exports.GlobalStylesWrapper = function GlobalStylesWrapper() {
|
|
232
224
|
return (0, _react.jsx)(_react.Global, {
|
|
233
|
-
styles: [globalStyles(), (0, _platformFeatureFlags.fg)('platform_editor_advanced_layouts_post_fix_patch_1') && globalDnDStyle, (0, _experiments.editorExperiment)('nested-dnd', true) ? extendedHoverZoneNested() : extendedHoverZone(),
|
|
225
|
+
styles: [globalStyles(), (0, _platformFeatureFlags.fg)('platform_editor_advanced_layouts_post_fix_patch_1') && globalDnDStyle, (0, _experiments.editorExperiment)('nested-dnd', true) ? extendedHoverZoneNested() : extendedHoverZone(), withInlineNodeStyle, withDeleteLinesStyleFix, withMediaSingleStyleFix, legacyBreakoutWideLayoutStyle, headingWithIndentationInLayoutStyleFix, (0, _experiments.editorExperiment)('advanced_layouts', true) ? blockCardWithoutLayout : undefined, withDividerInPanelStyleFix, (0, _platformFeatureFlags.fg)('platform_editor_element_dnd_nested_fix_patch_2') ? withFormatInLayoutStyleFix : undefined, (0, _platformFeatureFlags.fg)('platform_editor_element_dnd_nested_fix_patch_3') ? [withRelativePosStyle, topLevelNodeMarginStyles, (0, _experiments.editorExperiment)('nested-dnd', true) ? withAnchorNameZindexNestedStyle : withAnchorNameZindexStyle] : undefined]
|
|
234
226
|
});
|
|
235
227
|
};
|
|
@@ -68,7 +68,7 @@ export const handleMouseOver = (view, event, api) => {
|
|
|
68
68
|
// We want to exlude handles from showing for wrapped nodes
|
|
69
69
|
// TODO We should be able remove these check if we decided to
|
|
70
70
|
// go we not decoration for wrapped image solution.
|
|
71
|
-
if (['wrap-right', 'wrap-left'].includes(rootElement.getAttribute('layout') || '')
|
|
71
|
+
if (['wrap-right', 'wrap-left'].includes(rootElement.getAttribute('layout') || '')) {
|
|
72
72
|
return false;
|
|
73
73
|
}
|
|
74
74
|
const parentRootElement = rootElement.parentElement;
|
|
@@ -126,16 +126,8 @@ const paragraphWithPlaceholder = '+ p > .placeholder-decoration';
|
|
|
126
126
|
const dragHandleContainer = '.ProseMirror-widget[data-blocks-drag-handle-container="true"]';
|
|
127
127
|
const dragHandleSelector = 'button[data-testid="block-ctrl-drag-handle"]';
|
|
128
128
|
const dropTargetContainer = '.ProseMirror-widget[data-blocks-drop-target-container="true"]';
|
|
129
|
-
const withInlineNodeStyleSelectors = [`.ProseMirror-widget[data-blocks-drag-handle-container="true"]:has(${paragraphWithTrailingBreakAsOnlyChild})`, `.ProseMirror-widget[data-blocks-drag-handle-container="true"]:has(${indentatedParagraphWithTrailingBreakAsOnlyChild})`, `.ProseMirror-widget[data-blocks-drag-handle-container="true"]:has(${paragraphWithPlaceholder})`].join(', ');
|
|
130
129
|
const dividerBodiedInCustomPanelWithNoIconSelector = '[data-panel-type].ak-editor-panel__no-icon .ProseMirror-widget:first-child + .ProseMirror-widget:nth-child(2) + hr, [data-panel-type] hr:first-child';
|
|
131
|
-
const
|
|
132
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors, @atlaskit/ui-styling-standard/no-unsafe-values
|
|
133
|
-
[withInlineNodeStyleSelectors]: {
|
|
134
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-important-styles
|
|
135
|
-
display: 'none !important'
|
|
136
|
-
}
|
|
137
|
-
});
|
|
138
|
-
const withInlineNodeStyleWithChromeFixSelectors = [`${dragHandleContainer}:has(${paragraphWithTrailingBreakAsOnlyChild}) ${dragHandleSelector}`, `${dragHandleContainer}:has(${indentatedParagraphWithTrailingBreakAsOnlyChild}) ${dragHandleSelector}`, `${dragHandleContainer}:has(${paragraphWithPlaceholder}) ${dragHandleSelector}`].join(', ');
|
|
130
|
+
const withInlineNodeStyleSelectors = [`${dragHandleContainer}:has(${paragraphWithTrailingBreakAsOnlyChild}) ${dragHandleSelector}`, `${dragHandleContainer}:has(${indentatedParagraphWithTrailingBreakAsOnlyChild}) ${dragHandleSelector}`, `${dragHandleContainer}:has(${paragraphWithPlaceholder}) ${dragHandleSelector}`].join(', ');
|
|
139
131
|
const withFormatInLayoutStyleFixSelectors = [`${dragHandleContainer}:first-child + .fabric-editor-indentation-mark > p:first-child`, `${dragHandleContainer}:first-child + .fabric-editor-alignment > p:first-child`, `${dragHandleContainer}:first-child + ${dropTargetContainer} + .fabric-editor-indentation-mark > p:first-child`, `${dragHandleContainer}:first-child + ${dropTargetContainer} + .fabric-editor-alignment > p:first-child`, `${dropTargetContainer}:first-child + .fabric-editor-alignment > p:first-child`, `${dropTargetContainer}:first-child + .fabric-editor-indentation-mark > p:first-child`, `${dragHandleContainer}:first-child + .fabric-editor-indentation-mark > :is(h1, h2, h3, h4, h5, h6):first-child`].join(', ');
|
|
140
132
|
|
|
141
133
|
/**
|
|
@@ -143,9 +135,9 @@ const withFormatInLayoutStyleFixSelectors = [`${dragHandleContainer}:first-child
|
|
|
143
135
|
* Otherwise it might break composition input for Chrome
|
|
144
136
|
* https://product-fabric.atlassian.net/browse/ED-24136
|
|
145
137
|
*/
|
|
146
|
-
const
|
|
138
|
+
const withInlineNodeStyle = css({
|
|
147
139
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors, @atlaskit/ui-styling-standard/no-unsafe-values
|
|
148
|
-
[
|
|
140
|
+
[withInlineNodeStyleSelectors]: {
|
|
149
141
|
transform: 'scale(0)'
|
|
150
142
|
}
|
|
151
143
|
});
|
|
@@ -230,9 +222,6 @@ const headingWithIndentationInLayoutStyleFix = css({
|
|
|
230
222
|
marginTop: '0 !important'
|
|
231
223
|
}
|
|
232
224
|
});
|
|
233
|
-
const getTextNodeStyle = () => {
|
|
234
|
-
return fg('platform_editor_element_controls_chrome_input_fix') ? withInlineNodeStyleWithChromeFix : withInlineNodeStyle;
|
|
235
|
-
};
|
|
236
225
|
const withRelativePosStyle = css({
|
|
237
226
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
238
227
|
'.ProseMirror': {
|
|
@@ -277,6 +266,6 @@ const blockCardWithoutLayout = css({
|
|
|
277
266
|
});
|
|
278
267
|
export const GlobalStylesWrapper = () => {
|
|
279
268
|
return jsx(Global, {
|
|
280
|
-
styles: [globalStyles(), fg('platform_editor_advanced_layouts_post_fix_patch_1') && globalDnDStyle, editorExperiment('nested-dnd', true) ? extendedHoverZoneNested() : extendedHoverZone(),
|
|
269
|
+
styles: [globalStyles(), fg('platform_editor_advanced_layouts_post_fix_patch_1') && globalDnDStyle, editorExperiment('nested-dnd', true) ? extendedHoverZoneNested() : extendedHoverZone(), withInlineNodeStyle, withDeleteLinesStyleFix, withMediaSingleStyleFix, legacyBreakoutWideLayoutStyle, headingWithIndentationInLayoutStyleFix, editorExperiment('advanced_layouts', true) ? blockCardWithoutLayout : undefined, withDividerInPanelStyleFix, fg('platform_editor_element_dnd_nested_fix_patch_2') ? withFormatInLayoutStyleFix : undefined, fg('platform_editor_element_dnd_nested_fix_patch_3') ? [withRelativePosStyle, topLevelNodeMarginStyles, editorExperiment('nested-dnd', true) ? withAnchorNameZindexNestedStyle : withAnchorNameZindexStyle] : undefined]
|
|
281
270
|
});
|
|
282
271
|
};
|
|
@@ -67,7 +67,7 @@ export var handleMouseOver = function handleMouseOver(view, event, api) {
|
|
|
67
67
|
// We want to exlude handles from showing for wrapped nodes
|
|
68
68
|
// TODO We should be able remove these check if we decided to
|
|
69
69
|
// go we not decoration for wrapped image solution.
|
|
70
|
-
if (['wrap-right', 'wrap-left'].includes(rootElement.getAttribute('layout') || '')
|
|
70
|
+
if (['wrap-right', 'wrap-left'].includes(rootElement.getAttribute('layout') || '')) {
|
|
71
71
|
return false;
|
|
72
72
|
}
|
|
73
73
|
var parentRootElement = rootElement.parentElement;
|
|
@@ -97,13 +97,8 @@ var paragraphWithPlaceholder = '+ p > .placeholder-decoration';
|
|
|
97
97
|
var dragHandleContainer = '.ProseMirror-widget[data-blocks-drag-handle-container="true"]';
|
|
98
98
|
var dragHandleSelector = 'button[data-testid="block-ctrl-drag-handle"]';
|
|
99
99
|
var dropTargetContainer = '.ProseMirror-widget[data-blocks-drop-target-container="true"]';
|
|
100
|
-
var withInlineNodeStyleSelectors = [".ProseMirror-widget[data-blocks-drag-handle-container=\"true\"]:has(".concat(paragraphWithTrailingBreakAsOnlyChild, ")"), ".ProseMirror-widget[data-blocks-drag-handle-container=\"true\"]:has(".concat(indentatedParagraphWithTrailingBreakAsOnlyChild, ")"), ".ProseMirror-widget[data-blocks-drag-handle-container=\"true\"]:has(".concat(paragraphWithPlaceholder, ")")].join(', ');
|
|
101
100
|
var dividerBodiedInCustomPanelWithNoIconSelector = '[data-panel-type].ak-editor-panel__no-icon .ProseMirror-widget:first-child + .ProseMirror-widget:nth-child(2) + hr, [data-panel-type] hr:first-child';
|
|
102
|
-
var
|
|
103
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-important-styles
|
|
104
|
-
display: 'none !important'
|
|
105
|
-
}));
|
|
106
|
-
var withInlineNodeStyleWithChromeFixSelectors = ["".concat(dragHandleContainer, ":has(").concat(paragraphWithTrailingBreakAsOnlyChild, ") ").concat(dragHandleSelector), "".concat(dragHandleContainer, ":has(").concat(indentatedParagraphWithTrailingBreakAsOnlyChild, ") ").concat(dragHandleSelector), "".concat(dragHandleContainer, ":has(").concat(paragraphWithPlaceholder, ") ").concat(dragHandleSelector)].join(', ');
|
|
101
|
+
var withInlineNodeStyleSelectors = ["".concat(dragHandleContainer, ":has(").concat(paragraphWithTrailingBreakAsOnlyChild, ") ").concat(dragHandleSelector), "".concat(dragHandleContainer, ":has(").concat(indentatedParagraphWithTrailingBreakAsOnlyChild, ") ").concat(dragHandleSelector), "".concat(dragHandleContainer, ":has(").concat(paragraphWithPlaceholder, ") ").concat(dragHandleSelector)].join(', ');
|
|
107
102
|
var withFormatInLayoutStyleFixSelectors = ["".concat(dragHandleContainer, ":first-child + .fabric-editor-indentation-mark > p:first-child"), "".concat(dragHandleContainer, ":first-child + .fabric-editor-alignment > p:first-child"), "".concat(dragHandleContainer, ":first-child + ").concat(dropTargetContainer, " + .fabric-editor-indentation-mark > p:first-child"), "".concat(dragHandleContainer, ":first-child + ").concat(dropTargetContainer, " + .fabric-editor-alignment > p:first-child"), "".concat(dropTargetContainer, ":first-child + .fabric-editor-alignment > p:first-child"), "".concat(dropTargetContainer, ":first-child + .fabric-editor-indentation-mark > p:first-child"), "".concat(dragHandleContainer, ":first-child + .fabric-editor-indentation-mark > :is(h1, h2, h3, h4, h5, h6):first-child")].join(', ');
|
|
108
103
|
|
|
109
104
|
/**
|
|
@@ -111,7 +106,7 @@ var withFormatInLayoutStyleFixSelectors = ["".concat(dragHandleContainer, ":firs
|
|
|
111
106
|
* Otherwise it might break composition input for Chrome
|
|
112
107
|
* https://product-fabric.atlassian.net/browse/ED-24136
|
|
113
108
|
*/
|
|
114
|
-
var
|
|
109
|
+
var withInlineNodeStyle = css(_defineProperty({}, withInlineNodeStyleSelectors, {
|
|
115
110
|
transform: 'scale(0)'
|
|
116
111
|
}));
|
|
117
112
|
var legacyBreakoutWideLayoutStyle = css({
|
|
@@ -182,9 +177,6 @@ var headingWithIndentationInLayoutStyleFix = css(_defineProperty({}, "".concat(d
|
|
|
182
177
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-important-styles
|
|
183
178
|
marginTop: '0 !important'
|
|
184
179
|
}));
|
|
185
|
-
var getTextNodeStyle = function getTextNodeStyle() {
|
|
186
|
-
return fg('platform_editor_element_controls_chrome_input_fix') ? withInlineNodeStyleWithChromeFix : withInlineNodeStyle;
|
|
187
|
-
};
|
|
188
180
|
var withRelativePosStyle = css({
|
|
189
181
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
190
182
|
'.ProseMirror': _defineProperty({}, "&& ".concat(dragHandlerAnchorSelector), {
|
|
@@ -223,6 +215,6 @@ var blockCardWithoutLayout = css({
|
|
|
223
215
|
});
|
|
224
216
|
export var GlobalStylesWrapper = function GlobalStylesWrapper() {
|
|
225
217
|
return jsx(Global, {
|
|
226
|
-
styles: [globalStyles(), fg('platform_editor_advanced_layouts_post_fix_patch_1') && globalDnDStyle, editorExperiment('nested-dnd', true) ? extendedHoverZoneNested() : extendedHoverZone(),
|
|
218
|
+
styles: [globalStyles(), fg('platform_editor_advanced_layouts_post_fix_patch_1') && globalDnDStyle, editorExperiment('nested-dnd', true) ? extendedHoverZoneNested() : extendedHoverZone(), withInlineNodeStyle, withDeleteLinesStyleFix, withMediaSingleStyleFix, legacyBreakoutWideLayoutStyle, headingWithIndentationInLayoutStyleFix, editorExperiment('advanced_layouts', true) ? blockCardWithoutLayout : undefined, withDividerInPanelStyleFix, fg('platform_editor_element_dnd_nested_fix_patch_2') ? withFormatInLayoutStyleFix : undefined, fg('platform_editor_element_dnd_nested_fix_patch_3') ? [withRelativePosStyle, topLevelNodeMarginStyles, editorExperiment('nested-dnd', true) ? withAnchorNameZindexNestedStyle : withAnchorNameZindexStyle] : undefined]
|
|
227
219
|
});
|
|
228
220
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-block-controls",
|
|
3
|
-
"version": "2.17.
|
|
3
|
+
"version": "2.17.1",
|
|
4
4
|
"description": "Block controls plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -115,15 +115,9 @@
|
|
|
115
115
|
"platform_editor_element_drag_and_drop_ed_23873": {
|
|
116
116
|
"type": "boolean"
|
|
117
117
|
},
|
|
118
|
-
"platform_editor_element_controls_chrome_input_fix": {
|
|
119
|
-
"type": "boolean"
|
|
120
|
-
},
|
|
121
118
|
"platform_editor_element_drag_and_drop_ed_24321": {
|
|
122
119
|
"type": "boolean"
|
|
123
120
|
},
|
|
124
|
-
"platform_editor_element_drag_and_drop_ed_24227": {
|
|
125
|
-
"type": "boolean"
|
|
126
|
-
},
|
|
127
121
|
"platform_editor_element_drag_and_drop_debug": {
|
|
128
122
|
"type": "boolean"
|
|
129
123
|
},
|