cnhis-design-vue 3.3.3-beta.62 → 3.3.3-beta.64

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.
@@ -201,6 +201,7 @@ declare const Keyboard: SFCWithInstall<import("vue").DefineComponent<{
201
201
  calculateFraction: () => void;
202
202
  setInputStatus: (valueRef: import("vue").Ref<string>, statusRef: import("vue").Ref<string>, isInteger?: boolean | undefined) => true | undefined;
203
203
  setInputValueStatus: () => void;
204
+ safeEval: (expression: string) => number;
204
205
  setPosition: (position: import("@vueuse/core").Position) => void;
205
206
  getPosition: () => import("@vueuse/core").Position;
206
207
  NIcon: any;
@@ -203,6 +203,7 @@ declare const _default: import("vue").DefineComponent<{
203
203
  calculateFraction: () => void;
204
204
  setInputStatus: (valueRef: import("vue").Ref<string>, statusRef: import("vue").Ref<string>, isInteger?: boolean | undefined) => true | undefined;
205
205
  setInputValueStatus: () => void;
206
+ safeEval: (expression: string) => number;
206
207
  setPosition: (position: Position) => void;
207
208
  getPosition: () => Position;
208
209
  NIcon: any;
@@ -93,6 +93,7 @@ declare const _default: import("vue").DefineComponent<{
93
93
  calculateFraction: () => void;
94
94
  setInputStatus: (valueRef: Ref<string>, statusRef: Ref<string>, isInteger?: boolean) => true | undefined;
95
95
  setInputValueStatus: () => void;
96
+ safeEval: (expression: string) => number;
96
97
  setPosition: (position: Position) => void;
97
98
  getPosition: () => Position;
98
99
  NIcon: any;
@@ -112,7 +112,8 @@ var _sfc_main = /* @__PURE__ */ defineComponent({
112
112
  inputValueStatus.value = "error";
113
113
  return;
114
114
  }
115
- emit("change", eval(inputValue.value));
115
+ const result = safeEval(inputValue.value);
116
+ emit("change", result);
116
117
  setFocus();
117
118
  break;
118
119
  }
@@ -132,7 +133,7 @@ var _sfc_main = /* @__PURE__ */ defineComponent({
132
133
  return;
133
134
  keydown("Enter");
134
135
  }
135
- async function updateValue(key2) {
136
+ async function updateValue(key) {
136
137
  var _a, _b, _c;
137
138
  const inputRefS = (_c = (_b = (_a = inputRef.value) == null ? void 0 : _a.$childrenRefs) == null ? void 0 : _b.$refs) == null ? void 0 : _c.inputElRef;
138
139
  const {
@@ -140,18 +141,18 @@ var _sfc_main = /* @__PURE__ */ defineComponent({
140
141
  selectionEnd
141
142
  } = inputRefS;
142
143
  const arr = inputValue.value.split("");
143
- if (key2 === "Undo") {
144
+ if (key === "Undo") {
144
145
  const num = selectionStart === selectionEnd ? 1 : selectionEnd - selectionStart;
145
146
  const startIdx = selectionStart === selectionEnd ? selectionStart - 1 : selectionStart;
146
147
  if (inputValue.value && startIdx > -1)
147
148
  arr.splice(startIdx, num);
148
149
  } else {
149
- arr.splice(selectionStart, selectionEnd - selectionStart, key2);
150
+ arr.splice(selectionStart, selectionEnd - selectionStart, key);
150
151
  }
151
152
  inputValue.value = arr.join("");
152
153
  await nextTick();
153
154
  inputRefS.focus();
154
- const selectionIdx = key2 === "Undo" ? !selectionStart ? 0 : selectionEnd > selectionStart ? selectionStart : selectionStart - 1 : selectionStart + 1;
155
+ const selectionIdx = key === "Undo" ? !selectionStart ? 0 : selectionEnd > selectionStart ? selectionStart : selectionStart - 1 : selectionStart + 1;
155
156
  inputRefS.setSelectionRange(selectionIdx, selectionIdx);
156
157
  setInputValueStatus();
157
158
  }
@@ -209,6 +210,18 @@ var _sfc_main = /* @__PURE__ */ defineComponent({
209
210
  function setInputValueStatus() {
210
211
  inputValueStatus.value = !inputValue.value ? "error" : "success";
211
212
  }
213
+ function safeEval(expression) {
214
+ const cleanExpression = expression.replace(/\b0+(\d)/g, "$1").replace(/\b0+\./g, "0.");
215
+ if (/^\d*\.?\d*$/.test(cleanExpression)) {
216
+ return parseFloat(cleanExpression) || 0;
217
+ }
218
+ try {
219
+ return new Function("return " + cleanExpression)();
220
+ } catch (error) {
221
+ console.error("Expression evaluation error:", error);
222
+ return 0;
223
+ }
224
+ }
212
225
  function setPosition(position) {
213
226
  if (draggableInstance) {
214
227
  draggableInstance.x.value = position.x;
@@ -258,12 +271,12 @@ var _sfc_main = /* @__PURE__ */ defineComponent({
258
271
  class: "margin-offset",
259
272
  "wrap-item": false
260
273
  }, {
261
- default: withCtx(() => [(openBlock(true), createElementBlock(Fragment, null, renderList(unref(numberKeys), (key2) => {
274
+ default: withCtx(() => [(openBlock(true), createElementBlock(Fragment, null, renderList(unref(numberKeys), (key) => {
262
275
  return openBlock(), createElementBlock("span", {
263
- key: key2,
264
- class: normalizeClass(key2 === "0" ? "is-0" : ""),
265
- onClick: ($event) => keydown(key2)
266
- }, toDisplayString(key2), 11, _hoisted_2);
276
+ key,
277
+ class: normalizeClass(key === "0" ? "is-0" : ""),
278
+ onClick: ($event) => keydown(key)
279
+ }, toDisplayString(key), 11, _hoisted_2);
267
280
  }), 128))]),
268
281
  _: 1
269
282
  }), createVNode(unref(NSpace), {
@@ -733,7 +733,14 @@ var _sfc_main = /* @__PURE__ */ defineComponent({
733
733
  "margin-bottom": "20px"
734
734
  }
735
735
  }, {
736
- default: withCtx(() => [__props.showCount ? (openBlock(), createElementBlock("span", _hoisted_3, "\u5DF2\u9009\u62E9\uFF1A" + toDisplayString(unref(caculateTagData).length), 1)) : createCommentVNode("v-if", true), __props.showClear ? (openBlock(), createElementBlock("span", {
736
+ default: withCtx(() => [__props.showCount ? (openBlock(), createElementBlock("span", _hoisted_3, [createTextVNode(function() {
737
+ var _a, _b, _c;
738
+ try {
739
+ return ((_a = window.getLanguageByCode) == null ? void 0 : _a.call(window, "10010.1.39")) || ((_c = (_b = window.top) == null ? void 0 : _b.getLanguageByCode) == null ? void 0 : _c.call(_b, "10010.1.39")) || "\u5DF2\u9009\u62E9";
740
+ } catch (e) {
741
+ return "\u5DF2\u9009\u62E9";
742
+ }
743
+ }()), createElementVNode("span", null, "\uFF1A" + toDisplayString(unref(caculateTagData).length), 1)])) : createCommentVNode("v-if", true), __props.showClear ? (openBlock(), createElementBlock("span", {
737
744
  key: 1,
738
745
  class: "c-select-person__clear-btn",
739
746
  onClick: clearAll
@@ -1,5 +1,5 @@
1
1
  var name = "@cnhis-design-vue/shared";
2
- var version = "3.3.3-beta.62";
2
+ var version = "3.3.3-beta.64";
3
3
  var main = "index.ts";
4
4
  var peerDependencies = {
5
5
  "naive-ui": "^2.30.0",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cnhis-design-vue",
3
- "version": "3.3.3-beta.62",
3
+ "version": "3.3.3-beta.64",
4
4
  "license": "ISC",
5
5
  "module": "./es/components/index.js",
6
6
  "main": "./es/components/index.js",
@@ -74,5 +74,5 @@
74
74
  "iOS 7",
75
75
  "last 3 iOS versions"
76
76
  ],
77
- "gitHead": "5e472ae10b431508c5ae65ad1db0da928cdcc0d1"
77
+ "gitHead": "1aeed5e60cce526bbf754a827aabcdfea53e81dc"
78
78
  }