@atlaskit/dynamic-table 18.3.2 → 18.3.4

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 CHANGED
@@ -1,5 +1,19 @@
1
1
  # @atlaskit/dynamic-table
2
2
 
3
+ ## 18.3.4
4
+
5
+ ### Patch Changes
6
+
7
+ - [`4891ea5a24e1b`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/4891ea5a24e1b) -
8
+ Typescript changes.
9
+ - Updated dependencies
10
+
11
+ ## 18.3.3
12
+
13
+ ### Patch Changes
14
+
15
+ - Updated dependencies
16
+
3
17
  ## 18.3.2
4
18
 
5
19
  ### Patch Changes
@@ -72,6 +72,7 @@ var DynamicTable = function DynamicTable(_ref) {
72
72
  paginationi18n = _ref$paginationi18n === void 0 ? {
73
73
  prev: 'Previous Page',
74
74
  next: 'Next Page',
75
+ // eslint-disable-next-line @atlassian/i18n/no-literal-string-in-object
75
76
  label: 'Pagination',
76
77
  pageLabel: 'Page'
77
78
  } : _ref$paginationi18n;
@@ -85,14 +86,14 @@ var DynamicTable = function DynamicTable(_ref) {
85
86
  action: 'sorted',
86
87
  componentName: 'dynamicTable',
87
88
  packageName: "@atlaskit/dynamic-table",
88
- packageVersion: "18.3.1"
89
+ packageVersion: "0.0.0-development"
89
90
  });
90
91
  var onRankEnd = (0, _analyticsNext.usePlatformLeafEventHandler)({
91
92
  fn: providedOnRankEnd,
92
93
  action: 'ranked',
93
94
  componentName: 'dynamicTable',
94
95
  packageName: "@atlaskit/dynamic-table",
95
- packageVersion: "18.3.1"
96
+ packageVersion: "0.0.0-development"
96
97
  });
97
98
  (0, _react.useEffect)(function () {
98
99
  (0, _helpers.validateSortKey)(sortKey, head);
@@ -63,6 +63,7 @@ var HeadCell = exports.HeadCell = /*#__PURE__*/(0, _react.forwardRef)(function (
63
63
  } else if (isDESC) {
64
64
  return 'descending';
65
65
  }
66
+ return;
66
67
  };
67
68
 
68
69
  // If there is no content in the cell, it should be rendered as an empty `td`, not a `th`.
@@ -49,6 +49,7 @@ const DynamicTable = ({
49
49
  paginationi18n = {
50
50
  prev: 'Previous Page',
51
51
  next: 'Next Page',
52
+ // eslint-disable-next-line @atlassian/i18n/no-literal-string-in-object
52
53
  label: 'Pagination',
53
54
  pageLabel: 'Page'
54
55
  }
@@ -60,14 +61,14 @@ const DynamicTable = ({
60
61
  action: 'sorted',
61
62
  componentName: 'dynamicTable',
62
63
  packageName: "@atlaskit/dynamic-table",
63
- packageVersion: "18.3.1"
64
+ packageVersion: "0.0.0-development"
64
65
  });
65
66
  const onRankEnd = usePlatformLeafEventHandler({
66
67
  fn: providedOnRankEnd,
67
68
  action: 'ranked',
68
69
  componentName: 'dynamicTable',
69
70
  packageName: "@atlaskit/dynamic-table",
70
- packageVersion: "18.3.1"
71
+ packageVersion: "0.0.0-development"
71
72
  });
72
73
  useEffect(() => {
73
74
  validateSortKey(sortKey, head);
@@ -55,6 +55,7 @@ export const HeadCell = /*#__PURE__*/forwardRef(({
55
55
  } else if (isDESC) {
56
56
  return 'descending';
57
57
  }
58
+ return;
58
59
  };
59
60
 
60
61
  // If there is no content in the cell, it should be rendered as an empty `td`, not a `th`.
@@ -63,6 +63,7 @@ var DynamicTable = function DynamicTable(_ref) {
63
63
  paginationi18n = _ref$paginationi18n === void 0 ? {
64
64
  prev: 'Previous Page',
65
65
  next: 'Next Page',
66
+ // eslint-disable-next-line @atlassian/i18n/no-literal-string-in-object
66
67
  label: 'Pagination',
67
68
  pageLabel: 'Page'
68
69
  } : _ref$paginationi18n;
@@ -76,14 +77,14 @@ var DynamicTable = function DynamicTable(_ref) {
76
77
  action: 'sorted',
77
78
  componentName: 'dynamicTable',
78
79
  packageName: "@atlaskit/dynamic-table",
79
- packageVersion: "18.3.1"
80
+ packageVersion: "0.0.0-development"
80
81
  });
81
82
  var onRankEnd = usePlatformLeafEventHandler({
82
83
  fn: providedOnRankEnd,
83
84
  action: 'ranked',
84
85
  componentName: 'dynamicTable',
85
86
  packageName: "@atlaskit/dynamic-table",
86
- packageVersion: "18.3.1"
87
+ packageVersion: "0.0.0-development"
87
88
  });
88
89
  useEffect(function () {
89
90
  validateSortKey(sortKey, head);
@@ -55,6 +55,7 @@ export var HeadCell = /*#__PURE__*/forwardRef(function (_ref2, ref) {
55
55
  } else if (isDESC) {
56
56
  return 'descending';
57
57
  }
58
+ return;
58
59
  };
59
60
 
60
61
  // If there is no content in the cell, it should be rendered as an empty `td`, not a `th`.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/dynamic-table",
3
- "version": "18.3.2",
3
+ "version": "18.3.4",
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/"
@@ -39,11 +39,11 @@
39
39
  "@atlaskit/icon": "^28.5.0",
40
40
  "@atlaskit/pagination": "^16.1.0",
41
41
  "@atlaskit/pragmatic-drag-and-drop-react-beautiful-dnd-migration": "^2.0.0",
42
- "@atlaskit/primitives": "^15.0.0",
42
+ "@atlaskit/primitives": "^16.0.0",
43
43
  "@atlaskit/spinner": "^19.0.0",
44
44
  "@atlaskit/theme": "^21.0.0",
45
45
  "@atlaskit/tokens": "^7.0.0",
46
- "@atlaskit/tooltip": "^20.5.0",
46
+ "@atlaskit/tooltip": "^20.6.0",
47
47
  "@babel/runtime": "^7.0.0",
48
48
  "@compiled/react": "^0.18.6"
49
49
  },