@atlaskit/dynamic-table 14.8.8 → 14.8.9

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,11 @@
1
1
  # @atlaskit/dynamic-table
2
2
 
3
+ ## 14.8.9
4
+
5
+ ### Patch Changes
6
+
7
+ - [`b0f6dd0bc35`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b0f6dd0bc35) - Updated to use typography tokens. There is no expected behaviour or visual change.
8
+
3
9
  ## 14.8.8
4
10
 
5
11
  ### Patch Changes
@@ -54,7 +54,7 @@ function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflec
54
54
  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; } }
55
55
 
56
56
  var packageName = "@atlaskit/dynamic-table";
57
- var packageVersion = "14.8.8";
57
+ var packageVersion = "14.8.9";
58
58
 
59
59
  function toggleSortOrder(currentSortOrder) {
60
60
  switch (currentSortOrder) {
@@ -63,7 +63,7 @@ var captionStyles = (0, _react2.css)({
63
63
  marginBottom: "var(--ds-scale-100, 8px)",
64
64
  fontSize: '1.42857143em',
65
65
  fontStyle: 'inherit',
66
- fontWeight: 500,
66
+ fontWeight: "var(--ds-font-weight-medium, 500)",
67
67
  letterSpacing: '-0.008em',
68
68
  lineHeight: 1.2,
69
69
  textAlign: 'left',
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/dynamic-table",
3
- "version": "14.8.8",
3
+ "version": "14.8.9",
4
4
  "sideEffects": false
5
5
  }
@@ -14,7 +14,7 @@ import ManagedPagination from './managed-pagination';
14
14
  import RankableTableBody from './rankable/body';
15
15
  import TableHead from './table-head';
16
16
  const packageName = "@atlaskit/dynamic-table";
17
- const packageVersion = "14.8.8";
17
+ const packageVersion = "14.8.9";
18
18
 
19
19
  function toggleSortOrder(currentSortOrder) {
20
20
  switch (currentSortOrder) {
@@ -50,7 +50,7 @@ const captionStyles = css({
50
50
  marginBottom: "var(--ds-scale-100, 8px)",
51
51
  fontSize: '1.42857143em',
52
52
  fontStyle: 'inherit',
53
- fontWeight: 500,
53
+ fontWeight: "var(--ds-font-weight-medium, 500)",
54
54
  letterSpacing: '-0.008em',
55
55
  lineHeight: 1.2,
56
56
  textAlign: 'left',
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/dynamic-table",
3
- "version": "14.8.8",
3
+ "version": "14.8.9",
4
4
  "sideEffects": false
5
5
  }
@@ -25,7 +25,7 @@ import ManagedPagination from './managed-pagination';
25
25
  import RankableTableBody from './rankable/body';
26
26
  import TableHead from './table-head';
27
27
  var packageName = "@atlaskit/dynamic-table";
28
- var packageVersion = "14.8.8";
28
+ var packageVersion = "14.8.9";
29
29
 
30
30
  function toggleSortOrder(currentSortOrder) {
31
31
  switch (currentSortOrder) {
@@ -50,7 +50,7 @@ var captionStyles = css({
50
50
  marginBottom: "var(--ds-scale-100, 8px)",
51
51
  fontSize: '1.42857143em',
52
52
  fontStyle: 'inherit',
53
- fontWeight: 500,
53
+ fontWeight: "var(--ds-font-weight-medium, 500)",
54
54
  letterSpacing: '-0.008em',
55
55
  lineHeight: 1.2,
56
56
  textAlign: 'left',
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/dynamic-table",
3
- "version": "14.8.8",
3
+ "version": "14.8.9",
4
4
  "sideEffects": false
5
5
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/dynamic-table",
3
- "version": "14.8.8",
3
+ "version": "14.8.9",
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/"
package/report.api.md CHANGED
@@ -8,6 +8,7 @@
8
8
  ### Table of contents
9
9
 
10
10
  - [Main Entry Types](#main-entry-types)
11
+ - [Peer Dependencies](#peer-dependencies)
11
12
 
12
13
  ### Main Entry Types
13
14
 
@@ -296,3 +297,16 @@ interface StatelessProps extends WithAnalyticsEventsProps {
296
297
  ```
297
298
 
298
299
  <!--SECTION END: Main Entry Types-->
300
+
301
+ ### Peer Dependencies
302
+
303
+ <!--SECTION START: Peer Dependencies-->
304
+
305
+ ```json
306
+ {
307
+ "react": "^16.8.0",
308
+ "react-dom": "^16.8.0"
309
+ }
310
+ ```
311
+
312
+ <!--SECTION END: Peer Dependencies-->