@vdhewei/xlsx-template-lib 1.3.0 → 1.3.1
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.js +3 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -3013,7 +3013,7 @@ var __numberKey = (str) => {
|
|
|
3013
3013
|
var __codeAliasKey = (str) => {
|
|
3014
3014
|
const key = __codeKey(str);
|
|
3015
3015
|
if (key !== "") {
|
|
3016
|
-
return `${
|
|
3016
|
+
return `${defaultRuleTokenMap.get("@" /* UseAliasToken */)}${key}`;
|
|
3017
3017
|
}
|
|
3018
3018
|
return "";
|
|
3019
3019
|
};
|
|
@@ -3101,8 +3101,8 @@ var resolveCompileMacroExpr = (ctx, macroExpr, macroTokens2, currentCellIndex, t
|
|
|
3101
3101
|
if (cellValue === void 0 || cellValue.value === null) {
|
|
3102
3102
|
return;
|
|
3103
3103
|
}
|
|
3104
|
-
const value = cellValue.value;
|
|
3105
|
-
parts.push(
|
|
3104
|
+
const value = execMacroFormat(cellValue.value.toString(), formatter);
|
|
3105
|
+
parts.push(value);
|
|
3106
3106
|
});
|
|
3107
3107
|
});
|
|
3108
3108
|
}
|