@atlaskit/editor-plugin-editor-disabled 1.3.11 → 1.3.12
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 +8 -0
- package/dist/cjs/{plugin.js → editorDisabledPlugin.js} +1 -0
- package/dist/cjs/editorDisabledPluginType.js +5 -0
- package/dist/cjs/index.js +2 -2
- package/dist/es2019/{plugin.js → editorDisabledPlugin.js} +1 -0
- package/dist/es2019/editorDisabledPluginType.js +1 -0
- package/dist/es2019/index.js +4 -1
- package/dist/esm/{plugin.js → editorDisabledPlugin.js} +1 -0
- package/dist/esm/editorDisabledPluginType.js +1 -0
- package/dist/esm/index.js +4 -1
- package/dist/types/editorDisabledPlugin.d.ts +6 -0
- package/dist/{types-ts4.5/plugin.d.ts → types/editorDisabledPluginType.d.ts} +0 -5
- package/dist/types/index.d.ts +2 -2
- package/dist/types-ts4.5/editorDisabledPlugin.d.ts +6 -0
- package/dist/{types/plugin.d.ts → types-ts4.5/editorDisabledPluginType.d.ts} +0 -5
- package/dist/types-ts4.5/index.d.ts +2 -2
- package/package.json +5 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-editor-disabled
|
|
2
2
|
|
|
3
|
+
## 1.3.12
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#177988](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/177988)
|
|
8
|
+
[`8f78c40775b7c`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/8f78c40775b7c) -
|
|
9
|
+
ED-25810 - refactors editor plugins to engineering standards
|
|
10
|
+
|
|
3
11
|
## 1.3.11
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
package/dist/cjs/index.js
CHANGED
|
@@ -6,7 +6,7 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
6
6
|
Object.defineProperty(exports, "editorDisabledPlugin", {
|
|
7
7
|
enumerable: true,
|
|
8
8
|
get: function get() {
|
|
9
|
-
return
|
|
9
|
+
return _editorDisabledPlugin.editorDisabledPlugin;
|
|
10
10
|
}
|
|
11
11
|
});
|
|
12
|
-
var
|
|
12
|
+
var _editorDisabledPlugin = require("./editorDisabledPlugin");
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/dist/es2019/index.js
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/dist/esm/index.js
CHANGED
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { type EditorDisabledPlugin } from './editorDisabledPluginType';
|
|
2
|
+
/**
|
|
3
|
+
* Editor disabled plugin to be added to an `EditorPresetBuilder` and used with `ComposableEditor`
|
|
4
|
+
* from `@atlaskit/editor-core`.
|
|
5
|
+
*/
|
|
6
|
+
export declare const editorDisabledPlugin: EditorDisabledPlugin;
|
|
@@ -5,8 +5,3 @@ export type EditorDisabledPluginState = {
|
|
|
5
5
|
export type EditorDisabledPlugin = NextEditorPlugin<'editorDisabled', {
|
|
6
6
|
sharedState: EditorDisabledPluginState;
|
|
7
7
|
}>;
|
|
8
|
-
/**
|
|
9
|
-
* Editor disabled plugin to be added to an `EditorPresetBuilder` and used with `ComposableEditor`
|
|
10
|
-
* from `@atlaskit/editor-core`.
|
|
11
|
-
*/
|
|
12
|
-
export declare const editorDisabledPlugin: EditorDisabledPlugin;
|
package/dist/types/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { editorDisabledPlugin } from './
|
|
2
|
-
export type { EditorDisabledPluginState, EditorDisabledPlugin } from './
|
|
1
|
+
export { editorDisabledPlugin } from './editorDisabledPlugin';
|
|
2
|
+
export type { EditorDisabledPluginState, EditorDisabledPlugin } from './editorDisabledPluginType';
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { type EditorDisabledPlugin } from './editorDisabledPluginType';
|
|
2
|
+
/**
|
|
3
|
+
* Editor disabled plugin to be added to an `EditorPresetBuilder` and used with `ComposableEditor`
|
|
4
|
+
* from `@atlaskit/editor-core`.
|
|
5
|
+
*/
|
|
6
|
+
export declare const editorDisabledPlugin: EditorDisabledPlugin;
|
|
@@ -5,8 +5,3 @@ export type EditorDisabledPluginState = {
|
|
|
5
5
|
export type EditorDisabledPlugin = NextEditorPlugin<'editorDisabled', {
|
|
6
6
|
sharedState: EditorDisabledPluginState;
|
|
7
7
|
}>;
|
|
8
|
-
/**
|
|
9
|
-
* Editor disabled plugin to be added to an `EditorPresetBuilder` and used with `ComposableEditor`
|
|
10
|
-
* from `@atlaskit/editor-core`.
|
|
11
|
-
*/
|
|
12
|
-
export declare const editorDisabledPlugin: EditorDisabledPlugin;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { editorDisabledPlugin } from './
|
|
2
|
-
export type { EditorDisabledPluginState, EditorDisabledPlugin } from './
|
|
1
|
+
export { editorDisabledPlugin } from './editorDisabledPlugin';
|
|
2
|
+
export type { EditorDisabledPluginState, EditorDisabledPlugin } from './editorDisabledPluginType';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-editor-disabled",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.12",
|
|
4
4
|
"description": "Editor disabled plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
".": "./src/index.ts"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@atlaskit/editor-common": "^96.
|
|
26
|
+
"@atlaskit/editor-common": "^96.5.0",
|
|
27
27
|
"@atlaskit/editor-prosemirror": "6.2.1",
|
|
28
28
|
"@babel/runtime": "^7.0.0",
|
|
29
29
|
"raf-schd": "^4.0.3"
|
|
@@ -44,6 +44,9 @@
|
|
|
44
44
|
"import-structure": [
|
|
45
45
|
"atlassian-conventions"
|
|
46
46
|
],
|
|
47
|
+
"code-structure": [
|
|
48
|
+
"editor-plugin"
|
|
49
|
+
],
|
|
47
50
|
"circular-dependencies": [
|
|
48
51
|
"file-and-folder-level"
|
|
49
52
|
]
|