@atlaskit/table-tree 9.10.1 → 9.10.3
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/header.js +2 -4
- package/dist/cjs/components/internal/common-cell.js +1 -1
- package/dist/cjs/components/row.js +1 -1
- package/dist/es2019/components/header.js +2 -4
- package/dist/es2019/components/internal/common-cell.js +1 -1
- package/dist/es2019/components/row.js +1 -1
- package/dist/esm/components/header.js +2 -4
- package/dist/esm/components/internal/common-cell.js +1 -1
- package/dist/esm/components/row.js +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @atlaskit/table-tree
|
|
2
2
|
|
|
3
|
+
## 9.10.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#116402](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/116402)
|
|
8
|
+
[`2d5c40095cc96`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/2d5c40095cc96) -
|
|
9
|
+
[ux] Internal changes to typography, minor visual change to table header letter spacing.
|
|
10
|
+
|
|
11
|
+
## 9.10.2
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- [#116025](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/116025)
|
|
16
|
+
[`cd506a937e44f`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/cd506a937e44f) -
|
|
17
|
+
Internal change to how typography is applied. There should be no visual change.
|
|
18
|
+
|
|
3
19
|
## 9.10.1
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
|
@@ -22,10 +22,8 @@ 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: "var(--ds-font-lineHeight-200, 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
28
|
var Header = /*#__PURE__*/function (_Component) {
|
|
31
29
|
(0, _inherits2.default)(Header, _Component);
|
|
@@ -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: "var(--ds-font-lineHeight-200, 20px)",
|
|
30
30
|
wordBreak: 'break-word'
|
|
31
31
|
});
|
|
32
32
|
/**
|
|
@@ -30,7 +30,7 @@ var treeRowClickableStyles = (0, _react2.css)({
|
|
|
30
30
|
cursor: 'pointer'
|
|
31
31
|
});
|
|
32
32
|
var packageName = "@atlaskit/table-tree";
|
|
33
|
-
var packageVersion = "9.10.
|
|
33
|
+
var packageVersion = "9.10.3";
|
|
34
34
|
var Row = exports.RowWithoutAnalytics = /*#__PURE__*/function (_Component) {
|
|
35
35
|
(0, _inherits2.default)(Row, _Component);
|
|
36
36
|
var _super = _createSuper(Row);
|
|
@@ -12,10 +12,8 @@ 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: "var(--ds-font-lineHeight-200, 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
18
|
class Header extends Component {
|
|
21
19
|
render() {
|
|
@@ -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: "var(--ds-font-lineHeight-200, 20px)",
|
|
22
22
|
wordBreak: 'break-word'
|
|
23
23
|
});
|
|
24
24
|
/**
|
|
@@ -17,7 +17,7 @@ const treeRowClickableStyles = css({
|
|
|
17
17
|
cursor: 'pointer'
|
|
18
18
|
});
|
|
19
19
|
const packageName = "@atlaskit/table-tree";
|
|
20
|
-
const packageVersion = "9.10.
|
|
20
|
+
const packageVersion = "9.10.3";
|
|
21
21
|
class Row extends Component {
|
|
22
22
|
constructor(...args) {
|
|
23
23
|
super(...args);
|
|
@@ -19,10 +19,8 @@ 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: "var(--ds-font-lineHeight-200, 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
25
|
var Header = /*#__PURE__*/function (_Component) {
|
|
28
26
|
_inherits(Header, _Component);
|
|
@@ -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: "var(--ds-font-lineHeight-200, 20px)",
|
|
24
24
|
wordBreak: 'break-word'
|
|
25
25
|
});
|
|
26
26
|
/**
|
|
@@ -25,7 +25,7 @@ var treeRowClickableStyles = css({
|
|
|
25
25
|
cursor: 'pointer'
|
|
26
26
|
});
|
|
27
27
|
var packageName = "@atlaskit/table-tree";
|
|
28
|
-
var packageVersion = "9.10.
|
|
28
|
+
var packageVersion = "9.10.3";
|
|
29
29
|
var Row = /*#__PURE__*/function (_Component) {
|
|
30
30
|
_inherits(Row, _Component);
|
|
31
31
|
var _super = _createSuper(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.3",
|
|
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/"
|
|
@@ -29,10 +29,10 @@
|
|
|
29
29
|
"dependencies": {
|
|
30
30
|
"@atlaskit/analytics-next": "^9.3.0",
|
|
31
31
|
"@atlaskit/button": "^18.0.0",
|
|
32
|
-
"@atlaskit/icon": "^22.
|
|
32
|
+
"@atlaskit/icon": "^22.5.0",
|
|
33
33
|
"@atlaskit/spinner": "^16.2.0",
|
|
34
34
|
"@atlaskit/theme": "^12.11.0",
|
|
35
|
-
"@atlaskit/tokens": "^1.
|
|
35
|
+
"@atlaskit/tokens": "^1.53.0",
|
|
36
36
|
"@babel/runtime": "^7.0.0",
|
|
37
37
|
"@emotion/react": "^11.7.1",
|
|
38
38
|
"lodash": "^4.17.21"
|