@fecp/designer 5.4.43 → 5.4.45
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/es/designer/package.json.mjs +1 -1
- package/es/packages/vue/src/components/forms/number/Number.vue.mjs +2 -1
- package/es/packages/vue/src/utils/formulajs/calculate.mjs +1 -1
- package/lib/designer/package.json.js +1 -1
- package/lib/packages/vue/src/components/forms/number/Number.vue.js +2 -1
- package/lib/packages/vue/src/utils/formulajs/calculate.js +1 -1
- package/package.json +1 -1
|
@@ -99,7 +99,6 @@ const _sfc_main = /* @__PURE__ */ Object.assign({
|
|
|
99
99
|
textValue.value = "";
|
|
100
100
|
return;
|
|
101
101
|
}
|
|
102
|
-
debugger;
|
|
103
102
|
let displayValue = props.modelValue;
|
|
104
103
|
switch (props.format) {
|
|
105
104
|
case "wan":
|
|
@@ -126,6 +125,8 @@ const _sfc_main = /* @__PURE__ */ Object.assign({
|
|
|
126
125
|
",",
|
|
127
126
|
true
|
|
128
127
|
);
|
|
128
|
+
} else {
|
|
129
|
+
textValue.value = displayValue;
|
|
129
130
|
}
|
|
130
131
|
if (!showThousandsSeparator.value) {
|
|
131
132
|
textValue.value = delcommafy(textValue.value);
|
|
@@ -47,9 +47,9 @@ function calculate(params) {
|
|
|
47
47
|
if (!data) {
|
|
48
48
|
data = "";
|
|
49
49
|
}
|
|
50
|
+
data = JSON.stringify(data);
|
|
50
51
|
}
|
|
51
52
|
}
|
|
52
|
-
data = JSON.stringify(data);
|
|
53
53
|
const actualStart = startIndex + offset;
|
|
54
54
|
const actualEnd = endIndex + offset;
|
|
55
55
|
str = str.slice(0, actualStart) + data.toString() + str.slice(actualEnd);
|
|
@@ -101,7 +101,6 @@ const _sfc_main = /* @__PURE__ */ Object.assign({
|
|
|
101
101
|
textValue.value = "";
|
|
102
102
|
return;
|
|
103
103
|
}
|
|
104
|
-
debugger;
|
|
105
104
|
let displayValue = props.modelValue;
|
|
106
105
|
switch (props.format) {
|
|
107
106
|
case "wan":
|
|
@@ -128,6 +127,8 @@ const _sfc_main = /* @__PURE__ */ Object.assign({
|
|
|
128
127
|
",",
|
|
129
128
|
true
|
|
130
129
|
);
|
|
130
|
+
} else {
|
|
131
|
+
textValue.value = displayValue;
|
|
131
132
|
}
|
|
132
133
|
if (!showThousandsSeparator.value) {
|
|
133
134
|
textValue.value = delcommafy(textValue.value);
|
|
@@ -49,9 +49,9 @@ function calculate(params) {
|
|
|
49
49
|
if (!data) {
|
|
50
50
|
data = "";
|
|
51
51
|
}
|
|
52
|
+
data = JSON.stringify(data);
|
|
52
53
|
}
|
|
53
54
|
}
|
|
54
|
-
data = JSON.stringify(data);
|
|
55
55
|
const actualStart = startIndex + offset;
|
|
56
56
|
const actualEnd = endIndex + offset;
|
|
57
57
|
str = str.slice(0, actualStart) + data.toString() + str.slice(actualEnd);
|