@atlaskit/editor-plugin-table 7.1.0 → 7.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 +10 -0
- package/dist/cjs/event-handlers.js +4 -1
- package/dist/cjs/pm-plugins/drag-and-drop/commands-with-analytics.js +9 -9
- package/dist/cjs/pm-plugins/drag-and-drop/commands.js +4 -11
- package/dist/cjs/pm-plugins/drag-and-drop/plugin.js +1 -4
- package/dist/cjs/pm-plugins/drag-and-drop/utils/monitor.js +0 -5
- package/dist/cjs/types.js +1 -0
- package/dist/cjs/ui/DragHandle/index.js +27 -9
- package/dist/cjs/ui/FloatingContextualMenu/ContextualMenu.js +1 -1
- package/dist/cjs/ui/FloatingContextualMenu/index.js +4 -3
- package/dist/cjs/ui/FloatingContextualMenu/styles.js +3 -1
- package/dist/cjs/ui/TableFloatingColumnControls/ColumnControls/index.js +7 -2
- package/dist/cjs/ui/TableFloatingColumnControls/ColumnDropTargets/index.js +1 -7
- package/dist/cjs/ui/TableFloatingColumnControls/index.js +0 -2
- package/dist/cjs/ui/TableFloatingControls/RowControls/DragControls.js +6 -1
- package/dist/cjs/ui/common-styles.js +2 -1
- package/dist/cjs/ui/consts.js +3 -3
- package/dist/cjs/ui/ui-styles.js +8 -8
- package/dist/cjs/utils/drag-menu.js +42 -29
- package/dist/es2019/event-handlers.js +3 -2
- package/dist/es2019/pm-plugins/drag-and-drop/commands-with-analytics.js +8 -8
- package/dist/es2019/pm-plugins/drag-and-drop/commands.js +5 -10
- package/dist/es2019/pm-plugins/drag-and-drop/plugin.js +1 -4
- package/dist/es2019/pm-plugins/drag-and-drop/utils/monitor.js +0 -5
- package/dist/es2019/types.js +1 -0
- package/dist/es2019/ui/DragHandle/index.js +26 -8
- package/dist/es2019/ui/FloatingContextualMenu/ContextualMenu.js +2 -2
- package/dist/es2019/ui/FloatingContextualMenu/index.js +5 -4
- package/dist/es2019/ui/FloatingContextualMenu/styles.js +3 -3
- package/dist/es2019/ui/TableFloatingColumnControls/ColumnControls/index.js +7 -2
- package/dist/es2019/ui/TableFloatingColumnControls/ColumnDropTargets/index.js +1 -7
- package/dist/es2019/ui/TableFloatingColumnControls/index.js +0 -2
- package/dist/es2019/ui/TableFloatingControls/RowControls/DragControls.js +6 -1
- package/dist/es2019/ui/common-styles.js +24 -5
- package/dist/es2019/ui/consts.js +2 -2
- package/dist/es2019/ui/ui-styles.js +8 -8
- package/dist/es2019/utils/drag-menu.js +29 -24
- package/dist/esm/event-handlers.js +5 -2
- package/dist/esm/pm-plugins/drag-and-drop/commands-with-analytics.js +9 -9
- package/dist/esm/pm-plugins/drag-and-drop/commands.js +5 -12
- package/dist/esm/pm-plugins/drag-and-drop/plugin.js +1 -4
- package/dist/esm/pm-plugins/drag-and-drop/utils/monitor.js +0 -5
- package/dist/esm/types.js +1 -0
- package/dist/esm/ui/DragHandle/index.js +27 -9
- package/dist/esm/ui/FloatingContextualMenu/ContextualMenu.js +2 -2
- package/dist/esm/ui/FloatingContextualMenu/index.js +5 -4
- package/dist/esm/ui/FloatingContextualMenu/styles.js +4 -2
- package/dist/esm/ui/TableFloatingColumnControls/ColumnControls/index.js +7 -2
- package/dist/esm/ui/TableFloatingColumnControls/ColumnDropTargets/index.js +1 -7
- package/dist/esm/ui/TableFloatingColumnControls/index.js +0 -2
- package/dist/esm/ui/TableFloatingControls/RowControls/DragControls.js +6 -1
- package/dist/esm/ui/common-styles.js +2 -1
- package/dist/esm/ui/consts.js +2 -2
- package/dist/esm/ui/ui-styles.js +8 -8
- package/dist/esm/utils/drag-menu.js +41 -28
- package/dist/types/types.d.ts +1 -0
- package/dist/types/ui/FloatingContextualMenu/styles.d.ts +1 -1
- package/dist/types/ui/TableFloatingColumnControls/ColumnDropTargets/index.d.ts +0 -2
- package/dist/types/ui/consts.d.ts +2 -1
- package/dist/types/ui/ui-styles.d.ts +2 -2
- package/dist/types-ts4.5/types.d.ts +1 -0
- package/dist/types-ts4.5/ui/FloatingContextualMenu/styles.d.ts +1 -1
- package/dist/types-ts4.5/ui/TableFloatingColumnControls/ColumnDropTargets/index.d.ts +0 -2
- package/dist/types-ts4.5/ui/consts.d.ts +2 -1
- package/dist/types-ts4.5/ui/ui-styles.d.ts +2 -2
- package/package.json +3 -5
- package/src/__tests__/unit/event-handlers.ts +3 -17
- package/src/__tests__/unit/pm-plugins/decorations/column-controls.ts +46 -17
- package/src/event-handlers.ts +14 -2
- package/src/pm-plugins/drag-and-drop/commands-with-analytics.ts +11 -8
- package/src/pm-plugins/drag-and-drop/commands.ts +5 -33
- package/src/pm-plugins/drag-and-drop/plugin.ts +0 -3
- package/src/pm-plugins/drag-and-drop/utils/monitor.ts +0 -5
- package/src/types.ts +1 -0
- package/src/ui/DragHandle/index.tsx +33 -14
- package/src/ui/FloatingContextualMenu/ContextualMenu.tsx +9 -2
- package/src/ui/FloatingContextualMenu/index.tsx +10 -3
- package/src/ui/FloatingContextualMenu/styles.ts +10 -3
- package/src/ui/TableFloatingColumnControls/ColumnControls/index.tsx +13 -4
- package/src/ui/TableFloatingColumnControls/ColumnDropTargets/index.tsx +1 -13
- package/src/ui/TableFloatingColumnControls/index.tsx +0 -2
- package/src/ui/TableFloatingControls/RowControls/DragControls.tsx +16 -7
- package/src/ui/common-styles.ts +20 -4
- package/src/ui/consts.ts +2 -6
- package/src/ui/ui-styles.ts +12 -8
- package/src/utils/drag-menu.ts +48 -32
- package/tsconfig.json +273 -0
package/src/utils/drag-menu.ts
CHANGED
|
@@ -55,7 +55,7 @@ import {
|
|
|
55
55
|
AddRowBelowIcon,
|
|
56
56
|
} from '../ui/icons';
|
|
57
57
|
|
|
58
|
-
import { getSelectedColumnIndexes } from './
|
|
58
|
+
import { getSelectedColumnIndexes, getSelectedRowIndexes } from './selection';
|
|
59
59
|
|
|
60
60
|
const canDecrease = (index?: number, min: number = 0) =>
|
|
61
61
|
index !== undefined && index > min;
|
|
@@ -140,35 +140,49 @@ export const getDragMenuConfig = (
|
|
|
140
140
|
? [
|
|
141
141
|
{
|
|
142
142
|
label: 'up',
|
|
143
|
-
offset: -1,
|
|
144
|
-
canMove: (index?: number) => canDrag && canDecrease(index),
|
|
145
143
|
icon: ArrowUpIcon,
|
|
146
144
|
keymap: moveRowUp,
|
|
145
|
+
canMove: (selectionRect?: Rect) =>
|
|
146
|
+
canDrag && canDecrease(selectionRect?.top),
|
|
147
|
+
getOriginIndexes: getSelectedRowIndexes,
|
|
148
|
+
getTargetIndex: (selectionRect: Rect) => selectionRect.top - 1,
|
|
147
149
|
},
|
|
148
150
|
{
|
|
149
151
|
label: 'down',
|
|
150
|
-
offset: 1,
|
|
151
|
-
canMove: (index?: number) =>
|
|
152
|
-
canDrag && canIncrease(index, (tableMap?.height ?? 0) - 1),
|
|
153
152
|
icon: ArrowDownIcon,
|
|
154
153
|
keymap: moveRowDown,
|
|
154
|
+
canMove: (selectionRect?: Rect) =>
|
|
155
|
+
canDrag &&
|
|
156
|
+
canIncrease(
|
|
157
|
+
(selectionRect?.bottom ?? 0) - 1,
|
|
158
|
+
(tableMap?.height ?? 0) - 1,
|
|
159
|
+
),
|
|
160
|
+
getOriginIndexes: getSelectedRowIndexes,
|
|
161
|
+
getTargetIndex: (selectionRect: Rect) => selectionRect.bottom,
|
|
155
162
|
},
|
|
156
163
|
]
|
|
157
164
|
: [
|
|
158
165
|
{
|
|
159
166
|
label: 'left',
|
|
160
|
-
offset: -1,
|
|
161
|
-
canMove: (index?: number) => canDrag && canDecrease(index),
|
|
162
167
|
icon: ArrowLeftIcon,
|
|
163
168
|
keymap: moveColumnLeft,
|
|
169
|
+
canMove: (selectionRect?: Rect) =>
|
|
170
|
+
canDrag && canDecrease(selectionRect?.left),
|
|
171
|
+
getOriginIndexes: getSelectedColumnIndexes,
|
|
172
|
+
getTargetIndex: (selectionRect: Rect) => selectionRect.left - 1,
|
|
164
173
|
},
|
|
165
174
|
{
|
|
166
175
|
label: 'right',
|
|
167
|
-
offset: 1,
|
|
168
|
-
canMove: (index?: number) =>
|
|
169
|
-
canDrag && canIncrease(index, (tableMap?.width ?? 0) - 1),
|
|
170
176
|
icon: ArrowRightIcon,
|
|
171
177
|
keymap: moveColumnRight,
|
|
178
|
+
canMove: (selectionRect?: Rect) =>
|
|
179
|
+
canDrag &&
|
|
180
|
+
canIncrease(
|
|
181
|
+
(selectionRect?.right ?? 0) - 1,
|
|
182
|
+
(tableMap?.width ?? 0) - 1,
|
|
183
|
+
),
|
|
184
|
+
getOriginIndexes: getSelectedColumnIndexes,
|
|
185
|
+
getTargetIndex: (selectionRect: Rect) => selectionRect.right,
|
|
172
186
|
},
|
|
173
187
|
];
|
|
174
188
|
|
|
@@ -257,27 +271,29 @@ export const getDragMenuConfig = (
|
|
|
257
271
|
icon: RemoveIcon,
|
|
258
272
|
keymap: direction === 'row' ? tooltip(deleteRow) : tooltip(deleteColumn),
|
|
259
273
|
},
|
|
260
|
-
...moveOptions.map(
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
274
|
+
...moveOptions.map(
|
|
275
|
+
({ label, canMove, icon, keymap, getOriginIndexes, getTargetIndex }) => ({
|
|
276
|
+
id: `move_${direction}_${label}`,
|
|
277
|
+
title: `Move ${direction} ${label}`,
|
|
278
|
+
disabled: !canMove(selectionRect),
|
|
279
|
+
icon,
|
|
280
|
+
onClick: (state: EditorState, dispatch?: CommandDispatch) => {
|
|
281
|
+
if (canMove(selectionRect)) {
|
|
282
|
+
requestAnimationFrame(() => {
|
|
283
|
+
moveSourceWithAnalytics(editorAnalyticsAPI)(
|
|
284
|
+
INPUT_METHOD.TABLE_CONTEXT_MENU,
|
|
285
|
+
`table-${direction}`,
|
|
286
|
+
getOriginIndexes(selectionRect!),
|
|
287
|
+
getTargetIndex(selectionRect!),
|
|
288
|
+
)(editorView.state, editorView.dispatch);
|
|
289
|
+
});
|
|
290
|
+
return true;
|
|
291
|
+
}
|
|
292
|
+
return false;
|
|
293
|
+
},
|
|
294
|
+
keymap: keymap && tooltip(keymap),
|
|
295
|
+
}),
|
|
296
|
+
),
|
|
281
297
|
|
|
282
298
|
...sortOptions.map(({ label, order, icon }) => ({
|
|
283
299
|
id: `sort_column_${order}`,
|
package/tsconfig.json
CHANGED
|
@@ -578,6 +578,279 @@
|
|
|
578
578
|
"@atlaskit/editor-plugin-hyperlink": [
|
|
579
579
|
"../editor-plugin-hyperlink/src/index.ts"
|
|
580
580
|
],
|
|
581
|
+
"@atlaskit/editor-test-helpers/adf-schema": [
|
|
582
|
+
"../editor-test-helpers/src/adf-schema.ts"
|
|
583
|
+
],
|
|
584
|
+
"@atlaskit/editor-test-helpers/ajv": [
|
|
585
|
+
"../editor-test-helpers/src/ajv.ts"
|
|
586
|
+
],
|
|
587
|
+
"@atlaskit/editor-test-helpers/analytics-client-mock": [
|
|
588
|
+
"../editor-test-helpers/src/analytics-client-mock.ts"
|
|
589
|
+
],
|
|
590
|
+
"@atlaskit/editor-test-helpers/autoformatting-provider": [
|
|
591
|
+
"../editor-test-helpers/src/autoformatting-provider.ts"
|
|
592
|
+
],
|
|
593
|
+
"@atlaskit/editor-test-helpers/base64fileconverter": [
|
|
594
|
+
"../editor-test-helpers/src/base64fileconverter.ts"
|
|
595
|
+
],
|
|
596
|
+
"@atlaskit/editor-test-helpers/card-helpers": [
|
|
597
|
+
"../editor-test-helpers/src/card-helpers.ts"
|
|
598
|
+
],
|
|
599
|
+
"@atlaskit/editor-test-helpers/card-provider": [
|
|
600
|
+
"../editor-test-helpers/src/card-provider.ts"
|
|
601
|
+
],
|
|
602
|
+
"@atlaskit/editor-test-helpers/confluence-card-client": [
|
|
603
|
+
"../editor-test-helpers/src/confluence-card-client.ts"
|
|
604
|
+
],
|
|
605
|
+
"@atlaskit/editor-test-helpers/confluence-card-provider": [
|
|
606
|
+
"../editor-test-helpers/src/confluence-card-provider.ts"
|
|
607
|
+
],
|
|
608
|
+
"@atlaskit/editor-test-helpers/context-identifier-provider": [
|
|
609
|
+
"../editor-test-helpers/src/context-identifier-provider.ts"
|
|
610
|
+
],
|
|
611
|
+
"@atlaskit/editor-test-helpers/controllable-promise": [
|
|
612
|
+
"../editor-test-helpers/src/controllable-promise.ts"
|
|
613
|
+
],
|
|
614
|
+
"@atlaskit/editor-test-helpers/constants": [
|
|
615
|
+
"../editor-test-helpers/src/constants.ts"
|
|
616
|
+
],
|
|
617
|
+
"@atlaskit/editor-test-helpers/create-analytics-event-mock": [
|
|
618
|
+
"../editor-test-helpers/src/create-analytics-event-mock.ts"
|
|
619
|
+
],
|
|
620
|
+
"@atlaskit/editor-test-helpers/create-editor": [
|
|
621
|
+
"../editor-test-helpers/src/create-editor.tsx"
|
|
622
|
+
],
|
|
623
|
+
"@atlaskit/editor-test-helpers/create-editor-state": [
|
|
624
|
+
"../editor-test-helpers/src/create-editor-state.ts"
|
|
625
|
+
],
|
|
626
|
+
"@atlaskit/editor-test-helpers/create-prosemirror-editor": [
|
|
627
|
+
"../editor-test-helpers/src/create-prosemirror-editor.ts"
|
|
628
|
+
],
|
|
629
|
+
"@atlaskit/editor-test-helpers/create-event": [
|
|
630
|
+
"../editor-test-helpers/src/create-event.ts"
|
|
631
|
+
],
|
|
632
|
+
"@atlaskit/editor-test-helpers/dispatch-paste-event": [
|
|
633
|
+
"../editor-test-helpers/src/dispatch-paste-event.ts"
|
|
634
|
+
],
|
|
635
|
+
"@atlaskit/editor-test-helpers/doc-builder": [
|
|
636
|
+
"../editor-test-helpers/src/doc-builder.ts"
|
|
637
|
+
],
|
|
638
|
+
"@atlaskit/editor-test-helpers/enzyme": [
|
|
639
|
+
"../editor-test-helpers/src/enzyme.tsx"
|
|
640
|
+
],
|
|
641
|
+
"@atlaskit/editor-test-helpers/floating-toolbar": [
|
|
642
|
+
"../editor-test-helpers/src/floating-toolbar.ts"
|
|
643
|
+
],
|
|
644
|
+
"@atlaskit/editor-test-helpers/rtl": [
|
|
645
|
+
"../editor-test-helpers/src/rtl.tsx"
|
|
646
|
+
],
|
|
647
|
+
"@atlaskit/editor-test-helpers/extensions": [
|
|
648
|
+
"../editor-test-helpers/src/extensions.tsx"
|
|
649
|
+
],
|
|
650
|
+
"@atlaskit/editor-test-helpers/jsdom-fixtures": [
|
|
651
|
+
"../editor-test-helpers/src/jsdom-fixtures.ts"
|
|
652
|
+
],
|
|
653
|
+
"@atlaskit/editor-test-helpers/media-mock": [
|
|
654
|
+
"../editor-test-helpers/src/media-mock.ts"
|
|
655
|
+
],
|
|
656
|
+
"@atlaskit/editor-test-helpers/media-client-mock": [
|
|
657
|
+
"../editor-test-helpers/src/media-client/index.ts"
|
|
658
|
+
],
|
|
659
|
+
"@atlaskit/editor-test-helpers/media-provider": [
|
|
660
|
+
"../editor-test-helpers/src/media-provider.ts"
|
|
661
|
+
],
|
|
662
|
+
"@atlaskit/editor-test-helpers/mock-activity-provider": [
|
|
663
|
+
"../editor-test-helpers/src/mock-activity-provider.ts"
|
|
664
|
+
],
|
|
665
|
+
"@atlaskit/editor-test-helpers/mock-add-event-listener": [
|
|
666
|
+
"../editor-test-helpers/src/mock-add-event-listener.ts"
|
|
667
|
+
],
|
|
668
|
+
"@atlaskit/editor-test-helpers/mock-analytics-next": [
|
|
669
|
+
"../editor-test-helpers/src/mock-analytics-next.tsx"
|
|
670
|
+
],
|
|
671
|
+
"@atlaskit/editor-test-helpers/mock-extension-data": [
|
|
672
|
+
"../editor-test-helpers/src/mock-extension-data.ts"
|
|
673
|
+
],
|
|
674
|
+
"@atlaskit/editor-test-helpers/mock-insert-menu": [
|
|
675
|
+
"../editor-test-helpers/src/mock-insert-menu.tsx"
|
|
676
|
+
],
|
|
677
|
+
"@atlaskit/editor-test-helpers/mock-macro-provider": [
|
|
678
|
+
"../editor-test-helpers/src/mock-macro-provider.ts"
|
|
679
|
+
],
|
|
680
|
+
"@atlaskit/editor-test-helpers/mock-performance-entry": [
|
|
681
|
+
"../editor-test-helpers/src/mock-performance-entry.ts"
|
|
682
|
+
],
|
|
683
|
+
"@atlaskit/editor-test-helpers/mock-performance-observer-entry-list": [
|
|
684
|
+
"../editor-test-helpers/src/mock-performance-observer-entry-list.ts"
|
|
685
|
+
],
|
|
686
|
+
"@atlaskit/editor-test-helpers/mock-intersection-observer": [
|
|
687
|
+
"../editor-test-helpers/src/mock-intersection-observer.ts"
|
|
688
|
+
],
|
|
689
|
+
"@atlaskit/editor-test-helpers/mock-search-provider": [
|
|
690
|
+
"../editor-test-helpers/src/mock-search-provider.ts"
|
|
691
|
+
],
|
|
692
|
+
"@atlaskit/editor-test-helpers/next-tick": [
|
|
693
|
+
"../editor-test-helpers/src/next-tick.ts"
|
|
694
|
+
],
|
|
695
|
+
"@atlaskit/editor-test-helpers/random-id": [
|
|
696
|
+
"../editor-test-helpers/src/random-id.ts"
|
|
697
|
+
],
|
|
698
|
+
"@atlaskit/editor-test-helpers/schema": [
|
|
699
|
+
"../editor-test-helpers/src/schema.ts"
|
|
700
|
+
],
|
|
701
|
+
"@atlaskit/editor-test-helpers/schema-element-builder": [
|
|
702
|
+
"../editor-test-helpers/src/schema-element-builder.ts"
|
|
703
|
+
],
|
|
704
|
+
"@atlaskit/editor-test-helpers/selection": [
|
|
705
|
+
"../editor-test-helpers/src/selection.ts"
|
|
706
|
+
],
|
|
707
|
+
"@atlaskit/editor-test-helpers/send-key-to-pm": [
|
|
708
|
+
"../editor-test-helpers/src/send-key-to-pm.ts"
|
|
709
|
+
],
|
|
710
|
+
"@atlaskit/editor-test-helpers/set-selection-transform": [
|
|
711
|
+
"../editor-test-helpers/src/set-selection-transform.ts"
|
|
712
|
+
],
|
|
713
|
+
"@atlaskit/editor-test-helpers/simulate-platform": [
|
|
714
|
+
"../editor-test-helpers/src/simulate-platform.ts"
|
|
715
|
+
],
|
|
716
|
+
"@atlaskit/editor-test-helpers/sleep": [
|
|
717
|
+
"../editor-test-helpers/src/sleep.ts"
|
|
718
|
+
],
|
|
719
|
+
"@atlaskit/editor-test-helpers/table": [
|
|
720
|
+
"../editor-test-helpers/src/table.ts"
|
|
721
|
+
],
|
|
722
|
+
"@atlaskit/editor-test-helpers/transactions": [
|
|
723
|
+
"../editor-test-helpers/src/transactions.ts"
|
|
724
|
+
],
|
|
725
|
+
"@atlaskit/editor-test-helpers/use-example-document": [
|
|
726
|
+
"../editor-test-helpers/src/use-example-document.ts"
|
|
727
|
+
],
|
|
728
|
+
"@atlaskit/editor-test-helpers/vr-utils": [
|
|
729
|
+
"../editor-test-helpers/src/vr-utils.ts"
|
|
730
|
+
],
|
|
731
|
+
"@atlaskit/editor-test-helpers/vr-utils/base-utils": [
|
|
732
|
+
"../editor-test-helpers/src/vr-utils/base-utils.ts"
|
|
733
|
+
],
|
|
734
|
+
"@atlaskit/editor-test-helpers/vr-utils/bounding-client-rect": [
|
|
735
|
+
"../editor-test-helpers/src/vr-utils/bounding-client-rect.ts"
|
|
736
|
+
],
|
|
737
|
+
"@atlaskit/editor-test-helpers/vr-utils/device-viewport": [
|
|
738
|
+
"../editor-test-helpers/src/vr-utils/device-viewport.ts"
|
|
739
|
+
],
|
|
740
|
+
"@atlaskit/editor-test-helpers/vr-utils/frame-utils": [
|
|
741
|
+
"../editor-test-helpers/src/vr-utils/frame-utils.ts"
|
|
742
|
+
],
|
|
743
|
+
"@atlaskit/editor-test-helpers/vr-utils/get-computed-style": [
|
|
744
|
+
"../editor-test-helpers/src/vr-utils/get-computed-style.ts"
|
|
745
|
+
],
|
|
746
|
+
"@atlaskit/editor-test-helpers/page-objects/editor": [
|
|
747
|
+
"../editor-test-helpers/src/integration/helpers/page-objects/editor.ts"
|
|
748
|
+
],
|
|
749
|
+
"@atlaskit/editor-test-helpers/page-objects/emoji": [
|
|
750
|
+
"../editor-test-helpers/src/integration/helpers/page-objects/emoji.ts"
|
|
751
|
+
],
|
|
752
|
+
"@atlaskit/editor-test-helpers/page-objects/extensions": [
|
|
753
|
+
"../editor-test-helpers/src/integration/helpers/page-objects/extensions.ts"
|
|
754
|
+
],
|
|
755
|
+
"@atlaskit/editor-test-helpers/page-objects/mention": [
|
|
756
|
+
"../editor-test-helpers/src/integration/helpers/page-objects/mention.ts"
|
|
757
|
+
],
|
|
758
|
+
"@atlaskit/editor-test-helpers/page-objects/table": [
|
|
759
|
+
"../editor-test-helpers/src/integration/helpers/page-objects/table.ts"
|
|
760
|
+
],
|
|
761
|
+
"@atlaskit/editor-test-helpers/page-objects/toolbar": [
|
|
762
|
+
"../editor-test-helpers/src/integration/helpers/page-objects/toolbar.ts"
|
|
763
|
+
],
|
|
764
|
+
"@atlaskit/editor-test-helpers/page-objects/keyboard": [
|
|
765
|
+
"../editor-test-helpers/src/integration/helpers/page-objects/keyboard.ts"
|
|
766
|
+
],
|
|
767
|
+
"@atlaskit/editor-test-helpers/page-objects/types": [
|
|
768
|
+
"../editor-test-helpers/src/integration/helpers/page-objects/types.ts"
|
|
769
|
+
],
|
|
770
|
+
"@atlaskit/editor-test-helpers/page-objects/blocks": [
|
|
771
|
+
"../editor-test-helpers/src/integration/helpers/page-objects/blocks.ts"
|
|
772
|
+
],
|
|
773
|
+
"@atlaskit/editor-test-helpers/page-objects/code-block": [
|
|
774
|
+
"../editor-test-helpers/src/integration/helpers/page-objects/code-block.ts"
|
|
775
|
+
],
|
|
776
|
+
"@atlaskit/editor-test-helpers/page-objects/date": [
|
|
777
|
+
"../editor-test-helpers/src/integration/helpers/page-objects/date.ts"
|
|
778
|
+
],
|
|
779
|
+
"@atlaskit/editor-test-helpers/page-objects/decision": [
|
|
780
|
+
"../editor-test-helpers/src/integration/helpers/page-objects/decision.ts"
|
|
781
|
+
],
|
|
782
|
+
"@atlaskit/editor-test-helpers/page-objects/element-browser": [
|
|
783
|
+
"../editor-test-helpers/src/integration/helpers/page-objects/element-browser.ts"
|
|
784
|
+
],
|
|
785
|
+
"@atlaskit/editor-test-helpers/page-objects/expand": [
|
|
786
|
+
"../editor-test-helpers/src/integration/helpers/page-objects/expand.ts"
|
|
787
|
+
],
|
|
788
|
+
"@atlaskit/editor-test-helpers/page-objects/find-replace": [
|
|
789
|
+
"../editor-test-helpers/src/integration/helpers/page-objects/find-replace.ts"
|
|
790
|
+
],
|
|
791
|
+
"@atlaskit/editor-test-helpers/page-objects/help-dialog": [
|
|
792
|
+
"../editor-test-helpers/src/integration/helpers/page-objects/help-dialog.ts"
|
|
793
|
+
],
|
|
794
|
+
"@atlaskit/editor-test-helpers/page-objects/hyperlink": [
|
|
795
|
+
"../editor-test-helpers/src/integration/helpers/page-objects/hyperlink.ts"
|
|
796
|
+
],
|
|
797
|
+
"@atlaskit/editor-test-helpers/page-objects/layouts": [
|
|
798
|
+
"../editor-test-helpers/src/integration/helpers/page-objects/layouts.ts"
|
|
799
|
+
],
|
|
800
|
+
"@atlaskit/editor-test-helpers/page-objects/media": [
|
|
801
|
+
"../editor-test-helpers/src/integration/helpers/page-objects/media.ts"
|
|
802
|
+
],
|
|
803
|
+
"@atlaskit/editor-test-helpers/page-objects/mouse": [
|
|
804
|
+
"../editor-test-helpers/src/integration/helpers/page-objects/mouse.ts"
|
|
805
|
+
],
|
|
806
|
+
"@atlaskit/editor-test-helpers/page-objects/quick-insert": [
|
|
807
|
+
"../editor-test-helpers/src/integration/helpers/page-objects/quick-insert.ts"
|
|
808
|
+
],
|
|
809
|
+
"@atlaskit/editor-test-helpers/page-objects/selection": [
|
|
810
|
+
"../editor-test-helpers/src/integration/helpers/page-objects/selection.ts"
|
|
811
|
+
],
|
|
812
|
+
"@atlaskit/editor-test-helpers/page-objects/smart-links": [
|
|
813
|
+
"../editor-test-helpers/src/integration/helpers/page-objects/smart-links.ts"
|
|
814
|
+
],
|
|
815
|
+
"@atlaskit/editor-test-helpers/page-objects/status": [
|
|
816
|
+
"../editor-test-helpers/src/integration/helpers/page-objects/status.ts"
|
|
817
|
+
],
|
|
818
|
+
"@atlaskit/editor-test-helpers/page-objects/panel": [
|
|
819
|
+
"../editor-test-helpers/src/integration/helpers/page-objects/panel.ts"
|
|
820
|
+
],
|
|
821
|
+
"@atlaskit/editor-test-helpers/page-objects/task": [
|
|
822
|
+
"../editor-test-helpers/src/integration/helpers/page-objects/task.ts"
|
|
823
|
+
],
|
|
824
|
+
"@atlaskit/editor-test-helpers/page-objects/unsupported": [
|
|
825
|
+
"../editor-test-helpers/src/integration/helpers/page-objects/unsupported.ts"
|
|
826
|
+
],
|
|
827
|
+
"@atlaskit/editor-test-helpers/page-objects/list": [
|
|
828
|
+
"../editor-test-helpers/src/integration/helpers/page-objects/list.ts"
|
|
829
|
+
],
|
|
830
|
+
"@atlaskit/editor-test-helpers/page-objects/breakout": [
|
|
831
|
+
"../editor-test-helpers/src/integration/helpers/page-objects/breakout.ts"
|
|
832
|
+
],
|
|
833
|
+
"@atlaskit/editor-test-helpers/page-objects/context-panel": [
|
|
834
|
+
"../editor-test-helpers/src/integration/helpers/page-objects/context-panel.ts"
|
|
835
|
+
],
|
|
836
|
+
"@atlaskit/editor-test-helpers/testing-example-page": [
|
|
837
|
+
"../editor-test-helpers/src/testing-example-page.ts"
|
|
838
|
+
],
|
|
839
|
+
"@atlaskit/editor-test-helpers/e2e-helpers": [
|
|
840
|
+
"../editor-test-helpers/src/e2e-helpers.ts"
|
|
841
|
+
],
|
|
842
|
+
"@atlaskit/editor-test-helpers/wysiwyg-helpers": [
|
|
843
|
+
"../editor-test-helpers/src/wysiwyg-helpers.ts"
|
|
844
|
+
],
|
|
845
|
+
"@atlaskit/editor-test-helpers/integration/escape-keydown": [
|
|
846
|
+
"../editor-test-helpers/src/integration/escape-keydown.ts"
|
|
847
|
+
],
|
|
848
|
+
"@atlaskit/editor-test-helpers/create-test-extension-provider": [
|
|
849
|
+
"../editor-test-helpers/src/create-test-extension-provider.ts"
|
|
850
|
+
],
|
|
851
|
+
"@atlaskit/editor-test-helpers": [
|
|
852
|
+
"../editor-test-helpers/src"
|
|
853
|
+
],
|
|
581
854
|
"@atlaskit/visual-regression": [
|
|
582
855
|
"../../../build/test-tooling/visual-regression/src"
|
|
583
856
|
],
|