qidian-vue-ui 1.0.71 → 1.0.72

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.
@@ -8526,14 +8526,14 @@ var Stream = (
8526
8526
  var ASN1 = (
8527
8527
  /** @class */
8528
8528
  (function() {
8529
- function ASN12(stream, header, length, tag, sub) {
8530
- if (!(tag instanceof ASN1Tag)) {
8529
+ function ASN12(stream, header, length, tag2, sub) {
8530
+ if (!(tag2 instanceof ASN1Tag)) {
8531
8531
  throw new Error("Invalid tag value.");
8532
8532
  }
8533
8533
  this.stream = stream;
8534
8534
  this.header = header;
8535
8535
  this.length = length;
8536
- this.tag = tag;
8536
+ this.tag = tag2;
8537
8537
  this.sub = sub;
8538
8538
  }
8539
8539
  ASN12.prototype.typeName = function() {
@@ -8743,7 +8743,7 @@ var ASN1 = (
8743
8743
  stream = str;
8744
8744
  }
8745
8745
  var streamStart = new Stream(stream);
8746
- var tag = new ASN1Tag(stream);
8746
+ var tag2 = new ASN1Tag(stream);
8747
8747
  var len = ASN12.decodeLength(stream);
8748
8748
  var start = stream.pos;
8749
8749
  var header = start - streamStart.pos;
@@ -8774,11 +8774,11 @@ var ASN1 = (
8774
8774
  }
8775
8775
  return ret;
8776
8776
  };
8777
- if (tag.tagConstructed) {
8777
+ if (tag2.tagConstructed) {
8778
8778
  sub = getSub();
8779
- } else if (tag.isUniversal() && (tag.tagNumber == 3 || tag.tagNumber == 4)) {
8779
+ } else if (tag2.isUniversal() && (tag2.tagNumber == 3 || tag2.tagNumber == 4)) {
8780
8780
  try {
8781
- if (tag.tagNumber == 3) {
8781
+ if (tag2.tagNumber == 3) {
8782
8782
  if (stream.get() != 0) {
8783
8783
  throw new Error("BIT STRINGs with unused bits cannot encapsulate.");
8784
8784
  }
@@ -8799,7 +8799,7 @@ var ASN1 = (
8799
8799
  }
8800
8800
  stream.pos = start + Math.abs(len);
8801
8801
  }
8802
- return new ASN12(streamStart, header, len, tag, sub);
8802
+ return new ASN12(streamStart, header, len, tag2, sub);
8803
8803
  };
8804
8804
  return ASN12;
8805
8805
  })()
@@ -12021,8 +12021,8 @@ const QdConfigProvider = defineComponent({
12021
12021
  watchEffect(async () => {
12022
12022
  const localeMap = {
12023
12023
  "zh-CN": () => Promise.resolve().then(() => zhCN$1),
12024
- "zh-TW": () => import("./zh-TW-OwICebAE.mjs"),
12025
- "en-US": () => import("./en-US--HDweqEV.mjs")
12024
+ "zh-TW": () => import("./zh-TW-BZkNQa_r.mjs"),
12025
+ "en-US": () => import("./en-US-BD3_KJjx.mjs")
12026
12026
  };
12027
12027
  const loadLocale = localeMap[props.locale] || localeMap["zh-CN"];
12028
12028
  const [err, res] = await to(
@@ -12109,7 +12109,7 @@ var hasOwnProperty$a = objectProto$d.hasOwnProperty;
12109
12109
  var nativeObjectToString$1 = objectProto$d.toString;
12110
12110
  var symToStringTag$1 = Symbol$1 ? Symbol$1.toStringTag : void 0;
12111
12111
  function getRawTag(value) {
12112
- var isOwn = hasOwnProperty$a.call(value, symToStringTag$1), tag = value[symToStringTag$1];
12112
+ var isOwn = hasOwnProperty$a.call(value, symToStringTag$1), tag2 = value[symToStringTag$1];
12113
12113
  try {
12114
12114
  value[symToStringTag$1] = void 0;
12115
12115
  var unmasked = true;
@@ -12118,7 +12118,7 @@ function getRawTag(value) {
12118
12118
  var result = nativeObjectToString$1.call(value);
12119
12119
  if (unmasked) {
12120
12120
  if (isOwn) {
12121
- value[symToStringTag$1] = tag;
12121
+ value[symToStringTag$1] = tag2;
12122
12122
  } else {
12123
12123
  delete value[symToStringTag$1];
12124
12124
  }
@@ -12179,8 +12179,8 @@ function isFunction(value) {
12179
12179
  if (!isObject(value)) {
12180
12180
  return false;
12181
12181
  }
12182
- var tag = baseGetTag(value);
12183
- return tag == funcTag$2 || tag == genTag$1 || tag == asyncTag || tag == proxyTag;
12182
+ var tag2 = baseGetTag(value);
12183
+ return tag2 == funcTag$2 || tag2 == genTag$1 || tag2 == asyncTag || tag2 == proxyTag;
12184
12184
  }
12185
12185
  var coreJsData = root["__core-js_shared__"];
12186
12186
  var maskSrcKey = (function() {
@@ -12947,9 +12947,9 @@ function cloneTypedArray(typedArray, isDeep) {
12947
12947
  }
12948
12948
  var boolTag$2 = "[object Boolean]", dateTag$1 = "[object Date]", mapTag$2 = "[object Map]", numberTag$2 = "[object Number]", regexpTag$1 = "[object RegExp]", setTag$2 = "[object Set]", stringTag$1 = "[object String]", symbolTag$1 = "[object Symbol]";
12949
12949
  var arrayBufferTag$1 = "[object ArrayBuffer]", dataViewTag$1 = "[object DataView]", float32Tag$1 = "[object Float32Array]", float64Tag$1 = "[object Float64Array]", int8Tag$1 = "[object Int8Array]", int16Tag$1 = "[object Int16Array]", int32Tag$1 = "[object Int32Array]", uint8Tag$1 = "[object Uint8Array]", uint8ClampedTag$1 = "[object Uint8ClampedArray]", uint16Tag$1 = "[object Uint16Array]", uint32Tag$1 = "[object Uint32Array]";
12950
- function initCloneByTag(object, tag, isDeep) {
12950
+ function initCloneByTag(object, tag2, isDeep) {
12951
12951
  var Ctor = object.constructor;
12952
- switch (tag) {
12952
+ switch (tag2) {
12953
12953
  case arrayBufferTag$1:
12954
12954
  return cloneArrayBuffer(object);
12955
12955
  case boolTag$2:
@@ -13013,17 +13013,17 @@ function baseClone(value, bitmask, customizer, key, object, stack) {
13013
13013
  if (isArr) {
13014
13014
  result = initCloneArray(value);
13015
13015
  } else {
13016
- var tag = getTag(value), isFunc = tag == funcTag || tag == genTag;
13016
+ var tag2 = getTag(value), isFunc = tag2 == funcTag || tag2 == genTag;
13017
13017
  if (isBuffer(value)) {
13018
13018
  return cloneBuffer(value, isDeep);
13019
13019
  }
13020
- if (tag == objectTag || tag == argsTag || isFunc && !object) {
13020
+ if (tag2 == objectTag || tag2 == argsTag || isFunc && !object) {
13021
13021
  result = isFunc ? {} : initCloneObject(value);
13022
13022
  } else {
13023
- if (!cloneableTags[tag]) {
13023
+ if (!cloneableTags[tag2]) {
13024
13024
  return object ? value : {};
13025
13025
  }
13026
- result = initCloneByTag(value, tag, isDeep);
13026
+ result = initCloneByTag(value, tag2, isDeep);
13027
13027
  }
13028
13028
  }
13029
13029
  stack || (stack = new Stack());
@@ -13270,7 +13270,10 @@ const _sfc_main$h = /* @__PURE__ */ defineComponent({
13270
13270
  return value !== false && value !== null && value !== void 0;
13271
13271
  });
13272
13272
  const resolvedComponent = computed(() => {
13273
- const { is } = props.config;
13273
+ const { is, render } = props.config;
13274
+ if (render) {
13275
+ return () => render(h, currentContext.value);
13276
+ }
13274
13277
  if (!is) return "div";
13275
13278
  if (typeof is === "string") {
13276
13279
  if (is === is.toLowerCase()) {
@@ -15457,7 +15460,6 @@ const _sfc_main$e = /* @__PURE__ */ defineComponent({
15457
15460
  });
15458
15461
  const select = /* @__PURE__ */ _export_sfc(_sfc_main$e, [["__scopeId", "data-v-a9450c1a"]]);
15459
15462
  const qdDialogProps = {
15460
- visible: false,
15461
15463
  width: "min(960px, 100%)",
15462
15464
  theme: "default",
15463
15465
  attach: "body",
@@ -17604,7 +17606,7 @@ const _sfc_main$5 = /* @__PURE__ */ defineComponent({
17604
17606
  };
17605
17607
  }
17606
17608
  });
17607
- const list = /* @__PURE__ */ _export_sfc(_sfc_main$5, [["__scopeId", "data-v-13f38849"]]);
17609
+ const list = /* @__PURE__ */ _export_sfc(_sfc_main$5, [["__scopeId", "data-v-4b3f4055"]]);
17608
17610
  function defineQdCrudTable(config) {
17609
17611
  return config;
17610
17612
  }
@@ -17932,7 +17934,13 @@ const _sfc_main$1 = /* @__PURE__ */ defineComponent({
17932
17934
  (!reProps.value.theme || reProps.value.theme === "text") && !__props.variant && (item.theme === "text" || !item.theme) ? (openBlock(), createElementBlock("span", {
17933
17935
  key: item.value,
17934
17936
  class: normalizeClass(item.class)
17935
- }, toDisplayString(item.label), 3)) : (openBlock(), createBlock(unref(Tag), {
17937
+ }, [
17938
+ renderSlot(_ctx.$slots, "prefix", { item }, void 0, true),
17939
+ renderSlot(_ctx.$slots, "default", { item }, () => [
17940
+ createTextVNode(toDisplayString(item.label), 1)
17941
+ ], true),
17942
+ renderSlot(_ctx.$slots, "suffix", { item }, void 0, true)
17943
+ ], 2)) : (openBlock(), createBlock(unref(Tag), {
17936
17944
  key: item.value + "",
17937
17945
  index: index2,
17938
17946
  size: reProps.value.size,
@@ -17942,15 +17950,17 @@ const _sfc_main$1 = /* @__PURE__ */ defineComponent({
17942
17950
  class: normalizeClass(item.class)
17943
17951
  }, {
17944
17952
  default: withCtx(() => [
17945
- createTextVNode(toDisplayString(item.label), 1)
17953
+ renderSlot(_ctx.$slots, "prefix", { item }, void 0, true),
17954
+ renderSlot(_ctx.$slots, "default", { item }, () => [
17955
+ createTextVNode(toDisplayString(item.label), 1)
17956
+ ], true),
17957
+ renderSlot(_ctx.$slots, "suffix", { item }, void 0, true)
17946
17958
  ]),
17947
17959
  _: 2
17948
17960
  }, 1032, ["index", "size", "shape", "theme", "variant", "class"])),
17949
- (_ctx.$slots.separator || __props.separator) && matchOptions.value.length - 1 !== index2 ? (openBlock(), createElementBlock(Fragment, { key: 2 }, [
17950
- _ctx.$slots.separator ? renderSlot(_ctx.$slots, "separator", { key: 0 }) : (openBlock(), createElementBlock(Fragment, { key: 1 }, [
17951
- createTextVNode(toDisplayString(__props.separator), 1)
17952
- ], 64))
17953
- ], 64)) : createCommentVNode("", true)
17961
+ (_ctx.$slots.separator || __props.separator) && matchOptions.value.length - 1 !== index2 ? renderSlot(_ctx.$slots, "separator", { key: 2 }, () => [
17962
+ createTextVNode(toDisplayString(__props.separator), 1)
17963
+ ], true) : createCommentVNode("", true)
17954
17964
  ], 64);
17955
17965
  }), 256))
17956
17966
  ])), [
@@ -17959,6 +17969,7 @@ const _sfc_main$1 = /* @__PURE__ */ defineComponent({
17959
17969
  };
17960
17970
  }
17961
17971
  });
17972
+ const tag = /* @__PURE__ */ _export_sfc(_sfc_main$1, [["__scopeId", "data-v-1c89a500"]]);
17962
17973
  const qdUploadProps = {
17963
17974
  modelValue: () => [],
17964
17975
  files: () => [],
@@ -18819,10 +18830,10 @@ export {
18819
18830
  setValueByPath as s,
18820
18831
  table as t,
18821
18832
  checkboxGroup as u,
18822
- _sfc_main$1 as v,
18833
+ tag as v,
18823
18834
  _sfc_main$9 as w,
18824
18835
  QdFormItem as x,
18825
18836
  qdFormGutter as y,
18826
18837
  qdFormGrid as z
18827
18838
  };
18828
- //# sourceMappingURL=index-120nQHhl.mjs.map
18839
+ //# sourceMappingURL=index-CeExET1J.mjs.map