@atlaskit/table-tree 9.4.0 → 9.4.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 +6 -0
- package/dist/cjs/components/row.js +1 -1
- package/dist/cjs/utils/table-tree-data-helper.js +2 -2
- package/dist/cjs/version.json +1 -1
- package/dist/es2019/components/row.js +1 -1
- package/dist/es2019/utils/table-tree-data-helper.js +2 -2
- package/dist/es2019/version.json +1 -1
- package/dist/esm/components/row.js +1 -1
- package/dist/esm/utils/table-tree-data-helper.js +2 -2
- package/dist/esm/version.json +1 -1
- package/dist/types/components/internal/styled.d.ts +2 -2
- package/dist/types/components/internal/with-column-width.d.ts +2 -2
- package/dist/types/components/rows.d.ts +1 -1
- package/package.json +10 -2
package/CHANGELOG.md
CHANGED
|
@@ -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.4.
|
|
31
|
+
var packageVersion = "9.4.1";
|
|
32
32
|
var Row = /*#__PURE__*/function (_Component) {
|
|
33
33
|
(0, _inherits2.default)(Row, _Component);
|
|
34
34
|
var _super = _createSuper(Row);
|
|
@@ -26,7 +26,7 @@ function updateRootItems(rootItems) {
|
|
|
26
26
|
rootItems.forEach(function (rootItem, index) {
|
|
27
27
|
var rootItemKey = rootItem[key];
|
|
28
28
|
if (rootItemKey === undefined) {
|
|
29
|
-
throw new Error("[ERROR] Property '".concat(key, "' not found in rootItem[").concat(index, "]"));
|
|
29
|
+
throw new Error("[ERROR] Property '".concat(String(key), "' not found in rootItem[").concat(index, "]"));
|
|
30
30
|
} else {
|
|
31
31
|
newKeysCache[rootItem[key]] = index + startIndexWith;
|
|
32
32
|
}
|
|
@@ -43,7 +43,7 @@ function updateChildItems(newitems, allTableItems, itemParent, _ref2) {
|
|
|
43
43
|
var newKeysCache = _objectSpread({}, keysCache);
|
|
44
44
|
var parentCacheKey = itemParent[key];
|
|
45
45
|
if (parentCacheKey === undefined) {
|
|
46
|
-
throw new Error("[Table Tree] Property '".concat(key, "' not found in parent item"));
|
|
46
|
+
throw new Error("[Table Tree] Property '".concat(String(key), "' not found in parent item"));
|
|
47
47
|
}
|
|
48
48
|
var parentLocation = newKeysCache[parentCacheKey];
|
|
49
49
|
var allItemsCopy = (0, _toConsumableArray2.default)(allTableItems);
|
package/dist/cjs/version.json
CHANGED
|
@@ -14,7 +14,7 @@ function updateRootItems(rootItems, allItems = [], {
|
|
|
14
14
|
rootItems.forEach((rootItem, index) => {
|
|
15
15
|
const rootItemKey = rootItem[key];
|
|
16
16
|
if (rootItemKey === undefined) {
|
|
17
|
-
throw new Error(`[ERROR] Property '${key}' not found in rootItem[${index}]`);
|
|
17
|
+
throw new Error(`[ERROR] Property '${String(key)}' not found in rootItem[${index}]`);
|
|
18
18
|
} else {
|
|
19
19
|
newKeysCache[rootItem[key]] = index + startIndexWith;
|
|
20
20
|
}
|
|
@@ -34,7 +34,7 @@ function updateChildItems(newitems, allTableItems, itemParent, {
|
|
|
34
34
|
};
|
|
35
35
|
const parentCacheKey = itemParent[key];
|
|
36
36
|
if (parentCacheKey === undefined) {
|
|
37
|
-
throw new Error(`[Table Tree] Property '${key}' not found in parent item`);
|
|
37
|
+
throw new Error(`[Table Tree] Property '${String(key)}' not found in parent item`);
|
|
38
38
|
}
|
|
39
39
|
const parentLocation = newKeysCache[parentCacheKey];
|
|
40
40
|
const allItemsCopy = [...allTableItems];
|
package/dist/es2019/version.json
CHANGED
|
@@ -20,7 +20,7 @@ var treeRowClickableStyles = css({
|
|
|
20
20
|
cursor: 'pointer'
|
|
21
21
|
});
|
|
22
22
|
var packageName = "@atlaskit/table-tree";
|
|
23
|
-
var packageVersion = "9.4.
|
|
23
|
+
var packageVersion = "9.4.1";
|
|
24
24
|
var Row = /*#__PURE__*/function (_Component) {
|
|
25
25
|
_inherits(Row, _Component);
|
|
26
26
|
var _super = _createSuper(Row);
|
|
@@ -19,7 +19,7 @@ function updateRootItems(rootItems) {
|
|
|
19
19
|
rootItems.forEach(function (rootItem, index) {
|
|
20
20
|
var rootItemKey = rootItem[key];
|
|
21
21
|
if (rootItemKey === undefined) {
|
|
22
|
-
throw new Error("[ERROR] Property '".concat(key, "' not found in rootItem[").concat(index, "]"));
|
|
22
|
+
throw new Error("[ERROR] Property '".concat(String(key), "' not found in rootItem[").concat(index, "]"));
|
|
23
23
|
} else {
|
|
24
24
|
newKeysCache[rootItem[key]] = index + startIndexWith;
|
|
25
25
|
}
|
|
@@ -36,7 +36,7 @@ function updateChildItems(newitems, allTableItems, itemParent, _ref2) {
|
|
|
36
36
|
var newKeysCache = _objectSpread({}, keysCache);
|
|
37
37
|
var parentCacheKey = itemParent[key];
|
|
38
38
|
if (parentCacheKey === undefined) {
|
|
39
|
-
throw new Error("[Table Tree] Property '".concat(key, "' not found in parent item"));
|
|
39
|
+
throw new Error("[Table Tree] Property '".concat(String(key), "' not found in parent item"));
|
|
40
40
|
}
|
|
41
41
|
var parentLocation = newKeysCache[parentCacheKey];
|
|
42
42
|
var allItemsCopy = _toConsumableArray(allTableItems);
|
package/dist/esm/version.json
CHANGED
|
@@ -8,7 +8,7 @@ export declare const indentBase: "var(--ds-space-300)";
|
|
|
8
8
|
export declare const TreeRowContainer: FC<HTMLAttributes<HTMLDivElement> & {
|
|
9
9
|
children: ReactNode;
|
|
10
10
|
}>;
|
|
11
|
-
|
|
11
|
+
type ChevronContainerProps = HTMLAttributes<HTMLSpanElement> & {
|
|
12
12
|
children: ReactNode;
|
|
13
13
|
};
|
|
14
14
|
/**
|
|
@@ -23,7 +23,7 @@ export declare const ChevronContainer: FC<ChevronContainerProps>;
|
|
|
23
23
|
* A chevron icon container.
|
|
24
24
|
*/
|
|
25
25
|
export declare const ChevronIconContainer: FC<ChevronContainerProps>;
|
|
26
|
-
|
|
26
|
+
type LoaderItemContainerProps = {
|
|
27
27
|
isRoot?: boolean;
|
|
28
28
|
children: ReactNode;
|
|
29
29
|
};
|
|
@@ -7,7 +7,7 @@ export interface CellWithColumnWidthProps {
|
|
|
7
7
|
export default function withColumnWidth<T extends object>(Cell: React.ComponentType<T>): {
|
|
8
8
|
new (props: Readonly<T & CellWithColumnWidthProps>): {
|
|
9
9
|
UNSAFE_componentWillMount(): void;
|
|
10
|
-
setColumnWidth(width?:
|
|
10
|
+
setColumnWidth(width?: number | string): void;
|
|
11
11
|
UNSAFE_componentWillReceiveProps(nextProps: CellWithColumnWidthProps): void;
|
|
12
12
|
render(): JSX.Element;
|
|
13
13
|
context: any;
|
|
@@ -33,7 +33,7 @@ export default function withColumnWidth<T extends object>(Cell: React.ComponentT
|
|
|
33
33
|
};
|
|
34
34
|
new (props: T & CellWithColumnWidthProps, context?: any): {
|
|
35
35
|
UNSAFE_componentWillMount(): void;
|
|
36
|
-
setColumnWidth(width?:
|
|
36
|
+
setColumnWidth(width?: number | string): void;
|
|
37
37
|
UNSAFE_componentWillReceiveProps(nextProps: CellWithColumnWidthProps): void;
|
|
38
38
|
render(): JSX.Element;
|
|
39
39
|
context: any;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/table-tree",
|
|
3
|
-
"version": "9.4.
|
|
3
|
+
"version": "9.4.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,6 +12,14 @@
|
|
|
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
|
+
},
|
|
15
23
|
"sideEffects": false,
|
|
16
24
|
"atlaskit:src": "src/index.tsx",
|
|
17
25
|
"homepage": "https://atlassian.design/components/table-tree/",
|
|
@@ -32,7 +40,7 @@
|
|
|
32
40
|
"@atlaskit/icon": "^21.12.0",
|
|
33
41
|
"@atlaskit/spinner": "^15.5.0",
|
|
34
42
|
"@atlaskit/theme": "^12.5.0",
|
|
35
|
-
"@atlaskit/tokens": "^1.
|
|
43
|
+
"@atlaskit/tokens": "^1.4.0",
|
|
36
44
|
"@babel/runtime": "^7.0.0",
|
|
37
45
|
"@emotion/react": "^11.7.1",
|
|
38
46
|
"lodash": "^4.17.21",
|