yuang-framework-ui-pc 1.1.32 → 1.1.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 (60) hide show
  1. package/es/core-components.d.ts +4 -2
  2. package/es/core-components.js +59 -56
  3. package/es/ele-app/plus.d.ts +4 -6
  4. package/es/ele-cropper-modal/index.d.ts +2 -2
  5. package/es/ele-cropper-modal/index.js +4 -4
  6. package/es/ele-cropper-modal/props.d.ts +2 -2
  7. package/es/ele-data-table/index.d.ts +4 -4
  8. package/es/ele-map-picker/index.d.ts +2 -2
  9. package/es/ele-map-picker/index.js +4 -4
  10. package/es/ele-map-picker/props.d.ts +2 -2
  11. package/es/ele-pro-layout/index.d.ts +1 -1
  12. package/es/ele-pro-table/components/tool-export.d.ts +3 -3
  13. package/es/ele-pro-table/components/tool-export.js +4 -4
  14. package/es/ele-pro-table/components/tool-print.d.ts +3 -3
  15. package/es/ele-pro-table/components/tool-print.js +4 -4
  16. package/es/ele-pro-table/types.d.ts +3 -3
  17. package/es/ele-test/index.d.ts +2 -0
  18. package/es/ele-test/index.js +18 -0
  19. package/es/ele-test/style/css-var.scss +8 -0
  20. package/es/ele-test/style/index.d.ts +1 -0
  21. package/es/ele-test/style/index.js +2 -0
  22. package/es/ele-test/style/index.scss +100 -0
  23. package/es/style/plus.scss +0 -2
  24. package/es/yu-test/index.d.ts +2 -0
  25. package/es/yu-test/index.js +18 -0
  26. package/es/yu-test/style/css-var.scss +8 -0
  27. package/es/yu-test/style/index.d.ts +1 -0
  28. package/es/yu-test/style/index.js +2 -0
  29. package/es/yu-test/style/index.scss +100 -0
  30. package/lib/core-components.cjs +110 -107
  31. package/lib/core-components.d.ts +4 -2
  32. package/lib/ele-app/plus.d.ts +4 -6
  33. package/lib/ele-cropper-modal/index.cjs +4 -4
  34. package/lib/ele-cropper-modal/index.d.ts +2 -2
  35. package/lib/ele-cropper-modal/props.d.ts +2 -2
  36. package/lib/ele-data-table/index.d.ts +4 -4
  37. package/lib/ele-map-picker/index.cjs +4 -4
  38. package/lib/ele-map-picker/index.d.ts +2 -2
  39. package/lib/ele-map-picker/props.d.ts +2 -2
  40. package/lib/ele-pro-layout/index.d.ts +1 -1
  41. package/lib/ele-pro-table/components/tool-export.cjs +4 -4
  42. package/lib/ele-pro-table/components/tool-export.d.ts +3 -3
  43. package/lib/ele-pro-table/components/tool-print.cjs +4 -4
  44. package/lib/ele-pro-table/components/tool-print.d.ts +3 -3
  45. package/lib/ele-pro-table/types.d.ts +3 -3
  46. package/lib/ele-test/index.cjs +17 -0
  47. package/lib/ele-test/index.d.ts +2 -0
  48. package/lib/ele-test/style/css-var.scss +8 -0
  49. package/lib/ele-test/style/index.cjs +3 -0
  50. package/lib/ele-test/style/index.d.ts +1 -0
  51. package/lib/ele-test/style/index.scss +100 -0
  52. package/lib/style/plus.scss +0 -2
  53. package/lib/yu-test/index.cjs +17 -0
  54. package/lib/yu-test/index.d.ts +2 -0
  55. package/lib/yu-test/style/css-var.scss +8 -0
  56. package/lib/yu-test/style/index.cjs +3 -0
  57. package/lib/yu-test/style/index.d.ts +1 -0
  58. package/lib/yu-test/style/index.scss +100 -0
  59. package/package.json +1 -1
  60. package/typings/global.d.ts +1 -2
@@ -22,8 +22,6 @@
22
22
  @use '../ele-loading/style/index.scss' as loading;
23
23
  @use '../ele-map-picker/style/index.scss' as mapPicker;
24
24
  @use '../ele-menus/style/index.scss' as menus;
25
- // temp
26
- @use '../ele-dialog/style/index.scss' as modal;
27
25
  @use '../ele-dialog/style/index.scss' as dialog;
28
26
  @use '../ele-page/style/index.scss' as page;
29
27
  @use '../ele-pagination/style/index.scss' as pagination;
@@ -0,0 +1,2 @@
1
+ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{}>>, {}, {}>;
2
+ export default _default;
@@ -0,0 +1,18 @@
1
+ import { defineComponent, openBlock, createElementBlock } from "vue";
2
+ const _sfc_main = defineComponent({
3
+ name: "YuTest"
4
+ });
5
+ const _export_sfc = (sfc, props) => {
6
+ const target = sfc.__vccOpts || sfc;
7
+ for (const [key, val] of props) {
8
+ target[key] = val;
9
+ }
10
+ return target;
11
+ };
12
+ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
13
+ return openBlock(), createElementBlock("div", null, "测试");
14
+ }
15
+ const index = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render]]);
16
+ export {
17
+ index as default
18
+ };
@@ -0,0 +1,8 @@
1
+ @use '../../style/util.scss' as *;
2
+
3
+ /* 文本主题变量 */
4
+ @mixin set-text-var($var) {
5
+ .ele-text {
6
+ @include set-ele-var('test', $var);
7
+ }
8
+ }
@@ -0,0 +1 @@
1
+
@@ -0,0 +1,2 @@
1
+ import "element-plus/es/components/icon/style/index";
2
+ import "./index.scss";
@@ -0,0 +1,100 @@
1
+ @use '../../style/themes/default.scss' as *;
2
+ @use '../../style/util.scss' as *;
3
+ @use './css-var.scss' as *;
4
+
5
+ @include set-text-var($ele);
6
+
7
+ .yu-test {
8
+ color: elVar('text-color', 'regular');
9
+ font-size: elVar('font-size', 'base');
10
+ box-sizing: border-box;
11
+
12
+ /* 类型 */
13
+ &.is-heading {
14
+ color: elVar('text-color', 'primary');
15
+ font-weight: eleVar('text', 'heading-weight');
16
+ }
17
+
18
+ &.is-secondary {
19
+ color: elVar('text-color', 'secondary');
20
+ }
21
+
22
+ &.is-placeholder {
23
+ color: elVar('text-color', 'placeholder');
24
+ }
25
+
26
+ &.is-primary {
27
+ color: elVar('color-primary');
28
+ }
29
+
30
+ &.is-success {
31
+ color: elVar('color-success');
32
+ }
33
+
34
+ &.is-warning {
35
+ color: elVar('color-warning');
36
+ }
37
+
38
+ &.is-danger {
39
+ color: elVar('color-danger');
40
+ }
41
+
42
+ &.is-info {
43
+ color: elVar('color-info');
44
+ }
45
+
46
+ /* 尺寸 */
47
+ &.is-xs {
48
+ font-size: elVar('font-size', 'extra-small');
49
+ }
50
+
51
+ &.is-sm {
52
+ font-size: elVar('font-size', 'small');
53
+ }
54
+
55
+ &.is-md {
56
+ font-size: elVar('font-size', 'medium');
57
+ }
58
+
59
+ &.is-lg {
60
+ font-size: elVar('font-size', 'large');
61
+ }
62
+
63
+ &.is-xl {
64
+ font-size: elVar('font-size', 'extra-large');
65
+ }
66
+
67
+ &.is-xxl {
68
+ font-size: eleVar('text', 'xxl');
69
+ }
70
+
71
+ &.is-xxxl {
72
+ font-size: eleVar('text', 'xxxl');
73
+ }
74
+
75
+ /* 其它 */
76
+ &.is-delete {
77
+ text-decoration: line-through;
78
+ }
79
+
80
+ &.is-underline {
81
+ text-decoration: underline;
82
+
83
+ &.is-delete {
84
+ text-decoration: line-through underline;
85
+ }
86
+ }
87
+
88
+ &.is-strong {
89
+ font-weight: bold;
90
+ }
91
+
92
+ &.is-italic {
93
+ font-style: italic;
94
+ }
95
+
96
+ /* 图标 */
97
+ &.is-icon > .el-icon {
98
+ vertical-align: -2px;
99
+ }
100
+ }
@@ -1,109 +1,112 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
3
- const index = require("./ele-admin-layout/index");
4
- const index$1 = require("./ele-alert/index");
5
- const index$2 = require("./ele-app/index");
6
- const index$3 = require("./ele-avatar-group/index");
7
- const index$4 = require("./ele-backtop/index");
8
- const index$5 = require("./ele-basic-select/index");
9
- const index$6 = require("./ele-bottom-bar/index");
10
- const index$7 = require("./ele-breadcrumb/index");
11
- const index$8 = require("./ele-card/index");
12
- const index$9 = require("./ele-check-card/index");
13
- const index$a = require("./ele-config-provider/index");
14
- const index$b = require("./ele-copyable/index");
15
- const index$c = require("./ele-dashboard/index");
16
- const index$d = require("./ele-data-table/index");
17
- const index$e = require("./ele-dot/index");
18
- const index$f = require("./ele-drawer/index");
19
- const index$g = require("./ele-dropdown/index");
20
- const index$h = require("./ele-edit-tag/index");
21
- const index$i = require("./ele-ellipsis/index");
22
- const index$j = require("./ele-file-list/index");
23
- const index$k = require("./ele-file-list-tool/index");
24
- const index$l = require("./ele-icon-select/index");
25
- const index$m = require("./ele-image-viewer/index");
26
- const index$n = require("./ele-loading/index");
27
- const index$o = require("./ele-menus/index");
28
- const index$p = require("./ele-dialog/index");
29
- const index$q = require("./ele-page/index");
30
- const index$r = require("./ele-pagination/index");
31
- const index$s = require("./ele-popconfirm/index");
32
- const index$t = require("./ele-popover/index");
33
- const index$u = require("./ele-printer/index");
34
- const index$v = require("./ele-pro-layout/index");
35
- const index$w = require("./ele-pro-table/index");
36
- const index$x = require("./ele-qr-code/index");
37
- const index$y = require("./ele-qr-code-svg/index");
38
- const index$z = require("./ele-segmented/index");
39
- const index$A = require("./ele-split-panel/index");
40
- const index$B = require("./ele-steps/index");
41
- const index$C = require("./ele-tabs/index");
42
- const index$D = require("./ele-tab-tool/index");
43
- const index$E = require("./ele-tab-wrap/index");
44
- const index$F = require("./ele-table/index");
45
- const index$G = require("./ele-table-select/index");
46
- const index$H = require("./ele-text/index");
47
- const index$I = require("./ele-tool/index");
48
- const index$J = require("./ele-toolbar/index");
49
- const index$K = require("./ele-tooltip/index");
50
- const index$L = require("./ele-tour/index");
51
- const index$M = require("./ele-tree-select/index");
52
- const index$N = require("./ele-upload-list/index");
53
- const index$O = require("./ele-virtual-table/index");
54
- const index$P = require("./ele-watermark/index");
55
- const index$Q = require("./yu-slider-captcha-dialog/index");
56
- exports.EleAdminLayout = index;
57
- exports.EleAlert = index$1;
58
- exports.EleApp = index$2;
59
- exports.EleAvatarGroup = index$3;
60
- exports.EleBacktop = index$4;
61
- exports.EleBasicSelect = index$5;
62
- exports.EleBottomBar = index$6;
63
- exports.EleBreadcrumb = index$7;
64
- exports.EleCard = index$8;
65
- exports.EleCheckCard = index$9;
66
- exports.EleConfigProvider = index$a;
67
- exports.EleCopyable = index$b;
68
- exports.EleDashboard = index$c;
69
- exports.EleDataTable = index$d;
70
- exports.EleDot = index$e;
71
- exports.EleDrawer = index$f;
72
- exports.EleDropdown = index$g;
73
- exports.EleEditTag = index$h;
74
- exports.EleEllipsis = index$i;
75
- exports.EleFileList = index$j;
76
- exports.EleFileListTool = index$k;
77
- exports.EleIconSelect = index$l;
78
- exports.EleImageViewer = index$m;
79
- exports.EleLoading = index$n;
80
- exports.EleMenus = index$o;
81
- exports.EleDialog = index$p;
82
- exports.EleModal = index$p;
83
- exports.ElePage = index$q;
84
- exports.ElePagination = index$r;
85
- exports.ElePopconfirm = index$s;
86
- exports.ElePopover = index$t;
87
- exports.ElePrinter = index$u;
88
- exports.EleProLayout = index$v;
89
- exports.EleProTable = index$w;
90
- exports.EleQrCode = index$x;
91
- exports.EleQrCodeSvg = index$y;
92
- exports.EleSegmented = index$z;
93
- exports.EleSplitPanel = index$A;
94
- exports.EleSteps = index$B;
95
- exports.EleTabs = index$C;
96
- exports.EleTabTool = index$D;
97
- exports.EleTabWrap = index$E;
98
- exports.EleTable = index$F;
99
- exports.EleTableSelect = index$G;
100
- exports.EleText = index$H;
101
- exports.EleTool = index$I;
102
- exports.EleToolbar = index$J;
103
- exports.EleTooltip = index$K;
104
- exports.EleTour = index$L;
105
- exports.EleTreeSelect = index$M;
106
- exports.EleUploadList = index$N;
107
- exports.EleVirtualTable = index$O;
108
- exports.EleWatermark = index$P;
109
- exports.YuSliderCaptchaDialog = index$Q;
3
+ const index$1 = require("./ele-admin-layout/index");
4
+ const index$2 = require("./ele-alert/index");
5
+ const index$3 = require("./ele-app/index");
6
+ const index$4 = require("./ele-avatar-group/index");
7
+ const index$5 = require("./ele-backtop/index");
8
+ const index$6 = require("./ele-basic-select/index");
9
+ const index$7 = require("./ele-bottom-bar/index");
10
+ const index$8 = require("./ele-breadcrumb/index");
11
+ const index$9 = require("./ele-card/index");
12
+ const index$a = require("./ele-check-card/index");
13
+ const index$b = require("./ele-config-provider/index");
14
+ const index$c = require("./ele-copyable/index");
15
+ const index$d = require("./ele-dashboard/index");
16
+ const index$e = require("./ele-data-table/index");
17
+ const index$f = require("./ele-dot/index");
18
+ const index$g = require("./ele-drawer/index");
19
+ const index$h = require("./ele-dropdown/index");
20
+ const index$i = require("./ele-edit-tag/index");
21
+ const index$j = require("./ele-ellipsis/index");
22
+ const index$k = require("./ele-file-list/index");
23
+ const index$l = require("./ele-file-list-tool/index");
24
+ const index$m = require("./ele-icon-select/index");
25
+ const index$n = require("./ele-image-viewer/index");
26
+ const index$o = require("./ele-loading/index");
27
+ const index$p = require("./ele-menus/index");
28
+ const index$q = require("./ele-dialog/index");
29
+ const index$r = require("./ele-page/index");
30
+ const index$s = require("./ele-pagination/index");
31
+ const index$t = require("./ele-popconfirm/index");
32
+ const index$u = require("./ele-popover/index");
33
+ const index$v = require("./ele-printer/index");
34
+ const index$w = require("./ele-pro-layout/index");
35
+ const index$x = require("./ele-pro-table/index");
36
+ const index$y = require("./ele-qr-code/index");
37
+ const index$z = require("./ele-qr-code-svg/index");
38
+ const index$A = require("./ele-segmented/index");
39
+ const index$B = require("./ele-split-panel/index");
40
+ const index$C = require("./ele-steps/index");
41
+ const index$D = require("./ele-tabs/index");
42
+ const index$E = require("./ele-tab-tool/index");
43
+ const index$F = require("./ele-tab-wrap/index");
44
+ const index$G = require("./ele-table/index");
45
+ const index$H = require("./ele-table-select/index");
46
+ const index$I = require("./ele-text/index");
47
+ const index$J = require("./ele-tool/index");
48
+ const index$K = require("./ele-toolbar/index");
49
+ const index$L = require("./ele-tooltip/index");
50
+ const index$M = require("./ele-tour/index");
51
+ const index$N = require("./ele-tree-select/index");
52
+ const index$O = require("./ele-upload-list/index");
53
+ const index$P = require("./ele-virtual-table/index");
54
+ const index$Q = require("./ele-watermark/index");
55
+ const index$R = require("./ele-test/index");
56
+ const index$S = require("./yu-test/index");
57
+ const index = require("./yu-slider-captcha-dialog/index");
58
+ exports.EleAdminLayout = index$1;
59
+ exports.EleAlert = index$2;
60
+ exports.EleApp = index$3;
61
+ exports.EleAvatarGroup = index$4;
62
+ exports.EleBacktop = index$5;
63
+ exports.EleBasicSelect = index$6;
64
+ exports.EleBottomBar = index$7;
65
+ exports.EleBreadcrumb = index$8;
66
+ exports.EleCard = index$9;
67
+ exports.EleCheckCard = index$a;
68
+ exports.EleConfigProvider = index$b;
69
+ exports.EleCopyable = index$c;
70
+ exports.EleDashboard = index$d;
71
+ exports.EleDataTable = index$e;
72
+ exports.EleDot = index$f;
73
+ exports.EleDrawer = index$g;
74
+ exports.EleDropdown = index$h;
75
+ exports.EleEditTag = index$i;
76
+ exports.EleEllipsis = index$j;
77
+ exports.EleFileList = index$k;
78
+ exports.EleFileListTool = index$l;
79
+ exports.EleIconSelect = index$m;
80
+ exports.EleImageViewer = index$n;
81
+ exports.EleLoading = index$o;
82
+ exports.EleMenus = index$p;
83
+ exports.EleDialog = index$q;
84
+ exports.ElePage = index$r;
85
+ exports.ElePagination = index$s;
86
+ exports.ElePopconfirm = index$t;
87
+ exports.ElePopover = index$u;
88
+ exports.ElePrinter = index$v;
89
+ exports.EleProLayout = index$w;
90
+ exports.EleProTable = index$x;
91
+ exports.EleQrCode = index$y;
92
+ exports.EleQrCodeSvg = index$z;
93
+ exports.EleSegmented = index$A;
94
+ exports.EleSplitPanel = index$B;
95
+ exports.EleSteps = index$C;
96
+ exports.EleTabs = index$D;
97
+ exports.EleTabTool = index$E;
98
+ exports.EleTabWrap = index$F;
99
+ exports.EleTable = index$G;
100
+ exports.EleTableSelect = index$H;
101
+ exports.EleText = index$I;
102
+ exports.EleTool = index$J;
103
+ exports.EleToolbar = index$K;
104
+ exports.EleTooltip = index$L;
105
+ exports.EleTour = index$M;
106
+ exports.EleTreeSelect = index$N;
107
+ exports.EleUploadList = index$O;
108
+ exports.EleVirtualTable = index$P;
109
+ exports.EleWatermark = index$Q;
110
+ exports.ELeTest = index$R;
111
+ exports.YuTest = index$S;
112
+ exports.YuSliderCaptchaDialog = index;
@@ -1,3 +1,4 @@
1
+ import { default as YuSliderCaptchaDialog } from './yu-slider-captcha-dialog/index';
1
2
  export { default as EleAdminLayout } from './ele-admin-layout/index';
2
3
  export { default as EleAlert } from './ele-alert/index';
3
4
  export { default as EleApp } from './ele-app/index';
@@ -23,7 +24,6 @@ export { default as EleIconSelect } from './ele-icon-select/index';
23
24
  export { default as EleImageViewer } from './ele-image-viewer/index';
24
25
  export { default as EleLoading } from './ele-loading/index';
25
26
  export { default as EleMenus } from './ele-menus/index';
26
- export { default as EleModal } from './ele-dialog/index';
27
27
  export { default as EleDialog } from './ele-dialog/index';
28
28
  export { default as ElePage } from './ele-page/index';
29
29
  export { default as ElePagination } from './ele-pagination/index';
@@ -51,4 +51,6 @@ export { default as EleTreeSelect } from './ele-tree-select/index';
51
51
  export { default as EleUploadList } from './ele-upload-list/index';
52
52
  export { default as EleVirtualTable } from './ele-virtual-table/index';
53
53
  export { default as EleWatermark } from './ele-watermark/index';
54
- export { default as YuSliderCaptchaDialog } from './yu-slider-captcha-dialog/index';
54
+ export { default as ELeTest } from './ele-test/index';
55
+ export { default as YuTest } from './yu-test/index';
56
+ export { YuSliderCaptchaDialog };
@@ -14,7 +14,7 @@ import type { LoadingProps } from '../ele-loading/props';
14
14
  import type EleMenus from '../ele-menus/index';
15
15
  import type { MenusProps } from '../ele-menus/props';
16
16
  import type { MenuItem } from '../ele-menus/types';
17
- import type { ModalProps } from '../ele-dialog/props';
17
+ import type { EleDialogProps as EleDialogProps2 } from '../ele-dialog/props';
18
18
  import type { PaginationProps } from '../ele-pagination/props';
19
19
  import type ElePopover from '../ele-popover/index';
20
20
  import type { PopoverProps } from '../ele-popover/props';
@@ -104,9 +104,9 @@ export type EleMenusProps = ComponentProps<MenusProps>;
104
104
  export type EleMenuItemProps = Partial<MenuItem>;
105
105
 
106
106
  /**
107
- * EleModal
107
+ * EleDialog
108
108
  */
109
- export type EleModalProps = ComponentProps<ModalProps>;
109
+ export type EleDialogProps = ComponentProps<EleDialogProps2>;
110
110
 
111
111
  /**
112
112
  * ElePagination
@@ -178,6 +178,4 @@ export type EleUploadListProps = Partial<UploadListProps>;
178
178
  /**
179
179
  * EleVirtualTable
180
180
  */
181
- export type EleVirtualTableInstance = InstanceType<
182
- typeof EleVirtualTable
183
- > | null;
181
+ export type EleVirtualTableInstance = InstanceType<typeof EleVirtualTable> | null;
@@ -1,12 +1,12 @@
1
1
  "use strict";
2
2
  const vue = require("vue");
3
3
  const receiver = require("../ele-config-provider/receiver");
4
- const EleModal = require("../ele-dialog/index");
4
+ const EleDialog = require("../ele-dialog/index");
5
5
  const EleCropper = require("../ele-cropper/index");
6
6
  const props = require("./props");
7
7
  const _sfc_main = vue.defineComponent({
8
8
  name: "EleCropperModal",
9
- components: { EleModal, EleCropper },
9
+ components: { EleDialog, EleCropper },
10
10
  props: props.cropperModalProps,
11
11
  emits: props.cropperModalEmits,
12
12
  setup(props2, { emit }) {
@@ -29,8 +29,8 @@ const _export_sfc = (sfc, props2) => {
29
29
  };
30
30
  function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
31
31
  const _component_EleCropper = vue.resolveComponent("EleCropper");
32
- const _component_EleModal = vue.resolveComponent("EleModal");
33
- return vue.openBlock(), vue.createBlock(_component_EleModal, vue.mergeProps({
32
+ const _component_EleDialog = vue.resolveComponent("EleDialog");
33
+ return vue.openBlock(), vue.createBlock(_component_EleDialog, vue.mergeProps({
34
34
  width: "620px",
35
35
  title: _ctx.lang.title
36
36
  }, _ctx.modalProps || {}, {
@@ -2,7 +2,7 @@ import { CropperLocale } from '../ele-cropper/types';
2
2
 
3
3
  declare const _default: import('vue').DefineComponent<{
4
4
  modelValue: BooleanConstructor;
5
- modalProps: import('vue').PropType<Partial<Omit<import('../ele-app/plus').EleModalProps, "modelValue">>>;
5
+ modalProps: import('vue').PropType<Partial<Omit<import('../ele-app/plus').EleDialogProps, "modelValue">>>;
6
6
  height: StringConstructor;
7
7
  src: StringConstructor;
8
8
  imageType: {
@@ -48,7 +48,7 @@ declare const _default: import('vue').DefineComponent<{
48
48
  'update:modelValue': (_value: boolean) => boolean;
49
49
  }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
50
50
  modelValue: BooleanConstructor;
51
- modalProps: import('vue').PropType<Partial<Omit<import('../ele-app/plus').EleModalProps, "modelValue">>>;
51
+ modalProps: import('vue').PropType<Partial<Omit<import('../ele-app/plus').EleDialogProps, "modelValue">>>;
52
52
  height: StringConstructor;
53
53
  src: StringConstructor;
54
54
  imageType: {
@@ -1,5 +1,5 @@
1
1
  import { PropType, ExtractPropTypes } from 'vue';
2
- import { EleModalProps } from '../ele-app/plus';
2
+ import { EleDialogProps } from '../ele-app/plus';
3
3
 
4
4
  /**
5
5
  * 属性
@@ -8,7 +8,7 @@ export declare const cropperModalProps: {
8
8
  /** 弹窗是否显示 */
9
9
  modelValue: BooleanConstructor;
10
10
  /** 弹窗参数 */
11
- modalProps: PropType<Partial<Omit<EleModalProps, "modelValue">>>;
11
+ modalProps: PropType<Partial<Omit<EleDialogProps, "modelValue">>>;
12
12
  height: StringConstructor;
13
13
  src: StringConstructor;
14
14
  imageType: {
@@ -52,18 +52,18 @@ declare const _default: import('vue').DefineComponent<{
52
52
  type: import('vue').PropType<any[]>;
53
53
  default: () => never[];
54
54
  };
55
+ width: (NumberConstructor | StringConstructor)[];
56
+ height: (NumberConstructor | StringConstructor)[];
55
57
  fit: {
56
58
  type: BooleanConstructor;
57
59
  default: boolean;
58
60
  };
59
- width: (NumberConstructor | StringConstructor)[];
60
61
  maxHeight: (NumberConstructor | StringConstructor)[];
61
62
  lazy: BooleanConstructor;
62
63
  className: {
63
64
  type: StringConstructor;
64
65
  default: string;
65
66
  };
66
- height: (NumberConstructor | StringConstructor)[];
67
67
  showHeader: {
68
68
  type: BooleanConstructor;
69
69
  default: boolean;
@@ -218,18 +218,18 @@ declare const _default: import('vue').DefineComponent<{
218
218
  type: import('vue').PropType<any[]>;
219
219
  default: () => never[];
220
220
  };
221
+ width: (NumberConstructor | StringConstructor)[];
222
+ height: (NumberConstructor | StringConstructor)[];
221
223
  fit: {
222
224
  type: BooleanConstructor;
223
225
  default: boolean;
224
226
  };
225
- width: (NumberConstructor | StringConstructor)[];
226
227
  maxHeight: (NumberConstructor | StringConstructor)[];
227
228
  lazy: BooleanConstructor;
228
229
  className: {
229
230
  type: StringConstructor;
230
231
  default: string;
231
232
  };
232
- height: (NumberConstructor | StringConstructor)[];
233
233
  showHeader: {
234
234
  type: BooleanConstructor;
235
235
  default: boolean;
@@ -3,12 +3,12 @@ const vue = require("vue");
3
3
  const core = require("../utils/core");
4
4
  const receiver = require("../ele-config-provider/receiver");
5
5
  const util = require("../ele-pro-layout/util");
6
- const EleModal = require("../ele-dialog/index");
6
+ const EleDialog = require("../ele-dialog/index");
7
7
  const MapView = require("./components/map-view");
8
8
  const props = require("./props");
9
9
  const _sfc_main = vue.defineComponent({
10
10
  name: "EleMapPicker",
11
- components: { EleModal, MapView },
11
+ components: { EleDialog, MapView },
12
12
  props: props.mapPickerProps,
13
13
  emits: props.mapPickerEmits,
14
14
  setup(props$1, { emit }) {
@@ -57,8 +57,8 @@ const _export_sfc = (sfc, props2) => {
57
57
  };
58
58
  function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
59
59
  const _component_MapView = vue.resolveComponent("MapView");
60
- const _component_EleModal = vue.resolveComponent("EleModal");
61
- return vue.openBlock(), vue.createBlock(_component_EleModal, vue.mergeProps({
60
+ const _component_EleDialog = vue.resolveComponent("EleDialog");
61
+ return vue.openBlock(), vue.createBlock(_component_EleDialog, vue.mergeProps({
62
62
  width: "740px",
63
63
  title: _ctx.lang.title
64
64
  }, _ctx.modalProps || {}, {
@@ -6,7 +6,7 @@ import { default as MapViewType } from './components/map-view';
6
6
  export type MapViewInstance = InstanceType<typeof MapViewType> | null;
7
7
  declare const _default: import('vue').DefineComponent<{
8
8
  modelValue: BooleanConstructor;
9
- modalProps: import('vue').PropType<Omit<import('../ele-app/plus').EleModalProps, "modelValue">>;
9
+ modalProps: import('vue').PropType<Omit<import('../ele-app/plus').EleDialogProps, "modelValue">>;
10
10
  responsive: {
11
11
  type: BooleanConstructor;
12
12
  default: null;
@@ -96,7 +96,7 @@ declare const _default: import('vue').DefineComponent<{
96
96
  'update:modelValue': (_value: boolean) => boolean;
97
97
  }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
98
98
  modelValue: BooleanConstructor;
99
- modalProps: import('vue').PropType<Omit<import('../ele-app/plus').EleModalProps, "modelValue">>;
99
+ modalProps: import('vue').PropType<Omit<import('../ele-app/plus').EleDialogProps, "modelValue">>;
100
100
  responsive: {
101
101
  type: BooleanConstructor;
102
102
  default: null;
@@ -1,7 +1,7 @@
1
1
  import { PropType, ExtractPropTypes } from 'vue';
2
2
  import { StyleValue } from '../ele-app/types';
3
3
  import { ElEmptyProps } from '../ele-app/el';
4
- import { EleModalProps } from '../ele-app/plus';
4
+ import { EleDialogProps } from '../ele-app/plus';
5
5
  import { SelectMode, PoiItem, MapLocale } from './types';
6
6
 
7
7
  /**
@@ -104,7 +104,7 @@ export declare const mapPickerProps: {
104
104
  /** 弹窗是否显示 */
105
105
  modelValue: BooleanConstructor;
106
106
  /** 弹窗参数 */
107
- modalProps: PropType<Omit<EleModalProps, "modelValue">>;
107
+ modalProps: PropType<Omit<EleDialogProps, "modelValue">>;
108
108
  /** 是否开启响应式 */
109
109
  responsive: {
110
110
  type: BooleanConstructor;
@@ -371,10 +371,10 @@ declare const _default: import('vue').DefineComponent<{
371
371
  "onUpdate:maximized"?: ((_maximized: boolean) => any) | undefined;
372
372
  onBodySizeChange?: ((_option: import('./types').BodySizeChangeOption) => any) | undefined;
373
373
  }, {
374
+ height: string | number;
374
375
  uniqueOpened: boolean;
375
376
  collapse: boolean;
376
377
  ellipsis: boolean;
377
- height: string | number;
378
378
  compact: boolean;
379
379
  transitionDelay: number;
380
380
  expanded: boolean;
@@ -2,7 +2,7 @@
2
2
  const vue = require("vue");
3
3
  const elementPlus = require("element-plus");
4
4
  const core = require("../../utils/core");
5
- const EleModal = require("../../ele-dialog/index");
5
+ const EleDialog = require("../../ele-dialog/index");
6
6
  const util = require("../util");
7
7
  const ToolColumnList = require("./tool-column-list");
8
8
  const _sfc_main = vue.defineComponent({
@@ -15,7 +15,7 @@ const _sfc_main = vue.defineComponent({
15
15
  ElOption: elementPlus.ElOption,
16
16
  ElCheckbox: elementPlus.ElCheckbox,
17
17
  ElButton: elementPlus.ElButton,
18
- EleModal,
18
+ EleDialog,
19
19
  ToolColumnList
20
20
  },
21
21
  props: {
@@ -350,8 +350,8 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
350
350
  const _component_ToolColumnList = vue.resolveComponent("ToolColumnList");
351
351
  const _component_ElForm = vue.resolveComponent("ElForm");
352
352
  const _component_ElButton = vue.resolveComponent("ElButton");
353
- const _component_EleModal = vue.resolveComponent("EleModal");
354
- return vue.openBlock(), vue.createBlock(_component_EleModal, vue.mergeProps({
353
+ const _component_EleDialog = vue.resolveComponent("EleDialog");
354
+ return vue.openBlock(), vue.createBlock(_component_EleDialog, vue.mergeProps({
355
355
  form: true,
356
356
  width: "460px",
357
357
  title: _ctx.locale.export,