@atlaskit/editor-plugin-editor-disabled 3.0.0 → 4.0.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,18 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-editor-disabled
|
|
2
2
|
|
|
3
|
+
## 4.0.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
|
|
9
|
+
## 3.0.1
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [`265c1bf0cefa4`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/265c1bf0cefa4) -
|
|
14
|
+
Sorted type and interface props to improve Atlaskit docs
|
|
15
|
+
|
|
3
16
|
## 3.0.0
|
|
4
17
|
|
|
5
18
|
### Major Changes
|
|
@@ -6,6 +6,6 @@ export interface EditorDisabledPluginOptions {
|
|
|
6
6
|
initialDisabledState?: boolean;
|
|
7
7
|
}
|
|
8
8
|
export type EditorDisabledPlugin = NextEditorPlugin<'editorDisabled', {
|
|
9
|
-
sharedState: EditorDisabledPluginState;
|
|
10
9
|
pluginConfiguration: EditorDisabledPluginOptions | undefined;
|
|
10
|
+
sharedState: EditorDisabledPluginState;
|
|
11
11
|
}>;
|
|
@@ -6,6 +6,6 @@ export interface EditorDisabledPluginOptions {
|
|
|
6
6
|
initialDisabledState?: boolean;
|
|
7
7
|
}
|
|
8
8
|
export type EditorDisabledPlugin = NextEditorPlugin<'editorDisabled', {
|
|
9
|
-
sharedState: EditorDisabledPluginState;
|
|
10
9
|
pluginConfiguration: EditorDisabledPluginOptions | undefined;
|
|
10
|
+
sharedState: EditorDisabledPluginState;
|
|
11
11
|
}>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-editor-disabled",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "4.0.0",
|
|
4
4
|
"description": "Editor disabled plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -18,16 +18,13 @@
|
|
|
18
18
|
"types": "dist/types/index.d.ts",
|
|
19
19
|
"sideEffects": false,
|
|
20
20
|
"atlaskit:src": "src/index.ts",
|
|
21
|
-
"af:exports": {
|
|
22
|
-
".": "./src/index.ts"
|
|
23
|
-
},
|
|
24
21
|
"dependencies": {
|
|
25
22
|
"@atlaskit/editor-prosemirror": "7.0.0",
|
|
26
23
|
"@babel/runtime": "^7.0.0",
|
|
27
24
|
"raf-schd": "^4.0.3"
|
|
28
25
|
},
|
|
29
26
|
"peerDependencies": {
|
|
30
|
-
"@atlaskit/editor-common": "^
|
|
27
|
+
"@atlaskit/editor-common": "^108.0.0",
|
|
31
28
|
"react": "^18.2.0",
|
|
32
29
|
"react-dom": "^18.2.0"
|
|
33
30
|
},
|
|
@@ -35,7 +32,6 @@
|
|
|
35
32
|
"@testing-library/react": "^13.4.0",
|
|
36
33
|
"raf-stub": "^2.0.1",
|
|
37
34
|
"react-dom": "^18.2.0",
|
|
38
|
-
"typescript": "~5.4.2",
|
|
39
35
|
"wait-for-expect": "^1.2.0"
|
|
40
36
|
},
|
|
41
37
|
"techstack": {
|