bl-common-vue3 3.8.85 → 3.8.86

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bl-common-vue3",
3
- "version": "3.8.85",
3
+ "version": "3.8.86",
4
4
  "main": "index.js",
5
5
  "module": "index.js",
6
6
  "description": "bailing vue3 common components lib",
@@ -619,6 +619,7 @@ const utils = {
619
619
  Modal.success({
620
620
  title: () => title,
621
621
  content: () => content,
622
+ getContainer: getGlobalContainer,
622
623
  });
623
624
  },
624
625
 
@@ -629,6 +630,7 @@ const utils = {
629
630
  Modal.error({
630
631
  title: () => title,
631
632
  content: () => content,
633
+ getContainer: getGlobalContainer,
632
634
  });
633
635
  },
634
636
 
@@ -639,6 +641,7 @@ const utils = {
639
641
  Modal.warning({
640
642
  title: () => title,
641
643
  content: () => content,
644
+ getContainer: getGlobalContainer,
642
645
  });
643
646
  }
644
647
  };