@lumx/react 3.20.1-alpha.48 → 3.20.1-alpha.49
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/index.js +3 -3
- package/index.js.map +1 -1
- package/package.json +3 -3
- package/utils/index.d.ts +2 -2
package/index.js
CHANGED
|
@@ -6099,7 +6099,7 @@ const FlexBox = forwardRef((props, ref) => {
|
|
|
6099
6099
|
return /*#__PURE__*/jsx(Component, {
|
|
6100
6100
|
ref: ref,
|
|
6101
6101
|
...forwardedProps,
|
|
6102
|
-
className: block({
|
|
6102
|
+
className: classNames.join(className, block({
|
|
6103
6103
|
[`orientation-${computedOrientation}`]: Boolean(computedOrientation),
|
|
6104
6104
|
[`v-align-${vAlign}`]: Boolean(vAlign),
|
|
6105
6105
|
[`h-align-${hAlign}`]: Boolean(hAlign),
|
|
@@ -6108,7 +6108,7 @@ const FlexBox = forwardRef((props, ref) => {
|
|
|
6108
6108
|
'fill-space': fillSpace,
|
|
6109
6109
|
'no-shrink': noShrink,
|
|
6110
6110
|
...marginAutoModifiers
|
|
6111
|
-
}
|
|
6111
|
+
})),
|
|
6112
6112
|
children: children
|
|
6113
6113
|
});
|
|
6114
6114
|
});
|
|
@@ -10564,7 +10564,7 @@ const SkeletonRectangle = forwardRef((props, ref) => {
|
|
|
10564
10564
|
...forwardedProps,
|
|
10565
10565
|
className: block({
|
|
10566
10566
|
[`aspect-ratio-${aspectRatio}`]: Boolean(aspectRatio),
|
|
10567
|
-
[`height-${height}`]: Boolean(!aspectRatio
|
|
10567
|
+
[`height-${height}`]: Boolean(!aspectRatio && height),
|
|
10568
10568
|
[`theme-${theme}`]: Boolean(theme),
|
|
10569
10569
|
[`variant-${variant}`]: Boolean(variant),
|
|
10570
10570
|
[`width-${width}`]: Boolean(width),
|