@skyfox2000/webui 0.1.2 → 0.1.3
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/lib/AceEditor.d.ts +0 -3
- package/lib/BasicLayout.d.ts +0 -3
- package/lib/Error403.d.ts +0 -3
- package/lib/Error404.d.ts +0 -3
- package/lib/ExcelForm.d.ts +0 -3
- package/lib/UploadForm.d.ts +0 -3
- package/lib/assets/modules/{index-FzWSvscZ.js → index-B8vL5FiT.js} +1 -1
- package/lib/assets/modules/menuTabs-DQt4U8CY.js +638 -0
- package/lib/assets/modules/uploadList-sP-EZUPi.js +182 -0
- package/lib/components/content/index.d.ts +0 -4
- package/lib/components/content/index.d.ts.map +1 -1
- package/lib/components/form/autoComplete/index.vue.d.ts +3 -3
- package/lib/components/form/cascader/index.vue.d.ts +3 -3
- package/lib/components/form/checkbox/index.vue.d.ts +1 -1
- package/lib/components/form/index.d.ts +0 -2
- package/lib/components/form/index.d.ts.map +1 -1
- package/lib/components/form/radio/index.vue.d.ts +3 -3
- package/lib/components/form/select/index.vue.d.ts +3 -3
- package/lib/components/form/transfer/index.vue.d.ts +2 -2
- package/lib/components/form/treeSelect/index.vue.d.ts +2 -2
- package/lib/components/index.d.ts +3 -6
- package/lib/components/index.d.ts.map +1 -1
- package/lib/components/layout/index.d.ts +0 -2
- package/lib/components/layout/index.d.ts.map +1 -1
- package/lib/es/AceEditor/index.js +9 -11
- package/lib/es/BasicLayout/index.js +94 -2
- package/lib/es/Error403/index.js +31 -2
- package/lib/es/Error404/index.js +31 -2
- package/lib/es/ExcelForm/index.js +315 -3
- package/lib/es/UploadForm/index.js +133 -3
- package/lib/webui.css +1 -1
- package/lib/webui.es.js +1565 -1573
- package/package.json +1 -1
- package/src/components/content/index.ts +4 -4
- package/src/components/form/index.ts +2 -2
- package/src/components/index.ts +1 -10
- package/src/components/layout/index.ts +2 -2
- package/lib/assets/modules/basicLayout-YP_-EySb.js +0 -726
- package/lib/assets/modules/error403-Bi0E2twj.js +0 -33
- package/lib/assets/modules/error404-BF7vasR_.js +0 -33
- package/lib/assets/modules/excelForm-WJVQmaDT.js +0 -317
- package/lib/assets/modules/uploadForm-CwXiG05t.js +0 -309
- package/lib/components/content/dialog/excelForm.vue.d.ts +0 -31
- package/lib/components/content/dialog/excelForm.vue.d.ts.map +0 -1
- package/lib/components/content/dialog/uploadForm.vue.d.ts +0 -25
- package/lib/components/content/dialog/uploadForm.vue.d.ts.map +0 -1
- package/lib/components/error/error403.vue.d.ts +0 -4
- package/lib/components/error/error403.vue.d.ts.map +0 -1
- package/lib/components/error/error404.vue.d.ts +0 -4
- package/lib/components/error/error404.vue.d.ts.map +0 -1
- package/lib/components/form/aceEditor/index.vue.d.ts +0 -13
- package/lib/components/form/aceEditor/index.vue.d.ts.map +0 -1
- package/lib/components/layout/page/basicLayout.vue.d.ts +0 -7
- package/lib/components/layout/page/basicLayout.vue.d.ts.map +0 -1
- /package/lib/assets/modules/{uploadForm-BahGnrAq.js → index-BahGnrAq.js} +0 -0
- /package/lib/assets/modules/{excelForm-Dzndz-SG.js → index-Dzndz-SG.js} +0 -0
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import Dialog from './dialog/index.vue';
|
|
2
2
|
export { Dialog };
|
|
3
|
-
import UploadForm from './dialog/uploadForm.vue';
|
|
4
|
-
export { UploadForm };
|
|
5
|
-
import ExcelForm from './dialog/excelForm.vue';
|
|
6
|
-
export { ExcelForm };
|
|
3
|
+
// import UploadForm from './dialog/uploadForm.vue';
|
|
4
|
+
// export { UploadForm };
|
|
5
|
+
// import ExcelForm from './dialog/excelForm.vue';
|
|
6
|
+
// export { ExcelForm };
|
|
7
7
|
|
|
8
8
|
import Drawer from './drawer/index.vue';
|
|
9
9
|
export { Drawer };
|
package/src/components/index.ts
CHANGED
|
@@ -3,8 +3,6 @@ import '../assets/global.css';
|
|
|
3
3
|
import { Button, Tooltip, AppIcon, Fullscreen, Helper, Icon, LayoutIcon, ProjectIcon, ToolIcon } from './common';
|
|
4
4
|
import {
|
|
5
5
|
Dialog,
|
|
6
|
-
UploadForm,
|
|
7
|
-
ExcelForm,
|
|
8
6
|
Drawer,
|
|
9
7
|
Form,
|
|
10
8
|
FormItem,
|
|
@@ -38,7 +36,7 @@ import {
|
|
|
38
36
|
UploadList,
|
|
39
37
|
} from './form';
|
|
40
38
|
|
|
41
|
-
import { Breadcrumb, Content, Datetime, Header, HeaderExits, Menu, MenuTabs
|
|
39
|
+
import { Breadcrumb, Content, Datetime, Header, HeaderExits, Menu, MenuTabs } from './layout';
|
|
42
40
|
|
|
43
41
|
export {
|
|
44
42
|
Button,
|
|
@@ -51,8 +49,6 @@ export {
|
|
|
51
49
|
ProjectIcon,
|
|
52
50
|
ToolIcon,
|
|
53
51
|
Dialog,
|
|
54
|
-
UploadForm,
|
|
55
|
-
ExcelForm,
|
|
56
52
|
Drawer,
|
|
57
53
|
Form,
|
|
58
54
|
FormItem,
|
|
@@ -89,9 +85,4 @@ export {
|
|
|
89
85
|
HeaderExits,
|
|
90
86
|
Menu,
|
|
91
87
|
MenuTabs,
|
|
92
|
-
BasicLayout,
|
|
93
88
|
};
|
|
94
|
-
|
|
95
|
-
import Error403 from './error/error403.vue';
|
|
96
|
-
import Error404 from './error/error404.vue';
|
|
97
|
-
export { Error403, Error404 };
|
|
@@ -12,5 +12,5 @@ import Menu from './menu/index.vue';
|
|
|
12
12
|
export { Menu };
|
|
13
13
|
import MenuTabs from './menu/menuTabs.vue';
|
|
14
14
|
export { MenuTabs };
|
|
15
|
-
import BasicLayout from './page/basicLayout.vue';
|
|
16
|
-
export { BasicLayout };
|
|
15
|
+
// import BasicLayout from './page/basicLayout.vue';
|
|
16
|
+
// export { BasicLayout };
|