@atlaskit/table-tree 9.6.0 → 9.6.1

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,11 @@
1
1
  # @atlaskit/table-tree
2
2
 
3
+ ## 9.6.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [`fbce2074415`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fbce2074415) - Fix issues with inappropriate roles and `aria-controls` application.
8
+
3
9
  ## 9.6.0
4
10
 
5
11
  ### Minor Changes
@@ -40,14 +40,19 @@ var Cell = /*#__PURE__*/function (_Component) {
40
40
  width = _this$props.width,
41
41
  className = _this$props.className,
42
42
  props = (0, _objectWithoutProperties2.default)(_this$props, _excluded);
43
- return /*#__PURE__*/_react.default.createElement(_commonCell.default, (0, _extends2.default)({
44
- role: "gridcell",
45
- indent: indentLevel ? "calc(".concat(_styled.indentBase, " * ").concat(indentLevel, ")") : undefined,
46
- width: width,
47
- className: className
48
- }, props), /*#__PURE__*/_react.default.createElement(_overflowContainer.default, {
49
- isSingleLine: singleLine
50
- }, children));
43
+ return (
44
+ /*#__PURE__*/
45
+ // TODO: Determine whether proper `td` elements can be used instead of
46
+ // roles (DSP-11588)
47
+ _react.default.createElement(_commonCell.default, (0, _extends2.default)({
48
+ role: "gridcell",
49
+ indent: indentLevel ? "calc(".concat(_styled.indentBase, " * ").concat(indentLevel, ")") : undefined,
50
+ width: width,
51
+ className: className
52
+ }, props), /*#__PURE__*/_react.default.createElement(_overflowContainer.default, {
53
+ isSingleLine: singleLine
54
+ }, children))
55
+ );
51
56
  }
52
57
  }]);
53
58
  return Cell;
@@ -36,13 +36,17 @@ var Header = /*#__PURE__*/function (_Component) {
36
36
  key: "render",
37
37
  value: function render() {
38
38
  var props = this.props;
39
- return (0, _react2.jsx)(_commonCell.default, (0, _extends2.default)({
40
- css: headerStyles,
41
- role: "columnheader",
42
- style: {
43
- width: props.width
44
- }
45
- }, props), props.children);
39
+ return (
40
+ // TODO: Determine whether proper `th` elements can be used instead of
41
+ // roles (DSP-11588)
42
+ (0, _react2.jsx)(_commonCell.default, (0, _extends2.default)({
43
+ css: headerStyles,
44
+ role: "columnheader",
45
+ style: {
46
+ width: props.width
47
+ }
48
+ }, props), props.children)
49
+ );
46
50
  }
47
51
  }]);
48
52
  return Header;
@@ -28,19 +28,23 @@ var Headers = /*#__PURE__*/function (_Component) {
28
28
  (0, _createClass2.default)(Headers, [{
29
29
  key: "render",
30
30
  value: function render() {
31
- return (0, _react2.jsx)("div", {
32
- css: containerStyles,
33
- role: "row"
34
- }, _react.Children.map(this.props.children, function (header, index) {
35
- return (
36
- /*#__PURE__*/
37
- // eslint-disable-next-line react/no-array-index-key
38
- (0, _react.cloneElement)(header, {
39
- key: index,
40
- columnIndex: index
41
- })
42
- );
43
- }));
31
+ return (
32
+ // TODO: Determine whether proper `tr` elements can be used instead of
33
+ // roles (DSP-11588)
34
+ (0, _react2.jsx)("div", {
35
+ css: containerStyles,
36
+ role: "row"
37
+ }, _react.Children.map(this.props.children, function (header, index) {
38
+ return (
39
+ /*#__PURE__*/
40
+ // eslint-disable-next-line react/no-array-index-key
41
+ (0, _react.cloneElement)(header, {
42
+ key: index,
43
+ columnIndex: index
44
+ })
45
+ );
46
+ }))
47
+ );
44
48
  }
45
49
  }]);
46
50
  return Headers;
@@ -6,7 +6,6 @@ Object.defineProperty(exports, "__esModule", {
6
6
  value: true
7
7
  });
8
8
  exports.default = void 0;
9
- var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
10
9
  var _classCallCheck2 = _interopRequireDefault(require("@babel/runtime/helpers/classCallCheck"));
11
10
  var _createClass2 = _interopRequireDefault(require("@babel/runtime/helpers/createClass"));
12
11
  var _assertThisInitialized2 = _interopRequireDefault(require("@babel/runtime/helpers/assertThisInitialized"));
@@ -78,9 +77,7 @@ var Items = /*#__PURE__*/function (_Component) {
78
77
  'aria-busy': true,
79
78
  'aria-live': 'polite'
80
79
  } : {};
81
- return /*#__PURE__*/_react.default.createElement("div", (0, _extends2.default)({
82
- role: "rowgroup"
83
- }, busyAttrs), isLoaderShown ? this.renderLoader() : this.renderItems());
80
+ return /*#__PURE__*/_react.default.createElement("div", busyAttrs, isLoaderShown ? this.renderLoader() : this.renderItems());
84
81
  }
85
82
  }], [{
86
83
  key: "getDerivedStateFromProps",
@@ -34,10 +34,10 @@ var TreeRowContainer = function TreeRowContainer(props) {
34
34
  exports.TreeRowContainer = TreeRowContainer;
35
35
  var commonChevronContainerStyles = (0, _react.css)({
36
36
  display: 'flex',
37
- // eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage-spacing
37
+ // eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage
38
38
  marginLeft: "calc(".concat(indentBase, " * -1)"),
39
39
  position: 'absolute',
40
- // eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage-spacing
40
+ // eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage
41
41
  top: 7,
42
42
  alignItems: 'center'
43
43
  });
@@ -56,7 +56,7 @@ var ChevronContainer = function ChevronContainer(props
56
56
  exports.ChevronContainer = ChevronContainer;
57
57
  var chevronIconContainerStyles = (0, _react.css)({
58
58
  position: 'relative',
59
- // eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage-spacing
59
+ // eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage
60
60
  top: 1
61
61
  });
62
62
 
@@ -75,11 +75,11 @@ var ChevronIconContainer = function ChevronIconContainer(props
75
75
  exports.ChevronIconContainer = ChevronIconContainer;
76
76
  var loadingItemContainerStyles = (0, _react.css)({
77
77
  width: '100%',
78
- // eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage-spacing
78
+ // eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage
79
79
  paddingTop: 5
80
80
  });
81
81
  var paddingLeftStyles = (0, _react.css)({
82
- // eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage-spacing
82
+ // eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage
83
83
  paddingLeft: '50%'
84
84
  });
85
85
  /**
@@ -28,7 +28,7 @@ var treeRowClickableStyles = (0, _react2.css)({
28
28
  cursor: 'pointer'
29
29
  });
30
30
  var packageName = "@atlaskit/table-tree";
31
- var packageVersion = "9.6.0";
31
+ var packageVersion = "9.6.1";
32
32
  var Row = /*#__PURE__*/function (_Component) {
33
33
  (0, _inherits2.default)(Row, _Component);
34
34
  var _super = _createSuper(Row);
@@ -128,7 +128,7 @@ var Row = /*#__PURE__*/function (_Component) {
128
128
  extendedLabel: extendedLabel,
129
129
  isExpanded: isExpanded,
130
130
  onExpandToggle: this.onExpandToggle,
131
- ariaControls: (0, _toItemId.default)(props.itemId),
131
+ ariaControls: isExpanded ? (0, _toItemId.default)(props.itemId) : undefined,
132
132
  rowId: props.itemId
133
133
  })].concat(cellContent);
134
134
  }
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/table-tree",
3
- "version": "9.6.0",
3
+ "version": "9.6.1",
4
4
  "sideEffects": false
5
5
  }
@@ -14,14 +14,19 @@ class Cell extends Component {
14
14
  className,
15
15
  ...props
16
16
  } = this.props;
17
- return /*#__PURE__*/React.createElement(CommonCell, _extends({
18
- role: "gridcell",
19
- indent: indentLevel ? `calc(${indentBase} * ${indentLevel})` : undefined,
20
- width: width,
21
- className: className
22
- }, props), /*#__PURE__*/React.createElement(OverflowContainer, {
23
- isSingleLine: singleLine
24
- }, children));
17
+ return (
18
+ /*#__PURE__*/
19
+ // TODO: Determine whether proper `td` elements can be used instead of
20
+ // roles (DSP-11588)
21
+ React.createElement(CommonCell, _extends({
22
+ role: "gridcell",
23
+ indent: indentLevel ? `calc(${indentBase} * ${indentLevel})` : undefined,
24
+ width: width,
25
+ className: className
26
+ }, props), /*#__PURE__*/React.createElement(OverflowContainer, {
27
+ isSingleLine: singleLine
28
+ }, children))
29
+ );
25
30
  }
26
31
  }
27
32
  export default withColumnWidth(Cell);
@@ -17,13 +17,17 @@ class Header extends Component {
17
17
  const {
18
18
  props
19
19
  } = this;
20
- return jsx(ColumnCell, _extends({
21
- css: headerStyles,
22
- role: "columnheader",
23
- style: {
24
- width: props.width
25
- }
26
- }, props), props.children);
20
+ return (
21
+ // TODO: Determine whether proper `th` elements can be used instead of
22
+ // roles (DSP-11588)
23
+ jsx(ColumnCell, _extends({
24
+ css: headerStyles,
25
+ role: "columnheader",
26
+ style: {
27
+ width: props.width
28
+ }
29
+ }, props), props.children)
30
+ );
27
31
  }
28
32
  }
29
33
  export default withColumnWidth(Header);
@@ -8,15 +8,19 @@ const containerStyles = css({
8
8
  });
9
9
  export default class Headers extends Component {
10
10
  render() {
11
- return jsx("div", {
12
- css: containerStyles,
13
- role: "row"
14
- }, Children.map(this.props.children, (header, index) =>
15
- /*#__PURE__*/
16
- // eslint-disable-next-line react/no-array-index-key
17
- cloneElement(header, {
18
- key: index,
19
- columnIndex: index
20
- })));
11
+ return (
12
+ // TODO: Determine whether proper `tr` elements can be used instead of
13
+ // roles (DSP-11588)
14
+ jsx("div", {
15
+ css: containerStyles,
16
+ role: "row"
17
+ }, Children.map(this.props.children, (header, index) =>
18
+ /*#__PURE__*/
19
+ // eslint-disable-next-line react/no-array-index-key
20
+ cloneElement(header, {
21
+ key: index,
22
+ columnIndex: index
23
+ })))
24
+ );
21
25
  }
22
26
  }
@@ -1,4 +1,3 @@
1
- import _extends from "@babel/runtime/helpers/extends";
2
1
  import _defineProperty from "@babel/runtime/helpers/defineProperty";
3
2
  /* eslint-disable react/prop-types */
4
3
  import React, { Component } from 'react';
@@ -56,9 +55,7 @@ export default class Items extends Component {
56
55
  'aria-busy': true,
57
56
  'aria-live': 'polite'
58
57
  } : {};
59
- return /*#__PURE__*/React.createElement("div", _extends({
60
- role: "rowgroup"
61
- }, busyAttrs), isLoaderShown ? this.renderLoader() : this.renderItems());
58
+ return /*#__PURE__*/React.createElement("div", busyAttrs, isLoaderShown ? this.renderLoader() : this.renderItems());
62
59
  }
63
60
  }
64
61
  _defineProperty(Items, "defaultProps", {
@@ -20,10 +20,10 @@ jsx("div", _extends({
20
20
  }, props));
21
21
  const commonChevronContainerStyles = css({
22
22
  display: 'flex',
23
- // eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage-spacing
23
+ // eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage
24
24
  marginLeft: `calc(${indentBase} * -1)`,
25
25
  position: 'absolute',
26
- // eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage-spacing
26
+ // eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage
27
27
  top: 7,
28
28
  alignItems: 'center'
29
29
  });
@@ -39,7 +39,7 @@ export const ChevronContainer = (props
39
39
  }));
40
40
  const chevronIconContainerStyles = css({
41
41
  position: 'relative',
42
- // eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage-spacing
42
+ // eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage
43
43
  top: 1
44
44
  });
45
45
 
@@ -55,11 +55,11 @@ export const ChevronIconContainer = (props
55
55
  }));
56
56
  const loadingItemContainerStyles = css({
57
57
  width: '100%',
58
- // eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage-spacing
58
+ // eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage
59
59
  paddingTop: 5
60
60
  });
61
61
  const paddingLeftStyles = css({
62
- // eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage-spacing
62
+ // eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage
63
63
  paddingLeft: '50%'
64
64
  });
65
65
  /**
@@ -12,7 +12,7 @@ const treeRowClickableStyles = css({
12
12
  cursor: 'pointer'
13
13
  });
14
14
  const packageName = "@atlaskit/table-tree";
15
- const packageVersion = "9.6.0";
15
+ const packageVersion = "9.6.1";
16
16
  class Row extends Component {
17
17
  constructor(...args) {
18
18
  super(...args);
@@ -105,7 +105,7 @@ class Row extends Component {
105
105
  extendedLabel: extendedLabel,
106
106
  isExpanded: isExpanded,
107
107
  onExpandToggle: this.onExpandToggle,
108
- ariaControls: toItemId(props.itemId),
108
+ ariaControls: isExpanded ? toItemId(props.itemId) : undefined,
109
109
  rowId: props.itemId
110
110
  })].concat(cellContent);
111
111
  }
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/table-tree",
3
- "version": "9.6.0",
3
+ "version": "9.6.1",
4
4
  "sideEffects": false
5
5
  }
@@ -30,14 +30,19 @@ var Cell = /*#__PURE__*/function (_Component) {
30
30
  width = _this$props.width,
31
31
  className = _this$props.className,
32
32
  props = _objectWithoutProperties(_this$props, _excluded);
33
- return /*#__PURE__*/React.createElement(CommonCell, _extends({
34
- role: "gridcell",
35
- indent: indentLevel ? "calc(".concat(indentBase, " * ").concat(indentLevel, ")") : undefined,
36
- width: width,
37
- className: className
38
- }, props), /*#__PURE__*/React.createElement(OverflowContainer, {
39
- isSingleLine: singleLine
40
- }, children));
33
+ return (
34
+ /*#__PURE__*/
35
+ // TODO: Determine whether proper `td` elements can be used instead of
36
+ // roles (DSP-11588)
37
+ React.createElement(CommonCell, _extends({
38
+ role: "gridcell",
39
+ indent: indentLevel ? "calc(".concat(indentBase, " * ").concat(indentLevel, ")") : undefined,
40
+ width: width,
41
+ className: className
42
+ }, props), /*#__PURE__*/React.createElement(OverflowContainer, {
43
+ isSingleLine: singleLine
44
+ }, children))
45
+ );
41
46
  }
42
47
  }]);
43
48
  return Cell;
@@ -30,13 +30,17 @@ var Header = /*#__PURE__*/function (_Component) {
30
30
  key: "render",
31
31
  value: function render() {
32
32
  var props = this.props;
33
- return jsx(ColumnCell, _extends({
34
- css: headerStyles,
35
- role: "columnheader",
36
- style: {
37
- width: props.width
38
- }
39
- }, props), props.children);
33
+ return (
34
+ // TODO: Determine whether proper `th` elements can be used instead of
35
+ // roles (DSP-11588)
36
+ jsx(ColumnCell, _extends({
37
+ css: headerStyles,
38
+ role: "columnheader",
39
+ style: {
40
+ width: props.width
41
+ }
42
+ }, props), props.children)
43
+ );
40
44
  }
41
45
  }]);
42
46
  return Header;
@@ -23,19 +23,23 @@ var Headers = /*#__PURE__*/function (_Component) {
23
23
  _createClass(Headers, [{
24
24
  key: "render",
25
25
  value: function render() {
26
- return jsx("div", {
27
- css: containerStyles,
28
- role: "row"
29
- }, Children.map(this.props.children, function (header, index) {
30
- return (
31
- /*#__PURE__*/
32
- // eslint-disable-next-line react/no-array-index-key
33
- cloneElement(header, {
34
- key: index,
35
- columnIndex: index
36
- })
37
- );
38
- }));
26
+ return (
27
+ // TODO: Determine whether proper `tr` elements can be used instead of
28
+ // roles (DSP-11588)
29
+ jsx("div", {
30
+ css: containerStyles,
31
+ role: "row"
32
+ }, Children.map(this.props.children, function (header, index) {
33
+ return (
34
+ /*#__PURE__*/
35
+ // eslint-disable-next-line react/no-array-index-key
36
+ cloneElement(header, {
37
+ key: index,
38
+ columnIndex: index
39
+ })
40
+ );
41
+ }))
42
+ );
39
43
  }
40
44
  }]);
41
45
  return Headers;
@@ -1,4 +1,3 @@
1
- import _extends from "@babel/runtime/helpers/extends";
2
1
  import _classCallCheck from "@babel/runtime/helpers/classCallCheck";
3
2
  import _createClass from "@babel/runtime/helpers/createClass";
4
3
  import _assertThisInitialized from "@babel/runtime/helpers/assertThisInitialized";
@@ -69,9 +68,7 @@ var Items = /*#__PURE__*/function (_Component) {
69
68
  'aria-busy': true,
70
69
  'aria-live': 'polite'
71
70
  } : {};
72
- return /*#__PURE__*/React.createElement("div", _extends({
73
- role: "rowgroup"
74
- }, busyAttrs), isLoaderShown ? this.renderLoader() : this.renderItems());
71
+ return /*#__PURE__*/React.createElement("div", busyAttrs, isLoaderShown ? this.renderLoader() : this.renderItems());
75
72
  }
76
73
  }], [{
77
74
  key: "getDerivedStateFromProps",
@@ -25,10 +25,10 @@ export var TreeRowContainer = function TreeRowContainer(props) {
25
25
  };
26
26
  var commonChevronContainerStyles = css({
27
27
  display: 'flex',
28
- // eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage-spacing
28
+ // eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage
29
29
  marginLeft: "calc(".concat(indentBase, " * -1)"),
30
30
  position: 'absolute',
31
- // eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage-spacing
31
+ // eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage
32
32
  top: 7,
33
33
  alignItems: 'center'
34
34
  });
@@ -46,7 +46,7 @@ export var ChevronContainer = function ChevronContainer(props
46
46
  };
47
47
  var chevronIconContainerStyles = css({
48
48
  position: 'relative',
49
- // eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage-spacing
49
+ // eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage
50
50
  top: 1
51
51
  });
52
52
 
@@ -64,11 +64,11 @@ export var ChevronIconContainer = function ChevronIconContainer(props
64
64
  };
65
65
  var loadingItemContainerStyles = css({
66
66
  width: '100%',
67
- // eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage-spacing
67
+ // eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage
68
68
  paddingTop: 5
69
69
  });
70
70
  var paddingLeftStyles = css({
71
- // eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage-spacing
71
+ // eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage
72
72
  paddingLeft: '50%'
73
73
  });
74
74
  /**
@@ -20,7 +20,7 @@ var treeRowClickableStyles = css({
20
20
  cursor: 'pointer'
21
21
  });
22
22
  var packageName = "@atlaskit/table-tree";
23
- var packageVersion = "9.6.0";
23
+ var packageVersion = "9.6.1";
24
24
  var Row = /*#__PURE__*/function (_Component) {
25
25
  _inherits(Row, _Component);
26
26
  var _super = _createSuper(Row);
@@ -120,7 +120,7 @@ var Row = /*#__PURE__*/function (_Component) {
120
120
  extendedLabel: extendedLabel,
121
121
  isExpanded: isExpanded,
122
122
  onExpandToggle: this.onExpandToggle,
123
- ariaControls: toItemId(props.itemId),
123
+ ariaControls: isExpanded ? toItemId(props.itemId) : undefined,
124
124
  rowId: props.itemId
125
125
  })].concat(cellContent);
126
126
  }
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/table-tree",
3
- "version": "9.6.0",
3
+ "version": "9.6.1",
4
4
  "sideEffects": false
5
5
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/table-tree",
3
- "version": "9.6.0",
3
+ "version": "9.6.1",
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/"
@@ -12,17 +12,8 @@
12
12
  "module": "dist/esm/index.js",
13
13
  "module:es2019": "dist/es2019/index.js",
14
14
  "types": "dist/types/index.d.ts",
15
- "typesVersions": {
16
- ">=4.5 <4.9": {
17
- "*": [
18
- "dist/types-ts4.5/*",
19
- "dist/types-ts4.5/index.d.ts"
20
- ]
21
- }
22
- },
23
15
  "sideEffects": false,
24
16
  "atlaskit:src": "src/index.tsx",
25
- "homepage": "https://atlassian.design/components/table-tree/",
26
17
  "atlassian": {
27
18
  "team": "Design System Team",
28
19
  "releaseModel": "continuous",
@@ -31,16 +22,13 @@
31
22
  "category": "Components"
32
23
  }
33
24
  },
34
- "af:exports": {
35
- ".": "./src/index.tsx"
36
- },
37
25
  "dependencies": {
38
26
  "@atlaskit/analytics-next": "^9.1.0",
39
27
  "@atlaskit/button": "^16.8.0",
40
28
  "@atlaskit/icon": "^21.12.0",
41
29
  "@atlaskit/spinner": "^15.5.0",
42
30
  "@atlaskit/theme": "^12.5.0",
43
- "@atlaskit/tokens": "^1.10.0",
31
+ "@atlaskit/tokens": "^1.13.0",
44
32
  "@babel/runtime": "^7.0.0",
45
33
  "@emotion/react": "^11.7.1",
46
34
  "lodash": "^4.17.21"
@@ -49,11 +37,9 @@
49
37
  "react": "^16.8.0"
50
38
  },
51
39
  "devDependencies": {
52
- "@atlaskit/docs": "*",
40
+ "@af/accessibility-testing": "*",
41
+ "@af/visual-regression": "*",
53
42
  "@atlaskit/ds-lib": "^2.2.0",
54
- "@atlaskit/empty-state": "^7.6.0",
55
- "@atlaskit/section-message": "^6.4.0",
56
- "@atlaskit/select": "^16.5.0",
57
43
  "@atlaskit/ssr": "*",
58
44
  "@atlaskit/visual-regression": "*",
59
45
  "@atlassian/atlassian-frontend-prettier-config-1.0.1": "npm:@atlassian/atlassian-frontend-prettier-config@1.0.1",
@@ -92,5 +78,17 @@
92
78
  "deprecation": "no-deprecated-imports"
93
79
  }
94
80
  },
81
+ "typesVersions": {
82
+ ">=4.5 <4.9": {
83
+ "*": [
84
+ "dist/types-ts4.5/*",
85
+ "dist/types-ts4.5/index.d.ts"
86
+ ]
87
+ }
88
+ },
89
+ "homepage": "https://atlassian.design/components/table-tree/",
90
+ "af:exports": {
91
+ ".": "./src/index.tsx"
92
+ },
95
93
  "prettier": "@atlassian/atlassian-frontend-prettier-config-1.0.1"
96
94
  }