bkui-vue 0.0.2-beta.15 → 0.0.2-beta.16

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.
@@ -26473,7 +26473,10 @@ ${$(r2)}`), n2;
26473
26473
  isShow.value = false;
26474
26474
  };
26475
26475
  function update(newValue) {
26476
- modalFuncProps.value = newValue;
26476
+ modalFuncProps.value = {
26477
+ ...modalFuncProps.value,
26478
+ ...newValue
26479
+ };
26477
26480
  }
26478
26481
  expose({
26479
26482
  update
@@ -26509,6 +26512,8 @@ ${$(r2)}`), n2;
26509
26512
  class: resolveClassName2("info-wrapper"),
26510
26513
  headerAlign: "center",
26511
26514
  footerAlign: "center",
26515
+ transfer: true,
26516
+ fullscreen: false,
26512
26517
  ...modalFuncProps.value,
26513
26518
  isShow: isShow.value,
26514
26519
  onClosed,
@@ -43650,7 +43655,8 @@ ${$(r2)}`), n2;
43650
43655
  props: colorPickerProps,
43651
43656
  emits: ["update:modelValue", "change"],
43652
43657
  setup(props2, {
43653
- emit
43658
+ emit,
43659
+ slots
43654
43660
  }) {
43655
43661
  const formItem = useFormItem();
43656
43662
  const showDropdown = vue.ref(false);
@@ -43785,7 +43791,10 @@ ${$(r2)}`), n2;
43785
43791
  "class": colorPickerCls.value,
43786
43792
  "onKeydown": handleTriggerKeydown,
43787
43793
  "onClick": toggleDropdown
43788
- }, [vue.createVNode("div", {
43794
+ }, [typeof slots.trigger === "function" ? slots.trigger({
43795
+ value: colorStr.value,
43796
+ isShowDropdown: showDropdown.value
43797
+ }) : vue.createVNode(vue.Fragment, null, [vue.createVNode("div", {
43789
43798
  "class": `${resolveClassName2("color-picker-color")}`
43790
43799
  }, [vue.createVNode("span", {
43791
43800
  "class": `${resolveClassName2("color-picker-color-square")} ${!colorStr.value && `${resolveClassName2("color-picker-empty")}`}`,
@@ -43796,7 +43805,7 @@ ${$(r2)}`), n2;
43796
43805
  "class": `${resolveClassName2("color-picker-icon")}`
43797
43806
  }, [vue.createVNode(angleUp, {
43798
43807
  "class": "icon-angle-down"
43799
- }, null)]), vue.createVNode(vue.Transition, {
43808
+ }, null)])]), vue.createVNode(vue.Transition, {
43800
43809
  "name": "bk-fade-down-transition"
43801
43810
  }, {
43802
43811
  default: () => [vue.withDirectives(vue.createVNode(PickerDropdown, {