@yxhl/specter-pui-vtk 1.0.76 → 1.0.78
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/README.md +453 -453
- package/dist/specter-pui-vtk.css +1 -1
- package/dist/specter-pui.es.js +3284 -2645
- package/dist/specter-pui.es.js.map +1 -1
- package/dist/specter-pui.umd.js +1 -1
- package/dist/specter-pui.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/assets/img/empty.svg +1 -0
- package/src/commons/index.js +20 -20
- package/src/commons/location.js +128 -128
- package/src/components/assembly/VtkDateSelector.vue +40 -40
- package/src/components/assembly/VtkDateTimePicker.vue +1370 -0
- package/src/components/assembly/VtkEmptyNew.vue +26 -0
- package/src/components/assembly/VtkFormItem.vue +2 -1
- package/src/components/assembly/VtkUpload.vue +602 -602
- package/src/components/message/toast.vue +3 -3
- package/src/index.js +131 -127
package/src/index.js
CHANGED
|
@@ -1,143 +1,147 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Specter PUI - Vue 3 组件库
|
|
3
|
-
*/
|
|
4
|
-
|
|
5
|
-
export { default as VtkArea } from "./components/assembly/VtkArea.vue";
|
|
6
|
-
export { default as VtkAreaTabs } from "./components/assembly/VtkAreaTabs.vue";
|
|
7
|
-
export { default as VtkBreadcrumb } from "./components/assembly/VtkBreadcrumb.vue";
|
|
8
|
-
export { default as VtkCheckbox } from "./components/assembly/VtkCheckbox.vue";
|
|
1
|
+
/**
|
|
2
|
+
* Specter PUI - Vue 3 组件库
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
export { default as VtkArea } from "./components/assembly/VtkArea.vue";
|
|
6
|
+
export { default as VtkAreaTabs } from "./components/assembly/VtkAreaTabs.vue";
|
|
7
|
+
export { default as VtkBreadcrumb } from "./components/assembly/VtkBreadcrumb.vue";
|
|
8
|
+
export { default as VtkCheckbox } from "./components/assembly/VtkCheckbox.vue";
|
|
9
9
|
export { default as VtkCount } from "./components/assembly/VtkCount.vue";
|
|
10
10
|
export { default as VtkDatePicker } from "./components/assembly/VtkDatePicker.vue";
|
|
11
11
|
export { default as VtkDateSelector } from "./components/assembly/VtkDateSelector.vue";
|
|
12
|
+
export { default as VtkDateTimePicker } from "./components/assembly/VtkDateTimePicker.vue";
|
|
12
13
|
export { default as VtkDept } from "./components/assembly/VtkDept.vue";
|
|
13
|
-
export { default as VtkEmpty } from "./components/assembly/VtkEmpty.vue";
|
|
14
|
-
export { default as VtkFab } from "./components/assembly/VtkFab.vue";
|
|
15
|
-
export { default as VtkFormItem } from "./components/assembly/VtkFormItem.vue";
|
|
16
|
-
export { default as VtkImg } from "./components/assembly/VtkImg.vue";
|
|
17
|
-
export { default as VtkPage } from "./components/assembly/VtkPage.vue";
|
|
18
|
-
export { default as VtkPdf } from "./components/assembly/VtkPdf.vue";
|
|
19
|
-
export { default as VtkProj } from "./components/assembly/VtkProj.vue";
|
|
20
|
-
export { default as VtkRadio } from "./components/assembly/VtkRadio.vue";
|
|
21
|
-
export { default as VtkSearch } from "./components/assembly/VtkSearch.vue";
|
|
22
|
-
export { default as VtkSelect } from "./components/assembly/VtkSelect.vue";
|
|
23
|
-
export { default as VtkStepper } from "./components/assembly/VtkStepper.vue";
|
|
24
|
-
export { default as VtkUpload } from "./components/assembly/VtkUpload.vue";
|
|
25
|
-
|
|
26
|
-
export * from "./commons/location.js";
|
|
27
|
-
export * from "./commons/filters/dictionary.js";
|
|
28
|
-
export * from "./commons/filters/format.js";
|
|
29
|
-
export * from "./commons/filters/mask.js";
|
|
30
|
-
export { default as request } from "./commons/request.js";
|
|
31
|
-
export { default as storage } from "./commons/storage.js";
|
|
32
|
-
export { default as themes } from "./commons/themes.js";
|
|
33
|
-
export * from "./commons/validation.js";
|
|
34
|
-
|
|
35
|
-
export { useMixins } from "./composables/usePage.js";
|
|
36
|
-
export { default as vtkMessage } from "./components/message/index.js";
|
|
37
|
-
|
|
38
|
-
import vtkMessage from "./components/message/index.js";
|
|
39
|
-
import storage from "./commons/storage.js";
|
|
40
|
-
import themes from "./commons/themes.js";
|
|
41
|
-
import request from "./commons/request.js";
|
|
42
|
-
import * as location from "./commons/location.js";
|
|
43
|
-
import Validation from "./commons/validation.js";
|
|
44
|
-
import * as dictionary from "./commons/filters/dictionary.js";
|
|
45
|
-
import * as mask from "./commons/filters/mask.js";
|
|
46
|
-
import * as format from "./commons/filters/format.js";
|
|
47
|
-
|
|
48
|
-
import VtkArea from "./components/assembly/VtkArea.vue";
|
|
49
|
-
import VtkAreaTabs from "./components/assembly/VtkAreaTabs.vue";
|
|
50
|
-
import VtkBreadcrumb from "./components/assembly/VtkBreadcrumb.vue";
|
|
51
|
-
import VtkCheckbox from "./components/assembly/VtkCheckbox.vue";
|
|
14
|
+
export { default as VtkEmpty } from "./components/assembly/VtkEmpty.vue";
|
|
15
|
+
export { default as VtkFab } from "./components/assembly/VtkFab.vue";
|
|
16
|
+
export { default as VtkFormItem } from "./components/assembly/VtkFormItem.vue";
|
|
17
|
+
export { default as VtkImg } from "./components/assembly/VtkImg.vue";
|
|
18
|
+
export { default as VtkPage } from "./components/assembly/VtkPage.vue";
|
|
19
|
+
export { default as VtkPdf } from "./components/assembly/VtkPdf.vue";
|
|
20
|
+
export { default as VtkProj } from "./components/assembly/VtkProj.vue";
|
|
21
|
+
export { default as VtkRadio } from "./components/assembly/VtkRadio.vue";
|
|
22
|
+
export { default as VtkSearch } from "./components/assembly/VtkSearch.vue";
|
|
23
|
+
export { default as VtkSelect } from "./components/assembly/VtkSelect.vue";
|
|
24
|
+
export { default as VtkStepper } from "./components/assembly/VtkStepper.vue";
|
|
25
|
+
export { default as VtkUpload } from "./components/assembly/VtkUpload.vue";
|
|
26
|
+
|
|
27
|
+
export * from "./commons/location.js";
|
|
28
|
+
export * from "./commons/filters/dictionary.js";
|
|
29
|
+
export * from "./commons/filters/format.js";
|
|
30
|
+
export * from "./commons/filters/mask.js";
|
|
31
|
+
export { default as request } from "./commons/request.js";
|
|
32
|
+
export { default as storage } from "./commons/storage.js";
|
|
33
|
+
export { default as themes } from "./commons/themes.js";
|
|
34
|
+
export * from "./commons/validation.js";
|
|
35
|
+
|
|
36
|
+
export { useMixins } from "./composables/usePage.js";
|
|
37
|
+
export { default as vtkMessage } from "./components/message/index.js";
|
|
38
|
+
|
|
39
|
+
import vtkMessage from "./components/message/index.js";
|
|
40
|
+
import storage from "./commons/storage.js";
|
|
41
|
+
import themes from "./commons/themes.js";
|
|
42
|
+
import request from "./commons/request.js";
|
|
43
|
+
import * as location from "./commons/location.js";
|
|
44
|
+
import Validation from "./commons/validation.js";
|
|
45
|
+
import * as dictionary from "./commons/filters/dictionary.js";
|
|
46
|
+
import * as mask from "./commons/filters/mask.js";
|
|
47
|
+
import * as format from "./commons/filters/format.js";
|
|
48
|
+
|
|
49
|
+
import VtkArea from "./components/assembly/VtkArea.vue";
|
|
50
|
+
import VtkAreaTabs from "./components/assembly/VtkAreaTabs.vue";
|
|
51
|
+
import VtkBreadcrumb from "./components/assembly/VtkBreadcrumb.vue";
|
|
52
|
+
import VtkCheckbox from "./components/assembly/VtkCheckbox.vue";
|
|
52
53
|
import VtkCount from "./components/assembly/VtkCount.vue";
|
|
53
54
|
import VtkDatePicker from "./components/assembly/VtkDatePicker.vue";
|
|
54
55
|
import VtkDateSelector from "./components/assembly/VtkDateSelector.vue";
|
|
56
|
+
import VtkDateTimePicker from "./components/assembly/VtkDateTimePicker.vue";
|
|
55
57
|
import VtkDept from "./components/assembly/VtkDept.vue";
|
|
56
|
-
import VtkEmpty from "./components/assembly/VtkEmpty.vue";
|
|
57
|
-
import VtkFab from "./components/assembly/VtkFab.vue";
|
|
58
|
-
import VtkFormItem from "./components/assembly/VtkFormItem.vue";
|
|
59
|
-
import VtkImg from "./components/assembly/VtkImg.vue";
|
|
60
|
-
import VtkPage from "./components/assembly/VtkPage.vue";
|
|
61
|
-
import VtkPdf from "./components/assembly/VtkPdf.vue";
|
|
62
|
-
import VtkProj from "./components/assembly/VtkProj.vue";
|
|
63
|
-
import VtkRadio from "./components/assembly/VtkRadio.vue";
|
|
64
|
-
import VtkSearch from "./components/assembly/VtkSearch.vue";
|
|
65
|
-
import VtkSelect from "./components/assembly/VtkSelect.vue";
|
|
66
|
-
import VtkStepper from "./components/assembly/VtkStepper.vue";
|
|
67
|
-
import VtkUpload from "./components/assembly/VtkUpload.vue";
|
|
68
|
-
import VtkMessageComponent from "./components/message/vtkMessage.vue";
|
|
69
|
-
|
|
70
|
-
function install(app, options = {}) {
|
|
71
|
-
const components = {
|
|
72
|
-
VtkArea,
|
|
73
|
-
VtkAreaTabs,
|
|
74
|
-
VtkBreadcrumb,
|
|
75
|
-
VtkCheckbox,
|
|
58
|
+
import VtkEmpty from "./components/assembly/VtkEmpty.vue";
|
|
59
|
+
import VtkFab from "./components/assembly/VtkFab.vue";
|
|
60
|
+
import VtkFormItem from "./components/assembly/VtkFormItem.vue";
|
|
61
|
+
import VtkImg from "./components/assembly/VtkImg.vue";
|
|
62
|
+
import VtkPage from "./components/assembly/VtkPage.vue";
|
|
63
|
+
import VtkPdf from "./components/assembly/VtkPdf.vue";
|
|
64
|
+
import VtkProj from "./components/assembly/VtkProj.vue";
|
|
65
|
+
import VtkRadio from "./components/assembly/VtkRadio.vue";
|
|
66
|
+
import VtkSearch from "./components/assembly/VtkSearch.vue";
|
|
67
|
+
import VtkSelect from "./components/assembly/VtkSelect.vue";
|
|
68
|
+
import VtkStepper from "./components/assembly/VtkStepper.vue";
|
|
69
|
+
import VtkUpload from "./components/assembly/VtkUpload.vue";
|
|
70
|
+
import VtkMessageComponent from "./components/message/vtkMessage.vue";
|
|
71
|
+
|
|
72
|
+
function install(app, options = {}) {
|
|
73
|
+
const components = {
|
|
74
|
+
VtkArea,
|
|
75
|
+
VtkAreaTabs,
|
|
76
|
+
VtkBreadcrumb,
|
|
77
|
+
VtkCheckbox,
|
|
76
78
|
VtkCount,
|
|
77
79
|
VtkDatePicker,
|
|
78
80
|
VtkDateSelector,
|
|
81
|
+
VtkDateTimePicker,
|
|
79
82
|
VtkDept,
|
|
80
|
-
VtkEmpty,
|
|
81
|
-
VtkFab,
|
|
82
|
-
VtkFormItem,
|
|
83
|
-
VtkImg,
|
|
84
|
-
VtkPage,
|
|
85
|
-
VtkPdf,
|
|
86
|
-
VtkProj,
|
|
87
|
-
VtkRadio,
|
|
88
|
-
VtkSearch,
|
|
89
|
-
VtkSelect,
|
|
90
|
-
VtkStepper,
|
|
91
|
-
VtkUpload,
|
|
92
|
-
VtkMessage: VtkMessageComponent
|
|
93
|
-
};
|
|
94
|
-
|
|
95
|
-
Object.keys(components).forEach(name => {
|
|
96
|
-
app.component(name, components[name]);
|
|
97
|
-
});
|
|
98
|
-
|
|
99
|
-
app.config.globalProperties.$vtk = {
|
|
100
|
-
message: vtkMessage,
|
|
101
|
-
request,
|
|
102
|
-
storage,
|
|
103
|
-
themes,
|
|
104
|
-
location,
|
|
105
|
-
Validation,
|
|
106
|
-
filters: {
|
|
107
|
-
...dictionary,
|
|
108
|
-
...mask,
|
|
109
|
-
...format
|
|
110
|
-
},
|
|
111
|
-
...options
|
|
112
|
-
};
|
|
113
|
-
|
|
114
|
-
return app;
|
|
115
|
-
}
|
|
116
|
-
|
|
117
|
-
export default {
|
|
118
|
-
install,
|
|
119
|
-
VtkArea,
|
|
120
|
-
VtkAreaTabs,
|
|
121
|
-
VtkBreadcrumb,
|
|
122
|
-
VtkCheckbox,
|
|
83
|
+
VtkEmpty,
|
|
84
|
+
VtkFab,
|
|
85
|
+
VtkFormItem,
|
|
86
|
+
VtkImg,
|
|
87
|
+
VtkPage,
|
|
88
|
+
VtkPdf,
|
|
89
|
+
VtkProj,
|
|
90
|
+
VtkRadio,
|
|
91
|
+
VtkSearch,
|
|
92
|
+
VtkSelect,
|
|
93
|
+
VtkStepper,
|
|
94
|
+
VtkUpload,
|
|
95
|
+
VtkMessage: VtkMessageComponent
|
|
96
|
+
};
|
|
97
|
+
|
|
98
|
+
Object.keys(components).forEach(name => {
|
|
99
|
+
app.component(name, components[name]);
|
|
100
|
+
});
|
|
101
|
+
|
|
102
|
+
app.config.globalProperties.$vtk = {
|
|
103
|
+
message: vtkMessage,
|
|
104
|
+
request,
|
|
105
|
+
storage,
|
|
106
|
+
themes,
|
|
107
|
+
location,
|
|
108
|
+
Validation,
|
|
109
|
+
filters: {
|
|
110
|
+
...dictionary,
|
|
111
|
+
...mask,
|
|
112
|
+
...format
|
|
113
|
+
},
|
|
114
|
+
...options
|
|
115
|
+
};
|
|
116
|
+
|
|
117
|
+
return app;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
export default {
|
|
121
|
+
install,
|
|
122
|
+
VtkArea,
|
|
123
|
+
VtkAreaTabs,
|
|
124
|
+
VtkBreadcrumb,
|
|
125
|
+
VtkCheckbox,
|
|
123
126
|
VtkCount,
|
|
124
127
|
VtkDatePicker,
|
|
125
128
|
VtkDateSelector,
|
|
129
|
+
VtkDateTimePicker,
|
|
126
130
|
VtkDept,
|
|
127
|
-
VtkEmpty,
|
|
128
|
-
VtkFab,
|
|
129
|
-
VtkFormItem,
|
|
130
|
-
VtkImg,
|
|
131
|
-
VtkPage,
|
|
132
|
-
VtkPdf,
|
|
133
|
-
VtkProj,
|
|
134
|
-
VtkRadio,
|
|
135
|
-
VtkSearch,
|
|
136
|
-
VtkSelect,
|
|
137
|
-
VtkStepper,
|
|
138
|
-
VtkUpload,
|
|
139
|
-
request,
|
|
140
|
-
storage,
|
|
141
|
-
themes,
|
|
142
|
-
vtkMessage
|
|
143
|
-
};
|
|
131
|
+
VtkEmpty,
|
|
132
|
+
VtkFab,
|
|
133
|
+
VtkFormItem,
|
|
134
|
+
VtkImg,
|
|
135
|
+
VtkPage,
|
|
136
|
+
VtkPdf,
|
|
137
|
+
VtkProj,
|
|
138
|
+
VtkRadio,
|
|
139
|
+
VtkSearch,
|
|
140
|
+
VtkSelect,
|
|
141
|
+
VtkStepper,
|
|
142
|
+
VtkUpload,
|
|
143
|
+
request,
|
|
144
|
+
storage,
|
|
145
|
+
themes,
|
|
146
|
+
vtkMessage
|
|
147
|
+
};
|