@atlaskit/editor-plugin-copy-button 1.0.7 → 1.1.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 +16 -0
- package/dist/cjs/toolbar.js +0 -1
- package/dist/es2019/toolbar.js +0 -1
- package/dist/esm/toolbar.js +0 -1
- package/package.json +12 -14
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-copy-button
|
|
2
2
|
|
|
3
|
+
## 1.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#91934](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/91934) [`b76a78c6a199`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/b76a78c6a199) - bumped editor-prosemirror version to 4.0.0
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies
|
|
12
|
+
|
|
13
|
+
## 1.0.8
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- [#83116](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/83116) [`8d4e99057fe0`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/8d4e99057fe0) - Upgrade Typescript from `4.9.5` to `5.4.2`
|
|
18
|
+
|
|
3
19
|
## 1.0.7
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
package/dist/cjs/toolbar.js
CHANGED
|
@@ -63,7 +63,6 @@ function getCopyButtonConfig(options, hoverDecoration, editorAnalyticsApi) {
|
|
|
63
63
|
// problem already exist with delete as well
|
|
64
64
|
});
|
|
65
65
|
}
|
|
66
|
-
|
|
67
66
|
var showCopyButton = function showCopyButton(state) {
|
|
68
67
|
return state &&
|
|
69
68
|
// Check if the Copy button plugin is enabled
|
package/dist/es2019/toolbar.js
CHANGED
package/dist/esm/toolbar.js
CHANGED
|
@@ -56,7 +56,6 @@ export function getCopyButtonConfig(options, hoverDecoration, editorAnalyticsApi
|
|
|
56
56
|
// problem already exist with delete as well
|
|
57
57
|
});
|
|
58
58
|
}
|
|
59
|
-
|
|
60
59
|
var showCopyButton = function showCopyButton(state) {
|
|
61
60
|
return state &&
|
|
62
61
|
// Check if the Copy button plugin is enabled
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-copy-button",
|
|
3
|
-
"version": "1.0
|
|
3
|
+
"version": "1.1.0",
|
|
4
4
|
"description": "editor-plugin-copy-button for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"registry": "https://registry.npmjs.org/"
|
|
9
9
|
},
|
|
10
10
|
"atlassian": {
|
|
11
|
-
"team": "Editor",
|
|
11
|
+
"team": "Editor: Lego",
|
|
12
12
|
"singleton": true,
|
|
13
13
|
"releaseModel": "continuous",
|
|
14
14
|
"runReact18": false
|
|
@@ -32,22 +32,22 @@
|
|
|
32
32
|
".": "./src/index.ts"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@atlaskit/editor-common": "^78.
|
|
36
|
-
"@atlaskit/editor-plugin-analytics": "^1.
|
|
37
|
-
"@atlaskit/editor-plugin-decorations": "^1.
|
|
38
|
-
"@atlaskit/editor-prosemirror": "
|
|
39
|
-
"@atlaskit/icon": "^22.
|
|
35
|
+
"@atlaskit/editor-common": "^78.31.0",
|
|
36
|
+
"@atlaskit/editor-plugin-analytics": "^1.1.0",
|
|
37
|
+
"@atlaskit/editor-plugin-decorations": "^1.1.0",
|
|
38
|
+
"@atlaskit/editor-prosemirror": "4.0.0",
|
|
39
|
+
"@atlaskit/icon": "^22.1.0",
|
|
40
40
|
"@babel/runtime": "^7.0.0"
|
|
41
41
|
},
|
|
42
42
|
"peerDependencies": {
|
|
43
43
|
"react": "^16.8.0"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@atlaskit/analytics-next": "^9.
|
|
46
|
+
"@atlaskit/analytics-next": "^9.3.0",
|
|
47
47
|
"@atlassian/atlassian-frontend-prettier-config-1.0.0": "npm:@atlassian/atlassian-frontend-prettier-config@1.0.0",
|
|
48
48
|
"@testing-library/react": "^12.1.5",
|
|
49
49
|
"react-dom": "^16.8.0",
|
|
50
|
-
"typescript": "~4.
|
|
50
|
+
"typescript": "~5.4.2"
|
|
51
51
|
},
|
|
52
52
|
"techstack": {
|
|
53
53
|
"@atlassian/frontend": {
|
|
@@ -72,11 +72,9 @@
|
|
|
72
72
|
"ui-components": [
|
|
73
73
|
"lite-mode"
|
|
74
74
|
],
|
|
75
|
-
"deprecation":
|
|
76
|
-
"no-deprecated-imports"
|
|
77
|
-
],
|
|
75
|
+
"deprecation": "no-deprecated-imports",
|
|
78
76
|
"styling": [
|
|
79
|
-
"
|
|
77
|
+
"emotion",
|
|
80
78
|
"emotion"
|
|
81
79
|
],
|
|
82
80
|
"imports": [
|
|
@@ -85,4 +83,4 @@
|
|
|
85
83
|
}
|
|
86
84
|
},
|
|
87
85
|
"prettier": "@atlassian/atlassian-frontend-prettier-config-1.0.0"
|
|
88
|
-
}
|
|
86
|
+
}
|