@spaced-out/ui-design-system 0.1.53 → 0.1.55
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
|
@@ -2,6 +2,26 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [0.1.55](https://github.com/spaced-out/ui-design-system/compare/v0.1.54...v0.1.55) (2023-09-27)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* sticky header elevation fix ([480da97](https://github.com/spaced-out/ui-design-system/commit/480da97b5d506ea86ccff88c760f5ec30c2bb325))
|
|
11
|
+
|
|
12
|
+
### [0.1.54](https://github.com/spaced-out/ui-design-system/compare/v0.1.53...v0.1.54) (2023-09-25)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Features
|
|
16
|
+
|
|
17
|
+
* tokens table refactor ([f895fd7](https://github.com/spaced-out/ui-design-system/commit/f895fd794e2b26eacfcdb59c75d9e25cd40753c4))
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Bug Fixes
|
|
21
|
+
|
|
22
|
+
* file type fixes ([a9d9dca](https://github.com/spaced-out/ui-design-system/commit/a9d9dca353d59bf6ca54ddb8e3ec6195dd8858de))
|
|
23
|
+
* table height fixes ([20826ca](https://github.com/spaced-out/ui-design-system/commit/20826ca585f6e73bb73f17f5c18dad29dbd790ad))
|
|
24
|
+
|
|
5
25
|
### [0.1.53](https://github.com/spaced-out/ui-design-system/compare/v0.1.52...v0.1.53) (2023-09-21)
|
|
6
26
|
|
|
7
27
|
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
@value (sizeFluid, size2, size48, size60, size240, size300) from '../../styles/variables/_size.css';
|
|
15
15
|
@value (borderWidthNone, borderWidthPrimary, borderRadiusNone, borderRadiusMedium, borderWidthSecondary) from '../../styles/variables/_border.css';
|
|
16
16
|
@value (fontLineHeight170) from '../../styles/variables/_font.css';
|
|
17
|
-
@value (elevationCard) from '../../styles/variables/_elevation.css';
|
|
17
|
+
@value (elevationCard, elevationMenu) from '../../styles/variables/_elevation.css';
|
|
18
18
|
|
|
19
19
|
.fooBar {
|
|
20
20
|
color: colorFillPrimary;
|
|
@@ -30,8 +30,9 @@
|
|
|
30
30
|
|
|
31
31
|
.defaultTable {
|
|
32
32
|
min-width: sizeFluid;
|
|
33
|
+
height: fit-content;
|
|
33
34
|
flex-flow: column;
|
|
34
|
-
overflow-x:
|
|
35
|
+
overflow-x: auto;
|
|
35
36
|
border-collapse: collapse;
|
|
36
37
|
box-sizing: border-box;
|
|
37
38
|
border-radius: var(--border-radius);
|
|
@@ -261,7 +262,8 @@
|
|
|
261
262
|
.stickyHeader {
|
|
262
263
|
position: sticky;
|
|
263
264
|
top: spaceNone;
|
|
264
|
-
|
|
265
|
+
/* This is to let the menu container scroll below the sticky table header, if you are opening a menu inside the table */
|
|
266
|
+
z-index: calc(elevationCard + elevationMenu);
|
|
265
267
|
}
|
|
266
268
|
|
|
267
269
|
.stickyHeader::after {
|