@atlaskit/help-layout 6.3.17 → 6.3.19
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 +13 -0
- package/afm-adminhub/tsconfig.json +54 -0
- package/dist/cjs/analytics.js +1 -1
- package/dist/cjs/components/DynamicHeader/NewChatButton.js +1 -1
- package/dist/cjs/components/DynamicHeader/index.js +1 -1
- package/dist/cjs/components/Header/BackButton.js +1 -1
- package/dist/cjs/components/Header/CloseButton.js +1 -1
- package/dist/cjs/components/Header/styled.compiled.css +1 -1
- package/dist/cjs/components/Header/styled.js +3 -3
- package/dist/cjs/components/SideNav/index.js +1 -1
- package/dist/cjs/components/styled.compiled.css +2 -2
- package/dist/cjs/components/styled.js +4 -4
- package/dist/es2019/analytics.js +1 -1
- package/dist/es2019/components/DynamicHeader/NewChatButton.js +1 -1
- package/dist/es2019/components/DynamicHeader/index.js +1 -1
- package/dist/es2019/components/Header/BackButton.js +1 -1
- package/dist/es2019/components/Header/CloseButton.js +1 -1
- package/dist/es2019/components/Header/styled.compiled.css +1 -1
- package/dist/es2019/components/Header/styled.js +2 -2
- package/dist/es2019/components/SideNav/index.js +1 -1
- package/dist/es2019/components/styled.compiled.css +2 -2
- package/dist/es2019/components/styled.js +3 -3
- package/dist/esm/analytics.js +1 -1
- package/dist/esm/components/DynamicHeader/NewChatButton.js +1 -1
- package/dist/esm/components/DynamicHeader/index.js +1 -1
- package/dist/esm/components/Header/BackButton.js +1 -1
- package/dist/esm/components/Header/CloseButton.js +1 -1
- package/dist/esm/components/Header/styled.compiled.css +1 -1
- package/dist/esm/components/Header/styled.js +3 -3
- package/dist/esm/components/SideNav/index.js +1 -1
- package/dist/esm/components/styled.compiled.css +2 -2
- package/dist/esm/components/styled.js +4 -4
- package/dist/types/analytics.d.ts +1 -1
- package/dist/types-ts4.5/analytics.d.ts +1 -1
- package/package.json +7 -12
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @atlaskit/help-layout
|
|
2
2
|
|
|
3
|
+
## 6.3.19
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
|
|
9
|
+
## 6.3.18
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [`717cc94987686`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/717cc94987686) -
|
|
14
|
+
Internal changes to how borders are applied.
|
|
15
|
+
|
|
3
16
|
## 6.3.17
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
{
|
|
2
|
+
"extends": "../../../../tsconfig.entry-points.adminhub.json",
|
|
3
|
+
"compilerOptions": {
|
|
4
|
+
"declaration": true,
|
|
5
|
+
"target": "es5",
|
|
6
|
+
"outDir": "../../../../../adminhub/tsDist/@atlaskit__help-layout/app",
|
|
7
|
+
"rootDir": "../",
|
|
8
|
+
"composite": true
|
|
9
|
+
},
|
|
10
|
+
"include": [
|
|
11
|
+
"../src/**/*.ts",
|
|
12
|
+
"../src/**/*.tsx"
|
|
13
|
+
],
|
|
14
|
+
"exclude": [
|
|
15
|
+
"../src/**/__tests__/*",
|
|
16
|
+
"../src/**/*.test.*",
|
|
17
|
+
"../src/**/test.*",
|
|
18
|
+
"../src/**/examples.*",
|
|
19
|
+
"../src/**/examples/*",
|
|
20
|
+
"../src/**/examples/**/*",
|
|
21
|
+
"../src/**/*.stories.*",
|
|
22
|
+
"../src/**/stories/*",
|
|
23
|
+
"../src/**/stories/**/*"
|
|
24
|
+
],
|
|
25
|
+
"references": [
|
|
26
|
+
{
|
|
27
|
+
"path": "../../../analytics/analytics-next/afm-adminhub/tsconfig.json"
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"path": "../../../design-system/button/afm-adminhub/tsconfig.json"
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"path": "../../../design-system/css/afm-adminhub/tsconfig.json"
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"path": "../../../design-system/heading/afm-adminhub/tsconfig.json"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"path": "../../../design-system/icon/afm-adminhub/tsconfig.json"
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"path": "../../../design-system/primitives/afm-adminhub/tsconfig.json"
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"path": "../../../design-system/theme/afm-adminhub/tsconfig.json"
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"path": "../../../design-system/tokens/afm-adminhub/tsconfig.json"
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
"path": "../../../design-system/tooltip/afm-adminhub/tsconfig.json"
|
|
52
|
+
}
|
|
53
|
+
]
|
|
54
|
+
}
|
package/dist/cjs/analytics.js
CHANGED
|
@@ -13,5 +13,5 @@ var createAndFire = exports.createAndFire = x.createAndFireEvent('atlaskit');
|
|
|
13
13
|
var defaultAnalyticsAttributes = exports.defaultAnalyticsAttributes = {
|
|
14
14
|
componentName: 'helpPanel',
|
|
15
15
|
packageName: "@atlaskit/help-layout",
|
|
16
|
-
packageVersion: "
|
|
16
|
+
packageVersion: "6.3.18"
|
|
17
17
|
};
|
|
@@ -56,7 +56,7 @@ var BackButtonWithContext = function BackButtonWithContext(props) {
|
|
|
56
56
|
data: {
|
|
57
57
|
componentName: 'backButton',
|
|
58
58
|
packageName: "@atlaskit/help-layout",
|
|
59
|
-
packageVersion: "
|
|
59
|
+
packageVersion: "6.3.18"
|
|
60
60
|
}
|
|
61
61
|
}, /*#__PURE__*/_react.default.createElement(BackButton, props));
|
|
62
62
|
};
|
|
@@ -55,7 +55,7 @@ var CloseButtonWithContext = function CloseButtonWithContext(props) {
|
|
|
55
55
|
data: {
|
|
56
56
|
componentName: 'closeButton',
|
|
57
57
|
packageName: "@atlaskit/help-layout",
|
|
58
|
-
packageVersion: "
|
|
58
|
+
packageVersion: "6.3.18"
|
|
59
59
|
}
|
|
60
60
|
}, /*#__PURE__*/_react.default.createElement(CloseButton, props));
|
|
61
61
|
};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
._11c81ixg{font:var(--ds-font-body-large,normal 400 1pc/24px ui-sans-serif,-apple-system,BlinkMacSystemFont,"Segoe UI",Ubuntu,"Helvetica Neue",sans-serif)}
|
|
2
2
|
._v5641kw6{transition:var(--_ejvfk7)}
|
|
3
|
-
.
|
|
3
|
+
._n7zl1fvz{border-bottom:var(--_b3fex0)}
|
|
4
4
|
._154iutpp{top:var(--ds-space-150,9pt)}
|
|
5
5
|
._18m915vq{overflow-y:hidden}
|
|
6
6
|
._19bvpxbi{padding-left:var(--ds-space-200,1pc)}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* styled.tsx generated by @compiled/babel-plugin v0.
|
|
1
|
+
/* styled.tsx generated by @compiled/babel-plugin v0.38.1 */
|
|
2
2
|
"use strict";
|
|
3
3
|
|
|
4
4
|
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
@@ -18,10 +18,10 @@ var headerContainerStyles = null;
|
|
|
18
18
|
var HeaderContainer = exports.HeaderContainer = function HeaderContainer(_ref) {
|
|
19
19
|
var children = _ref.children;
|
|
20
20
|
return /*#__PURE__*/_react.default.createElement("div", {
|
|
21
|
-
className: (0, _runtime.ax)(["
|
|
21
|
+
className: (0, _runtime.ax)(["_n7zl1fvz _bfhk1v7z _1bah1yb4 _kqswh2mm"]),
|
|
22
22
|
style: {
|
|
23
23
|
"--_1xglsrh": (0, _runtime.ix)("var(--ds-background-neutral, ".concat(_colors.N10, ")")),
|
|
24
|
-
"--
|
|
24
|
+
"--_b3fex0": (0, _runtime.ix)("var(--ds-border-width-selected, 2px)".concat(" solid ", "var(--ds-border, ".concat(_colors.N30, ")")))
|
|
25
25
|
}
|
|
26
26
|
}, children);
|
|
27
27
|
};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
|
|
2
|
-
.
|
|
3
|
-
.
|
|
2
|
+
._2rkolb4i{border-radius:var(--ds-radius-xsmall,2px)}
|
|
3
|
+
._x3do1fvz{border-top:var(--_b3fex0)}._12vemgnk{background-repeat:no-repeat}
|
|
4
4
|
._154iidpf{top:0}
|
|
5
5
|
._16jlkb7n{flex-grow:1}
|
|
6
6
|
._19bvidpf{padding-left:0}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* styled.tsx generated by @compiled/babel-plugin v0.
|
|
1
|
+
/* styled.tsx generated by @compiled/babel-plugin v0.38.1 */
|
|
2
2
|
"use strict";
|
|
3
3
|
|
|
4
4
|
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
@@ -34,10 +34,10 @@ var HelpFooter = exports.HelpFooter = function HelpFooter(_ref3) {
|
|
|
34
34
|
children = _ref3.children;
|
|
35
35
|
return /*#__PURE__*/_react.default.createElement("div", {
|
|
36
36
|
"data-testid": dataTestId,
|
|
37
|
-
className: (0, _runtime.ax)(["
|
|
37
|
+
className: (0, _runtime.ax)(["_x3do1fvz _ca0qu2gc _u5f3idpf _n3tdu2gc _19bvidpf _vchhusvi _bfhk1v7z _1bah1yb4"]),
|
|
38
38
|
style: {
|
|
39
39
|
"--_1xglsrh": (0, _runtime.ix)("var(--ds-background-neutral, ".concat(_colors.N10, ")")),
|
|
40
|
-
"--
|
|
40
|
+
"--_b3fex0": (0, _runtime.ix)("var(--ds-border-width-selected, 2px)".concat(" solid ", "var(--ds-border, ".concat(_colors.N30, ")")))
|
|
41
41
|
}
|
|
42
42
|
}, children);
|
|
43
43
|
};
|
|
@@ -61,7 +61,7 @@ var LoadingRectangle = exports.LoadingRectangle = function LoadingRectangle(_ref
|
|
|
61
61
|
contentHeight = _ref5.contentHeight,
|
|
62
62
|
marginTop = _ref5.marginTop;
|
|
63
63
|
return /*#__PURE__*/_react.default.createElement("div", {
|
|
64
|
-
className: (0, _runtime.ax)(["
|
|
64
|
+
className: (0, _runtime.ax)(["_2rkolb4i _kqswh2mm _4t3i1e9d _19pku2gc _1bsb1osq _5sag126j _1o51q7pw _tip812c5 _j7hq1en8 _1pglp3kn _bfhkptpz _1itkwhjv _12vemgnk"]),
|
|
65
65
|
style: {
|
|
66
66
|
width: contentWidth,
|
|
67
67
|
height: contentHeight,
|
package/dist/es2019/analytics.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* NewChatButton.tsx generated by @compiled/babel-plugin v0.
|
|
1
|
+
/* NewChatButton.tsx generated by @compiled/babel-plugin v0.38.1 */
|
|
2
2
|
import * as React from 'react';
|
|
3
3
|
import { ax, ix } from "@compiled/react/runtime";
|
|
4
4
|
import { Inline } from '@atlaskit/primitives/compiled';
|
|
@@ -50,7 +50,7 @@ const BackButtonWithContext = props => {
|
|
|
50
50
|
data: {
|
|
51
51
|
componentName: 'backButton',
|
|
52
52
|
packageName: "@atlaskit/help-layout",
|
|
53
|
-
packageVersion: "
|
|
53
|
+
packageVersion: "6.3.18"
|
|
54
54
|
}
|
|
55
55
|
}, /*#__PURE__*/React.createElement(BackButton, props));
|
|
56
56
|
};
|
|
@@ -51,7 +51,7 @@ const CloseButtonWithContext = props => {
|
|
|
51
51
|
data: {
|
|
52
52
|
componentName: 'closeButton',
|
|
53
53
|
packageName: "@atlaskit/help-layout",
|
|
54
|
-
packageVersion: "
|
|
54
|
+
packageVersion: "6.3.18"
|
|
55
55
|
}
|
|
56
56
|
}, /*#__PURE__*/React.createElement(CloseButton, props));
|
|
57
57
|
};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
._11c81ixg{font:var(--ds-font-body-large,normal 400 1pc/24px ui-sans-serif,-apple-system,BlinkMacSystemFont,"Segoe UI",Ubuntu,"Helvetica Neue",sans-serif)}
|
|
2
2
|
._v5641kd4{transition:left .22s,opacity .22s}
|
|
3
|
-
.
|
|
3
|
+
._n7zl1mqz{border-bottom:var(--ds-border-width-selected,2px) solid var(--ds-border,#ebecf0)}
|
|
4
4
|
._154iutpp{top:var(--ds-space-150,9pt)}
|
|
5
5
|
._18m915vq{overflow-y:hidden}
|
|
6
6
|
._19bvpxbi{padding-left:var(--ds-space-200,1pc)}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* styled.tsx generated by @compiled/babel-plugin v0.
|
|
1
|
+
/* styled.tsx generated by @compiled/babel-plugin v0.38.1 */
|
|
2
2
|
import "./styled.compiled.css";
|
|
3
3
|
import { ax, ix } from "@compiled/react/runtime";
|
|
4
4
|
import { Box } from '@atlaskit/primitives/compiled';
|
|
@@ -8,7 +8,7 @@ const headerContainerStyles = null;
|
|
|
8
8
|
export const HeaderContainer = ({
|
|
9
9
|
children
|
|
10
10
|
}) => /*#__PURE__*/React.createElement("div", {
|
|
11
|
-
className: ax(["
|
|
11
|
+
className: ax(["_n7zl1mqz _bfhk1gi7 _1bah1yb4 _kqswh2mm"])
|
|
12
12
|
}, children);
|
|
13
13
|
const styles = {
|
|
14
14
|
closeButtonContainer: "_kqswstnw _1xi2u2gc _154iutpp"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
|
|
2
|
-
.
|
|
3
|
-
.
|
|
2
|
+
._2rkolb4i{border-radius:var(--ds-radius-xsmall,2px)}
|
|
3
|
+
._x3do1mqz{border-top:var(--ds-border-width-selected,2px) solid var(--ds-border,#ebecf0)}._12vemgnk{background-repeat:no-repeat}
|
|
4
4
|
._154iidpf{top:0}
|
|
5
5
|
._16jlkb7n{flex-grow:1}
|
|
6
6
|
._19bvidpf{padding-left:0}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* styled.tsx generated by @compiled/babel-plugin v0.
|
|
1
|
+
/* styled.tsx generated by @compiled/babel-plugin v0.38.1 */
|
|
2
2
|
import _extends from "@babel/runtime/helpers/extends";
|
|
3
3
|
import "./styled.compiled.css";
|
|
4
4
|
import { ax, ix } from "@compiled/react/runtime";
|
|
@@ -24,7 +24,7 @@ export const HelpFooter = ({
|
|
|
24
24
|
children
|
|
25
25
|
}) => /*#__PURE__*/React.createElement("div", {
|
|
26
26
|
"data-testid": dataTestId,
|
|
27
|
-
className: ax(["
|
|
27
|
+
className: ax(["_x3do1mqz _ca0qu2gc _u5f3idpf _n3tdu2gc _19bvidpf _vchhusvi _bfhk1gi7 _1bah1yb4"])
|
|
28
28
|
}, children);
|
|
29
29
|
|
|
30
30
|
/**
|
|
@@ -50,5 +50,5 @@ export const LoadingRectangle = ({
|
|
|
50
50
|
height: contentHeight,
|
|
51
51
|
marginTop
|
|
52
52
|
},
|
|
53
|
-
className: ax(["
|
|
53
|
+
className: ax(["_2rkolb4i _kqswh2mm _4t3i1e9d _19pku2gc _1bsb1osq _5sag126j _1o51q7pw _tip812c5 _j7hq1en8 _1pglp3kn _bfhk1yrq _1itko982 _12vemgnk"])
|
|
54
54
|
});
|
package/dist/esm/analytics.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* NewChatButton.tsx generated by @compiled/babel-plugin v0.
|
|
1
|
+
/* NewChatButton.tsx generated by @compiled/babel-plugin v0.38.1 */
|
|
2
2
|
import * as React from 'react';
|
|
3
3
|
import { ax, ix } from "@compiled/react/runtime";
|
|
4
4
|
import { Inline } from '@atlaskit/primitives/compiled';
|
|
@@ -49,7 +49,7 @@ var BackButtonWithContext = function BackButtonWithContext(props) {
|
|
|
49
49
|
data: {
|
|
50
50
|
componentName: 'backButton',
|
|
51
51
|
packageName: "@atlaskit/help-layout",
|
|
52
|
-
packageVersion: "
|
|
52
|
+
packageVersion: "6.3.18"
|
|
53
53
|
}
|
|
54
54
|
}, /*#__PURE__*/React.createElement(BackButton, props));
|
|
55
55
|
};
|
|
@@ -48,7 +48,7 @@ var CloseButtonWithContext = function CloseButtonWithContext(props) {
|
|
|
48
48
|
data: {
|
|
49
49
|
componentName: 'closeButton',
|
|
50
50
|
packageName: "@atlaskit/help-layout",
|
|
51
|
-
packageVersion: "
|
|
51
|
+
packageVersion: "6.3.18"
|
|
52
52
|
}
|
|
53
53
|
}, /*#__PURE__*/React.createElement(CloseButton, props));
|
|
54
54
|
};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
._11c81ixg{font:var(--ds-font-body-large,normal 400 1pc/24px ui-sans-serif,-apple-system,BlinkMacSystemFont,"Segoe UI",Ubuntu,"Helvetica Neue",sans-serif)}
|
|
2
2
|
._v5641kw6{transition:var(--_ejvfk7)}
|
|
3
|
-
.
|
|
3
|
+
._n7zl1fvz{border-bottom:var(--_b3fex0)}
|
|
4
4
|
._154iutpp{top:var(--ds-space-150,9pt)}
|
|
5
5
|
._18m915vq{overflow-y:hidden}
|
|
6
6
|
._19bvpxbi{padding-left:var(--ds-space-200,1pc)}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* styled.tsx generated by @compiled/babel-plugin v0.
|
|
1
|
+
/* styled.tsx generated by @compiled/babel-plugin v0.38.1 */
|
|
2
2
|
import _defineProperty from "@babel/runtime/helpers/defineProperty";
|
|
3
3
|
import "./styled.compiled.css";
|
|
4
4
|
import { ax, ix } from "@compiled/react/runtime";
|
|
@@ -11,10 +11,10 @@ var headerContainerStyles = null;
|
|
|
11
11
|
export var HeaderContainer = function HeaderContainer(_ref) {
|
|
12
12
|
var children = _ref.children;
|
|
13
13
|
return /*#__PURE__*/React.createElement("div", {
|
|
14
|
-
className: ax(["
|
|
14
|
+
className: ax(["_n7zl1fvz _bfhk1v7z _1bah1yb4 _kqswh2mm"]),
|
|
15
15
|
style: {
|
|
16
16
|
"--_1xglsrh": ix("var(--ds-background-neutral, ".concat(N10, ")")),
|
|
17
|
-
"--
|
|
17
|
+
"--_b3fex0": ix("var(--ds-border-width-selected, 2px)".concat(" solid ", "var(--ds-border, ".concat(N30, ")")))
|
|
18
18
|
}
|
|
19
19
|
}, children);
|
|
20
20
|
};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
|
|
2
|
-
.
|
|
3
|
-
.
|
|
2
|
+
._2rkolb4i{border-radius:var(--ds-radius-xsmall,2px)}
|
|
3
|
+
._x3do1fvz{border-top:var(--_b3fex0)}._12vemgnk{background-repeat:no-repeat}
|
|
4
4
|
._154iidpf{top:0}
|
|
5
5
|
._16jlkb7n{flex-grow:1}
|
|
6
6
|
._19bvidpf{padding-left:0}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* styled.tsx generated by @compiled/babel-plugin v0.
|
|
1
|
+
/* styled.tsx generated by @compiled/babel-plugin v0.38.1 */
|
|
2
2
|
import _extends from "@babel/runtime/helpers/extends";
|
|
3
3
|
import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
|
|
4
4
|
var _excluded = ["children"];
|
|
@@ -28,10 +28,10 @@ export var HelpFooter = function HelpFooter(_ref3) {
|
|
|
28
28
|
children = _ref3.children;
|
|
29
29
|
return /*#__PURE__*/React.createElement("div", {
|
|
30
30
|
"data-testid": dataTestId,
|
|
31
|
-
className: ax(["
|
|
31
|
+
className: ax(["_x3do1fvz _ca0qu2gc _u5f3idpf _n3tdu2gc _19bvidpf _vchhusvi _bfhk1v7z _1bah1yb4"]),
|
|
32
32
|
style: {
|
|
33
33
|
"--_1xglsrh": ix("var(--ds-background-neutral, ".concat(N10, ")")),
|
|
34
|
-
"--
|
|
34
|
+
"--_b3fex0": ix("var(--ds-border-width-selected, 2px)".concat(" solid ", "var(--ds-border, ".concat(N30, ")")))
|
|
35
35
|
}
|
|
36
36
|
}, children);
|
|
37
37
|
};
|
|
@@ -55,7 +55,7 @@ export var LoadingRectangle = function LoadingRectangle(_ref5) {
|
|
|
55
55
|
contentHeight = _ref5.contentHeight,
|
|
56
56
|
marginTop = _ref5.marginTop;
|
|
57
57
|
return /*#__PURE__*/React.createElement("div", {
|
|
58
|
-
className: ax(["
|
|
58
|
+
className: ax(["_2rkolb4i _kqswh2mm _4t3i1e9d _19pku2gc _1bsb1osq _5sag126j _1o51q7pw _tip812c5 _j7hq1en8 _1pglp3kn _bfhkptpz _1itkwhjv _12vemgnk"]),
|
|
59
59
|
style: {
|
|
60
60
|
width: contentWidth,
|
|
61
61
|
height: contentHeight,
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as x from '@atlaskit/analytics-next';
|
|
2
|
-
export declare const withAnalyticsEvents: (createEventMap?: import("@atlaskit/analytics-next/types").CreateEventMap) => <Props, Component>(WrappedComponent: React.ComponentType<x.WithAnalyticsEventsProps & Props> & Component) => React.ForwardRefExoticComponent<React.PropsWithoutRef<JSX.LibraryManagedAttributes<Component, Omit<Props, keyof x.WithAnalyticsEventsProps>>> & React.RefAttributes<any>>;
|
|
2
|
+
export declare const withAnalyticsEvents: (createEventMap?: import("@atlaskit/analytics-next/types").CreateEventMap) => <Props, Component>(WrappedComponent: (React.ComponentType<x.WithAnalyticsEventsProps & Props> | React.ForwardRefExoticComponent<Omit<x.WithAnalyticsEventsProps, "ref"> & Props>) & Component) => React.ForwardRefExoticComponent<React.PropsWithoutRef<JSX.LibraryManagedAttributes<Component, Omit<Props, keyof x.WithAnalyticsEventsProps>>> & React.RefAttributes<any>>;
|
|
3
3
|
export declare const withAnalyticsContext: (defaultData?: any) => <Props, Component>(WrappedComponent: React.ComponentType<Props> & Component) => React.ForwardRefExoticComponent<React.PropsWithoutRef<JSX.LibraryManagedAttributes<Component, Props & x.WithContextProps>> & React.RefAttributes<any>>;
|
|
4
4
|
export declare const createAndFire: (payload: x.AnalyticsEventPayload) => (createAnalyticsEvent: x.CreateUIAnalyticsEvent) => import("@atlaskit/analytics-next").UIAnalyticsEvent;
|
|
5
5
|
export declare const defaultAnalyticsAttributes: {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as x from '@atlaskit/analytics-next';
|
|
2
|
-
export declare const withAnalyticsEvents: (createEventMap?: import("@atlaskit/analytics-next/types").CreateEventMap) => <Props, Component>(WrappedComponent: React.ComponentType<x.WithAnalyticsEventsProps & Props> & Component) => React.ForwardRefExoticComponent<React.PropsWithoutRef<JSX.LibraryManagedAttributes<Component, Omit<Props, keyof x.WithAnalyticsEventsProps>>> & React.RefAttributes<any>>;
|
|
2
|
+
export declare const withAnalyticsEvents: (createEventMap?: import("@atlaskit/analytics-next/types").CreateEventMap) => <Props, Component>(WrappedComponent: (React.ComponentType<x.WithAnalyticsEventsProps & Props> | React.ForwardRefExoticComponent<Omit<x.WithAnalyticsEventsProps, "ref"> & Props>) & Component) => React.ForwardRefExoticComponent<React.PropsWithoutRef<JSX.LibraryManagedAttributes<Component, Omit<Props, keyof x.WithAnalyticsEventsProps>>> & React.RefAttributes<any>>;
|
|
3
3
|
export declare const withAnalyticsContext: (defaultData?: any) => <Props, Component>(WrappedComponent: React.ComponentType<Props> & Component) => React.ForwardRefExoticComponent<React.PropsWithoutRef<JSX.LibraryManagedAttributes<Component, Props & x.WithContextProps>> & React.RefAttributes<any>>;
|
|
4
4
|
export declare const createAndFire: (payload: x.AnalyticsEventPayload) => (createAnalyticsEvent: x.CreateUIAnalyticsEvent) => import("@atlaskit/analytics-next").UIAnalyticsEvent;
|
|
5
5
|
export declare const defaultAnalyticsAttributes: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/help-layout",
|
|
3
|
-
"version": "6.3.
|
|
3
|
+
"version": "6.3.19",
|
|
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.5.0",
|
|
36
|
+
"@atlaskit/css": "^0.15.0",
|
|
37
37
|
"@atlaskit/heading": "^5.2.0",
|
|
38
|
-
"@atlaskit/icon": "^28.
|
|
39
|
-
"@atlaskit/primitives": "^
|
|
38
|
+
"@atlaskit/icon": "^28.5.0",
|
|
39
|
+
"@atlaskit/primitives": "^15.0.0",
|
|
40
40
|
"@atlaskit/theme": "^21.0.0",
|
|
41
|
-
"@atlaskit/tokens": "^6.
|
|
42
|
-
"@atlaskit/tooltip": "^20.
|
|
41
|
+
"@atlaskit/tokens": "^6.5.0",
|
|
42
|
+
"@atlaskit/tooltip": "^20.5.0",
|
|
43
43
|
"@babel/runtime": "^7.0.0",
|
|
44
44
|
"@compiled/react": "^0.18.3",
|
|
45
45
|
"react-transition-group": "^4.4.1"
|
|
@@ -71,10 +71,5 @@
|
|
|
71
71
|
"compiled"
|
|
72
72
|
]
|
|
73
73
|
}
|
|
74
|
-
},
|
|
75
|
-
"af:exports": {
|
|
76
|
-
".": "./src/index.ts",
|
|
77
|
-
"./analytics": "./src/analytics.ts",
|
|
78
|
-
"./messages": "./src/messages.ts"
|
|
79
74
|
}
|
|
80
75
|
}
|