@atlaskit/table 0.12.3 → 0.12.5
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 +12 -0
- package/dist/cjs/head-cell.js +2 -0
- package/dist/cjs/ui/base-cell.js +2 -0
- package/dist/cjs/ui/bulk-action-overlay.js +2 -0
- package/dist/cjs/ui/expandable-cell.js +2 -0
- package/dist/cjs/ui/selectable-cell.js +2 -0
- package/dist/es2019/head-cell.js +2 -0
- package/dist/es2019/ui/base-cell.js +2 -0
- package/dist/es2019/ui/bulk-action-overlay.js +2 -0
- package/dist/es2019/ui/expandable-cell.js +2 -0
- package/dist/es2019/ui/selectable-cell.js +2 -0
- package/dist/esm/head-cell.js +2 -0
- package/dist/esm/ui/base-cell.js +2 -0
- package/dist/esm/ui/bulk-action-overlay.js +2 -0
- package/dist/esm/ui/expandable-cell.js +2 -0
- package/dist/esm/ui/selectable-cell.js +2 -0
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
package/dist/cjs/head-cell.js
CHANGED
|
@@ -8,6 +8,8 @@ exports.default = void 0;
|
|
|
8
8
|
var _react = _interopRequireDefault(require("react"));
|
|
9
9
|
var _primitives = require("@atlaskit/primitives");
|
|
10
10
|
var _th = require("./ui/th");
|
|
11
|
+
// eslint-disable-next-line @atlaskit/design-system/no-emotion-primitives -- to be migrated to @atlaskit/primitives/compiled – go/akcss
|
|
12
|
+
|
|
11
13
|
/**
|
|
12
14
|
* __HeadCell__
|
|
13
15
|
*
|
package/dist/cjs/ui/base-cell.js
CHANGED
|
@@ -10,6 +10,8 @@ var _toConsumableArray2 = _interopRequireDefault(require("@babel/runtime/helpers
|
|
|
10
10
|
var _react = _interopRequireWildcard(require("react"));
|
|
11
11
|
var _primitives = require("@atlaskit/primitives");
|
|
12
12
|
function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function _interopRequireWildcard(e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != _typeof(e) && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (var _t in e) "default" !== _t && {}.hasOwnProperty.call(e, _t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, _t)) && (i.get || i.set) ? o(f, _t, i) : f[_t] = e[_t]); return f; })(e, t); }
|
|
13
|
+
// eslint-disable-next-line @atlaskit/design-system/no-emotion-primitives -- to be migrated to @atlaskit/primitives/compiled – go/akcss
|
|
14
|
+
|
|
13
15
|
/**
|
|
14
16
|
* https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-sort
|
|
15
17
|
*/
|
|
@@ -7,6 +7,8 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
7
7
|
exports.BulkActionOverlay = void 0;
|
|
8
8
|
var _react = _interopRequireDefault(require("react"));
|
|
9
9
|
var _primitives = require("@atlaskit/primitives");
|
|
10
|
+
// eslint-disable-next-line @atlaskit/design-system/no-emotion-primitives -- to be migrated to @atlaskit/primitives/compiled – go/akcss
|
|
11
|
+
|
|
10
12
|
var overlayStyles = (0, _primitives.xcss)({
|
|
11
13
|
display: 'flex',
|
|
12
14
|
position: 'absolute',
|
|
@@ -8,6 +8,8 @@ exports.ExpandableCell = void 0;
|
|
|
8
8
|
var _react = _interopRequireDefault(require("react"));
|
|
9
9
|
var _primitives = require("@atlaskit/primitives");
|
|
10
10
|
var _baseCell = require("./base-cell");
|
|
11
|
+
// eslint-disable-next-line @atlaskit/design-system/no-emotion-primitives -- to be migrated to @atlaskit/primitives/compiled – go/akcss
|
|
12
|
+
|
|
11
13
|
var spacingStyles = (0, _primitives.xcss)({
|
|
12
14
|
width: 'size.200',
|
|
13
15
|
padding: 'space.0'
|
|
@@ -8,6 +8,8 @@ exports.SelectableCell = void 0;
|
|
|
8
8
|
var _react = _interopRequireDefault(require("react"));
|
|
9
9
|
var _primitives = require("@atlaskit/primitives");
|
|
10
10
|
var _baseCell = require("./base-cell");
|
|
11
|
+
// eslint-disable-next-line @atlaskit/design-system/no-emotion-primitives -- to be migrated to @atlaskit/primitives/compiled – go/akcss
|
|
12
|
+
|
|
11
13
|
var spacingStyles = (0, _primitives.xcss)({
|
|
12
14
|
width: '2rem',
|
|
13
15
|
padding: 'space.0'
|
package/dist/es2019/head-cell.js
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
+
|
|
3
|
+
// eslint-disable-next-line @atlaskit/design-system/no-emotion-primitives -- to be migrated to @atlaskit/primitives/compiled – go/akcss
|
|
2
4
|
import { Box, Inline, xcss } from '@atlaskit/primitives';
|
|
3
5
|
const overlayStyles = xcss({
|
|
4
6
|
display: 'flex',
|
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
+
|
|
3
|
+
// eslint-disable-next-line @atlaskit/design-system/no-emotion-primitives -- to be migrated to @atlaskit/primitives/compiled – go/akcss
|
|
2
4
|
import { xcss } from '@atlaskit/primitives';
|
|
3
5
|
import { BaseCell } from './base-cell';
|
|
4
6
|
const spacingStyles = xcss({
|
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
+
|
|
3
|
+
// eslint-disable-next-line @atlaskit/design-system/no-emotion-primitives -- to be migrated to @atlaskit/primitives/compiled – go/akcss
|
|
2
4
|
import { xcss } from '@atlaskit/primitives';
|
|
3
5
|
import { BaseCell } from './base-cell';
|
|
4
6
|
const spacingStyles = xcss({
|
package/dist/esm/head-cell.js
CHANGED
package/dist/esm/ui/base-cell.js
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import _toConsumableArray from "@babel/runtime/helpers/toConsumableArray";
|
|
2
2
|
import React, { forwardRef } from 'react';
|
|
3
|
+
|
|
4
|
+
// eslint-disable-next-line @atlaskit/design-system/no-emotion-primitives -- to be migrated to @atlaskit/primitives/compiled – go/akcss
|
|
3
5
|
import { Box, xcss } from '@atlaskit/primitives';
|
|
4
6
|
|
|
5
7
|
/**
|
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
+
|
|
3
|
+
// eslint-disable-next-line @atlaskit/design-system/no-emotion-primitives -- to be migrated to @atlaskit/primitives/compiled – go/akcss
|
|
2
4
|
import { Box, Inline, xcss } from '@atlaskit/primitives';
|
|
3
5
|
var overlayStyles = xcss({
|
|
4
6
|
display: 'flex',
|
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
+
|
|
3
|
+
// eslint-disable-next-line @atlaskit/design-system/no-emotion-primitives -- to be migrated to @atlaskit/primitives/compiled – go/akcss
|
|
2
4
|
import { xcss } from '@atlaskit/primitives';
|
|
3
5
|
import { BaseCell } from './base-cell';
|
|
4
6
|
var spacingStyles = xcss({
|
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
+
|
|
3
|
+
// eslint-disable-next-line @atlaskit/design-system/no-emotion-primitives -- to be migrated to @atlaskit/primitives/compiled – go/akcss
|
|
2
4
|
import { xcss } from '@atlaskit/primitives';
|
|
3
5
|
import { BaseCell } from './base-cell';
|
|
4
6
|
var spacingStyles = xcss({
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/table",
|
|
3
|
-
"version": "0.12.
|
|
3
|
+
"version": "0.12.5",
|
|
4
4
|
"description": "A table is used to display data.",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -41,15 +41,15 @@
|
|
|
41
41
|
"./primitives": "./src/ui/index.tsx"
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
|
-
"@atlaskit/button": "^23.
|
|
44
|
+
"@atlaskit/button": "^23.3.0",
|
|
45
45
|
"@atlaskit/checkbox": "^17.1.0",
|
|
46
46
|
"@atlaskit/css": "^0.12.0",
|
|
47
|
-
"@atlaskit/ds-lib": "^
|
|
47
|
+
"@atlaskit/ds-lib": "^5.0.0",
|
|
48
48
|
"@atlaskit/focus-ring": "^3.0.0",
|
|
49
|
-
"@atlaskit/icon": "^27.
|
|
50
|
-
"@atlaskit/primitives": "^14.
|
|
51
|
-
"@atlaskit/tokens": "^
|
|
52
|
-
"@atlaskit/tooltip": "^20.
|
|
49
|
+
"@atlaskit/icon": "^27.9.0",
|
|
50
|
+
"@atlaskit/primitives": "^14.11.0",
|
|
51
|
+
"@atlaskit/tokens": "^6.0.0",
|
|
52
|
+
"@atlaskit/tooltip": "^20.4.0",
|
|
53
53
|
"@atlaskit/visually-hidden": "^3.0.0",
|
|
54
54
|
"@babel/runtime": "^7.0.0",
|
|
55
55
|
"@compiled/react": "^0.18.3",
|
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
"@atlaskit/docs": "^11.0.0",
|
|
67
67
|
"@atlaskit/dynamic-table": "^18.2.0",
|
|
68
68
|
"@atlaskit/lozenge": "^13.0.0",
|
|
69
|
-
"@atlaskit/section-message": "^8.
|
|
69
|
+
"@atlaskit/section-message": "^8.5.0",
|
|
70
70
|
"@atlaskit/visual-regression": "workspace:^",
|
|
71
71
|
"@atlassian/ssr-tests": "^0.2.0",
|
|
72
72
|
"@testing-library/react": "^13.4.0",
|