@atlaskit/table-tree 11.0.1 → 11.1.0
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 +9 -0
- package/dist/cjs/components/internal/chevron.js +2 -2
- package/dist/cjs/components/row.js +2 -2
- package/dist/es2019/components/internal/chevron.js +2 -2
- package/dist/es2019/components/row.js +2 -2
- package/dist/esm/components/internal/chevron.js +2 -2
- package/dist/esm/components/row.js +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# @atlaskit/table-tree
|
|
2
2
|
|
|
3
|
+
## 11.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#122917](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/122917)
|
|
8
|
+
[`676bb1889e74d`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/676bb1889e74d) -
|
|
9
|
+
Updated expand buttons to use new icons. This change is behind a feature flag and will be
|
|
10
|
+
available in a later release.
|
|
11
|
+
|
|
3
12
|
## 11.0.1
|
|
4
13
|
|
|
5
14
|
### Patch Changes
|
|
@@ -8,8 +8,8 @@ exports.default = void 0;
|
|
|
8
8
|
var _react = _interopRequireDefault(require("react"));
|
|
9
9
|
var _new = require("@atlaskit/button/new");
|
|
10
10
|
var _noop = _interopRequireDefault(require("@atlaskit/ds-lib/noop"));
|
|
11
|
-
var _chevronDown = _interopRequireDefault(require("@atlaskit/icon/
|
|
12
|
-
var _chevronRight = _interopRequireDefault(require("@atlaskit/icon/
|
|
11
|
+
var _chevronDown = _interopRequireDefault(require("@atlaskit/icon/utility/migration/chevron-down"));
|
|
12
|
+
var _chevronRight = _interopRequireDefault(require("@atlaskit/icon/utility/migration/chevron-right"));
|
|
13
13
|
var _styled = require("./styled");
|
|
14
14
|
/* eslint-disable @repo/internal/react/consistent-props-definitions */
|
|
15
15
|
/* eslint-disable react/prop-types */
|
|
@@ -69,7 +69,7 @@ function Row(_ref) {
|
|
|
69
69
|
actionSubject: 'tableTree',
|
|
70
70
|
componentName: 'row',
|
|
71
71
|
packageName: "@atlaskit/table-tree",
|
|
72
|
-
packageVersion: "11.0
|
|
72
|
+
packageVersion: "11.1.0"
|
|
73
73
|
});
|
|
74
74
|
var onCollapse = (0, _analyticsNext.usePlatformLeafEventHandler)({
|
|
75
75
|
fn: function fn(value) {
|
|
@@ -79,7 +79,7 @@ function Row(_ref) {
|
|
|
79
79
|
actionSubject: 'tableTree',
|
|
80
80
|
componentName: 'row',
|
|
81
81
|
packageName: "@atlaskit/table-tree",
|
|
82
|
-
packageVersion: "11.0
|
|
82
|
+
packageVersion: "11.1.0"
|
|
83
83
|
});
|
|
84
84
|
|
|
85
85
|
/**
|
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
import React from 'react';
|
|
4
4
|
import { IconButton } from '@atlaskit/button/new';
|
|
5
5
|
import __noop from '@atlaskit/ds-lib/noop';
|
|
6
|
-
import ChevronDownIcon from '@atlaskit/icon/
|
|
7
|
-
import ChevronRightIcon from '@atlaskit/icon/
|
|
6
|
+
import ChevronDownIcon from '@atlaskit/icon/utility/migration/chevron-down';
|
|
7
|
+
import ChevronRightIcon from '@atlaskit/icon/utility/migration/chevron-right';
|
|
8
8
|
import { ChevronContainer } from './styled';
|
|
9
9
|
/**
|
|
10
10
|
* Internal chevron component.
|
|
@@ -53,7 +53,7 @@ function Row({
|
|
|
53
53
|
actionSubject: 'tableTree',
|
|
54
54
|
componentName: 'row',
|
|
55
55
|
packageName: "@atlaskit/table-tree",
|
|
56
|
-
packageVersion: "11.0
|
|
56
|
+
packageVersion: "11.1.0"
|
|
57
57
|
});
|
|
58
58
|
const onCollapse = usePlatformLeafEventHandler({
|
|
59
59
|
fn: value => providedOnCollapse && providedOnCollapse(value),
|
|
@@ -61,7 +61,7 @@ function Row({
|
|
|
61
61
|
actionSubject: 'tableTree',
|
|
62
62
|
componentName: 'row',
|
|
63
63
|
packageName: "@atlaskit/table-tree",
|
|
64
|
-
packageVersion: "11.0
|
|
64
|
+
packageVersion: "11.1.0"
|
|
65
65
|
});
|
|
66
66
|
|
|
67
67
|
/**
|
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
import React from 'react';
|
|
4
4
|
import { IconButton } from '@atlaskit/button/new';
|
|
5
5
|
import __noop from '@atlaskit/ds-lib/noop';
|
|
6
|
-
import ChevronDownIcon from '@atlaskit/icon/
|
|
7
|
-
import ChevronRightIcon from '@atlaskit/icon/
|
|
6
|
+
import ChevronDownIcon from '@atlaskit/icon/utility/migration/chevron-down';
|
|
7
|
+
import ChevronRightIcon from '@atlaskit/icon/utility/migration/chevron-right';
|
|
8
8
|
import { ChevronContainer } from './styled';
|
|
9
9
|
/**
|
|
10
10
|
* Internal chevron component.
|
|
@@ -58,7 +58,7 @@ function Row(_ref) {
|
|
|
58
58
|
actionSubject: 'tableTree',
|
|
59
59
|
componentName: 'row',
|
|
60
60
|
packageName: "@atlaskit/table-tree",
|
|
61
|
-
packageVersion: "11.0
|
|
61
|
+
packageVersion: "11.1.0"
|
|
62
62
|
});
|
|
63
63
|
var onCollapse = usePlatformLeafEventHandler({
|
|
64
64
|
fn: function fn(value) {
|
|
@@ -68,7 +68,7 @@ function Row(_ref) {
|
|
|
68
68
|
actionSubject: 'tableTree',
|
|
69
69
|
componentName: 'row',
|
|
70
70
|
packageName: "@atlaskit/table-tree",
|
|
71
|
-
packageVersion: "11.0
|
|
71
|
+
packageVersion: "11.1.0"
|
|
72
72
|
});
|
|
73
73
|
|
|
74
74
|
/**
|
package/package.json
CHANGED