@atlaskit/help-layout 6.3.25 → 6.3.27
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 +14 -0
- package/afm-cc/tsconfig.json +2 -1
- package/afm-jira/tsconfig.json +2 -1
- package/afm-products/tsconfig.json +2 -1
- package/dist/cjs/components/DynamicHeader/index.js +2 -2
- package/dist/cjs/components/Header/CloseButton.js +2 -2
- package/dist/es2019/components/DynamicHeader/index.js +1 -1
- package/dist/es2019/components/Header/CloseButton.js +1 -1
- package/dist/esm/components/DynamicHeader/index.js +1 -1
- package/dist/esm/components/Header/CloseButton.js +1 -1
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @atlaskit/help-layout
|
|
2
2
|
|
|
3
|
+
## 6.3.27
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`6a82d7964a37b`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/6a82d7964a37b) -
|
|
8
|
+
Icon entrypoint migration
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
|
|
11
|
+
## 6.3.26
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Updated dependencies
|
|
16
|
+
|
|
3
17
|
## 6.3.25
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
package/afm-cc/tsconfig.json
CHANGED
package/afm-jira/tsconfig.json
CHANGED
|
@@ -16,7 +16,7 @@ var _CloseButton = _interopRequireDefault(require("../Header/CloseButton"));
|
|
|
16
16
|
var _compiled = require("@atlaskit/primitives/compiled");
|
|
17
17
|
var _new = require("@atlaskit/button/new");
|
|
18
18
|
var _NewChatButton = require("./NewChatButton");
|
|
19
|
-
var
|
|
19
|
+
var _chevronLeft = _interopRequireDefault(require("@atlaskit/icon/core/chevron-left"));
|
|
20
20
|
function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function _interopRequireWildcard(e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != _typeof(e) && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (var _t in e) "default" !== _t && {}.hasOwnProperty.call(e, _t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, _t)) && (i.get || i.set) ? o(f, _t, i) : f[_t] = e[_t]); return f; })(e, t); }
|
|
21
21
|
var styles = {
|
|
22
22
|
container: "_ca0qpxbi _u5f3pxbi _n3tdpxbi _19bvpxbi _4cvr1h6o"
|
|
@@ -41,7 +41,7 @@ var DynamicHeader = exports.DynamicHeader = function DynamicHeader(_ref) {
|
|
|
41
41
|
appearance: "subtle",
|
|
42
42
|
label: "Back",
|
|
43
43
|
icon: function icon(iconProps) {
|
|
44
|
-
return /*#__PURE__*/React.createElement(
|
|
44
|
+
return /*#__PURE__*/React.createElement(_chevronLeft.default, (0, _extends2.default)({}, iconProps, {
|
|
45
45
|
size: "small"
|
|
46
46
|
}));
|
|
47
47
|
},
|
|
@@ -10,7 +10,7 @@ var _reactIntlNext = require("react-intl-next");
|
|
|
10
10
|
var _analyticsNext = require("@atlaskit/analytics-next");
|
|
11
11
|
var _tooltip = _interopRequireDefault(require("@atlaskit/tooltip"));
|
|
12
12
|
var _standardButton = _interopRequireDefault(require("@atlaskit/button/standard-button"));
|
|
13
|
-
var
|
|
13
|
+
var _cross = _interopRequireDefault(require("@atlaskit/icon/core/cross"));
|
|
14
14
|
var _messages = require("../../messages");
|
|
15
15
|
var _styled = require("./styled");
|
|
16
16
|
/**
|
|
@@ -43,7 +43,7 @@ var CloseButton = exports.CloseButton = function CloseButton(_ref) {
|
|
|
43
43
|
onClick: handleOnClick,
|
|
44
44
|
appearance: "subtle",
|
|
45
45
|
"aria-label": formatMessage(_messages.messages.help_panel_header_close_button),
|
|
46
|
-
iconBefore: /*#__PURE__*/_react.default.createElement(
|
|
46
|
+
iconBefore: /*#__PURE__*/_react.default.createElement(_cross.default, {
|
|
47
47
|
color: "currentColor",
|
|
48
48
|
label: formatMessage(_messages.messages.help_panel_header_close),
|
|
49
49
|
LEGACY_size: "medium"
|
|
@@ -8,7 +8,7 @@ import CloseButton from '../Header/CloseButton';
|
|
|
8
8
|
import { Flex, Inline } from '@atlaskit/primitives/compiled';
|
|
9
9
|
import { IconButton } from '@atlaskit/button/new';
|
|
10
10
|
import { NewChatButton } from './NewChatButton';
|
|
11
|
-
import ChevronLeftLargeIcon from '@atlaskit/icon/core/
|
|
11
|
+
import ChevronLeftLargeIcon from '@atlaskit/icon/core/chevron-left';
|
|
12
12
|
const styles = {
|
|
13
13
|
container: "_ca0qpxbi _u5f3pxbi _n3tdpxbi _19bvpxbi _4cvr1h6o"
|
|
14
14
|
};
|
|
@@ -3,7 +3,7 @@ import { injectIntl } from 'react-intl-next';
|
|
|
3
3
|
import { useAnalyticsEvents, AnalyticsContext } from '@atlaskit/analytics-next';
|
|
4
4
|
import Tooltip from '@atlaskit/tooltip';
|
|
5
5
|
import Button from '@atlaskit/button/standard-button';
|
|
6
|
-
import EditorCloseIcon from '@atlaskit/icon/core/
|
|
6
|
+
import EditorCloseIcon from '@atlaskit/icon/core/cross';
|
|
7
7
|
import { messages } from '../../messages';
|
|
8
8
|
import { CloseButtonContainer } from './styled';
|
|
9
9
|
/**
|
|
@@ -8,7 +8,7 @@ import CloseButton from '../Header/CloseButton';
|
|
|
8
8
|
import { Flex, Inline } from '@atlaskit/primitives/compiled';
|
|
9
9
|
import { IconButton } from '@atlaskit/button/new';
|
|
10
10
|
import { NewChatButton } from './NewChatButton';
|
|
11
|
-
import ChevronLeftLargeIcon from '@atlaskit/icon/core/
|
|
11
|
+
import ChevronLeftLargeIcon from '@atlaskit/icon/core/chevron-left';
|
|
12
12
|
var styles = {
|
|
13
13
|
container: "_ca0qpxbi _u5f3pxbi _n3tdpxbi _19bvpxbi _4cvr1h6o"
|
|
14
14
|
};
|
|
@@ -3,7 +3,7 @@ import { injectIntl } from 'react-intl-next';
|
|
|
3
3
|
import { useAnalyticsEvents, AnalyticsContext } from '@atlaskit/analytics-next';
|
|
4
4
|
import Tooltip from '@atlaskit/tooltip';
|
|
5
5
|
import Button from '@atlaskit/button/standard-button';
|
|
6
|
-
import EditorCloseIcon from '@atlaskit/icon/core/
|
|
6
|
+
import EditorCloseIcon from '@atlaskit/icon/core/cross';
|
|
7
7
|
import { messages } from '../../messages';
|
|
8
8
|
import { CloseButtonContainer } from './styled';
|
|
9
9
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/help-layout",
|
|
3
|
-
"version": "6.3.
|
|
3
|
+
"version": "6.3.27",
|
|
4
4
|
"description": "Layout for the atlaskit/help component.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -32,14 +32,14 @@
|
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"@atlaskit/analytics-next": "^11.1.0",
|
|
35
|
-
"@atlaskit/button": "^23.
|
|
36
|
-
"@atlaskit/css": "^0.
|
|
35
|
+
"@atlaskit/button": "^23.9.0",
|
|
36
|
+
"@atlaskit/css": "^0.19.0",
|
|
37
37
|
"@atlaskit/heading": "^5.2.0",
|
|
38
|
-
"@atlaskit/icon": "^29.
|
|
39
|
-
"@atlaskit/primitives": "^
|
|
38
|
+
"@atlaskit/icon": "^29.3.0",
|
|
39
|
+
"@atlaskit/primitives": "^17.0.0",
|
|
40
40
|
"@atlaskit/theme": "^21.0.0",
|
|
41
|
-
"@atlaskit/tokens": "^
|
|
42
|
-
"@atlaskit/tooltip": "^20.
|
|
41
|
+
"@atlaskit/tokens": "^9.0.0",
|
|
42
|
+
"@atlaskit/tooltip": "^20.11.0",
|
|
43
43
|
"@babel/runtime": "^7.0.0",
|
|
44
44
|
"@compiled/react": "^0.18.6",
|
|
45
45
|
"react-transition-group": "^4.4.1"
|