oeos-components 0.0.79 → 0.0.80

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.
@@ -15634,9 +15634,15 @@ function registerDirectives(app) {
15634
15634
  }
15635
15635
  }
15636
15636
  if (isEmpty(el.method)) {
15637
- el.method = {
15638
- click: true
15639
- };
15637
+ if (el.nodeName === "INPUT" || el.getElementsByTagName("input").length > 0) {
15638
+ el.method = {
15639
+ input: true
15640
+ };
15641
+ } else {
15642
+ el.method = {
15643
+ click: true
15644
+ };
15645
+ }
15640
15646
  }
15641
15647
  const throttledFn = throttle(binding.value, delay);
15642
15648
  el._ThrottleDirective = throttledFn;
@@ -15672,9 +15678,15 @@ function registerDirectives(app) {
15672
15678
  }
15673
15679
  }
15674
15680
  if (isEmpty(el.method)) {
15675
- el.method = {
15676
- click: true
15677
- };
15681
+ if (el.nodeName === "INPUT" || el.getElementsByTagName("input").length > 0) {
15682
+ el.method = {
15683
+ input: true
15684
+ };
15685
+ } else {
15686
+ el.method = {
15687
+ click: true
15688
+ };
15689
+ }
15678
15690
  }
15679
15691
  const debouncedFn = debounce$2(binding.value, delay);
15680
15692
  el._DebounceDirective = debouncedFn;
@@ -30994,7 +31006,6 @@ const _sfc_main$b = /* @__PURE__ */ defineComponent({
30994
31006
  const props2 = __props;
30995
31007
  const emits = __emit;
30996
31008
  function handleClick() {
30997
- console.log("handleClick");
30998
31009
  if (props2.disabled)
30999
31010
  return;
31000
31011
  emits("click");
@@ -31031,7 +31042,7 @@ const _sfc_main$b = /* @__PURE__ */ defineComponent({
31031
31042
  };
31032
31043
  }
31033
31044
  });
31034
- const Icon = /* @__PURE__ */ _export_sfc(_sfc_main$b, [["__scopeId", "data-v-ac6b4863"]]);
31045
+ const Icon = /* @__PURE__ */ _export_sfc(_sfc_main$b, [["__scopeId", "data-v-27337574"]]);
31035
31046
  const _sfc_main$a = /* @__PURE__ */ defineComponent({
31036
31047
  __name: "input",
31037
31048
  props: {
@@ -31423,7 +31434,7 @@ const _sfc_main$7 = /* @__PURE__ */ defineComponent({
31423
31434
  // 进度条百分比
31424
31435
  percentage: {
31425
31436
  type: Number,
31426
- default: 0
31437
+ required: true
31427
31438
  },
31428
31439
  // 动画时间
31429
31440
  animationTime: {
@@ -31487,7 +31498,7 @@ const _sfc_main$7 = /* @__PURE__ */ defineComponent({
31487
31498
  };
31488
31499
  }
31489
31500
  });
31490
- const Progress = /* @__PURE__ */ _export_sfc(_sfc_main$7, [["__scopeId", "data-v-326e8142"]]);
31501
+ const Progress = /* @__PURE__ */ _export_sfc(_sfc_main$7, [["__scopeId", "data-v-8038c6f9"]]);
31491
31502
  const _sfc_main$6 = /* @__PURE__ */ defineComponent({
31492
31503
  __name: "radio",
31493
31504
  props: {