vue-devui 1.6.10 → 1.6.12

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.
@@ -2713,8 +2713,7 @@ const commonProps = {
2713
2713
  default: void 0
2714
2714
  },
2715
2715
  size: {
2716
- type: String,
2717
- default: "md"
2716
+ type: String
2718
2717
  },
2719
2718
  showGlowStyle: {
2720
2719
  type: Boolean,
@@ -10368,7 +10367,7 @@ function useCheckboxGroup(props, ctx) {
10368
10367
  formItemContext == null ? void 0 : formItemContext.validate("change").catch(() => {
10369
10368
  });
10370
10369
  }, { deep: true });
10371
- const checkboxGroupSize = computed(() => props.size || (formContext == null ? void 0 : formContext.size) || "");
10370
+ const checkboxGroupSize = computed(() => props.size || (formContext == null ? void 0 : formContext.size) || "md");
10372
10371
  provide(checkboxGroupInjectionKey, {
10373
10372
  disabled: toRef(props, "disabled"),
10374
10373
  isShowTitle: toRef(props, "isShowTitle"),
@@ -12300,13 +12299,13 @@ var CategorySearch = defineComponent({
12300
12299
  onSearch
12301
12300
  } = useCategorySearch(props, ctx);
12302
12301
  return () => {
12303
- var _a, _b, _c, _d, _e, _f, _g, _h, _i, _j, _k, _l, _m, _n, _o, _p, _q;
12302
+ var _a, _b, _c, _d, _e, _f, _g, _h, _i, _j, _k, _l, _m, _n, _o, _p, _q, _r, _s, _t;
12304
12303
  return createVNode("div", {
12305
12304
  "ref": rootRef,
12306
12305
  "class": containerClasses.value,
12307
12306
  "onMouseenter": () => isHover.value = true,
12308
12307
  "onMouseleave": () => isHover.value = false
12309
- }, [createVNode("div", {
12308
+ }, [(_c = (_b = (_a = ctx.slots).searchIcon) == null ? void 0 : _b.call(_a)) != null ? _c : createVNode("div", {
12310
12309
  "class": "dp-category-search-icon",
12311
12310
  "onClick": onSearch
12312
12311
  }, [createVNode(SearchIcon, null, null)]), createVNode("div", {
@@ -12321,13 +12320,13 @@ var CategorySearch = defineComponent({
12321
12320
  "ref": inputRef
12322
12321
  }, null)])]), showExtendedConfig.value && createVNode("div", {
12323
12322
  "class": "dp-category-search-extended-container"
12324
- }, [((_a = operationConfig.clear) == null ? void 0 : _a.show) && createVNode(Fragment, null, [(_e = (_c = (_b = ctx.slots).clear) == null ? void 0 : _c.call(_b)) != null ? _e : createVNode(CategorySearchClear, {
12325
- "disabled": (_d = operationConfig.clear) == null ? void 0 : _d.disabled
12326
- }, null)]), ((_f = operationConfig.save) == null ? void 0 : _f.show) && createVNode(Fragment, null, [(_j = (_h = (_g = ctx.slots).save) == null ? void 0 : _h.call(_g)) != null ? _j : createVNode(CategorySearchSave, {
12327
- "disabled": (_i = operationConfig.save) == null ? void 0 : _i.disabled
12328
- }, null)]), ((_k = operationConfig.more) == null ? void 0 : _k.show) && createVNode(Fragment, null, [(_o = (_m = (_l = ctx.slots).more) == null ? void 0 : _m.call(_l)) != null ? _o : createVNode(CategorySearchMore, {
12329
- "disabled": (_n = operationConfig.more) == null ? void 0 : _n.disabled
12330
- }, null)]), (_q = (_p = ctx.slots).operation) == null ? void 0 : _q.call(_p)])]);
12323
+ }, [((_d = operationConfig.clear) == null ? void 0 : _d.show) && createVNode(Fragment, null, [(_h = (_f = (_e = ctx.slots).clear) == null ? void 0 : _f.call(_e)) != null ? _h : createVNode(CategorySearchClear, {
12324
+ "disabled": (_g = operationConfig.clear) == null ? void 0 : _g.disabled
12325
+ }, null)]), ((_i = operationConfig.save) == null ? void 0 : _i.show) && createVNode(Fragment, null, [(_m = (_k = (_j = ctx.slots).save) == null ? void 0 : _k.call(_j)) != null ? _m : createVNode(CategorySearchSave, {
12326
+ "disabled": (_l = operationConfig.save) == null ? void 0 : _l.disabled
12327
+ }, null)]), ((_n = operationConfig.more) == null ? void 0 : _n.show) && createVNode(Fragment, null, [(_r = (_p = (_o = ctx.slots).more) == null ? void 0 : _p.call(_o)) != null ? _r : createVNode(CategorySearchMore, {
12328
+ "disabled": (_q = operationConfig.more) == null ? void 0 : _q.disabled
12329
+ }, null)]), (_t = (_s = ctx.slots).operation) == null ? void 0 : _t.call(_s)])]);
12331
12330
  };
12332
12331
  }
12333
12332
  });