@spaced-out/ui-design-system 0.0.16-beta.1 → 0.0.17
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/.cspell/custom-words.txt +2 -0
- package/CHANGELOG.md +9 -0
- package/lib/components/Checkbox/index.js +21 -13
- package/lib/components/Checkbox/index.js.flow +2 -2
- package/lib/components/Menu/Menu.module.css +6 -0
- package/lib/components/SideMenuLink/SideMenuLink.module.css +7 -9
- package/package.json +1 -1
package/.cspell/custom-words.txt
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,15 @@
|
|
|
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.0.17](https://github.com/spaced-out/ui-design-system/compare/v0.0.16...v0.0.17) (2023-02-01)
|
|
6
|
+
|
|
7
|
+
### [0.0.16](https://github.com/spaced-out/ui-design-system/compare/v0.0.16-beta.1...v0.0.16) (2023-01-26)
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
### Bug Fixes
|
|
11
|
+
|
|
12
|
+
* dropdown zindex fix ([0a3b40d](https://github.com/spaced-out/ui-design-system/commit/0a3b40d685bd2e451d9c60d82e6dd2c538239cb3))
|
|
13
|
+
|
|
5
14
|
### [0.0.16-beta.1](https://github.com/spaced-out/ui-design-system/compare/v0.0.16-beta.0...v0.0.16-beta.1) (2023-01-23)
|
|
6
15
|
|
|
7
16
|
|
|
@@ -3,17 +3,25 @@
|
|
|
3
3
|
Object.defineProperty(exports, "__esModule", {
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
|
-
Object.defineProperty(exports, "Checkbox", {
|
|
7
|
-
enumerable: true,
|
|
8
|
-
get: function () {
|
|
9
|
-
return _Checkbox.Checkbox;
|
|
10
|
-
}
|
|
11
|
-
});
|
|
12
|
-
Object.defineProperty(exports, "CheckboxGroup", {
|
|
13
|
-
enumerable: true,
|
|
14
|
-
get: function () {
|
|
15
|
-
return _CheckboxGroup.CheckboxGroup;
|
|
16
|
-
}
|
|
17
|
-
});
|
|
18
6
|
var _Checkbox = require("./Checkbox");
|
|
19
|
-
|
|
7
|
+
Object.keys(_Checkbox).forEach(function (key) {
|
|
8
|
+
if (key === "default" || key === "__esModule") return;
|
|
9
|
+
if (key in exports && exports[key] === _Checkbox[key]) return;
|
|
10
|
+
Object.defineProperty(exports, key, {
|
|
11
|
+
enumerable: true,
|
|
12
|
+
get: function () {
|
|
13
|
+
return _Checkbox[key];
|
|
14
|
+
}
|
|
15
|
+
});
|
|
16
|
+
});
|
|
17
|
+
var _CheckboxGroup = require("./CheckboxGroup");
|
|
18
|
+
Object.keys(_CheckboxGroup).forEach(function (key) {
|
|
19
|
+
if (key === "default" || key === "__esModule") return;
|
|
20
|
+
if (key in exports && exports[key] === _CheckboxGroup[key]) return;
|
|
21
|
+
Object.defineProperty(exports, key, {
|
|
22
|
+
enumerable: true,
|
|
23
|
+
get: function () {
|
|
24
|
+
return _CheckboxGroup[key];
|
|
25
|
+
}
|
|
26
|
+
});
|
|
27
|
+
});
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
//@flow strict
|
|
2
|
-
export
|
|
3
|
-
export
|
|
2
|
+
export * from './Checkbox';
|
|
3
|
+
export * from './CheckboxGroup';
|
|
@@ -36,7 +36,12 @@
|
|
|
36
36
|
spaceXXSmall
|
|
37
37
|
) from '../../styles/variables/_space.css';
|
|
38
38
|
|
|
39
|
+
@value (
|
|
40
|
+
elevationMenu
|
|
41
|
+
) from '../../styles/variables/_elevation.css';
|
|
42
|
+
|
|
39
43
|
.menuCard {
|
|
44
|
+
position: relative;
|
|
40
45
|
composes: boxShadow2 from '../../styles/shadow.module.css';
|
|
41
46
|
composes: borderPrimary from '../../styles/border.module.css';
|
|
42
47
|
background-color: colorBackgroundTertiary;
|
|
@@ -46,6 +51,7 @@
|
|
|
46
51
|
min-width: size160;
|
|
47
52
|
border-radius: borderRadiusMedium;
|
|
48
53
|
overflow: auto;
|
|
54
|
+
z-index: elevationMenu;
|
|
49
55
|
}
|
|
50
56
|
|
|
51
57
|
.medium {
|
|
@@ -5,28 +5,25 @@
|
|
|
5
5
|
colorTextInversePrimary,
|
|
6
6
|
colorSideMenuIconDefault,
|
|
7
7
|
colorSideMenuIconActive ) from '../../styles/variables/_color.css';
|
|
8
|
-
@value ( spaceXSmall ) from '../../styles/variables/_space.css';
|
|
9
|
-
@value ( size42) from '../../styles/variables/_size.css';
|
|
10
|
-
|
|
11
|
-
.fooBar {
|
|
12
|
-
color: colorFillPrimary;
|
|
13
|
-
}
|
|
8
|
+
@value ( spaceXSmall, spaceSmall ) from '../../styles/variables/_space.css';
|
|
9
|
+
@value ( size42, sizeFluid) from '../../styles/variables/_size.css';
|
|
10
|
+
@value ( borderRadiusSmall) from '../../styles/variables/_border.css';
|
|
14
11
|
|
|
15
12
|
.linkWrapper {
|
|
16
13
|
display: flex;
|
|
17
14
|
background: colorFillInversePrimary;
|
|
18
15
|
color: colorTextInverseSecondary;
|
|
19
|
-
display: flex;
|
|
20
16
|
flex-direction: row;
|
|
21
17
|
gap: spaceXSmall;
|
|
22
18
|
justify-content: flex-start;
|
|
23
19
|
align-items: center;
|
|
24
20
|
flex: auto;
|
|
25
|
-
height:
|
|
21
|
+
height: size42;
|
|
26
22
|
min-width: size42;
|
|
27
|
-
border-radius:
|
|
23
|
+
border-radius: borderRadiusSmall;
|
|
28
24
|
width: sizeFluid;
|
|
29
25
|
cursor: pointer;
|
|
26
|
+
margin-right: spaceSmall;
|
|
30
27
|
}
|
|
31
28
|
|
|
32
29
|
.linkWrapper.closed {
|
|
@@ -59,4 +56,5 @@
|
|
|
59
56
|
|
|
60
57
|
.menuText {
|
|
61
58
|
color: inherit;
|
|
59
|
+
margin-right: spaceSmall;
|
|
62
60
|
}
|