@atlaskit/table-tree 12.1.1 → 12.1.2
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/components/internal/common-cell.js +5 -2
- package/dist/cjs/components/row.js +2 -2
- package/dist/es2019/components/internal/common-cell.js +5 -2
- package/dist/es2019/components/row.js +2 -2
- package/dist/esm/components/internal/common-cell.js +5 -2
- package/dist/esm/components/row.js +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @atlaskit/table-tree
|
|
2
2
|
|
|
3
|
+
## 12.1.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#153593](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/153593)
|
|
8
|
+
[`b88120ead0a0e`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/b88120ead0a0e) -
|
|
9
|
+
Fix `className` prop not working with `Cell`.
|
|
10
|
+
|
|
3
11
|
## 12.1.1
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
|
@@ -14,7 +14,7 @@ var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends")
|
|
|
14
14
|
var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
|
|
15
15
|
var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/objectWithoutProperties"));
|
|
16
16
|
var _colors = require("@atlaskit/theme/colors");
|
|
17
|
-
var _excluded = ["indent", "width"];
|
|
17
|
+
var _excluded = ["indent", "width", "className"];
|
|
18
18
|
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(e) { return e ? t : r; })(e); }
|
|
19
19
|
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != _typeof(e) && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
|
20
20
|
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
@@ -26,12 +26,15 @@ var commonStyles = null;
|
|
|
26
26
|
var CommonCell = function CommonCell(_ref) {
|
|
27
27
|
var indent = _ref.indent,
|
|
28
28
|
width = _ref.width,
|
|
29
|
+
className = _ref.className,
|
|
29
30
|
props = (0, _objectWithoutProperties2.default)(_ref, _excluded);
|
|
30
31
|
return /*#__PURE__*/React.createElement("div", (0, _extends2.default)({
|
|
31
32
|
role: "gridcell"
|
|
33
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-classname-prop
|
|
34
|
+
,
|
|
35
|
+
className: (0, _runtime.ax)(["_1yt41p08 _11c82smr _1e0c1txw _vchhusvi _1tke1ylp _kqswh2mm _4cvr1h6o _syaz1o8f _ct361wug _1nmz1hna", className])
|
|
32
36
|
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
33
37
|
}, props, {
|
|
34
|
-
className: (0, _runtime.ax)(["_1yt41p08 _11c82smr _1e0c1txw _vchhusvi _1tke1ylp _kqswh2mm _4cvr1h6o _syaz1o8f _ct361wug _1nmz1hna"]),
|
|
35
38
|
style: _objectSpread(_objectSpread({}, {
|
|
36
39
|
'--indent': indent,
|
|
37
40
|
width: width
|
|
@@ -62,7 +62,7 @@ function Row(_ref) {
|
|
|
62
62
|
actionSubject: 'tableTree',
|
|
63
63
|
componentName: 'row',
|
|
64
64
|
packageName: "@atlaskit/table-tree",
|
|
65
|
-
packageVersion: "12.1.
|
|
65
|
+
packageVersion: "12.1.2"
|
|
66
66
|
});
|
|
67
67
|
var onCollapse = (0, _analyticsNext.usePlatformLeafEventHandler)({
|
|
68
68
|
fn: function fn(value) {
|
|
@@ -72,7 +72,7 @@ function Row(_ref) {
|
|
|
72
72
|
actionSubject: 'tableTree',
|
|
73
73
|
componentName: 'row',
|
|
74
74
|
packageName: "@atlaskit/table-tree",
|
|
75
|
-
packageVersion: "12.1.
|
|
75
|
+
packageVersion: "12.1.2"
|
|
76
76
|
});
|
|
77
77
|
|
|
78
78
|
/**
|
|
@@ -11,15 +11,18 @@ const commonStyles = null;
|
|
|
11
11
|
const CommonCell = ({
|
|
12
12
|
indent,
|
|
13
13
|
width,
|
|
14
|
+
className,
|
|
14
15
|
...props
|
|
15
16
|
}) => /*#__PURE__*/React.createElement("div", _extends({
|
|
16
17
|
role: "gridcell"
|
|
18
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-classname-prop
|
|
19
|
+
,
|
|
20
|
+
className: ax(["_1yt413wy _11c82smr _1e0c1txw _vchhusvi _1tke1ylp _kqswh2mm _4cvr1h6o _syaz1fxt _ct361wug _1nmz1hna", className])
|
|
17
21
|
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
18
22
|
}, props, {
|
|
19
23
|
style: {
|
|
20
24
|
'--indent': indent,
|
|
21
25
|
width
|
|
22
|
-
}
|
|
23
|
-
className: ax(["_1yt413wy _11c82smr _1e0c1txw _vchhusvi _1tke1ylp _kqswh2mm _4cvr1h6o _syaz1fxt _ct361wug _1nmz1hna"])
|
|
26
|
+
}
|
|
24
27
|
}));
|
|
25
28
|
export default CommonCell;
|
|
@@ -47,7 +47,7 @@ function Row({
|
|
|
47
47
|
actionSubject: 'tableTree',
|
|
48
48
|
componentName: 'row',
|
|
49
49
|
packageName: "@atlaskit/table-tree",
|
|
50
|
-
packageVersion: "12.1.
|
|
50
|
+
packageVersion: "12.1.2"
|
|
51
51
|
});
|
|
52
52
|
const onCollapse = usePlatformLeafEventHandler({
|
|
53
53
|
fn: value => providedOnCollapse && providedOnCollapse(value),
|
|
@@ -55,7 +55,7 @@ function Row({
|
|
|
55
55
|
actionSubject: 'tableTree',
|
|
56
56
|
componentName: 'row',
|
|
57
57
|
packageName: "@atlaskit/table-tree",
|
|
58
|
-
packageVersion: "12.1.
|
|
58
|
+
packageVersion: "12.1.2"
|
|
59
59
|
});
|
|
60
60
|
|
|
61
61
|
/**
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
import _extends from "@babel/runtime/helpers/extends";
|
|
3
3
|
import _defineProperty from "@babel/runtime/helpers/defineProperty";
|
|
4
4
|
import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
|
|
5
|
-
var _excluded = ["indent", "width"];
|
|
5
|
+
var _excluded = ["indent", "width", "className"];
|
|
6
6
|
import "./common-cell.compiled.css";
|
|
7
7
|
import * as React from 'react';
|
|
8
8
|
import { ax, ix } from "@compiled/react/runtime";
|
|
@@ -16,12 +16,15 @@ var commonStyles = null;
|
|
|
16
16
|
var CommonCell = function CommonCell(_ref) {
|
|
17
17
|
var indent = _ref.indent,
|
|
18
18
|
width = _ref.width,
|
|
19
|
+
className = _ref.className,
|
|
19
20
|
props = _objectWithoutProperties(_ref, _excluded);
|
|
20
21
|
return /*#__PURE__*/React.createElement("div", _extends({
|
|
21
22
|
role: "gridcell"
|
|
23
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-classname-prop
|
|
24
|
+
,
|
|
25
|
+
className: ax(["_1yt41p08 _11c82smr _1e0c1txw _vchhusvi _1tke1ylp _kqswh2mm _4cvr1h6o _syaz1o8f _ct361wug _1nmz1hna", className])
|
|
22
26
|
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
23
27
|
}, props, {
|
|
24
|
-
className: ax(["_1yt41p08 _11c82smr _1e0c1txw _vchhusvi _1tke1ylp _kqswh2mm _4cvr1h6o _syaz1o8f _ct361wug _1nmz1hna"]),
|
|
25
28
|
style: _objectSpread(_objectSpread({}, {
|
|
26
29
|
'--indent': indent,
|
|
27
30
|
width: width
|
|
@@ -52,7 +52,7 @@ function Row(_ref) {
|
|
|
52
52
|
actionSubject: 'tableTree',
|
|
53
53
|
componentName: 'row',
|
|
54
54
|
packageName: "@atlaskit/table-tree",
|
|
55
|
-
packageVersion: "12.1.
|
|
55
|
+
packageVersion: "12.1.2"
|
|
56
56
|
});
|
|
57
57
|
var onCollapse = usePlatformLeafEventHandler({
|
|
58
58
|
fn: function fn(value) {
|
|
@@ -62,7 +62,7 @@ function Row(_ref) {
|
|
|
62
62
|
actionSubject: 'tableTree',
|
|
63
63
|
componentName: 'row',
|
|
64
64
|
packageName: "@atlaskit/table-tree",
|
|
65
|
-
packageVersion: "12.1.
|
|
65
|
+
packageVersion: "12.1.2"
|
|
66
66
|
});
|
|
67
67
|
|
|
68
68
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/table-tree",
|
|
3
|
-
"version": "12.1.
|
|
3
|
+
"version": "12.1.2",
|
|
4
4
|
"description": "A table tree is an expandable table for showing nested hierarchies of information.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"@atlaskit/theme": "^18.0.0",
|
|
34
34
|
"@atlaskit/tokens": "^4.8.0",
|
|
35
35
|
"@babel/runtime": "^7.0.0",
|
|
36
|
-
"@
|
|
36
|
+
"@compiled/react": "^0.18.3",
|
|
37
37
|
"lodash": "^4.17.21"
|
|
38
38
|
},
|
|
39
39
|
"peerDependencies": {
|