@atlaskit/editor-plugin-loom 10.0.3 → 10.0.4
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 +8 -0
- package/dist/cjs/ui/LoomMenuItem.js +3 -1
- package/dist/cjs/ui/PrimaryToolbarButton.js +3 -1
- package/dist/es2019/ui/LoomMenuItem.js +3 -1
- package/dist/es2019/ui/PrimaryToolbarButton.js +3 -1
- package/dist/esm/ui/LoomMenuItem.js +3 -1
- package/dist/esm/ui/PrimaryToolbarButton.js +3 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-loom
|
|
2
2
|
|
|
3
|
+
## 10.0.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`0ac2996d45192`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/0ac2996d45192) -
|
|
8
|
+
bump @loomhq/record-sdk to 4.10.4
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
|
|
3
11
|
## 10.0.3
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
|
@@ -99,7 +99,9 @@ function (_ref4, ref) {
|
|
|
99
99
|
isDisabled: disabled,
|
|
100
100
|
href: href,
|
|
101
101
|
target: target,
|
|
102
|
-
rel: rel
|
|
102
|
+
rel: rel
|
|
103
|
+
// eslint-disable-next-line @atlassian/perf-linting/no-unstable-inline-props -- Ignored via go/ees017 (to be fixed)
|
|
104
|
+
,
|
|
103
105
|
onClick: function onClick(e) {
|
|
104
106
|
return _onClick(e);
|
|
105
107
|
}
|
|
@@ -54,7 +54,9 @@ var CustomisableLoomToolbarButton = function CustomisableLoomToolbarButton(disab
|
|
|
54
54
|
href: isLoomEnabled ? undefined : href,
|
|
55
55
|
disabled: disabled || isDisabled || (0, _editorPluginConnectivity.isOfflineMode)(connectivityMode),
|
|
56
56
|
api: api,
|
|
57
|
-
appearance: appearance
|
|
57
|
+
appearance: appearance
|
|
58
|
+
// eslint-disable-next-line @atlassian/perf-linting/no-unstable-inline-props -- Ignored via go/ees017 (to be fixed)
|
|
59
|
+
,
|
|
58
60
|
onClick: function onClick(e) {
|
|
59
61
|
return handleOnClick(e);
|
|
60
62
|
}
|
|
@@ -94,7 +94,9 @@ const MenuItemComponent = /*#__PURE__*/React.forwardRef(
|
|
|
94
94
|
isDisabled: disabled,
|
|
95
95
|
href: href,
|
|
96
96
|
target: target,
|
|
97
|
-
rel: rel
|
|
97
|
+
rel: rel
|
|
98
|
+
// eslint-disable-next-line @atlassian/perf-linting/no-unstable-inline-props -- Ignored via go/ees017 (to be fixed)
|
|
99
|
+
,
|
|
98
100
|
onClick: e => onClick(e)
|
|
99
101
|
}, formatMessage(editorAppearance === 'comment' ? messages.addLoomVideoComment : messages.addLoomVideo));
|
|
100
102
|
});
|
|
@@ -45,7 +45,9 @@ const CustomisableLoomToolbarButton = (disabled, appearance, api) => /*#__PURE__
|
|
|
45
45
|
href: isLoomEnabled ? undefined : href,
|
|
46
46
|
disabled: disabled || isDisabled || isOfflineMode(connectivityMode),
|
|
47
47
|
api: api,
|
|
48
|
-
appearance: appearance
|
|
48
|
+
appearance: appearance
|
|
49
|
+
// eslint-disable-next-line @atlassian/perf-linting/no-unstable-inline-props -- Ignored via go/ees017 (to be fixed)
|
|
50
|
+
,
|
|
49
51
|
onClick: e => handleOnClick(e)
|
|
50
52
|
// Ignored via go/ees005
|
|
51
53
|
// eslint-disable-next-line react/jsx-props-no-spreading
|
|
@@ -91,7 +91,9 @@ function (_ref4, ref) {
|
|
|
91
91
|
isDisabled: disabled,
|
|
92
92
|
href: href,
|
|
93
93
|
target: target,
|
|
94
|
-
rel: rel
|
|
94
|
+
rel: rel
|
|
95
|
+
// eslint-disable-next-line @atlassian/perf-linting/no-unstable-inline-props -- Ignored via go/ees017 (to be fixed)
|
|
96
|
+
,
|
|
95
97
|
onClick: function onClick(e) {
|
|
96
98
|
return _onClick(e);
|
|
97
99
|
}
|
|
@@ -46,7 +46,9 @@ var CustomisableLoomToolbarButton = function CustomisableLoomToolbarButton(disab
|
|
|
46
46
|
href: isLoomEnabled ? undefined : href,
|
|
47
47
|
disabled: disabled || isDisabled || isOfflineMode(connectivityMode),
|
|
48
48
|
api: api,
|
|
49
|
-
appearance: appearance
|
|
49
|
+
appearance: appearance
|
|
50
|
+
// eslint-disable-next-line @atlassian/perf-linting/no-unstable-inline-props -- Ignored via go/ees017 (to be fixed)
|
|
51
|
+
,
|
|
50
52
|
onClick: function onClick(e) {
|
|
51
53
|
return handleOnClick(e);
|
|
52
54
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-loom",
|
|
3
|
-
"version": "10.0.
|
|
3
|
+
"version": "10.0.4",
|
|
4
4
|
"description": "Loom plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -48,10 +48,10 @@
|
|
|
48
48
|
"@atlaskit/tokens": "^11.1.0",
|
|
49
49
|
"@babel/runtime": "^7.0.0",
|
|
50
50
|
"@emotion/react": "^11.7.1",
|
|
51
|
-
"@loomhq/record-sdk": "^4.10.
|
|
51
|
+
"@loomhq/record-sdk": "^4.10.4"
|
|
52
52
|
},
|
|
53
53
|
"peerDependencies": {
|
|
54
|
-
"@atlaskit/editor-common": "^112.
|
|
54
|
+
"@atlaskit/editor-common": "^112.8.0",
|
|
55
55
|
"react": "^18.2.0",
|
|
56
56
|
"react-dom": "^18.2.0",
|
|
57
57
|
"react-intl-next": "npm:react-intl@^5.18.1"
|