@atlaskit/dynamic-table 18.3.19 → 18.3.20
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/rankable/body.js +3 -2
- package/dist/cjs/components/rankable/table-cell.js +2 -1
- package/dist/cjs/components/rankable/table-row.js +2 -1
- package/dist/cjs/components/stateless.js +2 -2
- package/dist/cjs/components/table-head-cell.js +1 -1
- package/dist/cjs/styled/dynamic-table.js +1 -1
- package/dist/cjs/styled/empty-body.js +1 -1
- package/dist/cjs/styled/loading-container-advanced.js +1 -1
- package/dist/cjs/styled/loading-container.js +1 -1
- package/dist/cjs/styled/rankable/table-cell.js +1 -1
- package/dist/cjs/styled/rankable/table-row.js +1 -1
- package/dist/cjs/styled/table-cell.js +1 -1
- package/dist/cjs/styled/table-head.js +1 -1
- package/dist/cjs/styled/table-row.js +1 -1
- package/dist/es2019/components/rankable/body.js +3 -2
- package/dist/es2019/components/rankable/table-cell.js +2 -1
- package/dist/es2019/components/rankable/table-row.js +2 -1
- package/dist/es2019/components/stateless.js +2 -2
- package/dist/es2019/components/table-head-cell.js +1 -1
- package/dist/es2019/styled/dynamic-table.js +1 -1
- package/dist/es2019/styled/empty-body.js +1 -1
- package/dist/es2019/styled/loading-container-advanced.js +1 -1
- package/dist/es2019/styled/loading-container.js +1 -1
- package/dist/es2019/styled/rankable/table-cell.js +1 -1
- package/dist/es2019/styled/rankable/table-row.js +1 -1
- package/dist/es2019/styled/table-cell.js +1 -1
- package/dist/es2019/styled/table-head.js +1 -1
- package/dist/es2019/styled/table-row.js +1 -1
- package/dist/esm/components/rankable/body.js +3 -2
- package/dist/esm/components/rankable/table-cell.js +2 -1
- package/dist/esm/components/rankable/table-row.js +2 -1
- package/dist/esm/components/stateless.js +2 -2
- package/dist/esm/components/table-head-cell.js +1 -1
- package/dist/esm/styled/dynamic-table.js +1 -1
- package/dist/esm/styled/empty-body.js +1 -1
- package/dist/esm/styled/loading-container-advanced.js +1 -1
- package/dist/esm/styled/loading-container.js +1 -1
- package/dist/esm/styled/rankable/table-cell.js +1 -1
- package/dist/esm/styled/rankable/table-row.js +1 -1
- package/dist/esm/styled/table-cell.js +1 -1
- package/dist/esm/styled/table-head.js +1 -1
- package/dist/esm/styled/table-row.js +1 -1
- package/dist/types/components/loading-container-advanced.d.ts +1 -1
- package/dist/types/components/rankable/body.d.ts +3 -3
- package/dist/types/components/rankable/table-cell.d.ts +3 -3
- package/dist/types/components/rankable/table-row.d.ts +3 -3
- package/dist/types-ts4.5/components/loading-container-advanced.d.ts +1 -1
- package/dist/types-ts4.5/components/rankable/body.d.ts +3 -3
- package/dist/types-ts4.5/components/rankable/table-cell.d.ts +3 -3
- package/dist/types-ts4.5/components/rankable/table-row.d.ts +3 -3
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -120,8 +120,9 @@ var RankableBody = exports.RankableBody = /*#__PURE__*/function (_React$Componen
|
|
|
120
120
|
}
|
|
121
121
|
}]);
|
|
122
122
|
}(_react.default.Component); // eslint-disable-next-line import/no-anonymous-default-export
|
|
123
|
-
var
|
|
123
|
+
var _default_1 = (0, _withSortedPageRows.default)( /*#__PURE__*/_react.default.forwardRef(function (props, ref) {
|
|
124
124
|
return /*#__PURE__*/_react.default.createElement(RankableBody, (0, _extends2.default)({}, props, {
|
|
125
125
|
forwardedRef: ref
|
|
126
126
|
}));
|
|
127
|
-
}));
|
|
127
|
+
}));
|
|
128
|
+
var _default = exports.default = _default_1;
|
|
@@ -61,4 +61,5 @@ var RankableTableCell = exports.RankableTableCell = /*#__PURE__*/function (_Reac
|
|
|
61
61
|
}
|
|
62
62
|
}]);
|
|
63
63
|
}(_react.default.Component); // eslint-disable-next-line import/no-anonymous-default-export
|
|
64
|
-
var
|
|
64
|
+
var _default_1 = (0, _withDimensions.default)(RankableTableCell);
|
|
65
|
+
var _default = exports.default = _default_1;
|
|
@@ -112,4 +112,5 @@ var RankableTableRow = /*#__PURE__*/function (_React$Component) {
|
|
|
112
112
|
}
|
|
113
113
|
}]);
|
|
114
114
|
}(_react.default.Component); // eslint-disable-next-line import/no-anonymous-default-export
|
|
115
|
-
var
|
|
115
|
+
var _default_1 = (0, _withDimensions.default)(RankableTableRow);
|
|
116
|
+
var _default = exports.default = _default_1;
|
|
@@ -85,14 +85,14 @@ var DynamicTable = function DynamicTable(_ref) {
|
|
|
85
85
|
action: 'sorted',
|
|
86
86
|
componentName: 'dynamicTable',
|
|
87
87
|
packageName: "@atlaskit/dynamic-table",
|
|
88
|
-
packageVersion: "
|
|
88
|
+
packageVersion: "0.0.0-development"
|
|
89
89
|
});
|
|
90
90
|
var onRankEnd = (0, _analyticsNext.usePlatformLeafEventHandler)({
|
|
91
91
|
fn: providedOnRankEnd,
|
|
92
92
|
action: 'ranked',
|
|
93
93
|
componentName: 'dynamicTable',
|
|
94
94
|
packageName: "@atlaskit/dynamic-table",
|
|
95
|
-
packageVersion: "
|
|
95
|
+
packageVersion: "0.0.0-development"
|
|
96
96
|
});
|
|
97
97
|
(0, _react.useEffect)(function () {
|
|
98
98
|
(0, _helpers.validateSortKey)(sortKey, head);
|
|
@@ -112,8 +112,9 @@ export class RankableBody extends React.Component {
|
|
|
112
112
|
}
|
|
113
113
|
|
|
114
114
|
// eslint-disable-next-line import/no-anonymous-default-export
|
|
115
|
-
|
|
115
|
+
const _default_1 = withSortedPageRows( /*#__PURE__*/React.forwardRef((props, ref) => {
|
|
116
116
|
return /*#__PURE__*/React.createElement(RankableBody, _extends({}, props, {
|
|
117
117
|
forwardedRef: ref
|
|
118
118
|
}));
|
|
119
|
-
}));
|
|
119
|
+
}));
|
|
120
|
+
export default _default_1;
|
|
@@ -41,4 +41,5 @@ export class RankableTableCell extends React.Component {
|
|
|
41
41
|
}
|
|
42
42
|
|
|
43
43
|
// eslint-disable-next-line import/no-anonymous-default-export
|
|
44
|
-
|
|
44
|
+
const _default_1 = withDimensions(RankableTableCell);
|
|
45
|
+
export default _default_1;
|
|
@@ -60,14 +60,14 @@ const DynamicTable = ({
|
|
|
60
60
|
action: 'sorted',
|
|
61
61
|
componentName: 'dynamicTable',
|
|
62
62
|
packageName: "@atlaskit/dynamic-table",
|
|
63
|
-
packageVersion: "
|
|
63
|
+
packageVersion: "0.0.0-development"
|
|
64
64
|
});
|
|
65
65
|
const onRankEnd = usePlatformLeafEventHandler({
|
|
66
66
|
fn: providedOnRankEnd,
|
|
67
67
|
action: 'ranked',
|
|
68
68
|
componentName: 'dynamicTable',
|
|
69
69
|
packageName: "@atlaskit/dynamic-table",
|
|
70
|
-
packageVersion: "
|
|
70
|
+
packageVersion: "0.0.0-development"
|
|
71
71
|
});
|
|
72
72
|
useEffect(() => {
|
|
73
73
|
validateSortKey(sortKey, head);
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* table-head-cell.tsx generated by @compiled/babel-plugin v0.
|
|
1
|
+
/* table-head-cell.tsx generated by @compiled/babel-plugin v0.39.1 */
|
|
2
2
|
import _extends from "@babel/runtime/helpers/extends";
|
|
3
3
|
import "./table-head-cell.compiled.css";
|
|
4
4
|
import { ax, ix } from "@compiled/react/runtime";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* loading-container-advanced.tsx generated by @compiled/babel-plugin v0.
|
|
1
|
+
/* loading-container-advanced.tsx generated by @compiled/babel-plugin v0.39.1 */
|
|
2
2
|
import _extends from "@babel/runtime/helpers/extends";
|
|
3
3
|
import "./loading-container-advanced.compiled.css";
|
|
4
4
|
import * as React from 'react';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* loading-container.tsx generated by @compiled/babel-plugin v0.
|
|
1
|
+
/* loading-container.tsx generated by @compiled/babel-plugin v0.39.1 */
|
|
2
2
|
/* eslint-disable @repo/internal/react/require-jsdoc */
|
|
3
3
|
import "./loading-container.compiled.css";
|
|
4
4
|
import * as React from 'react';
|
|
@@ -117,8 +117,9 @@ export var RankableBody = /*#__PURE__*/function (_React$Component) {
|
|
|
117
117
|
}(React.Component);
|
|
118
118
|
|
|
119
119
|
// eslint-disable-next-line import/no-anonymous-default-export
|
|
120
|
-
|
|
120
|
+
var _default_1 = withSortedPageRows( /*#__PURE__*/React.forwardRef(function (props, ref) {
|
|
121
121
|
return /*#__PURE__*/React.createElement(RankableBody, _extends({}, props, {
|
|
122
122
|
forwardedRef: ref
|
|
123
123
|
}));
|
|
124
|
-
}));
|
|
124
|
+
}));
|
|
125
|
+
export default _default_1;
|
|
@@ -56,4 +56,5 @@ export var RankableTableCell = /*#__PURE__*/function (_React$Component) {
|
|
|
56
56
|
}(React.Component);
|
|
57
57
|
|
|
58
58
|
// eslint-disable-next-line import/no-anonymous-default-export
|
|
59
|
-
|
|
59
|
+
var _default_1 = withDimensions(RankableTableCell);
|
|
60
|
+
export default _default_1;
|
|
@@ -107,4 +107,5 @@ var RankableTableRow = /*#__PURE__*/function (_React$Component) {
|
|
|
107
107
|
}
|
|
108
108
|
}]);
|
|
109
109
|
}(React.Component); // eslint-disable-next-line import/no-anonymous-default-export
|
|
110
|
-
|
|
110
|
+
var _default_1 = withDimensions(RankableTableRow);
|
|
111
|
+
export default _default_1;
|
|
@@ -76,14 +76,14 @@ var DynamicTable = function DynamicTable(_ref) {
|
|
|
76
76
|
action: 'sorted',
|
|
77
77
|
componentName: 'dynamicTable',
|
|
78
78
|
packageName: "@atlaskit/dynamic-table",
|
|
79
|
-
packageVersion: "
|
|
79
|
+
packageVersion: "0.0.0-development"
|
|
80
80
|
});
|
|
81
81
|
var onRankEnd = usePlatformLeafEventHandler({
|
|
82
82
|
fn: providedOnRankEnd,
|
|
83
83
|
action: 'ranked',
|
|
84
84
|
componentName: 'dynamicTable',
|
|
85
85
|
packageName: "@atlaskit/dynamic-table",
|
|
86
|
-
packageVersion: "
|
|
86
|
+
packageVersion: "0.0.0-development"
|
|
87
87
|
});
|
|
88
88
|
useEffect(function () {
|
|
89
89
|
validateSortKey(sortKey, head);
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* table-head-cell.tsx generated by @compiled/babel-plugin v0.
|
|
1
|
+
/* table-head-cell.tsx generated by @compiled/babel-plugin v0.39.1 */
|
|
2
2
|
import _extends from "@babel/runtime/helpers/extends";
|
|
3
3
|
import _slicedToArray from "@babel/runtime/helpers/slicedToArray";
|
|
4
4
|
import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* dynamic-table.tsx generated by @compiled/babel-plugin v0.
|
|
1
|
+
/* dynamic-table.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 = ["isFixedSize", "hasDataRow", "children", "testId", "isLoading"];
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* loading-container-advanced.tsx generated by @compiled/babel-plugin v0.
|
|
1
|
+
/* loading-container-advanced.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 = ["children", "testId"];
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* loading-container.tsx generated by @compiled/babel-plugin v0.
|
|
1
|
+
/* loading-container.tsx generated by @compiled/babel-plugin v0.39.1 */
|
|
2
2
|
import _defineProperty from "@babel/runtime/helpers/defineProperty";
|
|
3
3
|
import "./loading-container.compiled.css";
|
|
4
4
|
import * as React from 'react';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* table-cell.tsx generated by @compiled/babel-plugin v0.
|
|
1
|
+
/* table-cell.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 = ["isRanking", "innerRef"];
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* table-row.tsx generated by @compiled/babel-plugin v0.
|
|
1
|
+
/* table-row.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 = ["isRanking", "isRankingItem", "testId"];
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* table-cell.tsx generated by @compiled/babel-plugin v0.
|
|
1
|
+
/* table-cell.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 = ["width", "isFixedSize", "shouldTruncate", "innerRef"];
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* table-head.tsx generated by @compiled/babel-plugin v0.
|
|
1
|
+
/* table-head.tsx generated by @compiled/babel-plugin v0.39.1 */
|
|
2
2
|
import _defineProperty from "@babel/runtime/helpers/defineProperty";
|
|
3
3
|
import _extends from "@babel/runtime/helpers/extends";
|
|
4
4
|
import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* table-row.tsx generated by @compiled/babel-plugin v0.
|
|
1
|
+
/* table-row.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 = ["isHighlighted", "children", "style", "testId", "className"];
|
|
@@ -15,7 +15,7 @@ export default class LoadingContainerAdvanced extends React.Component<LoadingCon
|
|
|
15
15
|
static defaultProps: {
|
|
16
16
|
isLoading: boolean;
|
|
17
17
|
spinnerSize: string;
|
|
18
|
-
contentsOpacity:
|
|
18
|
+
contentsOpacity: 'var(--ds-opacity-loading)';
|
|
19
19
|
loadingLabel: string;
|
|
20
20
|
};
|
|
21
21
|
componentDidMount: () => void;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { type DragStart, type DropResult } from '@atlaskit/pragmatic-drag-and-drop-react-beautiful-dnd-migration';
|
|
3
|
-
import { type WithSortedPageRowsProps } from '../../hoc/with-sorted-page-rows';
|
|
3
|
+
import { type TableProps, type WithSortedPageRowsProps } from '../../hoc/with-sorted-page-rows';
|
|
4
4
|
import { type HeadType, type RankEnd, type RankStart } from '../../types';
|
|
5
5
|
interface RankableBodyProps extends WithSortedPageRowsProps {
|
|
6
6
|
highlightedRowIndex?: number | number[];
|
|
@@ -18,7 +18,7 @@ export declare class RankableBody extends React.Component<RankableBodyProps, {}>
|
|
|
18
18
|
onDragEnd: (result: DropResult) => void;
|
|
19
19
|
render(): React.JSX.Element;
|
|
20
20
|
}
|
|
21
|
-
declare const
|
|
21
|
+
declare const _default_1: React.ForwardRefExoticComponent<Omit<RankableBodyProps & TableProps, 'pageRows'> & {
|
|
22
22
|
forwardedRef?: React.Ref<HTMLTableSectionElement> | undefined;
|
|
23
23
|
} & React.RefAttributes<HTMLTableSectionElement>>;
|
|
24
|
-
export default
|
|
24
|
+
export default _default_1;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import { type WithDimensionsProps } from '../../hoc/with-dimensions';
|
|
2
|
+
import { type State, type WithDimensionsProps } from '../../hoc/with-dimensions';
|
|
3
3
|
import { type HeadCellType, type RowCellType } from '../../types';
|
|
4
4
|
interface RankableTableCellProps extends WithDimensionsProps {
|
|
5
5
|
head?: HeadCellType;
|
|
@@ -10,5 +10,5 @@ interface RankableTableCellProps extends WithDimensionsProps {
|
|
|
10
10
|
export declare class RankableTableCell extends React.Component<RankableTableCellProps, {}> {
|
|
11
11
|
render(): React.JSX.Element;
|
|
12
12
|
}
|
|
13
|
-
declare const
|
|
14
|
-
export default
|
|
13
|
+
declare const _default_1: React.ComponentClass<Omit<RankableTableCellProps, 'refWidth' | 'refHeight' | 'innerRef'>, State>;
|
|
14
|
+
export default _default_1;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import { type WithDimensionsProps } from '../../hoc/with-dimensions';
|
|
2
|
+
import { type State, type WithDimensionsProps } from '../../hoc/with-dimensions';
|
|
3
3
|
import { type HeadType, type RowType } from '../../types';
|
|
4
4
|
interface RankableTableRowProps extends WithDimensionsProps {
|
|
5
5
|
head?: HeadType;
|
|
@@ -10,5 +10,5 @@ interface RankableTableRowProps extends WithDimensionsProps {
|
|
|
10
10
|
isHighlighted?: boolean;
|
|
11
11
|
testId?: string;
|
|
12
12
|
}
|
|
13
|
-
declare const
|
|
14
|
-
export default
|
|
13
|
+
declare const _default_1: React.ComponentClass<Omit<RankableTableRowProps, 'refWidth' | 'refHeight' | 'innerRef'>, State>;
|
|
14
|
+
export default _default_1;
|
|
@@ -15,7 +15,7 @@ export default class LoadingContainerAdvanced extends React.Component<LoadingCon
|
|
|
15
15
|
static defaultProps: {
|
|
16
16
|
isLoading: boolean;
|
|
17
17
|
spinnerSize: string;
|
|
18
|
-
contentsOpacity:
|
|
18
|
+
contentsOpacity: 'var(--ds-opacity-loading)';
|
|
19
19
|
loadingLabel: string;
|
|
20
20
|
};
|
|
21
21
|
componentDidMount: () => void;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { type DragStart, type DropResult } from '@atlaskit/pragmatic-drag-and-drop-react-beautiful-dnd-migration';
|
|
3
|
-
import { type WithSortedPageRowsProps } from '../../hoc/with-sorted-page-rows';
|
|
3
|
+
import { type TableProps, type WithSortedPageRowsProps } from '../../hoc/with-sorted-page-rows';
|
|
4
4
|
import { type HeadType, type RankEnd, type RankStart } from '../../types';
|
|
5
5
|
interface RankableBodyProps extends WithSortedPageRowsProps {
|
|
6
6
|
highlightedRowIndex?: number | number[];
|
|
@@ -18,7 +18,7 @@ export declare class RankableBody extends React.Component<RankableBodyProps, {}>
|
|
|
18
18
|
onDragEnd: (result: DropResult) => void;
|
|
19
19
|
render(): React.JSX.Element;
|
|
20
20
|
}
|
|
21
|
-
declare const
|
|
21
|
+
declare const _default_1: React.ForwardRefExoticComponent<Omit<RankableBodyProps & TableProps, 'pageRows'> & {
|
|
22
22
|
forwardedRef?: React.Ref<HTMLTableSectionElement> | undefined;
|
|
23
23
|
} & React.RefAttributes<HTMLTableSectionElement>>;
|
|
24
|
-
export default
|
|
24
|
+
export default _default_1;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import { type WithDimensionsProps } from '../../hoc/with-dimensions';
|
|
2
|
+
import { type State, type WithDimensionsProps } from '../../hoc/with-dimensions';
|
|
3
3
|
import { type HeadCellType, type RowCellType } from '../../types';
|
|
4
4
|
interface RankableTableCellProps extends WithDimensionsProps {
|
|
5
5
|
head?: HeadCellType;
|
|
@@ -10,5 +10,5 @@ interface RankableTableCellProps extends WithDimensionsProps {
|
|
|
10
10
|
export declare class RankableTableCell extends React.Component<RankableTableCellProps, {}> {
|
|
11
11
|
render(): React.JSX.Element;
|
|
12
12
|
}
|
|
13
|
-
declare const
|
|
14
|
-
export default
|
|
13
|
+
declare const _default_1: React.ComponentClass<Omit<RankableTableCellProps, 'refWidth' | 'refHeight' | 'innerRef'>, State>;
|
|
14
|
+
export default _default_1;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import { type WithDimensionsProps } from '../../hoc/with-dimensions';
|
|
2
|
+
import { type State, type WithDimensionsProps } from '../../hoc/with-dimensions';
|
|
3
3
|
import { type HeadType, type RowType } from '../../types';
|
|
4
4
|
interface RankableTableRowProps extends WithDimensionsProps {
|
|
5
5
|
head?: HeadType;
|
|
@@ -10,5 +10,5 @@ interface RankableTableRowProps extends WithDimensionsProps {
|
|
|
10
10
|
isHighlighted?: boolean;
|
|
11
11
|
testId?: string;
|
|
12
12
|
}
|
|
13
|
-
declare const
|
|
14
|
-
export default
|
|
13
|
+
declare const _default_1: React.ComponentClass<Omit<RankableTableRowProps, 'refWidth' | 'refHeight' | 'innerRef'>, State>;
|
|
14
|
+
export default _default_1;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/dynamic-table",
|
|
3
|
-
"version": "18.3.
|
|
3
|
+
"version": "18.3.20",
|
|
4
4
|
"description": "A dynamic table displays rows of data with built-in pagination, sorting, and re-ordering functionality.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -35,16 +35,16 @@
|
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"@atlaskit/analytics-next": "^11.1.0",
|
|
37
37
|
"@atlaskit/css": "^0.19.0",
|
|
38
|
-
"@atlaskit/ds-lib": "^
|
|
38
|
+
"@atlaskit/ds-lib": "^6.0.0",
|
|
39
39
|
"@atlaskit/icon": "^32.0.0",
|
|
40
40
|
"@atlaskit/pagination": "^16.2.0",
|
|
41
41
|
"@atlaskit/pragmatic-drag-and-drop-react-beautiful-dnd-migration": "^2.0.0",
|
|
42
42
|
"@atlaskit/primitives": "^18.0.0",
|
|
43
43
|
"@atlaskit/spinner": "^19.0.0",
|
|
44
|
-
"@atlaskit/tokens": "^11.
|
|
44
|
+
"@atlaskit/tokens": "^11.1.0",
|
|
45
45
|
"@atlaskit/tooltip": "^20.14.0",
|
|
46
46
|
"@babel/runtime": "^7.0.0",
|
|
47
|
-
"@compiled/react": "^0.
|
|
47
|
+
"@compiled/react": "^0.20.0"
|
|
48
48
|
},
|
|
49
49
|
"peerDependencies": {
|
|
50
50
|
"react": "^18.2.0",
|
|
@@ -56,10 +56,10 @@
|
|
|
56
56
|
"@af/visual-regression": "workspace:^",
|
|
57
57
|
"@atlaskit/avatar": "^25.8.0",
|
|
58
58
|
"@atlaskit/banner": "^14.0.0",
|
|
59
|
-
"@atlaskit/button": "^23.
|
|
60
|
-
"@atlaskit/docs": "^11.
|
|
59
|
+
"@atlaskit/button": "^23.10.0",
|
|
60
|
+
"@atlaskit/docs": "^11.6.0",
|
|
61
61
|
"@atlaskit/drawer": "^11.0.0",
|
|
62
|
-
"@atlaskit/dropdown-menu": "^16.
|
|
62
|
+
"@atlaskit/dropdown-menu": "^16.6.0",
|
|
63
63
|
"@atlaskit/link": "^3.3.0",
|
|
64
64
|
"@atlaskit/pragmatic-drag-and-drop": "^1.7.0",
|
|
65
65
|
"@atlaskit/pragmatic-drag-and-drop-hitbox": "^1.1.0",
|