@atlaskit/editor-plugin-editor-disabled 0.1.0 → 0.1.2
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 +12 -0
- package/package.json +3 -4
- package/dist/cjs/version.json +0 -5
- package/dist/es2019/version.json +0 -5
- package/dist/esm/version.json +0 -5
- package/tmp/api-report-tmp.d.ts +0 -24
package/CHANGELOG.md
CHANGED
|
@@ -1 +1,13 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-editor-disabled
|
|
2
|
+
|
|
3
|
+
## 0.1.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`24e27147cbd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/24e27147cbd) - Added atlaskit docs to all existing plugins.
|
|
8
|
+
|
|
9
|
+
## 0.1.1
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Updated dependencies
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-editor-disabled",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Editor disabled plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -23,15 +23,14 @@
|
|
|
23
23
|
".": "./src/index.ts"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@atlaskit/editor-common": "^74.
|
|
27
|
-
"@atlaskit/editor-prosemirror": "1.0
|
|
26
|
+
"@atlaskit/editor-common": "^74.52.0",
|
|
27
|
+
"@atlaskit/editor-prosemirror": "1.1.0",
|
|
28
28
|
"@babel/runtime": "^7.0.0"
|
|
29
29
|
},
|
|
30
30
|
"peerDependencies": {
|
|
31
31
|
"react": "^16.8.0"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
|
-
"@atlaskit/editor-test-helpers": "^18.10.0",
|
|
35
34
|
"@atlassian/atlassian-frontend-prettier-config-1.0.0": "npm:@atlassian/atlassian-frontend-prettier-config@1.0.0",
|
|
36
35
|
"@testing-library/react": "^12.1.5",
|
|
37
36
|
"react-dom": "^16.8.0",
|
package/dist/cjs/version.json
DELETED
package/dist/es2019/version.json
DELETED
package/dist/esm/version.json
DELETED
package/tmp/api-report-tmp.d.ts
DELETED
|
@@ -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 (undocumented)
|
|
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
|
-
```
|