@atlaskit/editor-plugin-clipboard 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 +6 -6
- package/tmp/api-report-tmp.d.ts +0 -17
package/CHANGELOG.md
CHANGED
|
@@ -1 +1,13 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-clipboard
|
|
2
|
+
|
|
3
|
+
## 0.1.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#68572](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/68572) [`15d407fe5143`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/15d407fe5143) - Upgrading @atlaskit/editor-prosemirror dependency
|
|
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-clipboard",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Clipboard 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",
|
|
@@ -31,8 +32,8 @@
|
|
|
31
32
|
".": "./src/index.ts"
|
|
32
33
|
},
|
|
33
34
|
"dependencies": {
|
|
34
|
-
"@atlaskit/editor-common": "^
|
|
35
|
-
"@atlaskit/editor-prosemirror": "
|
|
35
|
+
"@atlaskit/editor-common": "^77.3.0",
|
|
36
|
+
"@atlaskit/editor-prosemirror": "3.0.0",
|
|
36
37
|
"@babel/runtime": "^7.0.0"
|
|
37
38
|
},
|
|
38
39
|
"peerDependencies": {
|
|
@@ -42,7 +43,6 @@
|
|
|
42
43
|
"@af/visual-regression": "*",
|
|
43
44
|
"@atlaskit/ssr": "*",
|
|
44
45
|
"@atlaskit/visual-regression": "*",
|
|
45
|
-
"@atlaskit/webdriver-runner": "*",
|
|
46
46
|
"@atlassian/atlassian-frontend-prettier-config-1.0.0": "npm:@atlassian/atlassian-frontend-prettier-config@1.0.0",
|
|
47
47
|
"@testing-library/react": "^12.1.5",
|
|
48
48
|
"react-dom": "^16.8.0",
|
package/tmp/api-report-tmp.d.ts
DELETED
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
## API Report File for "@atlaskit/editor-plugin-clipboard"
|
|
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 ClipboardPlugin = NextEditorPlugin<'clipboard'>;
|
|
11
|
-
|
|
12
|
-
// @public (undocumented)
|
|
13
|
-
export const clipboardPlugin: ClipboardPlugin;
|
|
14
|
-
|
|
15
|
-
// (No @packageDocumentation comment for this package)
|
|
16
|
-
|
|
17
|
-
```
|