@duxweb/dvha-pro 1.2.8 → 1.2.10

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 (33) hide show
  1. package/dist/cjs/components/data/dynamicSelect.cjs +1 -1
  2. package/dist/cjs/components/editor/aiEditor.cjs +1 -1
  3. package/dist/cjs/components/modal/modal.cjs +1 -1
  4. package/dist/cjs/components/textImageEditor/textImageEditor.cjs +1 -1
  5. package/dist/cjs/components/upload/file.cjs +1 -1
  6. package/dist/cjs/components/upload/image.cjs +1 -1
  7. package/dist/cjs/components/upload/video.cjs +1 -1
  8. package/dist/cjs/index.cjs +1 -1
  9. package/dist/cjs/main.cjs +1 -1
  10. package/dist/cjs/pages/menu/avatar.cjs +1 -1
  11. package/dist/cjs/pages/menu/menuApp.cjs +1 -1
  12. package/dist/esm/components/data/dynamicSelect.js +1 -1
  13. package/dist/esm/components/editor/aiEditor.js +1 -1
  14. package/dist/esm/components/modal/modal.js +1 -1
  15. package/dist/esm/components/textImageEditor/textImageEditor.js +1 -1
  16. package/dist/esm/components/upload/file.js +1 -1
  17. package/dist/esm/components/upload/image.js +1 -1
  18. package/dist/esm/components/upload/video.js +1 -1
  19. package/dist/esm/index.js +2 -2
  20. package/dist/esm/main.js +4 -6
  21. package/dist/esm/pages/menu/avatar.js +61 -89
  22. package/dist/esm/pages/menu/menuApp.js +47 -64
  23. package/dist/types/main.d.ts +0 -26
  24. package/package.json +29 -29
  25. package/dist/cjs/components/data/selectModal.lazy.cjs +0 -1
  26. package/dist/cjs/components/upload/manager.lazy.cjs +0 -1
  27. package/dist/cjs/pages/menu/remoteMenuModal.cjs +0 -1
  28. package/dist/esm/components/data/selectModal.lazy.js +0 -15
  29. package/dist/esm/components/upload/manager.lazy.js +0 -15
  30. package/dist/esm/pages/menu/remoteMenuModal.js +0 -56
  31. package/dist/types/components/data/selectModal.lazy.d.ts +0 -2
  32. package/dist/types/components/upload/manager.lazy.d.ts +0 -2
  33. package/dist/types/pages/menu/remoteMenuModal.d.ts +0 -67
@@ -1,56 +0,0 @@
1
- import e from "../../components/modal/modalPage.js";
2
- import "../../components/index.js";
3
- import { Suspense as t, createVNode as n, defineAsyncComponent as r, defineComponent as i, mergeProps as a } from "vue";
4
- import { sfcLoader as o } from "@duxweb/dvha-core";
5
- import { NSpin as s } from "naive-ui";
6
- //#region src/pages/menu/remoteMenuModal.tsx
7
- var c = /* @__PURE__ */ i({
8
- name: "DuxRemoteMenuModal",
9
- props: {
10
- loader: {
11
- type: String,
12
- required: !0
13
- },
14
- title: {
15
- type: String,
16
- default: ""
17
- },
18
- draggable: {
19
- type: Boolean,
20
- default: !1
21
- },
22
- handle: {
23
- type: String,
24
- default: ""
25
- },
26
- onClose: {
27
- type: Function,
28
- default: null
29
- },
30
- onConfirm: {
31
- type: Function,
32
- default: null
33
- },
34
- componentProps: {
35
- type: Object,
36
- default: () => ({})
37
- }
38
- },
39
- setup(i) {
40
- let c = r({ loader: o(i.loader) });
41
- return () => n(e, {
42
- title: i.title,
43
- draggable: i.draggable,
44
- handle: i.handle,
45
- onClose: i.onClose
46
- }, { default: () => [n(t, null, {
47
- default: () => n(c, a(i.componentProps, {
48
- onClose: i.onClose,
49
- onConfirm: i.onConfirm
50
- }), null),
51
- fallback: () => n(s, { show: !0 }, { default: () => [n("div", { class: "h-100" }, null)] })
52
- })] });
53
- }
54
- });
55
- //#endregion
56
- export { c as default };
@@ -1,2 +0,0 @@
1
- declare const _default: import("vue").DefineComponent<{}, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
- export default _default;
@@ -1,2 +0,0 @@
1
- declare const _default: import("vue").DefineComponent<{}, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
- export default _default;
@@ -1,67 +0,0 @@
1
- declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
2
- loader: {
3
- type: StringConstructor;
4
- required: true;
5
- };
6
- title: {
7
- type: StringConstructor;
8
- default: string;
9
- };
10
- draggable: {
11
- type: BooleanConstructor;
12
- default: boolean;
13
- };
14
- handle: {
15
- type: StringConstructor;
16
- default: string;
17
- };
18
- onClose: {
19
- type: FunctionConstructor;
20
- default: null;
21
- };
22
- onConfirm: {
23
- type: FunctionConstructor;
24
- default: null;
25
- };
26
- componentProps: {
27
- type: ObjectConstructor;
28
- default: () => {};
29
- };
30
- }>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
31
- loader: {
32
- type: StringConstructor;
33
- required: true;
34
- };
35
- title: {
36
- type: StringConstructor;
37
- default: string;
38
- };
39
- draggable: {
40
- type: BooleanConstructor;
41
- default: boolean;
42
- };
43
- handle: {
44
- type: StringConstructor;
45
- default: string;
46
- };
47
- onClose: {
48
- type: FunctionConstructor;
49
- default: null;
50
- };
51
- onConfirm: {
52
- type: FunctionConstructor;
53
- default: null;
54
- };
55
- componentProps: {
56
- type: ObjectConstructor;
57
- default: () => {};
58
- };
59
- }>> & Readonly<{}>, {
60
- title: string;
61
- onClose: Function;
62
- draggable: boolean;
63
- componentProps: Record<string, any>;
64
- onConfirm: Function;
65
- handle: string;
66
- }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
67
- export default _default;