@atlaskit/table 0.3.3 → 0.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 +6 -0
- package/dist/cjs/ui/bulk-action-overlay.js +2 -4
- package/dist/cjs/ui/tbody.js +1 -1
- package/dist/cjs/ui/thead.js +2 -2
- package/dist/cjs/version.json +1 -1
- package/dist/es2019/ui/bulk-action-overlay.js +2 -4
- package/dist/es2019/ui/tbody.js +1 -1
- package/dist/es2019/ui/thead.js +2 -2
- package/dist/es2019/version.json +1 -1
- package/dist/esm/ui/bulk-action-overlay.js +2 -4
- package/dist/esm/ui/tbody.js +1 -1
- package/dist/esm/ui/thead.js +2 -2
- package/dist/esm/version.json +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -11,10 +11,8 @@ var _inline = _interopRequireDefault(require("@atlaskit/primitives/inline"));
|
|
|
11
11
|
/** @jsx jsx */
|
|
12
12
|
|
|
13
13
|
var overlayStyles = (0, _react.css)({
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
bottom: 0,
|
|
17
|
-
left: 32
|
|
14
|
+
inset: 0,
|
|
15
|
+
left: "var(--ds-space-400, 32px)"
|
|
18
16
|
});
|
|
19
17
|
|
|
20
18
|
/**
|
package/dist/cjs/ui/tbody.js
CHANGED
package/dist/cjs/ui/thead.js
CHANGED
|
@@ -10,11 +10,11 @@ var _react = require("@emotion/react");
|
|
|
10
10
|
var baseStyles = (0, _react.css)({
|
|
11
11
|
position: 'sticky',
|
|
12
12
|
zIndex: 1,
|
|
13
|
+
inset: 0,
|
|
13
14
|
backgroundColor: "var(--ds-surface, white)",
|
|
14
15
|
border: 'none',
|
|
15
16
|
borderBottom: "2px solid ".concat("var(--ds-border, #eee)"),
|
|
16
|
-
borderTop: '2px solid transparent'
|
|
17
|
-
inset: 0
|
|
17
|
+
borderTop: '2px solid transparent'
|
|
18
18
|
});
|
|
19
19
|
|
|
20
20
|
/**
|
package/dist/cjs/version.json
CHANGED
|
@@ -4,10 +4,8 @@ import { css, jsx } from '@emotion/react';
|
|
|
4
4
|
import { UNSAFE_Box as Box } from '@atlaskit/ds-explorations';
|
|
5
5
|
import Inline from '@atlaskit/primitives/inline';
|
|
6
6
|
const overlayStyles = css({
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
bottom: 0,
|
|
10
|
-
left: 32
|
|
7
|
+
inset: 0,
|
|
8
|
+
left: "var(--ds-space-400, 32px)"
|
|
11
9
|
});
|
|
12
10
|
|
|
13
11
|
/**
|
package/dist/es2019/ui/tbody.js
CHANGED
package/dist/es2019/ui/thead.js
CHANGED
|
@@ -4,11 +4,11 @@ import { css, jsx } from '@emotion/react';
|
|
|
4
4
|
const baseStyles = css({
|
|
5
5
|
position: 'sticky',
|
|
6
6
|
zIndex: 1,
|
|
7
|
+
inset: 0,
|
|
7
8
|
backgroundColor: "var(--ds-surface, white)",
|
|
8
9
|
border: 'none',
|
|
9
10
|
borderBottom: `2px solid ${"var(--ds-border, #eee)"}`,
|
|
10
|
-
borderTop: '2px solid transparent'
|
|
11
|
-
inset: 0
|
|
11
|
+
borderTop: '2px solid transparent'
|
|
12
12
|
});
|
|
13
13
|
|
|
14
14
|
/**
|
package/dist/es2019/version.json
CHANGED
|
@@ -4,10 +4,8 @@ import { css, jsx } from '@emotion/react';
|
|
|
4
4
|
import { UNSAFE_Box as Box } from '@atlaskit/ds-explorations';
|
|
5
5
|
import Inline from '@atlaskit/primitives/inline';
|
|
6
6
|
var overlayStyles = css({
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
bottom: 0,
|
|
10
|
-
left: 32
|
|
7
|
+
inset: 0,
|
|
8
|
+
left: "var(--ds-space-400, 32px)"
|
|
11
9
|
});
|
|
12
10
|
|
|
13
11
|
/**
|
package/dist/esm/ui/tbody.js
CHANGED
package/dist/esm/ui/thead.js
CHANGED
|
@@ -4,11 +4,11 @@ import { css, jsx } from '@emotion/react';
|
|
|
4
4
|
var baseStyles = css({
|
|
5
5
|
position: 'sticky',
|
|
6
6
|
zIndex: 1,
|
|
7
|
+
inset: 0,
|
|
7
8
|
backgroundColor: "var(--ds-surface, white)",
|
|
8
9
|
border: 'none',
|
|
9
10
|
borderBottom: "2px solid ".concat("var(--ds-border, #eee)"),
|
|
10
|
-
borderTop: '2px solid transparent'
|
|
11
|
-
inset: 0
|
|
11
|
+
borderTop: '2px solid transparent'
|
|
12
12
|
});
|
|
13
13
|
|
|
14
14
|
/**
|
package/dist/esm/version.json
CHANGED