@atlaskit/editor-plugin-help-dialog 2.0.4 → 2.0.6
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,22 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-help-dialog
|
|
2
2
|
|
|
3
|
+
## 2.0.6
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#130436](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/130436)
|
|
8
|
+
[`b3c680bf28b52`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/b3c680bf28b52) -
|
|
9
|
+
[ux] Fixing sizing of Help icon so that it aligns with the sizing of the other editor icons.
|
|
10
|
+
- [#130436](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/130436)
|
|
11
|
+
[`b3c680bf28b52`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/b3c680bf28b52) -
|
|
12
|
+
[ux] Fixing sizing of Help icon so that it aligns with the sizing of the other editor icons.
|
|
13
|
+
|
|
14
|
+
## 2.0.5
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- Updated dependencies
|
|
19
|
+
|
|
3
20
|
## 2.0.4
|
|
4
21
|
|
|
5
22
|
### Patch Changes
|
|
@@ -50,7 +50,8 @@ var helpDialogPlugin = exports.helpDialogPlugin = function helpDialogPlugin(_ref
|
|
|
50
50
|
icon: function icon() {
|
|
51
51
|
return /*#__PURE__*/_react.default.createElement(_questionCircle.default, {
|
|
52
52
|
label: "",
|
|
53
|
-
color: "currentColor"
|
|
53
|
+
color: "currentColor",
|
|
54
|
+
spacing: "spacious"
|
|
54
55
|
});
|
|
55
56
|
},
|
|
56
57
|
action: function action(insert) {
|
|
@@ -40,7 +40,8 @@ export const helpDialogPlugin = ({
|
|
|
40
40
|
keyshortcut: tooltip(openHelp),
|
|
41
41
|
icon: () => /*#__PURE__*/React.createElement(QuestionCircleIcon, {
|
|
42
42
|
label: "",
|
|
43
|
-
color: "currentColor"
|
|
43
|
+
color: "currentColor",
|
|
44
|
+
spacing: "spacious"
|
|
44
45
|
}),
|
|
45
46
|
action(insert) {
|
|
46
47
|
var _api$analytics2;
|
|
@@ -43,7 +43,8 @@ export var helpDialogPlugin = function helpDialogPlugin(_ref) {
|
|
|
43
43
|
icon: function icon() {
|
|
44
44
|
return /*#__PURE__*/React.createElement(QuestionCircleIcon, {
|
|
45
45
|
label: "",
|
|
46
|
-
color: "currentColor"
|
|
46
|
+
color: "currentColor",
|
|
47
|
+
spacing: "spacious"
|
|
47
48
|
});
|
|
48
49
|
},
|
|
49
50
|
action: function action(insert) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-help-dialog",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.6",
|
|
4
4
|
"description": "Help Dialog plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -33,17 +33,17 @@
|
|
|
33
33
|
".": "./src/index.ts"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@atlaskit/editor-common": "^102.
|
|
37
|
-
"@atlaskit/editor-plugin-analytics": "^2.
|
|
38
|
-
"@atlaskit/editor-plugin-quick-insert": "^2.
|
|
36
|
+
"@atlaskit/editor-common": "^102.13.0",
|
|
37
|
+
"@atlaskit/editor-plugin-analytics": "^2.2.0",
|
|
38
|
+
"@atlaskit/editor-plugin-quick-insert": "^2.2.0",
|
|
39
39
|
"@atlaskit/editor-prosemirror": "7.0.0",
|
|
40
40
|
"@atlaskit/editor-shared-styles": "^3.4.0",
|
|
41
41
|
"@atlaskit/heading": "^5.1.0",
|
|
42
|
-
"@atlaskit/icon": "^
|
|
43
|
-
"@atlaskit/modal-dialog": "^13.
|
|
44
|
-
"@atlaskit/primitives": "^14.
|
|
42
|
+
"@atlaskit/icon": "^25.0.0",
|
|
43
|
+
"@atlaskit/modal-dialog": "^13.4.0",
|
|
44
|
+
"@atlaskit/primitives": "^14.2.0",
|
|
45
45
|
"@atlaskit/theme": "^18.0.0",
|
|
46
|
-
"@atlaskit/tokens": "^4.
|
|
46
|
+
"@atlaskit/tokens": "^4.5.0",
|
|
47
47
|
"@babel/runtime": "^7.0.0",
|
|
48
48
|
"@emotion/react": "^11.7.1",
|
|
49
49
|
"react-intl-next": "npm:react-intl@^5.18.1",
|