@symbo.ls/uikit 2.11.262 → 2.11.263

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/dist/index.cjs.js CHANGED
@@ -5858,9 +5858,9 @@ var Block = {
5858
5858
  minHeight: ({ props: props4, deps }) => deps.transformSizeRatio("minHeight", props4),
5859
5859
  maxHeight: ({ props: props4, deps }) => deps.transformSizeRatio("maxHeight", props4),
5860
5860
  heightRange: ({ props: props4, deps }) => {
5861
- if (typeof props4.widthRange !== "string")
5861
+ if (typeof props4.heightRange !== "string")
5862
5862
  return;
5863
- const [minHeight, maxHeight] = props4.widthRange.split(" ");
5863
+ const [minHeight, maxHeight] = props4.heightRange.split(" ");
5864
5864
  return {
5865
5865
  ...deps.transformSize("minHeight", minHeight),
5866
5866
  ...deps.transformSize("maxHeight", maxHeight || minHeight)