@atlaskit/editor-plugin-selection-marker 1.5.1 → 1.5.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,19 @@
1
1
  # @atlaskit/editor-plugin-selection-marker
2
2
 
3
+ ## 1.5.3
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+
9
+ ## 1.5.2
10
+
11
+ ### Patch Changes
12
+
13
+ - [#136545](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/136545)
14
+ [`4a5302d052562`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/4a5302d052562) -
15
+ Update file names due to stricter linting. No code changes
16
+
3
17
  ## 1.5.1
4
18
 
5
19
  ### Patch Changes
package/dist/cjs/index.js CHANGED
@@ -6,7 +6,7 @@ Object.defineProperty(exports, "__esModule", {
6
6
  Object.defineProperty(exports, "selectionMarkerPlugin", {
7
7
  enumerable: true,
8
8
  get: function get() {
9
- return _plugin.selectionMarkerPlugin;
9
+ return _selectionMarkerPlugin.selectionMarkerPlugin;
10
10
  }
11
11
  });
12
- var _plugin = require("./plugin");
12
+ var _selectionMarkerPlugin = require("./selectionMarkerPlugin");
@@ -10,7 +10,7 @@ var _hooks = require("@atlaskit/editor-common/hooks");
10
10
  var _main = require("./pm-plugins/main");
11
11
  var _globalStyles = require("./ui/global-styles");
12
12
  function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(e) { return e ? t : r; })(e); }
13
- 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 && Object.prototype.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; }
13
+ 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; }
14
14
  var selectionMarkerPlugin = exports.selectionMarkerPlugin = function selectionMarkerPlugin(_ref) {
15
15
  var api = _ref.api;
16
16
  return {
@@ -1 +1 @@
1
- export { selectionMarkerPlugin } from './plugin';
1
+ export { selectionMarkerPlugin } from './selectionMarkerPlugin';
package/dist/esm/index.js CHANGED
@@ -1 +1 @@
1
- export { selectionMarkerPlugin } from './plugin';
1
+ export { selectionMarkerPlugin } from './selectionMarkerPlugin';
@@ -1,2 +1,2 @@
1
- export { selectionMarkerPlugin } from './plugin';
2
- export type { SelectionMarkerPlugin, ReleaseHiddenDecoration } from './types';
1
+ export { selectionMarkerPlugin } from './selectionMarkerPlugin';
2
+ export type { SelectionMarkerPlugin, ReleaseHiddenDecoration } from './selectionMarkerPluginType';
@@ -3,7 +3,7 @@ import type { ExtractInjectionAPI } from '@atlaskit/editor-common/types';
3
3
  import { PluginKey } from '@atlaskit/editor-prosemirror/state';
4
4
  import type { EditorView } from '@atlaskit/editor-prosemirror/view';
5
5
  import { DecorationSet } from '@atlaskit/editor-prosemirror/view';
6
- import type { SelectionMarkerPlugin } from '../types';
6
+ import type { SelectionMarkerPlugin } from '../selectionMarkerPluginType';
7
7
  interface PluginState {
8
8
  decorations: DecorationSet;
9
9
  shouldHideDecorations: boolean;
@@ -0,0 +1,2 @@
1
+ import type { SelectionMarkerPlugin } from './selectionMarkerPluginType';
2
+ export declare const selectionMarkerPlugin: SelectionMarkerPlugin;
@@ -1,2 +1,2 @@
1
- export { selectionMarkerPlugin } from './plugin';
2
- export type { SelectionMarkerPlugin, ReleaseHiddenDecoration } from './types';
1
+ export { selectionMarkerPlugin } from './selectionMarkerPlugin';
2
+ export type { SelectionMarkerPlugin, ReleaseHiddenDecoration } from './selectionMarkerPluginType';
@@ -3,7 +3,7 @@ import type { ExtractInjectionAPI } from '@atlaskit/editor-common/types';
3
3
  import { PluginKey } from '@atlaskit/editor-prosemirror/state';
4
4
  import type { EditorView } from '@atlaskit/editor-prosemirror/view';
5
5
  import { DecorationSet } from '@atlaskit/editor-prosemirror/view';
6
- import type { SelectionMarkerPlugin } from '../types';
6
+ import type { SelectionMarkerPlugin } from '../selectionMarkerPluginType';
7
7
  interface PluginState {
8
8
  decorations: DecorationSet;
9
9
  shouldHideDecorations: boolean;
@@ -0,0 +1,2 @@
1
+ import type { SelectionMarkerPlugin } from './selectionMarkerPluginType';
2
+ export declare const selectionMarkerPlugin: SelectionMarkerPlugin;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-selection-marker",
3
- "version": "1.5.1",
3
+ "version": "1.5.3",
4
4
  "description": "Selection marker plugin for @atlaskit/editor-core.",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -8,9 +8,7 @@
8
8
  "registry": "https://registry.npmjs.org/"
9
9
  },
10
10
  "atlassian": {
11
- "team": "Editor: Lego",
12
- "inPublicMirror": false,
13
- "releaseModel": "continuous"
11
+ "team": "Editor: Lego"
14
12
  },
15
13
  "repository": "https://stash.atlassian.com/projects/ATLASSIAN/repos/atlassian-frontend-monorepo",
16
14
  "main": "dist/cjs/index.js",
@@ -31,12 +29,12 @@
31
29
  ".": "./src/index.ts"
32
30
  },
33
31
  "dependencies": {
34
- "@atlaskit/editor-common": "^88.0.0",
32
+ "@atlaskit/editor-common": "^89.0.0",
35
33
  "@atlaskit/editor-plugin-editor-disabled": "^1.3.0",
36
34
  "@atlaskit/editor-plugin-focus": "^1.3.0",
37
35
  "@atlaskit/editor-plugin-type-ahead": "^1.8.0",
38
36
  "@atlaskit/editor-prosemirror": "5.0.1",
39
- "@atlaskit/primitives": "^12.0.0",
37
+ "@atlaskit/primitives": "^12.1.0",
40
38
  "@atlaskit/theme": "^13.0.0",
41
39
  "@atlaskit/tokens": "^1.59.0",
42
40
  "@babel/runtime": "^7.0.0",
@@ -58,6 +56,9 @@
58
56
  },
59
57
  "techstack": {
60
58
  "@atlassian/frontend": {
59
+ "code-structure": [
60
+ "editor-plugin"
61
+ ],
61
62
  "import-structure": [
62
63
  "atlassian-conventions"
63
64
  ],
@@ -1,2 +0,0 @@
1
- import type { SelectionMarkerPlugin } from './types';
2
- export declare const selectionMarkerPlugin: SelectionMarkerPlugin;
@@ -1,2 +0,0 @@
1
- import type { SelectionMarkerPlugin } from './types';
2
- export declare const selectionMarkerPlugin: SelectionMarkerPlugin;