Socket
Socket
Sign inDemoInstall

@atlaskit/dynamic-table

Package Overview
Dependencies
126
Maintainers
1
Versions
193
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 14.11.3 to 14.11.4

6

CHANGELOG.md
# @atlaskit/dynamic-table
## 14.11.4
### Patch Changes
- [`56b444b56a8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/56b444b56a8) - Fix a bug where text descenders were cut off at high zoom levels on Windows
## 14.11.3

@@ -4,0 +10,0 @@

2

dist/cjs/components/stateless.js

@@ -32,3 +32,3 @@ "use strict";

var packageName = "@atlaskit/dynamic-table";
var packageVersion = "14.11.3";
var packageVersion = "14.11.4";
function toggleSortOrder(currentSortOrder) {

@@ -35,0 +35,0 @@ switch (currentSortOrder) {

@@ -21,3 +21,9 @@ "use strict";

var overflowTruncateStyles = (0, _react.css)({
overflow: 'hidden'
// Use "clip" overflow to allow ellipses on x-axis without clipping descenders
'@supports not (overflow-x: clip)': {
overflow: 'hidden'
},
'@supports (overflow-x: clip)': {
overflowX: 'clip'
}
});

@@ -24,0 +30,0 @@ exports.overflowTruncateStyles = overflowTruncateStyles;

@@ -17,3 +17,3 @@ import _extends from "@babel/runtime/helpers/extends";

const packageName = "@atlaskit/dynamic-table";
const packageVersion = "14.11.3";
const packageVersion = "14.11.4";
function toggleSortOrder(currentSortOrder) {

@@ -20,0 +20,0 @@ switch (currentSortOrder) {

@@ -11,3 +11,9 @@ import { css } from '@emotion/react';

export const overflowTruncateStyles = css({
overflow: 'hidden'
// Use "clip" overflow to allow ellipses on x-axis without clipping descenders
'@supports not (overflow-x: clip)': {
overflow: 'hidden'
},
'@supports (overflow-x: clip)': {
overflowX: 'clip'
}
});

@@ -14,0 +20,0 @@ export const getTruncationStyleVars = ({

@@ -25,3 +25,3 @@ import _extends from "@babel/runtime/helpers/extends";

var packageName = "@atlaskit/dynamic-table";
var packageVersion = "14.11.3";
var packageVersion = "14.11.4";
function toggleSortOrder(currentSortOrder) {

@@ -28,0 +28,0 @@ switch (currentSortOrder) {

@@ -12,3 +12,9 @@ import _defineProperty from "@babel/runtime/helpers/defineProperty";

export var overflowTruncateStyles = css({
overflow: 'hidden'
// Use "clip" overflow to allow ellipses on x-axis without clipping descenders
'@supports not (overflow-x: clip)': {
overflow: 'hidden'
},
'@supports (overflow-x: clip)': {
overflowX: 'clip'
}
});

@@ -15,0 +21,0 @@ export var getTruncationStyleVars = function getTruncationStyleVars(_ref) {

{
"name": "@atlaskit/dynamic-table",
"version": "14.11.3",
"version": "14.11.4",
"description": "A dynamic table displays rows of data with built-in pagination, sorting, and re-ordering functionality.",

@@ -5,0 +5,0 @@ "publishConfig": {

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc