@atlaskit/editor-plugin-ufo 1.0.5 → 1.1.0

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,23 @@
1
1
  # @atlaskit/editor-plugin-ufo
2
2
 
3
+ ## 1.1.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#105322](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/105322)
8
+ [`8876083532adc`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/8876083532adc) -
9
+ Bumped editor-prosemirror version to 7.0.0
10
+
11
+ ### Patch Changes
12
+
13
+ - Updated dependencies
14
+
15
+ ## 1.0.6
16
+
17
+ ### Patch Changes
18
+
19
+ - Updated dependencies
20
+
3
21
  ## 1.0.5
4
22
 
5
23
  ### Patch Changes
@@ -0,0 +1,30 @@
1
+ {
2
+ "extends": "../../../../tsconfig.entry-points.post-office.json",
3
+ "compilerOptions": {
4
+ "target": "es5",
5
+ "outDir": "../../../../../post-office/tsDist/@atlaskit__editor-plugin-ufo/app",
6
+ "rootDir": "../",
7
+ "composite": true
8
+ },
9
+ "include": [
10
+ "../src/**/*.ts",
11
+ "../src/**/*.tsx"
12
+ ],
13
+ "exclude": [
14
+ "../src/**/__tests__/*",
15
+ "../src/**/*.test.*",
16
+ "../src/**/test.*",
17
+ "../src/**/examples.*"
18
+ ],
19
+ "references": [
20
+ {
21
+ "path": "../../editor-common/afm-post-office/tsconfig.json"
22
+ },
23
+ {
24
+ "path": "../../../platform/feature-flags/afm-post-office/tsconfig.json"
25
+ },
26
+ {
27
+ "path": "../../../react-ufo/atlaskit/afm-post-office/tsconfig.json"
28
+ }
29
+ ]
30
+ }
@@ -8,8 +8,6 @@ var _safePlugin = require("@atlaskit/editor-common/safe-plugin");
8
8
  var _vc = require("@atlaskit/react-ufo/vc");
9
9
  /* eslint-disable @repo/internal/dom-events/no-unsafe-event-listeners */
10
10
 
11
- // Ignored via go/ees005
12
- // eslint-disable-next-line @typescript-eslint/max-params
13
11
  function bind(target, event, controller, listener) {
14
12
  // Safe check for rare cases where window doesn't exist
15
13
  if (!target || typeof target.addEventListener !== 'function') {
@@ -1,9 +1,6 @@
1
1
  /* eslint-disable @repo/internal/dom-events/no-unsafe-event-listeners */
2
2
  import { SafePlugin } from '@atlaskit/editor-common/safe-plugin';
3
3
  import { getVCObserver } from '@atlaskit/react-ufo/vc';
4
-
5
- // Ignored via go/ees005
6
- // eslint-disable-next-line @typescript-eslint/max-params
7
4
  function bind(target, event, controller, listener) {
8
5
  // Safe check for rare cases where window doesn't exist
9
6
  if (!target || typeof target.addEventListener !== 'function') {
@@ -1,9 +1,6 @@
1
1
  /* eslint-disable @repo/internal/dom-events/no-unsafe-event-listeners */
2
2
  import { SafePlugin } from '@atlaskit/editor-common/safe-plugin';
3
3
  import { getVCObserver } from '@atlaskit/react-ufo/vc';
4
-
5
- // Ignored via go/ees005
6
- // eslint-disable-next-line @typescript-eslint/max-params
7
4
  function bind(target, event, controller, listener) {
8
5
  // Safe check for rare cases where window doesn't exist
9
6
  if (!target || typeof target.addEventListener !== 'function') {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-ufo",
3
- "version": "1.0.5",
3
+ "version": "1.1.0",
4
4
  "description": "Ufo plugin for @atlaskit/editor-core",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -32,10 +32,10 @@
32
32
  ".": "./src/index.ts"
33
33
  },
34
34
  "dependencies": {
35
- "@atlaskit/editor-common": "^99.0.0",
36
- "@atlaskit/editor-prosemirror": "6.2.1",
37
- "@atlaskit/platform-feature-flags": "^0.3.0",
38
- "@atlaskit/react-ufo": "^2.9.0",
35
+ "@atlaskit/editor-common": "^99.10.0",
36
+ "@atlaskit/editor-prosemirror": "7.0.0",
37
+ "@atlaskit/platform-feature-flags": "^1.0.0",
38
+ "@atlaskit/react-ufo": "^2.14.0",
39
39
  "@babel/runtime": "^7.0.0"
40
40
  },
41
41
  "peerDependencies": {
@@ -2,8 +2,6 @@
2
2
  import { SafePlugin } from '@atlaskit/editor-common/safe-plugin';
3
3
  import { getVCObserver } from '@atlaskit/react-ufo/vc';
4
4
 
5
- // Ignored via go/ees005
6
- // eslint-disable-next-line @typescript-eslint/max-params
7
5
  function bind(
8
6
  target: HTMLElement,
9
7
  event: FirstUserInteractionEvents,