bm-admin-ui 1.0.20-alpha → 1.0.22-alpha
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/es/components/feedback/index.js +25 -1306
- package/es/components/float-table/index.js +36 -27
- package/es/components/form-create/index.js +2769 -0
- package/es/components/form-designer/index.js +4178 -9
- package/es/components/index.js +1 -0
- package/es/components/input-tags-display/index.js +27 -1187
- package/es/components/multi-cascader-compose/index.js +31 -1199
- package/es/components/over-tooltips/index.js +27 -20
- package/es/components/search-filter/index.js +52 -1253
- package/es/components/shops-filter/index.js +24 -1182
- package/es/components/staffs-selector/index.js +131 -1241
- package/es/components/timeline/index.js +6 -6
- package/es/components/upload/index.js +101 -1334
- package/es/utils/uniqueId.js +5 -0
- package/es/utils/vxe-table.js +4 -3
- package/lib/components/feedback/index.js +23 -1304
- package/lib/components/float-table/index.js +36 -27
- package/lib/components/form-create/index.js +2781 -0
- package/lib/components/form-designer/index.js +4183 -8
- package/lib/components/index.js +7 -0
- package/lib/components/input-tags-display/index.js +26 -1186
- package/lib/components/multi-cascader-compose/index.js +30 -1198
- package/lib/components/over-tooltips/index.js +27 -20
- package/lib/components/search-filter/index.js +51 -1252
- package/lib/components/shops-filter/index.js +23 -1181
- package/lib/components/staffs-selector/index.js +130 -1240
- package/lib/components/timeline/index.js +6 -6
- package/lib/components/upload/index.js +100 -1333
- package/lib/utils/uniqueId.js +8 -0
- package/lib/utils/vxe-table.js +3 -2
- package/package.json +9 -4
- package/theme-chalk/button.css +1 -1
- package/theme-chalk/feedback.css +1 -1
- package/theme-chalk/float-table.css +1 -1
- package/theme-chalk/floating-vue.css +1 -1
- package/theme-chalk/flow-designer.css +1 -1
- package/theme-chalk/form-create.css +1 -0
- package/theme-chalk/form-designer.css +1 -0
- package/theme-chalk/index.css +1 -1
- package/theme-chalk/input-tags-display.css +1 -1
- package/theme-chalk/modal.css +1 -1
- package/theme-chalk/multi-cascader-compose.css +1 -1
- package/theme-chalk/over-tooltips.css +1 -1
- package/theme-chalk/search-filter.css +1 -1
- package/theme-chalk/staffs-selector.css +1 -1
- package/theme-chalk/timeline.css +1 -1
- package/theme-chalk/upload.css +1 -1
- package/index.esm.js +0 -46662
- package/index.js +0 -46692
package/lib/components/index.js
CHANGED
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
5
|
var button = require('./button');
|
|
6
|
+
var formCreate = require('./form-create');
|
|
6
7
|
var formDesigner = require('./form-designer');
|
|
7
8
|
var flowDesigner = require('./flow-designer');
|
|
8
9
|
var feedback = require('./feedback');
|
|
@@ -24,6 +25,12 @@ Object.keys(button).forEach(function (k) {
|
|
|
24
25
|
get: function () { return button[k]; }
|
|
25
26
|
});
|
|
26
27
|
});
|
|
28
|
+
Object.keys(formCreate).forEach(function (k) {
|
|
29
|
+
if (k !== 'default' && !exports.hasOwnProperty(k)) Object.defineProperty(exports, k, {
|
|
30
|
+
enumerable: true,
|
|
31
|
+
get: function () { return formCreate[k]; }
|
|
32
|
+
});
|
|
33
|
+
});
|
|
27
34
|
Object.keys(formDesigner).forEach(function (k) {
|
|
28
35
|
if (k !== 'default' && !exports.hasOwnProperty(k)) Object.defineProperty(exports, k, {
|
|
29
36
|
enumerable: true,
|