@atlaskit/table-tree 12.2.20 → 12.2.22
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 +12 -0
- package/dist/cjs/components/header.js +1 -1
- package/dist/cjs/components/headers.js +1 -1
- package/dist/cjs/components/internal/common-cell.js +1 -1
- package/dist/cjs/components/internal/overflow-container.js +1 -1
- package/dist/cjs/components/internal/styled.js +1 -1
- package/dist/cjs/components/row.js +1 -1
- package/dist/es2019/components/header.js +1 -1
- package/dist/es2019/components/headers.js +1 -1
- package/dist/es2019/components/internal/common-cell.js +1 -1
- package/dist/es2019/components/internal/overflow-container.js +1 -1
- package/dist/es2019/components/internal/styled.js +1 -1
- package/dist/es2019/components/row.js +1 -1
- package/dist/esm/components/header.js +1 -1
- package/dist/esm/components/headers.js +1 -1
- package/dist/esm/components/internal/common-cell.js +1 -1
- package/dist/esm/components/internal/overflow-container.js +1 -1
- package/dist/esm/components/internal/styled.js +1 -1
- package/dist/esm/components/row.js +1 -1
- package/dist/types/utils/table-tree-data-helper.d.ts +1 -1
- package/dist/types-ts4.5/utils/table-tree-data-helper.d.ts +1 -1
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* overflow-container.tsx generated by @compiled/babel-plugin v0.
|
|
1
|
+
/* overflow-container.tsx generated by @compiled/babel-plugin v0.39.1 */
|
|
2
2
|
import _extends from "@babel/runtime/helpers/extends";
|
|
3
3
|
import "./overflow-container.compiled.css";
|
|
4
4
|
import * as React from 'react';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* common-cell.tsx generated by @compiled/babel-plugin v0.
|
|
1
|
+
/* common-cell.tsx generated by @compiled/babel-plugin v0.39.1 */
|
|
2
2
|
import _extends from "@babel/runtime/helpers/extends";
|
|
3
3
|
import _defineProperty from "@babel/runtime/helpers/defineProperty";
|
|
4
4
|
import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* overflow-container.tsx generated by @compiled/babel-plugin v0.
|
|
1
|
+
/* overflow-container.tsx generated by @compiled/babel-plugin v0.39.1 */
|
|
2
2
|
import _extends from "@babel/runtime/helpers/extends";
|
|
3
3
|
import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
|
|
4
4
|
var _excluded = ["isSingleLine"];
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* styled.tsx generated by @compiled/babel-plugin v0.
|
|
1
|
+
/* styled.tsx generated by @compiled/babel-plugin v0.39.1 */
|
|
2
2
|
import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
|
|
3
3
|
import _extends from "@babel/runtime/helpers/extends";
|
|
4
4
|
var _excluded = ["isRoot"];
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
export default class TableTreeDataHelper<T extends any = any> {
|
|
18
18
|
key: keyof T;
|
|
19
19
|
keysCache: any;
|
|
20
|
-
constructor({ key }?: {
|
|
20
|
+
constructor({ key, }?: {
|
|
21
21
|
key?: keyof T | undefined;
|
|
22
22
|
});
|
|
23
23
|
updateItems(items: T[], allItems?: T[], parentItem?: T | null): T[];
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
export default class TableTreeDataHelper<T extends any = any> {
|
|
18
18
|
key: keyof T;
|
|
19
19
|
keysCache: any;
|
|
20
|
-
constructor({ key }?: {
|
|
20
|
+
constructor({ key, }?: {
|
|
21
21
|
key?: keyof T | undefined;
|
|
22
22
|
});
|
|
23
23
|
updateItems(items: T[], allItems?: T[], parentItem?: T | null): T[];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/table-tree",
|
|
3
|
-
"version": "12.2.
|
|
3
|
+
"version": "12.2.22",
|
|
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/"
|
|
@@ -25,14 +25,14 @@
|
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
27
|
"@atlaskit/analytics-next": "^11.1.0",
|
|
28
|
-
"@atlaskit/button": "^23.
|
|
29
|
-
"@atlaskit/ds-lib": "^
|
|
28
|
+
"@atlaskit/button": "^23.10.0",
|
|
29
|
+
"@atlaskit/ds-lib": "^6.0.0",
|
|
30
30
|
"@atlaskit/icon": "^32.0.0",
|
|
31
31
|
"@atlaskit/spinner": "^19.0.0",
|
|
32
|
-
"@atlaskit/theme": "^
|
|
33
|
-
"@atlaskit/tokens": "^11.
|
|
32
|
+
"@atlaskit/theme": "^22.0.0",
|
|
33
|
+
"@atlaskit/tokens": "^11.1.0",
|
|
34
34
|
"@babel/runtime": "^7.0.0",
|
|
35
|
-
"@compiled/react": "^0.
|
|
35
|
+
"@compiled/react": "^0.20.0",
|
|
36
36
|
"lodash": "^4.17.21"
|
|
37
37
|
},
|
|
38
38
|
"peerDependencies": {
|
|
@@ -42,13 +42,13 @@
|
|
|
42
42
|
"@af/accessibility-testing": "workspace:^",
|
|
43
43
|
"@af/integration-testing": "workspace:^",
|
|
44
44
|
"@af/visual-regression": "workspace:^",
|
|
45
|
-
"@atlaskit/docs": "^11.
|
|
45
|
+
"@atlaskit/docs": "^11.6.0",
|
|
46
46
|
"@atlaskit/empty-state": "^10.1.0",
|
|
47
|
-
"@atlaskit/form": "^15.
|
|
47
|
+
"@atlaskit/form": "^15.4.0",
|
|
48
48
|
"@atlaskit/link": "^3.3.0",
|
|
49
49
|
"@atlaskit/primitives": "^18.0.0",
|
|
50
50
|
"@atlaskit/section-message": "^8.12.0",
|
|
51
|
-
"@atlaskit/select": "^21.
|
|
51
|
+
"@atlaskit/select": "^21.8.0",
|
|
52
52
|
"@atlaskit/visually-hidden": "^3.0.0",
|
|
53
53
|
"@atlassian/ssr-tests": "workspace:^",
|
|
54
54
|
"@testing-library/react": "^16.3.0",
|