stellar-ui-v2 1.40.32 → 1.40.34

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.
Files changed (28) hide show
  1. package/components/ste-app-update/README.md +52 -5
  2. package/components/ste-app-update/method.js +188 -28
  3. package/components/ste-app-update/ste-app-update.vue +170 -4
  4. package/components/ste-checkbox/ste-checkbox.vue +57 -55
  5. package/components/ste-checkbox-group/ste-checkbox-group.vue +21 -6
  6. package/components/ste-drag-sort/README.md +124 -0
  7. package/components/ste-drag-sort/config.json +5 -0
  8. package/components/ste-drag-sort/ste-drag-sort.vue +706 -0
  9. package/components/ste-message-box/README.md +1 -1
  10. package/components/ste-message-box/ste-message-box.js +7 -5
  11. package/components/ste-message-box/ste-message-box.vue +364 -364
  12. package/components/ste-page-container/README.md +83 -83
  13. package/components/ste-page-container/WORKLOG-2026-03-12.md +229 -229
  14. package/components/ste-page-container/ste-page-container.vue +190 -190
  15. package/components/ste-popup/README.md +16 -16
  16. package/components/ste-popup/ste-popup.vue +392 -392
  17. package/components/ste-price/ste-price.vue +256 -256
  18. package/components/ste-radio/ste-radio.vue +53 -55
  19. package/components/ste-radio-group/ste-radio-group.vue +24 -9
  20. package/components/ste-search/ste-search.vue +576 -576
  21. package/components/ste-swipe-action/ste-swipe-action.vue +8 -8
  22. package/components/ste-swipe-action-group/ste-swipe-action-group.vue +5 -2
  23. package/components/ste-toast/README.md +1 -1
  24. package/components/ste-toast/ste-toast.js +67 -67
  25. package/components/ste-video/ste-video.vue +756 -756
  26. package/package.json +2 -2
  27. package/utils/System.js +19 -4
  28. package/utils/mixin.js +150 -0
@@ -32,13 +32,13 @@ function useSteMsgBox(key) {
32
32
 
33
33
  return {
34
34
  // 显示消息弹框
35
- showMsgBox(params) {
35
+ showMsgBox(params = {}) {
36
36
  Object.assign(stateMap[key], {
37
37
  ...DEFAULT_CONFIG,
38
38
  ...params,
39
- confirm: params.confirm ?? function () {},
40
- cancel: params.cancel ?? function () {},
41
- complete: params.complete ?? function () {},
39
+ confirm: params.confirm ?? function() {},
40
+ cancel: params.cancel ?? function() {},
41
+ complete: params.complete ?? function() {},
42
42
  openBegin: true,
43
43
  });
44
44
  },
@@ -54,4 +54,6 @@ function useSteMsgBox(key) {
54
54
  }
55
55
 
56
56
  export default useSteMsgBox;
57
- export { DEFAULT_KEY };
57
+ export {
58
+ DEFAULT_KEY
59
+ };