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.
@@ -26470,7 +26470,10 @@ const InfoBox = (config) => {
26470
26470
  isShow.value = false;
26471
26471
  };
26472
26472
  function update(newValue) {
26473
- modalFuncProps.value = newValue;
26473
+ modalFuncProps.value = {
26474
+ ...modalFuncProps.value,
26475
+ ...newValue
26476
+ };
26474
26477
  }
26475
26478
  expose({
26476
26479
  update
@@ -26506,6 +26509,8 @@ const InfoBox = (config) => {
26506
26509
  class: resolveClassName2("info-wrapper"),
26507
26510
  headerAlign: "center",
26508
26511
  footerAlign: "center",
26512
+ transfer: true,
26513
+ fullscreen: false,
26509
26514
  ...modalFuncProps.value,
26510
26515
  isShow: isShow.value,
26511
26516
  onClosed,
@@ -43647,7 +43652,8 @@ const Component$2 = /* @__PURE__ */ defineComponent({
43647
43652
  props: colorPickerProps,
43648
43653
  emits: ["update:modelValue", "change"],
43649
43654
  setup(props2, {
43650
- emit
43655
+ emit,
43656
+ slots
43651
43657
  }) {
43652
43658
  const formItem = useFormItem();
43653
43659
  const showDropdown = ref(false);
@@ -43782,7 +43788,10 @@ const Component$2 = /* @__PURE__ */ defineComponent({
43782
43788
  "class": colorPickerCls.value,
43783
43789
  "onKeydown": handleTriggerKeydown,
43784
43790
  "onClick": toggleDropdown
43785
- }, [createVNode("div", {
43791
+ }, [typeof slots.trigger === "function" ? slots.trigger({
43792
+ value: colorStr.value,
43793
+ isShowDropdown: showDropdown.value
43794
+ }) : createVNode(Fragment, null, [createVNode("div", {
43786
43795
  "class": `${resolveClassName2("color-picker-color")}`
43787
43796
  }, [createVNode("span", {
43788
43797
  "class": `${resolveClassName2("color-picker-color-square")} ${!colorStr.value && `${resolveClassName2("color-picker-empty")}`}`,
@@ -43793,7 +43802,7 @@ const Component$2 = /* @__PURE__ */ defineComponent({
43793
43802
  "class": `${resolveClassName2("color-picker-icon")}`
43794
43803
  }, [createVNode(angleUp, {
43795
43804
  "class": "icon-angle-down"
43796
- }, null)]), createVNode(Transition, {
43805
+ }, null)])]), createVNode(Transition, {
43797
43806
  "name": "bk-fade-down-transition"
43798
43807
  }, {
43799
43808
  default: () => [withDirectives(createVNode(PickerDropdown, {