@atlaskit/table 0.13.2 → 0.14.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 +14 -0
- package/dist/cjs/ui/tbody.compiled.css +0 -5
- package/dist/cjs/ui/tbody.js +1 -1
- package/dist/es2019/ui/tbody.compiled.css +0 -5
- package/dist/es2019/ui/tbody.js +1 -1
- package/dist/esm/ui/tbody.compiled.css +0 -5
- package/dist/esm/ui/tbody.js +1 -1
- package/dist/types/hooks/use-expand.d.ts +1 -1
- package/dist/types-ts4.5/hooks/use-expand.d.ts +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @atlaskit/table
|
|
2
2
|
|
|
3
|
+
## 0.14.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`dea40f5cfac4f`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/dea40f5cfac4f) -
|
|
8
|
+
Fixed an issue where the table's bottom border rendered above other page content in Safari, and
|
|
9
|
+
didn't render correctly in other browsers.
|
|
10
|
+
|
|
11
|
+
## 0.13.3
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Updated dependencies
|
|
16
|
+
|
|
3
17
|
## 0.13.2
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
package/dist/cjs/ui/tbody.js
CHANGED
|
@@ -19,6 +19,6 @@ var bodyStyles = null;
|
|
|
19
19
|
var TBody = exports.TBody = function TBody(_ref) {
|
|
20
20
|
var children = _ref.children;
|
|
21
21
|
return /*#__PURE__*/React.createElement("tbody", {
|
|
22
|
-
className: (0, _runtime.ax)(["_19itglyw _kqswh2mm
|
|
22
|
+
className: (0, _runtime.ax)(["_19itglyw _kqswh2mm"])
|
|
23
23
|
}, children);
|
|
24
24
|
};
|
package/dist/es2019/ui/tbody.js
CHANGED
|
@@ -11,5 +11,5 @@ const bodyStyles = null;
|
|
|
11
11
|
export const TBody = ({
|
|
12
12
|
children
|
|
13
13
|
}) => /*#__PURE__*/React.createElement("tbody", {
|
|
14
|
-
className: ax(["_19itglyw _kqswh2mm
|
|
14
|
+
className: ax(["_19itglyw _kqswh2mm"])
|
|
15
15
|
}, children);
|
package/dist/esm/ui/tbody.js
CHANGED
|
@@ -11,6 +11,6 @@ var bodyStyles = null;
|
|
|
11
11
|
export var TBody = function TBody(_ref) {
|
|
12
12
|
var children = _ref.children;
|
|
13
13
|
return /*#__PURE__*/React.createElement("tbody", {
|
|
14
|
-
className: ax(["_19itglyw _kqswh2mm
|
|
14
|
+
className: ax(["_19itglyw _kqswh2mm"])
|
|
15
15
|
}, children);
|
|
16
16
|
};
|
|
@@ -8,7 +8,7 @@ type ExpandContextState = {
|
|
|
8
8
|
*
|
|
9
9
|
* An expand context provider.
|
|
10
10
|
*/
|
|
11
|
-
export declare const ExpandContextProvider: (
|
|
11
|
+
export declare const ExpandContextProvider: (props: {
|
|
12
12
|
children: React.ReactNode;
|
|
13
13
|
isExpanded?: boolean;
|
|
14
14
|
isDefaultExpanded?: boolean;
|
|
@@ -8,7 +8,7 @@ type ExpandContextState = {
|
|
|
8
8
|
*
|
|
9
9
|
* An expand context provider.
|
|
10
10
|
*/
|
|
11
|
-
export declare const ExpandContextProvider: (
|
|
11
|
+
export declare const ExpandContextProvider: (props: {
|
|
12
12
|
children: React.ReactNode;
|
|
13
13
|
isExpanded?: boolean;
|
|
14
14
|
isDefaultExpanded?: boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/table",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.14.0",
|
|
4
4
|
"description": "A table is used to display data.",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -42,8 +42,8 @@
|
|
|
42
42
|
"@atlaskit/css": "^0.19.0",
|
|
43
43
|
"@atlaskit/ds-lib": "^5.3.0",
|
|
44
44
|
"@atlaskit/icon": "^30.0.0",
|
|
45
|
-
"@atlaskit/primitives": "^
|
|
46
|
-
"@atlaskit/tokens": "^
|
|
45
|
+
"@atlaskit/primitives": "^18.0.0",
|
|
46
|
+
"@atlaskit/tokens": "^11.0.0",
|
|
47
47
|
"@atlaskit/tooltip": "^20.14.0",
|
|
48
48
|
"@atlaskit/visually-hidden": "^3.0.0",
|
|
49
49
|
"@babel/runtime": "^7.0.0",
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
"@atlaskit/date": "^2.0.0",
|
|
61
61
|
"@atlaskit/docs": "^11.3.0",
|
|
62
62
|
"@atlaskit/dynamic-table": "^18.3.0",
|
|
63
|
-
"@atlaskit/lozenge": "^13.
|
|
63
|
+
"@atlaskit/lozenge": "^13.4.0",
|
|
64
64
|
"@atlaskit/section-message": "^8.12.0",
|
|
65
65
|
"@atlassian/ssr-tests": "workspace:^",
|
|
66
66
|
"@testing-library/react": "^16.3.0",
|