@atlaskit/table-tree 9.1.7 → 9.1.8
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/version.json +1 -1
- package/dist/es2019/components/row.js +1 -1
- package/dist/es2019/version.json +1 -1
- package/dist/esm/components/row.js +1 -1
- package/dist/esm/version.json +1 -1
- package/dist/types/components/cell.d.ts +1 -1
- package/dist/types/components/header.d.ts +1 -1
- package/dist/types/components/internal/with-column-width.d.ts +1 -1
- package/dist/types/components/row.d.ts +1 -1
- package/dist/types/components/table-tree.d.ts +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -44,7 +44,7 @@ function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflec
|
|
|
44
44
|
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
|
|
45
45
|
|
|
46
46
|
var packageName = "@atlaskit/table-tree";
|
|
47
|
-
var packageVersion = "9.1.
|
|
47
|
+
var packageVersion = "9.1.8";
|
|
48
48
|
|
|
49
49
|
var Row = /*#__PURE__*/function (_Component) {
|
|
50
50
|
(0, _inherits2.default)(Row, _Component);
|
package/dist/cjs/version.json
CHANGED
|
@@ -8,7 +8,7 @@ import toItemId from '../utils/to-item-id';
|
|
|
8
8
|
import Chevron from './internal/chevron';
|
|
9
9
|
import { TreeRowContainer } from './internal/styled';
|
|
10
10
|
const packageName = "@atlaskit/table-tree";
|
|
11
|
-
const packageVersion = "9.1.
|
|
11
|
+
const packageVersion = "9.1.8";
|
|
12
12
|
|
|
13
13
|
class Row extends Component {
|
|
14
14
|
constructor(...args) {
|
package/dist/es2019/version.json
CHANGED
|
@@ -18,7 +18,7 @@ import toItemId from '../utils/to-item-id';
|
|
|
18
18
|
import Chevron from './internal/chevron';
|
|
19
19
|
import { TreeRowContainer } from './internal/styled';
|
|
20
20
|
var packageName = "@atlaskit/table-tree";
|
|
21
|
-
var packageVersion = "9.1.
|
|
21
|
+
var packageVersion = "9.1.8";
|
|
22
22
|
|
|
23
23
|
var Row = /*#__PURE__*/function (_Component) {
|
|
24
24
|
_inherits(Row, _Component);
|
package/dist/esm/version.json
CHANGED
|
@@ -59,7 +59,7 @@ declare const _default: {
|
|
|
59
59
|
UNSAFE_componentWillUpdate?(nextProps: Readonly<CellProps & import("./internal/with-column-width").CellWithColumnWidthProps>, nextState: Readonly<{}>, nextContext: any): void;
|
|
60
60
|
};
|
|
61
61
|
contextTypes: {
|
|
62
|
-
tableTree: import("prop-types").Validator<
|
|
62
|
+
tableTree: import("prop-types").Validator<object>;
|
|
63
63
|
};
|
|
64
64
|
contextType?: React.Context<any> | undefined;
|
|
65
65
|
};
|
|
@@ -53,7 +53,7 @@ declare const _default: {
|
|
|
53
53
|
UNSAFE_componentWillUpdate?(nextProps: Readonly<any>, nextState: Readonly<{}>, nextContext: any): void;
|
|
54
54
|
};
|
|
55
55
|
contextTypes: {
|
|
56
|
-
tableTree: import("prop-types").Validator<
|
|
56
|
+
tableTree: import("prop-types").Validator<object>;
|
|
57
57
|
};
|
|
58
58
|
contextType?: import("react").Context<any> | undefined;
|
|
59
59
|
};
|
|
@@ -58,7 +58,7 @@ export default function withColumnWidth<T extends object>(Cell: React.ComponentT
|
|
|
58
58
|
UNSAFE_componentWillUpdate?(nextProps: Readonly<T & CellWithColumnWidthProps>, nextState: Readonly<{}>, nextContext: any): void;
|
|
59
59
|
};
|
|
60
60
|
contextTypes: {
|
|
61
|
-
tableTree: PropTypes.Validator<
|
|
61
|
+
tableTree: PropTypes.Validator<object>;
|
|
62
62
|
};
|
|
63
63
|
contextType?: React.Context<any> | undefined;
|
|
64
64
|
};
|
|
@@ -15,5 +15,5 @@ declare class Row extends Component<any, any> {
|
|
|
15
15
|
render(): JSX.Element;
|
|
16
16
|
}
|
|
17
17
|
export { Row as RowWithoutAnalytics };
|
|
18
|
-
declare const _default: React.ForwardRefExoticComponent<Pick<Pick<
|
|
18
|
+
declare const _default: React.ForwardRefExoticComponent<Pick<Pick<Omit<any, keyof import("@atlaskit/analytics-next").WithAnalyticsEventsProps>, string | number | symbol> & React.RefAttributes<any> & import("@atlaskit/analytics-next").WithContextProps, string | number | symbol> & React.RefAttributes<any>>;
|
|
19
19
|
export default _default;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/table-tree",
|
|
3
|
-
"version": "9.1.
|
|
3
|
+
"version": "9.1.8",
|
|
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/"
|
|
@@ -27,11 +27,11 @@
|
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"@atlaskit/analytics-next": "^8.2.0",
|
|
30
|
-
"@atlaskit/button": "^16.
|
|
30
|
+
"@atlaskit/button": "^16.3.0",
|
|
31
31
|
"@atlaskit/icon": "^21.10.0",
|
|
32
32
|
"@atlaskit/spinner": "^15.0.0",
|
|
33
33
|
"@atlaskit/theme": "^12.1.0",
|
|
34
|
-
"@atlaskit/tokens": "^0.
|
|
34
|
+
"@atlaskit/tokens": "^0.10.0",
|
|
35
35
|
"@babel/runtime": "^7.0.0",
|
|
36
36
|
"@emotion/core": "^10.0.9",
|
|
37
37
|
"lodash": "^4.17.21",
|