@jsenv/navi 0.14.17 → 0.14.18

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.
@@ -5096,7 +5096,14 @@ const getNormalizer = (key) => {
5096
5096
  if (group === "typo") {
5097
5097
  return normalizeTypoStyle;
5098
5098
  }
5099
- return stringifyStyle;
5099
+ return normalizeRegularStyle;
5100
+ };
5101
+ const normalizeRegularStyle = (
5102
+ value,
5103
+ name,
5104
+ // styleContext, context
5105
+ ) => {
5106
+ return stringifyStyle(value, name);
5100
5107
  };
5101
5108
  const getHowToHandleStyleProp = (name) => {
5102
5109
  const getStyle = All_PROPS[name];