@atlaskit/editor-common 99.1.0 → 99.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 CHANGED
@@ -1,5 +1,14 @@
1
1
  # @atlaskit/editor-common
2
2
 
3
+ ## 99.1.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [#100802](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/100802)
8
+ [`1506550eef60f`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/1506550eef60f) -
9
+ [ux] [ED-25647] this PR is disabling the confluence referentiality and charts extension from the
10
+ floating toolbar for tables nested in tables
11
+
3
12
  ## 99.1.0
4
13
 
5
14
  ### Minor Changes
@@ -17,7 +17,7 @@ function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return
17
17
  function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != _typeof(e) && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
18
18
  var SENTRY_DSN = 'https://0b10c8e02fb44d8796c047b102c9bee8@o55978.ingest.sentry.io/4505129224110080';
19
19
  var packageName = 'editor-common'; // Sentry doesn't accept '/' in its releases https://docs.sentry.io/platforms/javascript/configuration/releases/
20
- var packageVersion = "99.1.0";
20
+ var packageVersion = "99.1.1";
21
21
  var sanitiseSentryEvents = function sanitiseSentryEvents(data, _hint) {
22
22
  // Remove URL as it has UGC
23
23
  // TODO: Sanitise the URL instead of just removing it
@@ -3,7 +3,8 @@
3
3
  Object.defineProperty(exports, "__esModule", {
4
4
  value: true
5
5
  });
6
- exports.getPositionAfterTopParentNodeOfType = exports.getParentOfTypeCount = void 0;
6
+ exports.isSelectionTableNestedInTable = exports.getPositionAfterTopParentNodeOfType = exports.getParentOfTypeCount = void 0;
7
+ var _editorTables = require("@atlaskit/editor-tables");
7
8
  /*
8
9
  * Returns the level of nesting of a given `nodeType` in the current position.
9
10
  * eg. table > table is nested 1 level, table > table > table is nested 2 levels.
@@ -45,4 +46,21 @@ var getPositionAfterTopParentNodeOfType = exports.getPositionAfterTopParentNodeO
45
46
  }
46
47
  }
47
48
  };
49
+ };
50
+
51
+ /*
52
+ * Returns true if the current selection is inside a table nested within a table.
53
+ *
54
+ * ```typescript
55
+ * const isNestedTable = isSelectionTableNestedInTable(state);
56
+ * ```
57
+ */
58
+ var isSelectionTableNestedInTable = exports.isSelectionTableNestedInTable = function isSelectionTableNestedInTable(state) {
59
+ var table = (0, _editorTables.findTable)(state.selection);
60
+ if (!table) {
61
+ return false;
62
+ }
63
+ var parent = state.doc.resolve(table.pos).parent;
64
+ var nodeTypes = state.schema.nodes;
65
+ return [nodeTypes.tableHeader, nodeTypes.tableCell].includes(parent.type);
48
66
  };
@@ -23,7 +23,7 @@ function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.
23
23
  * @jsx jsx
24
24
  */ // eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
25
25
  var packageName = "@atlaskit/editor-common";
26
- var packageVersion = "99.1.0";
26
+ var packageVersion = "99.1.1";
27
27
  var halfFocusRing = 1;
28
28
  var dropOffset = '0, 8';
29
29
  // Ignored via go/ees005
@@ -1,7 +1,7 @@
1
1
  import { isFedRamp } from './environment';
2
2
  const SENTRY_DSN = 'https://0b10c8e02fb44d8796c047b102c9bee8@o55978.ingest.sentry.io/4505129224110080';
3
3
  const packageName = 'editor-common'; // Sentry doesn't accept '/' in its releases https://docs.sentry.io/platforms/javascript/configuration/releases/
4
- const packageVersion = "99.1.0";
4
+ const packageVersion = "99.1.1";
5
5
  const sanitiseSentryEvents = (data, _hint) => {
6
6
  // Remove URL as it has UGC
7
7
  // TODO: Sanitise the URL instead of just removing it
@@ -1,3 +1,5 @@
1
+ import { findTable } from '@atlaskit/editor-tables';
2
+
1
3
  /*
2
4
  * Returns the level of nesting of a given `nodeType` in the current position.
3
5
  * eg. table > table is nested 1 level, table > table > table is nested 2 levels.
@@ -35,4 +37,21 @@ export const getPositionAfterTopParentNodeOfType = nodeType => $pos => {
35
37
  return $pos.after(depth);
36
38
  }
37
39
  }
40
+ };
41
+
42
+ /*
43
+ * Returns true if the current selection is inside a table nested within a table.
44
+ *
45
+ * ```typescript
46
+ * const isNestedTable = isSelectionTableNestedInTable(state);
47
+ * ```
48
+ */
49
+ export const isSelectionTableNestedInTable = state => {
50
+ const table = findTable(state.selection);
51
+ if (!table) {
52
+ return false;
53
+ }
54
+ const parent = state.doc.resolve(table.pos).parent;
55
+ const nodeTypes = state.schema.nodes;
56
+ return [nodeTypes.tableHeader, nodeTypes.tableCell].includes(parent.type);
38
57
  };
@@ -13,7 +13,7 @@ import withAnalyticsContext from '@atlaskit/analytics-next/withAnalyticsContext'
13
13
  import withAnalyticsEvents from '@atlaskit/analytics-next/withAnalyticsEvents';
14
14
  import Layer from '../Layer';
15
15
  const packageName = "@atlaskit/editor-common";
16
- const packageVersion = "99.1.0";
16
+ const packageVersion = "99.1.1";
17
17
  const halfFocusRing = 1;
18
18
  const dropOffset = '0, 8';
19
19
  // Ignored via go/ees005
@@ -7,7 +7,7 @@ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t =
7
7
  import { isFedRamp } from './environment';
8
8
  var SENTRY_DSN = 'https://0b10c8e02fb44d8796c047b102c9bee8@o55978.ingest.sentry.io/4505129224110080';
9
9
  var packageName = 'editor-common'; // Sentry doesn't accept '/' in its releases https://docs.sentry.io/platforms/javascript/configuration/releases/
10
- var packageVersion = "99.1.0";
10
+ var packageVersion = "99.1.1";
11
11
  var sanitiseSentryEvents = function sanitiseSentryEvents(data, _hint) {
12
12
  // Remove URL as it has UGC
13
13
  // TODO: Sanitise the URL instead of just removing it
@@ -1,3 +1,5 @@
1
+ import { findTable } from '@atlaskit/editor-tables';
2
+
1
3
  /*
2
4
  * Returns the level of nesting of a given `nodeType` in the current position.
3
5
  * eg. table > table is nested 1 level, table > table > table is nested 2 levels.
@@ -39,4 +41,21 @@ export var getPositionAfterTopParentNodeOfType = function getPositionAfterTopPar
39
41
  }
40
42
  }
41
43
  };
44
+ };
45
+
46
+ /*
47
+ * Returns true if the current selection is inside a table nested within a table.
48
+ *
49
+ * ```typescript
50
+ * const isNestedTable = isSelectionTableNestedInTable(state);
51
+ * ```
52
+ */
53
+ export var isSelectionTableNestedInTable = function isSelectionTableNestedInTable(state) {
54
+ var table = findTable(state.selection);
55
+ if (!table) {
56
+ return false;
57
+ }
58
+ var parent = state.doc.resolve(table.pos).parent;
59
+ var nodeTypes = state.schema.nodes;
60
+ return [nodeTypes.tableHeader, nodeTypes.tableCell].includes(parent.type);
42
61
  };
@@ -20,7 +20,7 @@ import withAnalyticsContext from '@atlaskit/analytics-next/withAnalyticsContext'
20
20
  import withAnalyticsEvents from '@atlaskit/analytics-next/withAnalyticsEvents';
21
21
  import Layer from '../Layer';
22
22
  var packageName = "@atlaskit/editor-common";
23
- var packageVersion = "99.1.0";
23
+ var packageVersion = "99.1.1";
24
24
  var halfFocusRing = 1;
25
25
  var dropOffset = '0, 8';
26
26
  // Ignored via go/ees005
@@ -1,3 +1,5 @@
1
1
  import type { NodeType, ResolvedPos } from '@atlaskit/editor-prosemirror/model';
2
+ import { EditorState } from '@atlaskit/editor-prosemirror/state';
2
3
  export declare const getParentOfTypeCount: (nodeType: NodeType) => ($pos: ResolvedPos) => number;
3
4
  export declare const getPositionAfterTopParentNodeOfType: (nodeType: NodeType) => ($pos: ResolvedPos) => number | undefined;
5
+ export declare const isSelectionTableNestedInTable: (state: EditorState) => boolean;
@@ -1,3 +1,5 @@
1
1
  import type { NodeType, ResolvedPos } from '@atlaskit/editor-prosemirror/model';
2
+ import { EditorState } from '@atlaskit/editor-prosemirror/state';
2
3
  export declare const getParentOfTypeCount: (nodeType: NodeType) => ($pos: ResolvedPos) => number;
3
4
  export declare const getPositionAfterTopParentNodeOfType: (nodeType: NodeType) => ($pos: ResolvedPos) => number | undefined;
5
+ export declare const isSelectionTableNestedInTable: (state: EditorState) => boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-common",
3
- "version": "99.1.0",
3
+ "version": "99.1.1",
4
4
  "description": "A package that contains common classes and components for editor and renderer",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"