@spaced-out/ui-design-system 0.4.10 → 0.4.11
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,13 @@
|
|
|
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.4.11](https://github.com/spaced-out/ui-design-system/compare/v0.4.10...v0.4.11) (2025-07-28)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* elevation and width ([#382](https://github.com/spaced-out/ui-design-system/issues/382)) ([da920bd](https://github.com/spaced-out/ui-design-system/commit/da920bd2206e22c5094ea7d92d155b76b5dd10a8))
|
|
11
|
+
|
|
5
12
|
### [0.4.10](https://github.com/spaced-out/ui-design-system/compare/v0.4.10-beta.0...v0.4.10) (2025-07-25)
|
|
6
13
|
|
|
7
14
|
|
|
@@ -23,7 +23,7 @@ const FilterButtonOverlay = exports.FilterButtonOverlay = /*#__PURE__*/React.for
|
|
|
23
23
|
anchorPosition = _ButtonDropdown.ANCHOR_POSITION_TYPE.bottomStart,
|
|
24
24
|
positionStrategy = _ButtonDropdown.STRATEGY_TYPE.absolute,
|
|
25
25
|
clickAwayRef,
|
|
26
|
-
size,
|
|
26
|
+
size = 'medium',
|
|
27
27
|
children,
|
|
28
28
|
isFluid,
|
|
29
29
|
buttonLabel,
|
|
@@ -77,6 +77,7 @@ const FilterButtonOverlay = exports.FilterButtonOverlay = /*#__PURE__*/React.for
|
|
|
77
77
|
initialFocus: refs.reference
|
|
78
78
|
}, /*#__PURE__*/React.createElement("div", {
|
|
79
79
|
ref: (0, _utils.mergeRefs)([refs.setFloating, boundaryRef]),
|
|
80
|
+
className: _FilterButtonOverlayModule.default.overlayContainer,
|
|
80
81
|
style: {
|
|
81
82
|
display: 'flex',
|
|
82
83
|
position: strategy,
|
|
@@ -64,7 +64,7 @@ export const FilterButtonOverlay: React$AbstractComponent<
|
|
|
64
64
|
anchorPosition = ANCHOR_POSITION_TYPE.bottomStart,
|
|
65
65
|
positionStrategy = STRATEGY_TYPE.absolute,
|
|
66
66
|
clickAwayRef,
|
|
67
|
-
size,
|
|
67
|
+
size = 'medium',
|
|
68
68
|
children,
|
|
69
69
|
isFluid,
|
|
70
70
|
buttonLabel,
|
|
@@ -124,6 +124,7 @@ export const FilterButtonOverlay: React$AbstractComponent<
|
|
|
124
124
|
>
|
|
125
125
|
<div
|
|
126
126
|
ref={mergeRefs([refs.setFloating, boundaryRef])}
|
|
127
|
+
className={css.overlayContainer}
|
|
127
128
|
style={{
|
|
128
129
|
display: 'flex',
|
|
129
130
|
position: strategy,
|
|
@@ -4,15 +4,19 @@
|
|
|
4
4
|
@value (elevationMenu) from '../../styles/variables/_elevation.css';
|
|
5
5
|
|
|
6
6
|
.overlayWrapper {
|
|
7
|
-
position: relative;
|
|
8
7
|
composes: boxShadow2 from '../../styles/shadow.module.css';
|
|
9
8
|
composes: borderPrimary from '../../styles/border.module.css';
|
|
10
|
-
background-color: colorBackgroundTertiary;
|
|
11
9
|
display: flex;
|
|
10
|
+
position: relative;
|
|
11
|
+
background-color: colorBackgroundTertiary;
|
|
12
12
|
flex-flow: column;
|
|
13
13
|
min-width: size160;
|
|
14
14
|
border-radius: borderRadiusMedium;
|
|
15
|
-
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.overlayContainer {
|
|
18
|
+
width: var(--dropdown-width);
|
|
19
|
+
z-index: var(--menu-elevation);
|
|
16
20
|
}
|
|
17
21
|
|
|
18
22
|
.fluid {
|