@atlaskit/editor-plugin-table 7.0.1 → 7.0.3

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 CHANGED
@@ -1,5 +1,17 @@
1
1
  # @atlaskit/editor-plugin-table
2
2
 
3
+ ## 7.0.3
4
+
5
+ ### Patch Changes
6
+
7
+ - [#68585](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/68585) [`453395005d42`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/453395005d42) - [ux] Fixed a bug where a table nested in expand has showdows after clicking breakout button.
8
+
9
+ ## 7.0.2
10
+
11
+ ### Patch Changes
12
+
13
+ - [#67831](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/67831) [`6027f6646d15`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/6027f6646d15) - Fix table scroll when pressing CMD+A to select all
14
+
3
15
  ## 7.0.1
4
16
 
5
17
  ### Patch Changes
@@ -394,7 +394,8 @@ var TableComponent = /*#__PURE__*/function (_React$Component) {
394
394
  }, {
395
395
  key: "componentDidUpdate",
396
396
  value: function componentDidUpdate(_, prevState) {
397
- var _this$wrapper;
397
+ var _this$wrapper,
398
+ _this2 = this;
398
399
  var _this$props9 = this.props,
399
400
  view = _this$props9.view,
400
401
  getNode = _this$props9.getNode,
@@ -409,7 +410,16 @@ var TableComponent = /*#__PURE__*/function (_React$Component) {
409
410
  (0, _commands.clearHoverSelection)()(view.state, view.dispatch);
410
411
  }
411
412
  if ((_this$wrapper = this.wrapper) !== null && _this$wrapper !== void 0 && _this$wrapper.parentElement && this.table && !this.overflowShadowsObserver) {
412
- this.overflowShadowsObserver = new _OverflowShadowsObserver.OverflowShadowsObserver(this.updateShadowState, this.table, this.wrapper);
413
+ if (this.props.isDragAndDropEnabled) {
414
+ // requestAnimationFrame is used here to fix a race condition issue
415
+ // that happens when a table is nested in expand and expand's width is
416
+ // changed via breakout button
417
+ window.requestAnimationFrame(function () {
418
+ _this2.overflowShadowsObserver = new _OverflowShadowsObserver.OverflowShadowsObserver(_this2.updateShadowState, _this2.table, _this2.wrapper);
419
+ });
420
+ } else {
421
+ this.overflowShadowsObserver = new _OverflowShadowsObserver.OverflowShadowsObserver(this.updateShadowState, this.table, this.wrapper);
422
+ }
413
423
  }
414
424
  if (this.overflowShadowsObserver) {
415
425
  var _this$state$stickyHea;
@@ -462,7 +472,7 @@ var TableComponent = /*#__PURE__*/function (_React$Component) {
462
472
  key: "render",
463
473
  value: function render() {
464
474
  var _classnames,
465
- _this2 = this;
475
+ _this3 = this;
466
476
  var _this$props10 = this.props,
467
477
  view = _this$props10.view,
468
478
  getNode = _this$props10.getNode,
@@ -585,12 +595,12 @@ var TableComponent = /*#__PURE__*/function (_React$Component) {
585
595
  editorView: view,
586
596
  node: node,
587
597
  getScrollOffset: function getScrollOffset() {
588
- var _this2$wrapper;
589
- return ((_this2$wrapper = _this2.wrapper) === null || _this2$wrapper === void 0 ? void 0 : _this2$wrapper.scrollLeft) || 0;
598
+ var _this3$wrapper;
599
+ return ((_this3$wrapper = _this3.wrapper) === null || _this3$wrapper === void 0 ? void 0 : _this3$wrapper.scrollLeft) || 0;
590
600
  },
591
601
  getTableWrapperWidth: function getTableWrapperWidth() {
592
- var _this2$wrapper2;
593
- return ((_this2$wrapper2 = _this2.wrapper) === null || _this2$wrapper2 === void 0 ? void 0 : _this2$wrapper2.clientWidth) || 760;
602
+ var _this3$wrapper2;
603
+ return ((_this3$wrapper2 = _this3.wrapper) === null || _this3$wrapper2 === void 0 ? void 0 : _this3$wrapper2.clientWidth) || 760;
594
604
  }
595
605
  }), /*#__PURE__*/_react.default.createElement("div", {
596
606
  style: shadowStyle(showBeforeShadow),
@@ -605,13 +615,13 @@ var TableComponent = /*#__PURE__*/function (_React$Component) {
605
615
  }), /*#__PURE__*/_react.default.createElement("div", {
606
616
  className: (0, _classnames2.default)(_types.TableCssClassName.TABLE_NODE_WRAPPER),
607
617
  ref: function ref(elem) {
608
- _this2.wrapper = elem;
618
+ _this3.wrapper = elem;
609
619
  if (elem) {
610
- _this2.props.contentDOM(elem);
620
+ _this3.props.contentDOM(elem);
611
621
  var tableElement = elem.querySelector('table');
612
- if (tableElement !== _this2.table) {
613
- _this2.table = tableElement;
614
- _this2.createShadowSentinels(_this2.table);
622
+ if (tableElement !== _this3.table) {
623
+ _this3.table = tableElement;
624
+ _this3.createShadowSentinels(_this3.table);
615
625
  }
616
626
  }
617
627
  }
@@ -27,7 +27,7 @@ var cornerControlHeight = _consts.tableToolbarSize + 1;
27
27
  */
28
28
  var insertColumnButtonOffset = exports.insertColumnButtonOffset = _consts.tableInsertColumnButtonSize / 2;
29
29
  var tableRowHeight = exports.tableRowHeight = 44;
30
- var rangeSelectionStyles = "\n.".concat(_types.TableCssClassName.NODEVIEW_WRAPPER, ".").concat(_editorSharedStyles.akEditorSelectedNodeClassName, " table tbody tr {\n th,td {\n ").concat((0, _editorSharedStyles.getSelectionStyles)([_editorSharedStyles.SelectionStyle.Blanket, _editorSharedStyles.SelectionStyle.Border]), "\n }\n}\n");
30
+ var rangeSelectionStyles = "\n.".concat(_types.TableCssClassName.NODEVIEW_WRAPPER, ".").concat(_editorSharedStyles.akEditorSelectedNodeClassName, " table tbody tr {\n th,td {\n ").concat((0, _editorSharedStyles.getSelectionStyles)([_editorSharedStyles.SelectionStyle.Blanket, _editorSharedStyles.SelectionStyle.Border]), "\n\n // The non-break space /00a0 in :after selector caused a table scroll issue when pressing Cmd+A to select table\n // This line is to override the content of :after selector from the shared getSelectionStyles\n &::after {\n content: '';\n }\n }\n}\n");
31
31
  var sentinelStyles = ".".concat(_types.TableCssClassName.TABLE_CONTAINER, " {\n > .").concat(_types.TableCssClassName.TABLE_STICKY_SENTINEL_TOP, ", > .").concat(_types.TableCssClassName.TABLE_STICKY_SENTINEL_BOTTOM, " {\n position: absolute;\n width: 100%;\n height: 1px;\n margin-top: -1px;\n // need this to avoid sentinel being focused via keyboard\n // this still allows it to be detected by intersection observer\n visibility: hidden;\n }\n > .").concat(_types.TableCssClassName.TABLE_STICKY_SENTINEL_TOP, " {\n top: ").concat(_consts.columnControlsDecorationHeight, "px;\n }\n > .").concat(_types.TableCssClassName.TABLE_STICKY_SENTINEL_BOTTOM, " {\n bottom: ").concat(_consts.tableScrollbarOffset + _consts.stickyRowOffsetTop + _consts.tablePadding * 2 + 23, "px;\n }\n &.").concat(_types.TableCssClassName.WITH_CONTROLS, " {\n > .").concat(_types.TableCssClassName.TABLE_STICKY_SENTINEL_TOP, " {\n top: 0px;\n }\n > .").concat(_types.TableCssClassName.TABLE_STICKY_SENTINEL_BOTTOM, " {\n margin-bottom: ").concat(_consts.columnControlsDecorationHeight, "px;\n }\n }\n}");
32
32
  var stickyScrollbarSentinelStyles = ".".concat(_types.TableCssClassName.TABLE_CONTAINER, " {\n > .").concat(_types.TableCssClassName.TABLE_STICKY_SCROLLBAR_SENTINEL_BOTTOM, ",\n > .").concat(_types.TableCssClassName.TABLE_STICKY_SCROLLBAR_SENTINEL_TOP, " {\n position: absolute;\n width: 100%;\n height: 1px;\n margin-top: -1px;\n // need this to avoid sentinel being focused via keyboard\n // this still allows it to be detected by intersection observer\n visibility: hidden;\n }\n > .").concat(_types.TableCssClassName.TABLE_STICKY_SCROLLBAR_SENTINEL_TOP, " {\n top: ").concat(_consts.columnControlsDecorationHeight + tableRowHeight * 3, "px;\n }\n > .").concat(_types.TableCssClassName.TABLE_STICKY_SCROLLBAR_SENTINEL_BOTTOM, " {\n bottom: ").concat(_editorSharedStyles.MAX_BROWSER_SCROLLBAR_HEIGHT, "px;\n }\n}");
33
33
  var stickyScrollbarContainerStyles = ".".concat(_types.TableCssClassName.TABLE_CONTAINER, " {\n > .").concat(_types.TableCssClassName.TABLE_STICKY_SCROLLBAR_CONTAINER, " {\n width: 100%;\n display: none;\n overflow-x: auto;\n position: sticky;\n bottom: 0;\n z-index: 1;\n }\n}");
@@ -406,7 +406,16 @@ class TableComponent extends React.Component {
406
406
  clearHoverSelection()(view.state, view.dispatch);
407
407
  }
408
408
  if ((_this$wrapper = this.wrapper) !== null && _this$wrapper !== void 0 && _this$wrapper.parentElement && this.table && !this.overflowShadowsObserver) {
409
- this.overflowShadowsObserver = new OverflowShadowsObserver(this.updateShadowState, this.table, this.wrapper);
409
+ if (this.props.isDragAndDropEnabled) {
410
+ // requestAnimationFrame is used here to fix a race condition issue
411
+ // that happens when a table is nested in expand and expand's width is
412
+ // changed via breakout button
413
+ window.requestAnimationFrame(() => {
414
+ this.overflowShadowsObserver = new OverflowShadowsObserver(this.updateShadowState, this.table, this.wrapper);
415
+ });
416
+ } else {
417
+ this.overflowShadowsObserver = new OverflowShadowsObserver(this.updateShadowState, this.table, this.wrapper);
418
+ }
410
419
  }
411
420
  if (this.overflowShadowsObserver) {
412
421
  var _this$state$stickyHea;
@@ -22,6 +22,12 @@ const rangeSelectionStyles = `
22
22
  .${ClassName.NODEVIEW_WRAPPER}.${akEditorSelectedNodeClassName} table tbody tr {
23
23
  th,td {
24
24
  ${getSelectionStyles([SelectionStyle.Blanket, SelectionStyle.Border])}
25
+
26
+ // The non-break space /00a0 in :after selector caused a table scroll issue when pressing Cmd+A to select table
27
+ // This line is to override the content of :after selector from the shared getSelectionStyles
28
+ &::after {
29
+ content: '';
30
+ }
25
31
  }
26
32
  }
27
33
  `;
@@ -387,7 +387,8 @@ var TableComponent = /*#__PURE__*/function (_React$Component) {
387
387
  }, {
388
388
  key: "componentDidUpdate",
389
389
  value: function componentDidUpdate(_, prevState) {
390
- var _this$wrapper;
390
+ var _this$wrapper,
391
+ _this2 = this;
391
392
  var _this$props9 = this.props,
392
393
  view = _this$props9.view,
393
394
  getNode = _this$props9.getNode,
@@ -402,7 +403,16 @@ var TableComponent = /*#__PURE__*/function (_React$Component) {
402
403
  clearHoverSelection()(view.state, view.dispatch);
403
404
  }
404
405
  if ((_this$wrapper = this.wrapper) !== null && _this$wrapper !== void 0 && _this$wrapper.parentElement && this.table && !this.overflowShadowsObserver) {
405
- this.overflowShadowsObserver = new OverflowShadowsObserver(this.updateShadowState, this.table, this.wrapper);
406
+ if (this.props.isDragAndDropEnabled) {
407
+ // requestAnimationFrame is used here to fix a race condition issue
408
+ // that happens when a table is nested in expand and expand's width is
409
+ // changed via breakout button
410
+ window.requestAnimationFrame(function () {
411
+ _this2.overflowShadowsObserver = new OverflowShadowsObserver(_this2.updateShadowState, _this2.table, _this2.wrapper);
412
+ });
413
+ } else {
414
+ this.overflowShadowsObserver = new OverflowShadowsObserver(this.updateShadowState, this.table, this.wrapper);
415
+ }
406
416
  }
407
417
  if (this.overflowShadowsObserver) {
408
418
  var _this$state$stickyHea;
@@ -455,7 +465,7 @@ var TableComponent = /*#__PURE__*/function (_React$Component) {
455
465
  key: "render",
456
466
  value: function render() {
457
467
  var _classnames,
458
- _this2 = this;
468
+ _this3 = this;
459
469
  var _this$props10 = this.props,
460
470
  view = _this$props10.view,
461
471
  getNode = _this$props10.getNode,
@@ -578,12 +588,12 @@ var TableComponent = /*#__PURE__*/function (_React$Component) {
578
588
  editorView: view,
579
589
  node: node,
580
590
  getScrollOffset: function getScrollOffset() {
581
- var _this2$wrapper;
582
- return ((_this2$wrapper = _this2.wrapper) === null || _this2$wrapper === void 0 ? void 0 : _this2$wrapper.scrollLeft) || 0;
591
+ var _this3$wrapper;
592
+ return ((_this3$wrapper = _this3.wrapper) === null || _this3$wrapper === void 0 ? void 0 : _this3$wrapper.scrollLeft) || 0;
583
593
  },
584
594
  getTableWrapperWidth: function getTableWrapperWidth() {
585
- var _this2$wrapper2;
586
- return ((_this2$wrapper2 = _this2.wrapper) === null || _this2$wrapper2 === void 0 ? void 0 : _this2$wrapper2.clientWidth) || 760;
595
+ var _this3$wrapper2;
596
+ return ((_this3$wrapper2 = _this3.wrapper) === null || _this3$wrapper2 === void 0 ? void 0 : _this3$wrapper2.clientWidth) || 760;
587
597
  }
588
598
  }), /*#__PURE__*/React.createElement("div", {
589
599
  style: shadowStyle(showBeforeShadow),
@@ -598,13 +608,13 @@ var TableComponent = /*#__PURE__*/function (_React$Component) {
598
608
  }), /*#__PURE__*/React.createElement("div", {
599
609
  className: classnames(ClassName.TABLE_NODE_WRAPPER),
600
610
  ref: function ref(elem) {
601
- _this2.wrapper = elem;
611
+ _this3.wrapper = elem;
602
612
  if (elem) {
603
- _this2.props.contentDOM(elem);
613
+ _this3.props.contentDOM(elem);
604
614
  var tableElement = elem.querySelector('table');
605
- if (tableElement !== _this2.table) {
606
- _this2.table = tableElement;
607
- _this2.createShadowSentinels(_this2.table);
615
+ if (tableElement !== _this3.table) {
616
+ _this3.table = tableElement;
617
+ _this3.createShadowSentinels(_this3.table);
608
618
  }
609
619
  }
610
620
  }
@@ -20,7 +20,7 @@ var cornerControlHeight = tableToolbarSize + 1;
20
20
  */
21
21
  export var insertColumnButtonOffset = tableInsertColumnButtonSize / 2;
22
22
  export var tableRowHeight = 44;
23
- var rangeSelectionStyles = "\n.".concat(ClassName.NODEVIEW_WRAPPER, ".").concat(akEditorSelectedNodeClassName, " table tbody tr {\n th,td {\n ").concat(getSelectionStyles([SelectionStyle.Blanket, SelectionStyle.Border]), "\n }\n}\n");
23
+ var rangeSelectionStyles = "\n.".concat(ClassName.NODEVIEW_WRAPPER, ".").concat(akEditorSelectedNodeClassName, " table tbody tr {\n th,td {\n ").concat(getSelectionStyles([SelectionStyle.Blanket, SelectionStyle.Border]), "\n\n // The non-break space /00a0 in :after selector caused a table scroll issue when pressing Cmd+A to select table\n // This line is to override the content of :after selector from the shared getSelectionStyles\n &::after {\n content: '';\n }\n }\n}\n");
24
24
  var sentinelStyles = ".".concat(ClassName.TABLE_CONTAINER, " {\n > .").concat(ClassName.TABLE_STICKY_SENTINEL_TOP, ", > .").concat(ClassName.TABLE_STICKY_SENTINEL_BOTTOM, " {\n position: absolute;\n width: 100%;\n height: 1px;\n margin-top: -1px;\n // need this to avoid sentinel being focused via keyboard\n // this still allows it to be detected by intersection observer\n visibility: hidden;\n }\n > .").concat(ClassName.TABLE_STICKY_SENTINEL_TOP, " {\n top: ").concat(columnControlsDecorationHeight, "px;\n }\n > .").concat(ClassName.TABLE_STICKY_SENTINEL_BOTTOM, " {\n bottom: ").concat(tableScrollbarOffset + stickyRowOffsetTop + tablePadding * 2 + 23, "px;\n }\n &.").concat(ClassName.WITH_CONTROLS, " {\n > .").concat(ClassName.TABLE_STICKY_SENTINEL_TOP, " {\n top: 0px;\n }\n > .").concat(ClassName.TABLE_STICKY_SENTINEL_BOTTOM, " {\n margin-bottom: ").concat(columnControlsDecorationHeight, "px;\n }\n }\n}");
25
25
  var stickyScrollbarSentinelStyles = ".".concat(ClassName.TABLE_CONTAINER, " {\n > .").concat(ClassName.TABLE_STICKY_SCROLLBAR_SENTINEL_BOTTOM, ",\n > .").concat(ClassName.TABLE_STICKY_SCROLLBAR_SENTINEL_TOP, " {\n position: absolute;\n width: 100%;\n height: 1px;\n margin-top: -1px;\n // need this to avoid sentinel being focused via keyboard\n // this still allows it to be detected by intersection observer\n visibility: hidden;\n }\n > .").concat(ClassName.TABLE_STICKY_SCROLLBAR_SENTINEL_TOP, " {\n top: ").concat(columnControlsDecorationHeight + tableRowHeight * 3, "px;\n }\n > .").concat(ClassName.TABLE_STICKY_SCROLLBAR_SENTINEL_BOTTOM, " {\n bottom: ").concat(MAX_BROWSER_SCROLLBAR_HEIGHT, "px;\n }\n}");
26
26
  var stickyScrollbarContainerStyles = ".".concat(ClassName.TABLE_CONTAINER, " {\n > .").concat(ClassName.TABLE_STICKY_SCROLLBAR_CONTAINER, " {\n width: 100%;\n display: none;\n overflow-x: auto;\n position: sticky;\n bottom: 0;\n z-index: 1;\n }\n}");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-table",
3
- "version": "7.0.1",
3
+ "version": "7.0.3",
4
4
  "description": "Table plugin for the @atlaskit/editor",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -45,7 +45,7 @@
45
45
  "@atlaskit/pragmatic-drag-and-drop": "^0.25.0",
46
46
  "@atlaskit/pragmatic-drag-and-drop-auto-scroll": "^0.8.0",
47
47
  "@atlaskit/pragmatic-drag-and-drop-hitbox": "^0.12.0",
48
- "@atlaskit/primitives": "^1.18.0",
48
+ "@atlaskit/primitives": "^1.19.0",
49
49
  "@atlaskit/theme": "^12.6.0",
50
50
  "@atlaskit/toggle": "^13.0.0",
51
51
  "@atlaskit/tokens": "^1.34.0",
@@ -300,11 +300,24 @@ class TableComponent extends React.Component<ComponentProps, TableState> {
300
300
  this.table &&
301
301
  !this.overflowShadowsObserver
302
302
  ) {
303
- this.overflowShadowsObserver = new OverflowShadowsObserver(
304
- this.updateShadowState,
305
- this.table,
306
- this.wrapper,
307
- );
303
+ if (this.props.isDragAndDropEnabled) {
304
+ // requestAnimationFrame is used here to fix a race condition issue
305
+ // that happens when a table is nested in expand and expand's width is
306
+ // changed via breakout button
307
+ window.requestAnimationFrame(() => {
308
+ this.overflowShadowsObserver = new OverflowShadowsObserver(
309
+ this.updateShadowState,
310
+ this.table as HTMLElement,
311
+ this.wrapper as HTMLDivElement,
312
+ );
313
+ });
314
+ } else {
315
+ this.overflowShadowsObserver = new OverflowShadowsObserver(
316
+ this.updateShadowState,
317
+ this.table,
318
+ this.wrapper,
319
+ );
320
+ }
308
321
  }
309
322
 
310
323
  if (this.overflowShadowsObserver) {
@@ -89,6 +89,12 @@ const rangeSelectionStyles = `
89
89
  .${ClassName.NODEVIEW_WRAPPER}.${akEditorSelectedNodeClassName} table tbody tr {
90
90
  th,td {
91
91
  ${getSelectionStyles([SelectionStyle.Blanket, SelectionStyle.Border])}
92
+
93
+ // The non-break space /00a0 in :after selector caused a table scroll issue when pressing Cmd+A to select table
94
+ // This line is to override the content of :after selector from the shared getSelectionStyles
95
+ &::after {
96
+ content: '';
97
+ }
92
98
  }
93
99
  }
94
100
  `;
package/tsconfig.json CHANGED
@@ -6,9 +6,602 @@
6
6
  "./examples/**/*.ts",
7
7
  "./examples/**/*.tsx",
8
8
  "./example-helpers/**/*.ts",
9
- "./example-helpers/**/*.tsx",
9
+ "./example-helpers/**/*.tsx"
10
10
  ],
11
11
  "compilerOptions": {
12
- "baseUrl": "./"
12
+ "baseUrl": "./",
13
+ "paths": {
14
+ "@atlaskit/custom-steps": [
15
+ "../custom-steps/src/index.ts"
16
+ ],
17
+ "@atlaskit/editor-common/event-dispatcher": [
18
+ "../editor-common/src/event-dispatcher/index.ts"
19
+ ],
20
+ "@atlaskit/editor-common/extensions": [
21
+ "../editor-common/src/extensions.ts"
22
+ ],
23
+ "@atlaskit/editor-common/extensibility": [
24
+ "../editor-common/src/extensibility/index.ts"
25
+ ],
26
+ "@atlaskit/editor-common/normalize-feature-flags": [
27
+ "../editor-common/src/normalize-feature-flags.ts"
28
+ ],
29
+ "@atlaskit/editor-common/messages": [
30
+ "../editor-common/src/messages/index.ts"
31
+ ],
32
+ "@atlaskit/editor-common/provider-factory": [
33
+ "../editor-common/src/provider-factory.ts"
34
+ ],
35
+ "@atlaskit/editor-common/styles": [
36
+ "../editor-common/src/styles/index.ts"
37
+ ],
38
+ "@atlaskit/editor-common/validator": [
39
+ "../editor-common/src/validator.ts"
40
+ ],
41
+ "@atlaskit/editor-common/in-product": [
42
+ "../editor-common/src/in-product.ts"
43
+ ],
44
+ "@atlaskit/editor-common/type-ahead": [
45
+ "../editor-common/src/type-ahead/index.ts"
46
+ ],
47
+ "@atlaskit/editor-common/ufo": [
48
+ "../editor-common/src/ufo/index.ts"
49
+ ],
50
+ "@atlaskit/editor-common/insert": [
51
+ "../editor-common/src/insert/index.ts"
52
+ ],
53
+ "@atlaskit/editor-common/types": [
54
+ "../editor-common/src/types/index.ts"
55
+ ],
56
+ "@atlaskit/editor-common/ui": [
57
+ "../editor-common/src/ui/index.tsx"
58
+ ],
59
+ "@atlaskit/editor-common/utils": [
60
+ "../editor-common/src/utils/index.ts"
61
+ ],
62
+ "@atlaskit/editor-common/card": [
63
+ "../editor-common/src/card/index.ts"
64
+ ],
65
+ "@atlaskit/editor-common/collab": [
66
+ "../editor-common/src/collab/index.ts"
67
+ ],
68
+ "@atlaskit/editor-common/emoji": [
69
+ "../editor-common/src/emoji.ts"
70
+ ],
71
+ "@atlaskit/editor-common/mention": [
72
+ "../editor-common/src/mention.ts"
73
+ ],
74
+ "@atlaskit/editor-common/provider-helpers": [
75
+ "../editor-common/src/provider-helpers/index.ts"
76
+ ],
77
+ "@atlaskit/editor-common/icons": [
78
+ "../editor-common/src/icons/index.ts"
79
+ ],
80
+ "@atlaskit/editor-common/safe-plugin": [
81
+ "../editor-common/src/safe-plugin/index.ts"
82
+ ],
83
+ "@atlaskit/editor-common/panel": [
84
+ "../editor-common/src/panel.ts"
85
+ ],
86
+ "@atlaskit/editor-common/analytics": [
87
+ "../editor-common/src/analytics/index.ts"
88
+ ],
89
+ "@atlaskit/editor-common/error-boundary": [
90
+ "../editor-common/src/ui/ErrorBoundary/index.tsx"
91
+ ],
92
+ "@atlaskit/editor-common/portal-provider": [
93
+ "../editor-common/src/ui/PortalProvider/index.tsx"
94
+ ],
95
+ "@atlaskit/editor-common/react-node-view": [
96
+ "../editor-common/src/react-node-view/index.tsx"
97
+ ],
98
+ "@atlaskit/editor-common/with-plugin-state": [
99
+ "../editor-common/src/with-plugin-state/index.tsx"
100
+ ],
101
+ "@atlaskit/editor-common/node-width": [
102
+ "../editor-common/src/node-width/index.ts"
103
+ ],
104
+ "@atlaskit/editor-common/keymaps": [
105
+ "../editor-common/src/keymaps/index.tsx"
106
+ ],
107
+ "@atlaskit/editor-common/ui-menu": [
108
+ "../editor-common/src/ui-menu/index.tsx"
109
+ ],
110
+ "@atlaskit/editor-common/ui-react": [
111
+ "../editor-common/src/ui-react/index.ts"
112
+ ],
113
+ "@atlaskit/editor-common/ui-color": [
114
+ "../editor-common/src/ui-color/index.ts"
115
+ ],
116
+ "@atlaskit/editor-common/transforms": [
117
+ "../editor-common/src/transforms/index.ts"
118
+ ],
119
+ "@atlaskit/editor-common/core-utils": [
120
+ "../editor-common/src/core-utils/index.ts"
121
+ ],
122
+ "@atlaskit/editor-common/selection": [
123
+ "../editor-common/src/selection/index.ts"
124
+ ],
125
+ "@atlaskit/editor-common/preset": [
126
+ "../editor-common/src/preset/index.ts"
127
+ ],
128
+ "@atlaskit/editor-common/hooks": [
129
+ "../editor-common/src/hooks/index.ts"
130
+ ],
131
+ "@atlaskit/editor-common/media-inline": [
132
+ "../editor-common/src/media-inline/index.ts"
133
+ ],
134
+ "@atlaskit/editor-common/media-single": [
135
+ "../editor-common/src/media-single/index.ts"
136
+ ],
137
+ "@atlaskit/editor-common/monitoring": [
138
+ "../editor-common/src/monitoring/index.ts"
139
+ ],
140
+ "@atlaskit/editor-common/paste": [
141
+ "../editor-common/src/paste/index.ts"
142
+ ],
143
+ "@atlaskit/editor-common/resizer": [
144
+ "../editor-common/src/resizer/index.ts"
145
+ ],
146
+ "@atlaskit/editor-common/editor-analytics": [
147
+ "../editor-common/src/editor-analytics/index.ts"
148
+ ],
149
+ "@atlaskit/editor-common/selection-based-node-view": [
150
+ "../editor-common/src/selection-based-node-view/index.ts"
151
+ ],
152
+ "@atlaskit/editor-common/guideline": [
153
+ "../editor-common/src/guideline/index.ts"
154
+ ],
155
+ "@atlaskit/editor-common/quick-insert": [
156
+ "../editor-common/src/quick-insert/index.ts"
157
+ ],
158
+ "@atlaskit/editor-common/link": [
159
+ "../editor-common/src/link/index.ts"
160
+ ],
161
+ "@atlaskit/editor-common/mark": [
162
+ "../editor-common/src/mark/index.ts"
163
+ ],
164
+ "@atlaskit/editor-common/commands": [
165
+ "../editor-common/src/commands/index.ts"
166
+ ],
167
+ "@atlaskit/editor-common/clipboard": [
168
+ "../editor-common/src/clipboard/index.ts"
169
+ ],
170
+ "@atlaskit/editor-common/lists": [
171
+ "../editor-common/src/lists/index.ts"
172
+ ],
173
+ "@atlaskit/editor-common/element-browser": [
174
+ "../editor-common/src/element-browser/index.ts"
175
+ ],
176
+ "@atlaskit/editor-common/floating-toolbar": [
177
+ "../editor-common/src/floating-toolbar/index.ts"
178
+ ],
179
+ "@atlaskit/editor-common/copy-button": [
180
+ "../editor-common/src/copy-button/index.ts"
181
+ ],
182
+ "@atlaskit/editor-common/legacy-rank-plugins": [
183
+ "../editor-common/src/rank.ts"
184
+ ],
185
+ "@atlaskit/editor-common/indentation": [
186
+ "../editor-common/src/indentation/index.ts"
187
+ ],
188
+ "@atlaskit/editor-common/annotation": [
189
+ "../editor-common/src/annotation/index.ts"
190
+ ],
191
+ "@atlaskit/editor-common": [
192
+ "../editor-common/src"
193
+ ],
194
+ "@atlaskit/editor-palette": [
195
+ "../editor-palette/src/index.ts"
196
+ ],
197
+ "@atlaskit/editor-plugin-analytics": [
198
+ "../editor-plugin-analytics/src/index.ts"
199
+ ],
200
+ "@atlaskit/editor-plugin-content-insertion": [
201
+ "../editor-plugin-content-insertion/src/index.ts"
202
+ ],
203
+ "@atlaskit/editor-plugin-guideline": [
204
+ "../editor-plugin-guideline/src/index.ts"
205
+ ],
206
+ "@atlaskit/editor-plugin-selection/types": [
207
+ "../editor-plugin-selection/src/types.ts"
208
+ ],
209
+ "@atlaskit/editor-plugin-selection": [
210
+ "../editor-plugin-selection/src/index.ts"
211
+ ],
212
+ "@atlaskit/editor-plugin-selection-toolbar": [
213
+ "../editor-plugin-selection-toolbar/src/index.ts"
214
+ ],
215
+ "@atlaskit/editor-plugin-width": [
216
+ "../editor-plugin-width/src/index.ts"
217
+ ],
218
+ "@atlaskit/editor-shared-styles/consts": [
219
+ "../editor-shared-styles/src/consts/index.ts"
220
+ ],
221
+ "@atlaskit/editor-shared-styles/selection": [
222
+ "../editor-shared-styles/src/selection/index.ts"
223
+ ],
224
+ "@atlaskit/editor-shared-styles/shortcut": [
225
+ "../editor-shared-styles/src/shortcut/index.ts"
226
+ ],
227
+ "@atlaskit/editor-shared-styles/scrollbar": [
228
+ "../editor-shared-styles/src/scrollbar-styles.ts"
229
+ ],
230
+ "@atlaskit/editor-shared-styles": [
231
+ "../editor-shared-styles/src/index.ts"
232
+ ],
233
+ "@atlaskit/editor-tables/cell-bookmark": [
234
+ "../editor-tables/src/cell-bookmark.ts"
235
+ ],
236
+ "@atlaskit/editor-tables/cell-selection": [
237
+ "../editor-tables/src/cell-selection.ts"
238
+ ],
239
+ "@atlaskit/editor-tables/pm-plugins": [
240
+ "../editor-tables/src/pm-plugins.ts"
241
+ ],
242
+ "@atlaskit/editor-tables/table-map": [
243
+ "../editor-tables/src/table-map.ts"
244
+ ],
245
+ "@atlaskit/editor-tables/types": [
246
+ "../editor-tables/src/types.ts"
247
+ ],
248
+ "@atlaskit/editor-tables/utils": [
249
+ "../editor-tables/src/utils.ts"
250
+ ],
251
+ "@atlaskit/editor-tables": [
252
+ "../editor-tables/src/index.ts"
253
+ ],
254
+ "@atlaskit/icon/base": [
255
+ "../../design-system/icon/src/entry-points/base.tsx"
256
+ ],
257
+ "@atlaskit/icon/constants": [
258
+ "../../design-system/icon/src/entry-points/constants.tsx"
259
+ ],
260
+ "@atlaskit/icon/metadata": [
261
+ "../../design-system/icon/src/entry-points/metadata.tsx"
262
+ ],
263
+ "@atlaskit/icon/svg": [
264
+ "../../design-system/icon/src/entry-points/svg.tsx"
265
+ ],
266
+ "@atlaskit/icon/types": [
267
+ "../../design-system/icon/src/entry-points/types.tsx"
268
+ ],
269
+ "@atlaskit/icon/glyph": [
270
+ "../../design-system/icon/glyph"
271
+ ],
272
+ "@atlaskit/icon": [
273
+ "../../design-system/icon/src/index.tsx"
274
+ ],
275
+ "@atlaskit/icon-object/metadata": [
276
+ "../../design-system/icon-object/src/entry-points/metadata.tsx"
277
+ ],
278
+ "@atlaskit/icon-object/glyph": [
279
+ "../../design-system/icon-object/glyph"
280
+ ],
281
+ "@atlaskit/icon-object": [
282
+ "../../design-system/icon-object/src/index.tsx"
283
+ ],
284
+ "@atlaskit/icon-file-type/metadata": [
285
+ "../../media/icon-file-type/src/entry-points/metadata.ts"
286
+ ],
287
+ "@atlaskit/icon-file-type/glyph": [
288
+ "../../media/icon-file-type/glyph"
289
+ ],
290
+ "@atlaskit/icon-file-type": [
291
+ "../../media/icon-file-type/src/index.ts"
292
+ ],
293
+ "@atlaskit/platform-feature-flags": [
294
+ "../../platform/feature-flags/src/index.ts"
295
+ ],
296
+ "@atlaskit/pragmatic-drag-and-drop-auto-scroll/element": [
297
+ "../../pragmatic-drag-and-drop/auto-scroll/src/entry-point/element.ts"
298
+ ],
299
+ "@atlaskit/pragmatic-drag-and-drop-auto-scroll/file": [
300
+ "../../pragmatic-drag-and-drop/auto-scroll/src/entry-point/file.ts"
301
+ ],
302
+ "@atlaskit/pragmatic-drag-and-drop-auto-scroll/unsafe-overflow/element": [
303
+ "../../pragmatic-drag-and-drop/auto-scroll/src/entry-point/unsafe-overflow/element.ts"
304
+ ],
305
+ "@atlaskit/pragmatic-drag-and-drop-auto-scroll/unsafe-overflow/file": [
306
+ "../../pragmatic-drag-and-drop/auto-scroll/src/entry-point/unsafe-overflow/file.ts"
307
+ ],
308
+ "@atlaskit/pragmatic-drag-and-drop-auto-scroll": [
309
+ "../../pragmatic-drag-and-drop/auto-scroll/src/index.ts"
310
+ ],
311
+ "@atlaskit/pragmatic-drag-and-drop/adapter/element": [
312
+ "../../pragmatic-drag-and-drop/core/src/entry-point/adapter/element.ts"
313
+ ],
314
+ "@atlaskit/pragmatic-drag-and-drop/adapter/file": [
315
+ "../../pragmatic-drag-and-drop/core/src/entry-point/adapter/file.ts"
316
+ ],
317
+ "@atlaskit/pragmatic-drag-and-drop/types": [
318
+ "../../pragmatic-drag-and-drop/core/src/entry-point/types.ts"
319
+ ],
320
+ "@atlaskit/pragmatic-drag-and-drop/addon/cancel-unhandled": [
321
+ "../../pragmatic-drag-and-drop/core/src/entry-point/addon/cancel-unhandled.ts"
322
+ ],
323
+ "@atlaskit/pragmatic-drag-and-drop/util/combine": [
324
+ "../../pragmatic-drag-and-drop/core/src/entry-point/util/combine.ts"
325
+ ],
326
+ "@atlaskit/pragmatic-drag-and-drop/util/once": [
327
+ "../../pragmatic-drag-and-drop/core/src/entry-point/util/once.ts"
328
+ ],
329
+ "@atlaskit/pragmatic-drag-and-drop/util/reorder": [
330
+ "../../pragmatic-drag-and-drop/core/src/entry-point/util/reorder.ts"
331
+ ],
332
+ "@atlaskit/pragmatic-drag-and-drop/util/set-custom-native-drag-preview": [
333
+ "../../pragmatic-drag-and-drop/core/src/entry-point/util/set-custom-native-drag-preview.ts"
334
+ ],
335
+ "@atlaskit/pragmatic-drag-and-drop/util/offset-from-pointer": [
336
+ "../../pragmatic-drag-and-drop/core/src/entry-point/util/offset-from-pointer.ts"
337
+ ],
338
+ "@atlaskit/pragmatic-drag-and-drop/util/center-under-pointer": [
339
+ "../../pragmatic-drag-and-drop/core/src/entry-point/util/center-under-pointer.ts"
340
+ ],
341
+ "@atlaskit/pragmatic-drag-and-drop/util/preserve-offset-on-source": [
342
+ "../../pragmatic-drag-and-drop/core/src/entry-point/util/preserve-offset-on-source.ts"
343
+ ],
344
+ "@atlaskit/pragmatic-drag-and-drop/util/disable-native-drag-preview": [
345
+ "../../pragmatic-drag-and-drop/core/src/entry-point/util/disable-native-drag-preview.ts"
346
+ ],
347
+ "@atlaskit/pragmatic-drag-and-drop/util/scroll-just-enough-into-view": [
348
+ "../../pragmatic-drag-and-drop/core/src/entry-point/util/scroll-just-enough-into-view.ts"
349
+ ],
350
+ "@atlaskit/pragmatic-drag-and-drop/experimental/cross-window-element-adapter": [
351
+ "../../pragmatic-drag-and-drop/core/src/entry-point/experimental/cross-with-element-adapter.ts"
352
+ ],
353
+ "@atlaskit/pragmatic-drag-and-drop": [
354
+ "../../pragmatic-drag-and-drop/core/src/index.ts"
355
+ ],
356
+ "@atlaskit/pragmatic-drag-and-drop-docs": [
357
+ "../../pragmatic-drag-and-drop/docs/src/index.ts"
358
+ ],
359
+ "@atlaskit/pragmatic-drag-and-drop-flourish/trigger-post-move-flash": [
360
+ "../../pragmatic-drag-and-drop/flourish/src/trigger-post-move-flash.tsx"
361
+ ],
362
+ "@atlaskit/pragmatic-drag-and-drop-flourish": [
363
+ "../../pragmatic-drag-and-drop/flourish/src"
364
+ ],
365
+ "@atlaskit/pragmatic-drag-and-drop-hitbox/types": [
366
+ "../../pragmatic-drag-and-drop/hitbox/src/types.ts"
367
+ ],
368
+ "@atlaskit/pragmatic-drag-and-drop-hitbox/addon/closest-edge": [
369
+ "../../pragmatic-drag-and-drop/hitbox/src/closest-edge.ts"
370
+ ],
371
+ "@atlaskit/pragmatic-drag-and-drop-hitbox/util/reorder-with-edge": [
372
+ "../../pragmatic-drag-and-drop/hitbox/src/reorder-with-edge.ts"
373
+ ],
374
+ "@atlaskit/pragmatic-drag-and-drop-hitbox/util/get-reorder-destination-index": [
375
+ "../../pragmatic-drag-and-drop/hitbox/src/get-reorder-destination-index.ts"
376
+ ],
377
+ "@atlaskit/pragmatic-drag-and-drop-hitbox/tree-item": [
378
+ "../../pragmatic-drag-and-drop/hitbox/src/tree-item.ts"
379
+ ],
380
+ "@atlaskit/pragmatic-drag-and-drop-hitbox": [
381
+ "../../pragmatic-drag-and-drop/hitbox/src/index.ts"
382
+ ],
383
+ "@atlaskit/pragmatic-drag-and-drop-live-region": [
384
+ "../../pragmatic-drag-and-drop/live-region/src/index.tsx"
385
+ ],
386
+ "@atlaskit/pragmatic-drag-and-drop-react-accessibility/drag-handle-button": [
387
+ "../../pragmatic-drag-and-drop/react-accessibility/src/drag-handle-button.tsx"
388
+ ],
389
+ "@atlaskit/pragmatic-drag-and-drop-react-accessibility/drag-handle-button-small": [
390
+ "../../pragmatic-drag-and-drop/react-accessibility/src/drag-handle-button-small.tsx"
391
+ ],
392
+ "@atlaskit/pragmatic-drag-and-drop-react-accessibility": [
393
+ "../../pragmatic-drag-and-drop/react-accessibility/src"
394
+ ],
395
+ "@atlaskit/pragmatic-drag-and-drop-react-beautiful-dnd-autoscroll": [
396
+ "../../pragmatic-drag-and-drop/react-beautiful-dnd-autoscroll/src/index.ts"
397
+ ],
398
+ "@atlaskit/pragmatic-drag-and-drop-react-beautiful-dnd-migration": [
399
+ "../../pragmatic-drag-and-drop/react-beautiful-dnd-migration/src/index.ts"
400
+ ],
401
+ "@atlaskit/pragmatic-drag-and-drop-react-indicator/box": [
402
+ "../../pragmatic-drag-and-drop/react-indicator/src/box.tsx"
403
+ ],
404
+ "@atlaskit/pragmatic-drag-and-drop-react-indicator/box-without-terminal": [
405
+ "../../pragmatic-drag-and-drop/react-indicator/src/box-without-terminal.tsx"
406
+ ],
407
+ "@atlaskit/pragmatic-drag-and-drop-react-indicator/types": [
408
+ "../../pragmatic-drag-and-drop/react-indicator/src/types.ts"
409
+ ],
410
+ "@atlaskit/pragmatic-drag-and-drop-react-indicator/tree-item": [
411
+ "../../pragmatic-drag-and-drop/react-indicator/src/tree-item.tsx"
412
+ ],
413
+ "@atlaskit/pragmatic-drag-and-drop-react-indicator": [
414
+ "../../pragmatic-drag-and-drop/react-indicator/src/index.ts"
415
+ ],
416
+ "@atlaskit/primitives/box": [
417
+ "../../design-system/primitives/src/components/box.tsx"
418
+ ],
419
+ "@atlaskit/primitives/stack": [
420
+ "../../design-system/primitives/src/components/stack.tsx"
421
+ ],
422
+ "@atlaskit/primitives/inline": [
423
+ "../../design-system/primitives/src/components/inline.tsx"
424
+ ],
425
+ "@atlaskit/primitives/text": [
426
+ "../../design-system/primitives/src/components/text.tsx"
427
+ ],
428
+ "@atlaskit/primitives/pressable": [
429
+ "../../design-system/primitives/src/components/pressable.tsx"
430
+ ],
431
+ "@atlaskit/primitives/link": [
432
+ "../../design-system/primitives/src/components/link.tsx"
433
+ ],
434
+ "@atlaskit/primitives/responsive": [
435
+ "../../design-system/primitives/src/responsive/index.tsx"
436
+ ],
437
+ "@atlaskit/primitives": [
438
+ "../../design-system/primitives/src/index.tsx"
439
+ ],
440
+ "@atlaskit/theme/deprecated-provider-please-do-not-use": [
441
+ "../../design-system/theme/src/deprecated-provider-please-do-not-use.tsx"
442
+ ],
443
+ "@atlaskit/theme/color-palettes": [
444
+ "../../design-system/theme/src/color-palettes.tsx"
445
+ ],
446
+ "@atlaskit/theme/colors": [
447
+ "../../design-system/theme/src/colors.tsx"
448
+ ],
449
+ "@atlaskit/theme/components": [
450
+ "../../design-system/theme/src/components.tsx"
451
+ ],
452
+ "@atlaskit/theme/constants": [
453
+ "../../design-system/theme/src/constants.tsx"
454
+ ],
455
+ "@atlaskit/theme/elevation": [
456
+ "../../design-system/theme/src/elevation.tsx"
457
+ ],
458
+ "@atlaskit/theme/types": [
459
+ "../../design-system/theme/src/types.tsx"
460
+ ],
461
+ "@atlaskit/theme/typography": [
462
+ "../../design-system/theme/src/typography.tsx"
463
+ ],
464
+ "@atlaskit/theme": [
465
+ "../../design-system/theme/src"
466
+ ],
467
+ "@atlaskit/toggle": [
468
+ "../../design-system/toggle/src/index.tsx"
469
+ ],
470
+ "@atlaskit/tokens/custom-themes": [
471
+ "../../design-system/tokens/src/entry-points/custom-themes.tsx"
472
+ ],
473
+ "@atlaskit/tokens/figma/atlassian-light.json": [
474
+ "../../design-system/tokens/figma/atlassian-light.json"
475
+ ],
476
+ "@atlaskit/tokens/figma/atlassian-dark.json": [
477
+ "../../design-system/tokens/figma/atlassian-dark.json"
478
+ ],
479
+ "@atlaskit/tokens/palettes-raw": [
480
+ "../../design-system/tokens/src/entry-points/palettes-raw.tsx"
481
+ ],
482
+ "@atlaskit/tokens/tokens-raw": [
483
+ "../../design-system/tokens/src/entry-points/tokens-raw.tsx"
484
+ ],
485
+ "@atlaskit/tokens/token-ids": [
486
+ "../../design-system/tokens/src/entry-points/token-ids.tsx"
487
+ ],
488
+ "@atlaskit/tokens/token-names": [
489
+ "../../design-system/tokens/src/entry-points/token-names.tsx"
490
+ ],
491
+ "@atlaskit/tokens/token-order": [
492
+ "../../design-system/tokens/src/entry-points/token-order.tsx"
493
+ ],
494
+ "@atlaskit/tokens/token-default-values": [
495
+ "../../design-system/tokens/src/entry-points/token-default-values.tsx"
496
+ ],
497
+ "@atlaskit/tokens/rename-mapping": [
498
+ "../../design-system/tokens/src/entry-points/rename-mapping.tsx"
499
+ ],
500
+ "@atlaskit/tokens/babel-plugin": [
501
+ "../../design-system/tokens/src/entry-points/babel-plugin.tsx"
502
+ ],
503
+ "@atlaskit/tokens/css-type-schema": [
504
+ "../../design-system/tokens/src/entry-points/css-type-schema.codegen.tsx"
505
+ ],
506
+ "@atlaskit/tokens": [
507
+ "../../design-system/tokens/src/index.tsx"
508
+ ],
509
+ "@atlaskit/tooltip/Tooltip": [
510
+ "../../design-system/tooltip/src/Tooltip.tsx"
511
+ ],
512
+ "@atlaskit/tooltip/TooltipContainer": [
513
+ "../../design-system/tooltip/src/TooltipContainer.tsx"
514
+ ],
515
+ "@atlaskit/tooltip/TooltipPrimitive": [
516
+ "../../design-system/tooltip/src/TooltipPrimitive.tsx"
517
+ ],
518
+ "@atlaskit/tooltip/types": [
519
+ "../../design-system/tooltip/src/types.tsx"
520
+ ],
521
+ "@atlaskit/tooltip/utilities": [
522
+ "../../design-system/tooltip/src/utilities.ts"
523
+ ],
524
+ "@atlaskit/tooltip": [
525
+ "../../design-system/tooltip/src/index.ts"
526
+ ],
527
+ "@atlaskit/analytics-next/types": [
528
+ "../../analytics/analytics-next/src/types.ts"
529
+ ],
530
+ "@atlaskit/analytics-next/AnalyticsContext": [
531
+ "../../analytics/analytics-next/src/components/AnalyticsContext/index.tsx"
532
+ ],
533
+ "@atlaskit/analytics-next/AnalyticsListener": [
534
+ "../../analytics/analytics-next/src/components/AnalyticsListener/index.tsx"
535
+ ],
536
+ "@atlaskit/analytics-next/AnalyticsErrorBoundary": [
537
+ "../../analytics/analytics-next/src/components/AnalyticsErrorBoundary.tsx"
538
+ ],
539
+ "@atlaskit/analytics-next/withAnalyticsEvents": [
540
+ "../../analytics/analytics-next/src/hocs/withAnalyticsEvents.tsx"
541
+ ],
542
+ "@atlaskit/analytics-next/withAnalyticsContext": [
543
+ "../../analytics/analytics-next/src/hocs/withAnalyticsContext.tsx"
544
+ ],
545
+ "@atlaskit/analytics-next/usePlatformLeafEventHandler": [
546
+ "../../analytics/analytics-next/src/hooks/usePlatformLeafEventHandler.ts"
547
+ ],
548
+ "@atlaskit/analytics-next/useAnalyticsEvents": [
549
+ "../../analytics/analytics-next/src/hooks/useAnalyticsEvents.ts"
550
+ ],
551
+ "@atlaskit/analytics-next/useCallbackWithAnalytics": [
552
+ "../../analytics/analytics-next/src/hooks/useCallbackWithAnalytics.ts"
553
+ ],
554
+ "@atlaskit/analytics-next/usePatchedProps": [
555
+ "../../analytics/analytics-next/src/hooks/usePatchedProps.ts"
556
+ ],
557
+ "@atlaskit/analytics-next/AnalyticsEvent": [
558
+ "../../analytics/analytics-next/src/events/AnalyticsEvent.ts"
559
+ ],
560
+ "@atlaskit/analytics-next/UIAnalyticsEvent": [
561
+ "../../analytics/analytics-next/src/events/UIAnalyticsEvent.ts"
562
+ ],
563
+ "@atlaskit/analytics-next/createAndFireEvents": [
564
+ "../../analytics/analytics-next/src/utils/createAndFireEvent.ts"
565
+ ],
566
+ "@atlaskit/analytics-next": [
567
+ "../../analytics/analytics-next/src/index.ts"
568
+ ],
569
+ "@atlaskit/editor-plugin-decorations": [
570
+ "../editor-plugin-decorations/src/index.ts"
571
+ ],
572
+ "@atlaskit/editor-plugin-feature-flags": [
573
+ "../editor-plugin-feature-flags/src/index.ts"
574
+ ],
575
+ "@atlaskit/editor-plugin-grid": [
576
+ "../editor-plugin-grid/src/index.ts"
577
+ ],
578
+ "@atlaskit/editor-plugin-hyperlink": [
579
+ "../editor-plugin-hyperlink/src/index.ts"
580
+ ],
581
+ "@atlaskit/visual-regression": [
582
+ "../../../build/test-tooling/visual-regression/src"
583
+ ],
584
+ "@atlassian/feature-flags-test-utils": [
585
+ "../../platform/feature-flags-test-utils/src/index.ts"
586
+ ],
587
+ "@atlaskit/editor-plugin-table/types": [
588
+ "src/types.ts"
589
+ ],
590
+ "@atlaskit/editor-plugin-table/ui/common-styles": [
591
+ "src/ui/common-styles.ts"
592
+ ],
593
+ "@atlaskit/editor-plugin-table/ui/consts": [
594
+ "src/ui/consts.ts"
595
+ ],
596
+ "@atlaskit/editor-plugin-table/plugin-key": [
597
+ "src/pm-plugins/plugin-key.ts"
598
+ ],
599
+ "@atlaskit/editor-plugin-table/commands": [
600
+ "src/commands/index.ts"
601
+ ],
602
+ "@atlaskit/editor-plugin-table": [
603
+ "./src"
604
+ ]
605
+ }
13
606
  }
14
- }
607
+ }