@atlaskit/editor-plugin-editor-disabled 0.2.3 → 0.2.5

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-editor-disabled
2
2
 
3
+ ## 0.2.5
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+
9
+ ## 0.2.4
10
+
11
+ ### Patch Changes
12
+
13
+ - [#67238](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/67238) [`40533849b2ec`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/40533849b2ec) - [ED-21835] Change EditorAPI type to always union with undefined
14
+
3
15
  ## 0.2.3
4
16
 
5
17
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-editor-disabled",
3
- "version": "0.2.3",
3
+ "version": "0.2.5",
4
4
  "description": "Editor disabled plugin for @atlaskit/editor-core",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -10,9 +10,10 @@
10
10
  "atlassian": {
11
11
  "team": "Editor: Lego",
12
12
  "singleton": true,
13
- "releaseModel": "continuous"
13
+ "releaseModel": "continuous",
14
+ "runReact18": false
14
15
  },
15
- "repository": "https://bitbucket.org/atlassian/atlassian-frontend",
16
+ "repository": "https://bitbucket.org/atlassian/atlassian-frontend-mirror",
16
17
  "main": "dist/cjs/index.js",
17
18
  "module": "dist/esm/index.js",
18
19
  "module:es2019": "dist/es2019/index.js",
@@ -23,7 +24,7 @@
23
24
  ".": "./src/index.ts"
24
25
  },
25
26
  "dependencies": {
26
- "@atlaskit/editor-common": "^76.9.0",
27
+ "@atlaskit/editor-common": "^77.0.0",
27
28
  "@atlaskit/editor-prosemirror": "1.1.0",
28
29
  "@babel/runtime": "^7.0.0",
29
30
  "raf-schd": "^4.0.3"
@@ -1,24 +0,0 @@
1
- ## API Report File for "@atlaskit/editor-plugin-editor-disabled"
2
-
3
- > Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
4
-
5
- ```ts
6
-
7
- import type { NextEditorPlugin } from '@atlaskit/editor-common/types';
8
-
9
- // @public (undocumented)
10
- export type EditorDisabledPlugin = NextEditorPlugin<'editorDisabled', {
11
- sharedState: EditorDisabledPluginState;
12
- }>;
13
-
14
- // @public
15
- export const editorDisabledPlugin: EditorDisabledPlugin;
16
-
17
- // @public (undocumented)
18
- export type EditorDisabledPluginState = {
19
- editorDisabled: boolean;
20
- };
21
-
22
- // (No @packageDocumentation comment for this package)
23
-
24
- ```