cy-element-ui 1.0.73 → 1.0.75
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/element-ui.common.js +8 -8
- package/lib/form-item.js +2 -2
- package/lib/index.js +1 -1
- package/package.json +1 -1
- package/packages/form/src/form-item.vue +3 -3
- package/src/index.js +3 -3
package/package.json
CHANGED
|
@@ -40,9 +40,9 @@
|
|
|
40
40
|
</template>
|
|
41
41
|
<script>
|
|
42
42
|
import AsyncValidator from 'async-validator';
|
|
43
|
-
import emitter from '
|
|
44
|
-
import objectAssign from '
|
|
45
|
-
import { noop, getPropByPath } from '
|
|
43
|
+
import emitter from '../../../src/mixins/emitter';
|
|
44
|
+
import objectAssign from '../../../src/utils/merge';
|
|
45
|
+
import { noop, getPropByPath } from '../../../src/utils/util';
|
|
46
46
|
import LabelWrap from './label-wrap';
|
|
47
47
|
export default {
|
|
48
48
|
name: 'ElFormItem',
|
package/src/index.js
CHANGED
|
@@ -94,8 +94,8 @@ import SubTitle from '../packages/subTitle/index.js';
|
|
|
94
94
|
import TabDialog from '../packages/tabDialog/index.js';
|
|
95
95
|
import FileUpload from '../packages/fileUpload/index.js';
|
|
96
96
|
import SelectDisplayInput from '../packages/selectDisplayInput/index.js';
|
|
97
|
-
import locale from '
|
|
98
|
-
import CollapseTransition from '
|
|
97
|
+
import locale from './locale';
|
|
98
|
+
import CollapseTransition from './transitions/collapse-transition';
|
|
99
99
|
|
|
100
100
|
const components = [
|
|
101
101
|
Pagination,
|
|
@@ -221,7 +221,7 @@ if (typeof window !== 'undefined' && window.Vue) {
|
|
|
221
221
|
}
|
|
222
222
|
|
|
223
223
|
export default {
|
|
224
|
-
version: '1.0.
|
|
224
|
+
version: '1.0.75',
|
|
225
225
|
locale: locale.use,
|
|
226
226
|
i18n: locale.i18n,
|
|
227
227
|
install,
|