yuang-framework-ui-pc 1.1.33 → 1.1.35

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 (56) 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-map-picker/index.d.ts +2 -2
  8. package/es/ele-map-picker/index.js +4 -4
  9. package/es/ele-map-picker/props.d.ts +2 -2
  10. package/es/ele-pro-table/components/tool-export.d.ts +3 -3
  11. package/es/ele-pro-table/components/tool-export.js +4 -4
  12. package/es/ele-pro-table/components/tool-print.d.ts +3 -3
  13. package/es/ele-pro-table/components/tool-print.js +4 -4
  14. package/es/ele-pro-table/types.d.ts +3 -3
  15. package/es/ele-test/index.d.ts +2 -0
  16. package/es/ele-test/index.js +18 -0
  17. package/es/ele-test/style/css-var.scss +8 -0
  18. package/es/ele-test/style/index.d.ts +1 -0
  19. package/es/ele-test/style/index.js +2 -0
  20. package/es/ele-test/style/index.scss +100 -0
  21. package/es/style/plus.scss +0 -2
  22. package/es/yu-test/index.d.ts +2 -0
  23. package/es/yu-test/index.js +18 -0
  24. package/es/yu-test/style/css-var.scss +8 -0
  25. package/es/yu-test/style/index.d.ts +1 -0
  26. package/es/yu-test/style/index.js +2 -0
  27. package/es/yu-test/style/index.scss +100 -0
  28. package/lib/core-components.cjs +110 -107
  29. package/lib/core-components.d.ts +4 -2
  30. package/lib/ele-app/plus.d.ts +4 -6
  31. package/lib/ele-cropper-modal/index.cjs +4 -4
  32. package/lib/ele-cropper-modal/index.d.ts +2 -2
  33. package/lib/ele-cropper-modal/props.d.ts +2 -2
  34. package/lib/ele-map-picker/index.cjs +4 -4
  35. package/lib/ele-map-picker/index.d.ts +2 -2
  36. package/lib/ele-map-picker/props.d.ts +2 -2
  37. package/lib/ele-pro-table/components/tool-export.cjs +4 -4
  38. package/lib/ele-pro-table/components/tool-export.d.ts +3 -3
  39. package/lib/ele-pro-table/components/tool-print.cjs +4 -4
  40. package/lib/ele-pro-table/components/tool-print.d.ts +3 -3
  41. package/lib/ele-pro-table/types.d.ts +3 -3
  42. package/lib/ele-test/index.cjs +17 -0
  43. package/lib/ele-test/index.d.ts +2 -0
  44. package/lib/ele-test/style/css-var.scss +8 -0
  45. package/lib/ele-test/style/index.cjs +3 -0
  46. package/lib/ele-test/style/index.d.ts +1 -0
  47. package/lib/ele-test/style/index.scss +100 -0
  48. package/lib/style/plus.scss +0 -2
  49. package/lib/yu-test/index.cjs +17 -0
  50. package/lib/yu-test/index.d.ts +2 -0
  51. package/lib/yu-test/style/css-var.scss +8 -0
  52. package/lib/yu-test/style/index.cjs +3 -0
  53. package/lib/yu-test/style/index.d.ts +1 -0
  54. package/lib/yu-test/style/index.scss +100 -0
  55. package/package.json +1 -1
  56. package/typings/global.d.ts +1 -0
@@ -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: {
@@ -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;
@@ -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,
@@ -1,6 +1,6 @@
1
1
  import { PropType } from 'vue';
2
2
  import { ElFormInstance } from '../../ele-app/el';
3
- import { EleModalProps } from '../../ele-app/plus';
3
+ import { EleDialogProps } from '../../ele-app/plus';
4
4
  import { Columns, DataItem, SpanMethod, SummaryMethod, TreeProps } from '../../ele-data-table/types';
5
5
  import { TableLocale, ExportDataType, BeforeExport, Datasource, FetchFunction, ColItem, TableExportParams } from '../types';
6
6
 
@@ -13,7 +13,7 @@ declare const _default: import('vue').DefineComponent<{
13
13
  /** 缓存本地的名称 */
14
14
  cacheKey: StringConstructor;
15
15
  /** 弹窗参数 */
16
- modalProps: PropType<EleModalProps>;
16
+ modalProps: PropType<EleDialogProps>;
17
17
  /** 列数据 */
18
18
  columns: PropType<Columns>;
19
19
  /** 表格选中数据 */
@@ -100,7 +100,7 @@ declare const _default: import('vue').DefineComponent<{
100
100
  /** 缓存本地的名称 */
101
101
  cacheKey: StringConstructor;
102
102
  /** 弹窗参数 */
103
- modalProps: PropType<EleModalProps>;
103
+ modalProps: PropType<EleDialogProps>;
104
104
  /** 列数据 */
105
105
  columns: PropType<Columns>;
106
106
  /** 表格选中数据 */
@@ -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 ElePrinter = require("../../ele-printer/index");
7
7
  const EleTable = require("../../ele-table/index");
8
8
  const util = require("../../ele-virtual-table/util");
@@ -20,7 +20,7 @@ const _sfc_main = vue.defineComponent({
20
20
  ElOption: elementPlus.ElOption,
21
21
  ElCheckbox: elementPlus.ElCheckbox,
22
22
  ElButton: elementPlus.ElButton,
23
- EleModal,
23
+ EleDialog,
24
24
  ElePrinter,
25
25
  EleTable,
26
26
  CellRender: util.CellRender,
@@ -373,14 +373,14 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
373
373
  const _component_ToolColumnList = vue.resolveComponent("ToolColumnList");
374
374
  const _component_ElForm = vue.resolveComponent("ElForm");
375
375
  const _component_ElButton = vue.resolveComponent("ElButton");
376
- const _component_EleModal = vue.resolveComponent("EleModal");
376
+ const _component_EleDialog = vue.resolveComponent("EleDialog");
377
377
  const _component_ToolPrintHeaderCell = vue.resolveComponent("ToolPrintHeaderCell");
378
378
  const _component_ToolPrintBodyCell = vue.resolveComponent("ToolPrintBodyCell");
379
379
  const _component_CellRender = vue.resolveComponent("CellRender");
380
380
  const _component_EleTable = vue.resolveComponent("EleTable");
381
381
  const _component_ElePrinter = vue.resolveComponent("ElePrinter");
382
382
  return vue.openBlock(), vue.createElementBlock(vue.Fragment, null, [
383
- vue.createVNode(_component_EleModal, vue.mergeProps({
383
+ vue.createVNode(_component_EleDialog, vue.mergeProps({
384
384
  form: true,
385
385
  width: "460px",
386
386
  title: _ctx.locale.print,
@@ -1,5 +1,5 @@
1
1
  import { PropType } from 'vue';
2
- import { EleModalProps, ElePrinterProps, EleTableProps } from '../../ele-app/plus';
2
+ import { EleDialogProps, ElePrinterProps, EleTableProps } from '../../ele-app/plus';
3
3
  import { Columns, DataItem, SpanMethod, SummaryMethod, CellStyle, CellClass, HeaderCellStyle, HeaderCellClass, TreeProps } from '../../ele-data-table/types';
4
4
  import { TableLocale, ExportDataType, BeforeExport, Datasource, FetchFunction, ColItem, TablePrintOptions, TableExportParams } from '../types';
5
5
 
@@ -12,7 +12,7 @@ declare const _default: import('vue').DefineComponent<{
12
12
  /** 缓存本地的名称 */
13
13
  cacheKey: StringConstructor;
14
14
  /** 弹窗参数 */
15
- modalProps: PropType<EleModalProps>;
15
+ modalProps: PropType<EleDialogProps>;
16
16
  /** 打印组件参数 */
17
17
  printerProps: PropType<ElePrinterProps>;
18
18
  /** 打印表格参数 */
@@ -104,7 +104,7 @@ declare const _default: import('vue').DefineComponent<{
104
104
  /** 缓存本地的名称 */
105
105
  cacheKey: StringConstructor;
106
106
  /** 弹窗参数 */
107
- modalProps: PropType<EleModalProps>;
107
+ modalProps: PropType<EleDialogProps>;
108
108
  /** 打印组件参数 */
109
109
  printerProps: PropType<ElePrinterProps>;
110
110
  /** 打印表格参数 */
@@ -1,4 +1,4 @@
1
- import type { EleDataTableInstance, EleVirtualTableInstance, ElePaginationProps, EleModalProps, ElePrinterProps, EleTableProps } from '../ele-app/plus';
1
+ import type { EleDataTableInstance, EleVirtualTableInstance, ElePaginationProps, EleDialogProps, ElePrinterProps, EleTableProps } from '../ele-app/plus';
2
2
  import type { PaginationTotal } from '../ele-pagination/types';
3
3
  import type { DataItem, Column, Columns, Sorter, Filter, TableColumn, TableSize, ResolveFunction } from '../ele-data-table/types';
4
4
  import type { BodyColumns } from '../ele-virtual-table/types';
@@ -368,7 +368,7 @@ export type BeforeExport = (params: BeforeExportParams) => boolean | void;
368
368
  */
369
369
  export interface ExportConfig {
370
370
  /** 弹窗参数 */
371
- modalProps?: EleModalProps;
371
+ modalProps?: EleDialogProps;
372
372
  /** 表格全部数据 */
373
373
  datasource?: Datasource;
374
374
  /** 导出前的钩子函数 */
@@ -392,7 +392,7 @@ export interface ExportConfig {
392
392
  */
393
393
  export interface PrintConfig {
394
394
  /** 弹窗参数 */
395
- modalProps?: EleModalProps;
395
+ modalProps?: EleDialogProps;
396
396
  /** 打印组件参数 */
397
397
  printerProps?: ElePrinterProps;
398
398
  /** 打印表格参数 */