@atlaskit/table-tree 9.10.2 → 9.10.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 +16 -0
- package/dist/cjs/components/cell.js +11 -8
- package/dist/cjs/components/header.js +13 -12
- package/dist/cjs/components/internal/common-cell.js +1 -1
- package/dist/cjs/components/row.js +13 -10
- package/dist/es2019/components/cell.js +5 -2
- package/dist/es2019/components/header.js +7 -6
- package/dist/es2019/components/internal/common-cell.js +1 -1
- package/dist/es2019/components/row.js +8 -5
- package/dist/esm/components/cell.js +11 -8
- package/dist/esm/components/header.js +13 -12
- package/dist/esm/components/internal/common-cell.js +1 -1
- package/dist/esm/components/row.js +14 -11
- package/dist/types/components/cell.d.ts +2 -2
- package/dist/types/components/header.d.ts +2 -2
- package/dist/types/components/row.d.ts +4 -4
- package/dist/types-ts4.5/components/cell.d.ts +2 -2
- package/dist/types-ts4.5/components/header.d.ts +2 -2
- package/dist/types-ts4.5/components/row.d.ts +4 -4
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @atlaskit/table-tree
|
|
2
2
|
|
|
3
|
+
## 9.10.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#120049](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/120049)
|
|
8
|
+
[`77504ff274f72`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/77504ff274f72) -
|
|
9
|
+
DSP-19576: Assign names to anonymous default exports
|
|
10
|
+
|
|
11
|
+
## 9.10.3
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- [#116402](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/116402)
|
|
16
|
+
[`2d5c40095cc96`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/2d5c40095cc96) -
|
|
17
|
+
[ux] Internal changes to typography, minor visual change to table header letter spacing.
|
|
18
|
+
|
|
3
19
|
## 9.10.2
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
|
@@ -23,14 +23,14 @@ function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return
|
|
|
23
23
|
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 && Object.prototype.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; }
|
|
24
24
|
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = (0, _getPrototypeOf2.default)(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = (0, _getPrototypeOf2.default)(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return (0, _possibleConstructorReturn2.default)(this, result); }; }
|
|
25
25
|
function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); }
|
|
26
|
-
var
|
|
27
|
-
(0, _inherits2.default)(
|
|
28
|
-
var _super = _createSuper(
|
|
29
|
-
function
|
|
30
|
-
(0, _classCallCheck2.default)(this,
|
|
26
|
+
var CellComponent = /*#__PURE__*/function (_Component) {
|
|
27
|
+
(0, _inherits2.default)(CellComponent, _Component);
|
|
28
|
+
var _super = _createSuper(CellComponent);
|
|
29
|
+
function CellComponent() {
|
|
30
|
+
(0, _classCallCheck2.default)(this, CellComponent);
|
|
31
31
|
return _super.apply(this, arguments);
|
|
32
32
|
}
|
|
33
|
-
(0, _createClass2.default)(
|
|
33
|
+
(0, _createClass2.default)(CellComponent, [{
|
|
34
34
|
key: "render",
|
|
35
35
|
value: function render() {
|
|
36
36
|
var _this$props = this.props,
|
|
@@ -51,6 +51,9 @@ var Cell = /*#__PURE__*/function (_Component) {
|
|
|
51
51
|
}, children));
|
|
52
52
|
}
|
|
53
53
|
}]);
|
|
54
|
-
return
|
|
54
|
+
return CellComponent;
|
|
55
55
|
}(_react.Component);
|
|
56
|
-
var
|
|
56
|
+
var Cell = (0, _withColumnWidth.default)(CellComponent);
|
|
57
|
+
|
|
58
|
+
// eslint-disable-next-line @repo/internal/react/require-jsdoc
|
|
59
|
+
var _default = exports.default = Cell;
|
|
@@ -22,19 +22,17 @@ function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.
|
|
|
22
22
|
*/ /** @jsx jsx */ // eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
|
|
23
23
|
var headerStyles = (0, _react2.css)({
|
|
24
24
|
color: "var(--ds-text-subtle, ".concat(_colors.N300, ")"),
|
|
25
|
-
|
|
26
|
-
fontWeight: "var(--ds-font-weight-bold,
|
|
27
|
-
letterSpacing: -0.1,
|
|
28
|
-
lineHeight: '20px'
|
|
25
|
+
font: "var(--ds-font-body-UNSAFE_small, normal 400 12px/16px ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif)",
|
|
26
|
+
fontWeight: "var(--ds-font-weight-bold, 700)"
|
|
29
27
|
});
|
|
30
|
-
var
|
|
31
|
-
(0, _inherits2.default)(
|
|
32
|
-
var _super = _createSuper(
|
|
33
|
-
function
|
|
34
|
-
(0, _classCallCheck2.default)(this,
|
|
28
|
+
var HeaderComponent = /*#__PURE__*/function (_Component) {
|
|
29
|
+
(0, _inherits2.default)(HeaderComponent, _Component);
|
|
30
|
+
var _super = _createSuper(HeaderComponent);
|
|
31
|
+
function HeaderComponent() {
|
|
32
|
+
(0, _classCallCheck2.default)(this, HeaderComponent);
|
|
35
33
|
return _super.apply(this, arguments);
|
|
36
34
|
}
|
|
37
|
-
(0, _createClass2.default)(
|
|
35
|
+
(0, _createClass2.default)(HeaderComponent, [{
|
|
38
36
|
key: "render",
|
|
39
37
|
value: function render() {
|
|
40
38
|
var props = this.props;
|
|
@@ -51,6 +49,9 @@ var Header = /*#__PURE__*/function (_Component) {
|
|
|
51
49
|
);
|
|
52
50
|
}
|
|
53
51
|
}]);
|
|
54
|
-
return
|
|
52
|
+
return HeaderComponent;
|
|
55
53
|
}(_react.Component);
|
|
56
|
-
var
|
|
54
|
+
var Header = (0, _withColumnWidth.default)(HeaderComponent);
|
|
55
|
+
|
|
56
|
+
// eslint-disable-next-line @repo/internal/react/require-jsdoc
|
|
57
|
+
var _default = exports.default = Header;
|
|
@@ -25,8 +25,8 @@ var commonStyles = (0, _react.css)({
|
|
|
25
25
|
position: 'relative',
|
|
26
26
|
alignItems: 'center',
|
|
27
27
|
color: "var(--ds-text, ".concat(_colors.N800, ")"),
|
|
28
|
+
font: "var(--ds-font-body, normal 400 14px/20px ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif)",
|
|
28
29
|
hyphens: 'auto',
|
|
29
|
-
lineHeight: '20px',
|
|
30
30
|
wordBreak: 'break-word'
|
|
31
31
|
});
|
|
32
32
|
/**
|
|
@@ -30,13 +30,13 @@ var treeRowClickableStyles = (0, _react2.css)({
|
|
|
30
30
|
cursor: 'pointer'
|
|
31
31
|
});
|
|
32
32
|
var packageName = "@atlaskit/table-tree";
|
|
33
|
-
var packageVersion = "9.10.
|
|
34
|
-
var
|
|
35
|
-
(0, _inherits2.default)(
|
|
36
|
-
var _super = _createSuper(
|
|
37
|
-
function
|
|
33
|
+
var packageVersion = "9.10.4";
|
|
34
|
+
var RowComponent = exports.RowWithoutAnalytics = /*#__PURE__*/function (_Component) {
|
|
35
|
+
(0, _inherits2.default)(RowComponent, _Component);
|
|
36
|
+
var _super = _createSuper(RowComponent);
|
|
37
|
+
function RowComponent() {
|
|
38
38
|
var _this;
|
|
39
|
-
(0, _classCallCheck2.default)(this,
|
|
39
|
+
(0, _classCallCheck2.default)(this, RowComponent);
|
|
40
40
|
for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
|
|
41
41
|
args[_key] = arguments[_key];
|
|
42
42
|
}
|
|
@@ -80,7 +80,7 @@ var Row = exports.RowWithoutAnalytics = /*#__PURE__*/function (_Component) {
|
|
|
80
80
|
});
|
|
81
81
|
return _this;
|
|
82
82
|
}
|
|
83
|
-
(0, _createClass2.default)(
|
|
83
|
+
(0, _createClass2.default)(RowComponent, [{
|
|
84
84
|
key: "componentDidUpdate",
|
|
85
85
|
value: function componentDidUpdate(prevProps) {
|
|
86
86
|
var _this$props = this.props,
|
|
@@ -165,10 +165,10 @@ var Row = exports.RowWithoutAnalytics = /*#__PURE__*/function (_Component) {
|
|
|
165
165
|
})), hasChildren && isExpanded && renderChildren && renderChildren());
|
|
166
166
|
}
|
|
167
167
|
}]);
|
|
168
|
-
return
|
|
168
|
+
return RowComponent;
|
|
169
169
|
}(_react.Component);
|
|
170
170
|
var createAndFireEventOnAtlaskit = (0, _analyticsNext.createAndFireEvent)('atlaskit');
|
|
171
|
-
var
|
|
171
|
+
var Row = (0, _analyticsNext.withAnalyticsContext)({
|
|
172
172
|
componentName: 'row',
|
|
173
173
|
packageName: packageName,
|
|
174
174
|
packageVersion: packageVersion
|
|
@@ -191,4 +191,7 @@ var _default = exports.default = (0, _analyticsNext.withAnalyticsContext)({
|
|
|
191
191
|
packageVersion: packageVersion
|
|
192
192
|
}
|
|
193
193
|
})
|
|
194
|
-
})(
|
|
194
|
+
})(RowComponent));
|
|
195
|
+
|
|
196
|
+
// eslint-disable-next-line @repo/internal/react/require-jsdoc
|
|
197
|
+
var _default = exports.default = Row;
|
|
@@ -4,7 +4,7 @@ import CommonCell from './internal/common-cell';
|
|
|
4
4
|
import OverflowContainer from './internal/overflow-container';
|
|
5
5
|
import { indentBase } from './internal/styled';
|
|
6
6
|
import withColumnWidth from './internal/with-column-width';
|
|
7
|
-
class
|
|
7
|
+
class CellComponent extends Component {
|
|
8
8
|
render() {
|
|
9
9
|
const {
|
|
10
10
|
children,
|
|
@@ -25,4 +25,7 @@ class Cell extends Component {
|
|
|
25
25
|
}, children));
|
|
26
26
|
}
|
|
27
27
|
}
|
|
28
|
-
|
|
28
|
+
const Cell = withColumnWidth(CellComponent);
|
|
29
|
+
|
|
30
|
+
// eslint-disable-next-line @repo/internal/react/require-jsdoc
|
|
31
|
+
export default Cell;
|
|
@@ -12,12 +12,10 @@ import ColumnCell from './internal/common-cell';
|
|
|
12
12
|
import withColumnWidth from './internal/with-column-width';
|
|
13
13
|
const headerStyles = css({
|
|
14
14
|
color: `var(--ds-text-subtle, ${N300})`,
|
|
15
|
-
|
|
16
|
-
fontWeight: "var(--ds-font-weight-bold,
|
|
17
|
-
letterSpacing: -0.1,
|
|
18
|
-
lineHeight: '20px'
|
|
15
|
+
font: "var(--ds-font-body-UNSAFE_small, normal 400 12px/16px ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif)",
|
|
16
|
+
fontWeight: "var(--ds-font-weight-bold, 700)"
|
|
19
17
|
});
|
|
20
|
-
class
|
|
18
|
+
class HeaderComponent extends Component {
|
|
21
19
|
render() {
|
|
22
20
|
const {
|
|
23
21
|
props
|
|
@@ -35,4 +33,7 @@ class Header extends Component {
|
|
|
35
33
|
);
|
|
36
34
|
}
|
|
37
35
|
}
|
|
38
|
-
|
|
36
|
+
const Header = withColumnWidth(HeaderComponent);
|
|
37
|
+
|
|
38
|
+
// eslint-disable-next-line @repo/internal/react/require-jsdoc
|
|
39
|
+
export default Header;
|
|
@@ -17,8 +17,8 @@ const commonStyles = css({
|
|
|
17
17
|
position: 'relative',
|
|
18
18
|
alignItems: 'center',
|
|
19
19
|
color: `var(--ds-text, ${N800})`,
|
|
20
|
+
font: "var(--ds-font-body, normal 400 14px/20px ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif)",
|
|
20
21
|
hyphens: 'auto',
|
|
21
|
-
lineHeight: '20px',
|
|
22
22
|
wordBreak: 'break-word'
|
|
23
23
|
});
|
|
24
24
|
/**
|
|
@@ -17,8 +17,8 @@ const treeRowClickableStyles = css({
|
|
|
17
17
|
cursor: 'pointer'
|
|
18
18
|
});
|
|
19
19
|
const packageName = "@atlaskit/table-tree";
|
|
20
|
-
const packageVersion = "9.10.
|
|
21
|
-
class
|
|
20
|
+
const packageVersion = "9.10.4";
|
|
21
|
+
class RowComponent extends Component {
|
|
22
22
|
constructor(...args) {
|
|
23
23
|
super(...args);
|
|
24
24
|
_defineProperty(this, "state", {
|
|
@@ -141,9 +141,9 @@ class Row extends Component {
|
|
|
141
141
|
}, ariaAttrs), React.Children.map(this.props.children, (cell, index) => this.renderCell(cell, index))), hasChildren && isExpanded && renderChildren && renderChildren());
|
|
142
142
|
}
|
|
143
143
|
}
|
|
144
|
-
export {
|
|
144
|
+
export { RowComponent as RowWithoutAnalytics };
|
|
145
145
|
const createAndFireEventOnAtlaskit = createAndFireEvent('atlaskit');
|
|
146
|
-
|
|
146
|
+
const Row = withAnalyticsContext({
|
|
147
147
|
componentName: 'row',
|
|
148
148
|
packageName,
|
|
149
149
|
packageVersion
|
|
@@ -166,4 +166,7 @@ export default withAnalyticsContext({
|
|
|
166
166
|
packageVersion
|
|
167
167
|
}
|
|
168
168
|
})
|
|
169
|
-
})(
|
|
169
|
+
})(RowComponent));
|
|
170
|
+
|
|
171
|
+
// eslint-disable-next-line @repo/internal/react/require-jsdoc
|
|
172
|
+
export default Row;
|
|
@@ -13,14 +13,14 @@ import CommonCell from './internal/common-cell';
|
|
|
13
13
|
import OverflowContainer from './internal/overflow-container';
|
|
14
14
|
import { indentBase } from './internal/styled';
|
|
15
15
|
import withColumnWidth from './internal/with-column-width';
|
|
16
|
-
var
|
|
17
|
-
_inherits(
|
|
18
|
-
var _super = _createSuper(
|
|
19
|
-
function
|
|
20
|
-
_classCallCheck(this,
|
|
16
|
+
var CellComponent = /*#__PURE__*/function (_Component) {
|
|
17
|
+
_inherits(CellComponent, _Component);
|
|
18
|
+
var _super = _createSuper(CellComponent);
|
|
19
|
+
function CellComponent() {
|
|
20
|
+
_classCallCheck(this, CellComponent);
|
|
21
21
|
return _super.apply(this, arguments);
|
|
22
22
|
}
|
|
23
|
-
_createClass(
|
|
23
|
+
_createClass(CellComponent, [{
|
|
24
24
|
key: "render",
|
|
25
25
|
value: function render() {
|
|
26
26
|
var _this$props = this.props,
|
|
@@ -41,6 +41,9 @@ var Cell = /*#__PURE__*/function (_Component) {
|
|
|
41
41
|
}, children));
|
|
42
42
|
}
|
|
43
43
|
}]);
|
|
44
|
-
return
|
|
44
|
+
return CellComponent;
|
|
45
45
|
}(Component);
|
|
46
|
-
|
|
46
|
+
var Cell = withColumnWidth(CellComponent);
|
|
47
|
+
|
|
48
|
+
// eslint-disable-next-line @repo/internal/react/require-jsdoc
|
|
49
|
+
export default Cell;
|
|
@@ -19,19 +19,17 @@ import ColumnCell from './internal/common-cell';
|
|
|
19
19
|
import withColumnWidth from './internal/with-column-width';
|
|
20
20
|
var headerStyles = css({
|
|
21
21
|
color: "var(--ds-text-subtle, ".concat(N300, ")"),
|
|
22
|
-
|
|
23
|
-
fontWeight: "var(--ds-font-weight-bold,
|
|
24
|
-
letterSpacing: -0.1,
|
|
25
|
-
lineHeight: '20px'
|
|
22
|
+
font: "var(--ds-font-body-UNSAFE_small, normal 400 12px/16px ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif)",
|
|
23
|
+
fontWeight: "var(--ds-font-weight-bold, 700)"
|
|
26
24
|
});
|
|
27
|
-
var
|
|
28
|
-
_inherits(
|
|
29
|
-
var _super = _createSuper(
|
|
30
|
-
function
|
|
31
|
-
_classCallCheck(this,
|
|
25
|
+
var HeaderComponent = /*#__PURE__*/function (_Component) {
|
|
26
|
+
_inherits(HeaderComponent, _Component);
|
|
27
|
+
var _super = _createSuper(HeaderComponent);
|
|
28
|
+
function HeaderComponent() {
|
|
29
|
+
_classCallCheck(this, HeaderComponent);
|
|
32
30
|
return _super.apply(this, arguments);
|
|
33
31
|
}
|
|
34
|
-
_createClass(
|
|
32
|
+
_createClass(HeaderComponent, [{
|
|
35
33
|
key: "render",
|
|
36
34
|
value: function render() {
|
|
37
35
|
var props = this.props;
|
|
@@ -48,6 +46,9 @@ var Header = /*#__PURE__*/function (_Component) {
|
|
|
48
46
|
);
|
|
49
47
|
}
|
|
50
48
|
}]);
|
|
51
|
-
return
|
|
49
|
+
return HeaderComponent;
|
|
52
50
|
}(Component);
|
|
53
|
-
|
|
51
|
+
var Header = withColumnWidth(HeaderComponent);
|
|
52
|
+
|
|
53
|
+
// eslint-disable-next-line @repo/internal/react/require-jsdoc
|
|
54
|
+
export default Header;
|
|
@@ -19,8 +19,8 @@ var commonStyles = css({
|
|
|
19
19
|
position: 'relative',
|
|
20
20
|
alignItems: 'center',
|
|
21
21
|
color: "var(--ds-text, ".concat(N800, ")"),
|
|
22
|
+
font: "var(--ds-font-body, normal 400 14px/20px ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif)",
|
|
22
23
|
hyphens: 'auto',
|
|
23
|
-
lineHeight: '20px',
|
|
24
24
|
wordBreak: 'break-word'
|
|
25
25
|
});
|
|
26
26
|
/**
|
|
@@ -25,13 +25,13 @@ var treeRowClickableStyles = css({
|
|
|
25
25
|
cursor: 'pointer'
|
|
26
26
|
});
|
|
27
27
|
var packageName = "@atlaskit/table-tree";
|
|
28
|
-
var packageVersion = "9.10.
|
|
29
|
-
var
|
|
30
|
-
_inherits(
|
|
31
|
-
var _super = _createSuper(
|
|
32
|
-
function
|
|
28
|
+
var packageVersion = "9.10.4";
|
|
29
|
+
var RowComponent = /*#__PURE__*/function (_Component) {
|
|
30
|
+
_inherits(RowComponent, _Component);
|
|
31
|
+
var _super = _createSuper(RowComponent);
|
|
32
|
+
function RowComponent() {
|
|
33
33
|
var _this;
|
|
34
|
-
_classCallCheck(this,
|
|
34
|
+
_classCallCheck(this, RowComponent);
|
|
35
35
|
for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
|
|
36
36
|
args[_key] = arguments[_key];
|
|
37
37
|
}
|
|
@@ -75,7 +75,7 @@ var Row = /*#__PURE__*/function (_Component) {
|
|
|
75
75
|
});
|
|
76
76
|
return _this;
|
|
77
77
|
}
|
|
78
|
-
_createClass(
|
|
78
|
+
_createClass(RowComponent, [{
|
|
79
79
|
key: "componentDidUpdate",
|
|
80
80
|
value: function componentDidUpdate(prevProps) {
|
|
81
81
|
var _this$props = this.props,
|
|
@@ -160,11 +160,11 @@ var Row = /*#__PURE__*/function (_Component) {
|
|
|
160
160
|
})), hasChildren && isExpanded && renderChildren && renderChildren());
|
|
161
161
|
}
|
|
162
162
|
}]);
|
|
163
|
-
return
|
|
163
|
+
return RowComponent;
|
|
164
164
|
}(Component);
|
|
165
|
-
export {
|
|
165
|
+
export { RowComponent as RowWithoutAnalytics };
|
|
166
166
|
var createAndFireEventOnAtlaskit = createAndFireEvent('atlaskit');
|
|
167
|
-
|
|
167
|
+
var Row = withAnalyticsContext({
|
|
168
168
|
componentName: 'row',
|
|
169
169
|
packageName: packageName,
|
|
170
170
|
packageVersion: packageVersion
|
|
@@ -187,4 +187,7 @@ export default withAnalyticsContext({
|
|
|
187
187
|
packageVersion: packageVersion
|
|
188
188
|
}
|
|
189
189
|
})
|
|
190
|
-
})(
|
|
190
|
+
})(RowComponent));
|
|
191
|
+
|
|
192
|
+
// eslint-disable-next-line @repo/internal/react/require-jsdoc
|
|
193
|
+
export default Row;
|
|
@@ -21,5 +21,5 @@ export interface CellProps {
|
|
|
21
21
|
*/
|
|
22
22
|
children?: ReactNode;
|
|
23
23
|
}
|
|
24
|
-
declare const
|
|
25
|
-
export default
|
|
24
|
+
declare const Cell: (props: CellProps & import("./internal/with-column-width").CellWithColumnWidthProps) => JSX.Element;
|
|
25
|
+
export default Cell;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
declare const
|
|
3
|
-
export default
|
|
2
|
+
declare const Header: (props: any) => JSX.Element;
|
|
3
|
+
export default Header;
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
/** @jsx jsx */
|
|
5
5
|
import React, { Component } from 'react';
|
|
6
6
|
import { jsx } from '@emotion/react';
|
|
7
|
-
declare class
|
|
7
|
+
declare class RowComponent extends Component<any, any> {
|
|
8
8
|
state: {
|
|
9
9
|
isExpanded: any;
|
|
10
10
|
};
|
|
@@ -25,6 +25,6 @@ declare class Row extends Component<any, any> {
|
|
|
25
25
|
}>;
|
|
26
26
|
render(): jsx.JSX.Element;
|
|
27
27
|
}
|
|
28
|
-
export {
|
|
29
|
-
declare const
|
|
30
|
-
export default
|
|
28
|
+
export { RowComponent as RowWithoutAnalytics };
|
|
29
|
+
declare const Row: React.ForwardRefExoticComponent<Pick<Pick<Omit<any, keyof import("@atlaskit/analytics-next").WithAnalyticsEventsProps>, string | number | symbol> & React.RefAttributes<any> & import("@atlaskit/analytics-next").WithContextProps, string | number | symbol> & React.RefAttributes<any>>;
|
|
30
|
+
export default Row;
|
|
@@ -21,5 +21,5 @@ export interface CellProps {
|
|
|
21
21
|
*/
|
|
22
22
|
children?: ReactNode;
|
|
23
23
|
}
|
|
24
|
-
declare const
|
|
25
|
-
export default
|
|
24
|
+
declare const Cell: (props: CellProps & import("./internal/with-column-width").CellWithColumnWidthProps) => JSX.Element;
|
|
25
|
+
export default Cell;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
declare const
|
|
3
|
-
export default
|
|
2
|
+
declare const Header: (props: any) => JSX.Element;
|
|
3
|
+
export default Header;
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
/** @jsx jsx */
|
|
5
5
|
import React, { Component } from 'react';
|
|
6
6
|
import { jsx } from '@emotion/react';
|
|
7
|
-
declare class
|
|
7
|
+
declare class RowComponent extends Component<any, any> {
|
|
8
8
|
state: {
|
|
9
9
|
isExpanded: any;
|
|
10
10
|
};
|
|
@@ -25,6 +25,6 @@ declare class Row extends Component<any, any> {
|
|
|
25
25
|
}>;
|
|
26
26
|
render(): jsx.JSX.Element;
|
|
27
27
|
}
|
|
28
|
-
export {
|
|
29
|
-
declare const
|
|
30
|
-
export default
|
|
28
|
+
export { RowComponent as RowWithoutAnalytics };
|
|
29
|
+
declare const Row: React.ForwardRefExoticComponent<Pick<Pick<Omit<any, keyof import("@atlaskit/analytics-next").WithAnalyticsEventsProps>, string | number | symbol> & React.RefAttributes<any> & import("@atlaskit/analytics-next").WithContextProps, string | number | symbol> & React.RefAttributes<any>>;
|
|
30
|
+
export default Row;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/table-tree",
|
|
3
|
-
"version": "9.10.
|
|
3
|
+
"version": "9.10.4",
|
|
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/"
|
|
@@ -28,11 +28,11 @@
|
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
30
|
"@atlaskit/analytics-next": "^9.3.0",
|
|
31
|
-
"@atlaskit/button": "^18.
|
|
32
|
-
"@atlaskit/icon": "^22.
|
|
31
|
+
"@atlaskit/button": "^18.4.0",
|
|
32
|
+
"@atlaskit/icon": "^22.6.0",
|
|
33
33
|
"@atlaskit/spinner": "^16.2.0",
|
|
34
34
|
"@atlaskit/theme": "^12.11.0",
|
|
35
|
-
"@atlaskit/tokens": "^1.
|
|
35
|
+
"@atlaskit/tokens": "^1.54.0",
|
|
36
36
|
"@babel/runtime": "^7.0.0",
|
|
37
37
|
"@emotion/react": "^11.7.1",
|
|
38
38
|
"lodash": "^4.17.21"
|