@atlaskit/editor-plugin-copy-button 1.0.6 → 1.0.8

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,17 @@
1
1
  # @atlaskit/editor-plugin-copy-button
2
2
 
3
+ ## 1.0.8
4
+
5
+ ### Patch Changes
6
+
7
+ - [#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`
8
+
9
+ ## 1.0.7
10
+
11
+ ### Patch Changes
12
+
13
+ - Updated dependencies
14
+
3
15
  ## 1.0.6
4
16
 
5
17
  ### Patch Changes
@@ -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
@@ -55,7 +55,6 @@ export function getCopyButtonConfig(options, hoverDecoration, editorAnalyticsApi
55
55
  // problem already exist with delete as well
56
56
  };
57
57
  }
58
-
59
58
  const showCopyButton = state => {
60
59
  return state &&
61
60
  // Check if the Copy button plugin is enabled
@@ -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.6",
3
+ "version": "1.0.8",
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,11 +32,11 @@
32
32
  ".": "./src/index.ts"
33
33
  },
34
34
  "dependencies": {
35
- "@atlaskit/editor-common": "^77.4.0",
35
+ "@atlaskit/editor-common": "^78.17.0",
36
36
  "@atlaskit/editor-plugin-analytics": "^1.0.0",
37
37
  "@atlaskit/editor-plugin-decorations": "^1.0.0",
38
38
  "@atlaskit/editor-prosemirror": "3.0.0",
39
- "@atlaskit/icon": "^22.0.0",
39
+ "@atlaskit/icon": "^22.1.0",
40
40
  "@babel/runtime": "^7.0.0"
41
41
  },
42
42
  "peerDependencies": {
@@ -47,7 +47,7 @@
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.9.5"
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
- "static",
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
+ }