@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.
- package/dist/jsenv_navi.js +8 -1
- package/dist/jsenv_navi.js.map +3 -3
- package/package.json +1 -1
package/dist/jsenv_navi.js
CHANGED
|
@@ -5096,7 +5096,14 @@ const getNormalizer = (key) => {
|
|
|
5096
5096
|
if (group === "typo") {
|
|
5097
5097
|
return normalizeTypoStyle;
|
|
5098
5098
|
}
|
|
5099
|
-
return
|
|
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];
|