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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cy-element-ui",
3
- "version": "1.0.73",
3
+ "version": "1.0.75",
4
4
  "description": "基于ElementUI开发的组件",
5
5
  "main": "lib/index.js",
6
6
  "files": [
@@ -40,9 +40,9 @@
40
40
  </template>
41
41
  <script>
42
42
  import AsyncValidator from 'async-validator';
43
- import emitter from 'element-ui/src/mixins/emitter';
44
- import objectAssign from 'element-ui/src/utils/merge';
45
- import { noop, getPropByPath } from 'element-ui/src/utils/util';
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 'element-ui/src/locale';
98
- import CollapseTransition from 'element-ui/src/transitions/collapse-transition';
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.73',
224
+ version: '1.0.75',
225
225
  locale: locale.use,
226
226
  i18n: locale.i18n,
227
227
  install,