@matbea-ui/matbea-ui 0.2.0-dev.562872 → 0.2.0-dev.575027

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.
@@ -24450,8 +24450,8 @@ const theme = {
24450
24450
  colors,
24451
24451
  media: {
24452
24452
  maxWidth: {
24453
- mobile: "@media (max-width: 375px)",
24454
- tablet: "@media (max-width: 834px)",
24453
+ mobile: "@media (max-width: 576px)",
24454
+ tablet: "@media (max-width: 1023px)",
24455
24455
  },
24456
24456
  },
24457
24457
  };
@@ -24529,10 +24529,10 @@ const createAdaptiveScalePlugin = (customConfig) => {
24529
24529
  }
24530
24530
  return `calc(var(${config.scaleVariable}, 1) * ${pxValue}px)`;
24531
24531
  });
24532
- element.value = element.value.replace(/([-0-9.]+)vh/g, (_, value) => {
24533
- const vhValue = parseFloat(value);
24534
- return `calc(var(${config.vhVariable}, 1vh) * ${vhValue})`;
24535
- });
24532
+ // element.value = element.value.replace(/([-0-9.]+)vh/g, (_, value) => {
24533
+ // const vhValue = parseFloat(value);
24534
+ // return `calc(var(${config.vhVariable}, 1vh) * ${vhValue})`;
24535
+ // });
24536
24536
  };
24537
24537
  };
24538
24538