meixioacomponent 1.1.52 → 1.1.53
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/components/index.d.ts +1 -0
- package/lib/components/index.d.ts.map +1 -1
- package/lib/components/index.js +5 -2
- package/lib/meixioacomponent.common.js +473 -271
- package/lib/meixioacomponent.umd.js +473 -271
- package/lib/meixioacomponent.umd.min.js +2 -2
- package/package.json +1 -1
- package/packages/components/base/{baseArea → area/baseArea}/baseArea.vue +1 -1
- package/packages/components/base/{baseArea → area/baseArea}/baseAreaV2.vue +4 -46
- package/packages/components/base/area/baseAreaByMultiple/baseAreaByMultiple.vue +82 -0
- package/packages/components/base/area/baseAreaByMultiple/index.js +7 -0
- package/packages/components/base/area/mixins/mixinsByArea.js +33 -0
- package/packages/components/index.js +5 -2
- package/packages/components/index.ts +6 -2
- package/packages/components/proForm/proForm/pro_form.vue +2 -2
- /package/packages/components/base/{baseArea → area/baseArea}/api.js +0 -0
- /package/packages/components/base/{baseArea → area/baseArea}/area.js +0 -0
- /package/packages/components/base/{baseArea → area/baseArea}/areaConfig.js +0 -0
- /package/packages/components/base/{baseArea → area/baseArea}/index.js +0 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../packages/components/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../packages/components/index.ts"],"names":[],"mappings":"AAyDA,OAAO,iBAAiB,MAAM,kCAAkC,CAAC;AAGjE,OAAO,OAAO,MAAM,uBAAuB,CAAC;AAS5C,OAAO,aAAa,MAAM,yBAAyB,CAAC;AAyFpD,QAAA,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAsErB,CAAC;AAIF,eAAe,gBAAgB,CAAC"}
|
package/lib/components/index.js
CHANGED
|
@@ -5,7 +5,8 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
6
|
const baseAnchor_1 = __importDefault(require("./base/baseAnchor"));
|
|
7
7
|
const baseAppendix_1 = __importDefault(require("./base/baseAppendix"));
|
|
8
|
-
const baseArea_1 = __importDefault(require("./base/baseArea"));
|
|
8
|
+
const baseArea_1 = __importDefault(require("./base/area/baseArea"));
|
|
9
|
+
const baseAreaByMultiple_1 = __importDefault(require("./base/area/baseAreaByMultiple"));
|
|
9
10
|
const baseAvatar_1 = __importDefault(require("./base/baseAvatar"));
|
|
10
11
|
const baseButtonHandle_1 = __importDefault(require("./base/baseButtonHandle"));
|
|
11
12
|
const baseDefaultSvg_1 = __importDefault(require("./base/baseDefaultSvg"));
|
|
@@ -109,6 +110,7 @@ const meixicomponents = [
|
|
|
109
110
|
index_3.default,
|
|
110
111
|
baseMoverVerifiBar_1.default,
|
|
111
112
|
baseTimeLine_1.default,
|
|
113
|
+
baseAreaByMultiple_1.default,
|
|
112
114
|
basePopoverButton_1.default,
|
|
113
115
|
baseTreeSelect_1.default,
|
|
114
116
|
baseUploadTemplate_1.default,
|
|
@@ -124,7 +126,7 @@ const meixicomponents = [
|
|
|
124
126
|
baseWait_1.default,
|
|
125
127
|
vuedraggable_1.default,
|
|
126
128
|
baseUploadImgAndName_1.default,
|
|
127
|
-
elDatePicker_1.default
|
|
129
|
+
elDatePicker_1.default,
|
|
128
130
|
];
|
|
129
131
|
const install = (Vue) => {
|
|
130
132
|
componentConfig_1.default.Vue = Vue;
|
|
@@ -198,6 +200,7 @@ const meixioacomponent = {
|
|
|
198
200
|
baseGuide: baseGuide_1.default,
|
|
199
201
|
baseText: baseText_1.default,
|
|
200
202
|
baseTag: baseTag_1.default,
|
|
203
|
+
baseAreaByMultiple: baseAreaByMultiple_1.default,
|
|
201
204
|
elDatePicker: elDatePicker_1.default,
|
|
202
205
|
oaProTableSearch: oaProTableSearch_1.default,
|
|
203
206
|
baseWait: baseWait_1.default,
|