vxe-pc-ui 1.7.1 → 1.7.3

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.
Files changed (59) hide show
  1. package/README.en.md +1 -1
  2. package/es/anchor/src/anchor.js +1 -1
  3. package/es/form-design/render/index.js +4 -4
  4. package/es/form-design/src/form-design.js +4 -1
  5. package/es/icon/style/{iconfont.1716527801283.ttf → iconfont.1716552119066.ttf} +0 -0
  6. package/es/icon/style/iconfont.1716552119066.woff +0 -0
  7. package/es/icon/style/iconfont.1716552119066.woff2 +0 -0
  8. package/es/icon/style.css +62 -545
  9. package/es/icon/style.min.css +1 -1
  10. package/{lib/icon/style/iconfont.1716527801283.ttf → es/iconfont.1716552119066.ttf} +0 -0
  11. package/es/iconfont.1716552119066.woff +0 -0
  12. package/es/iconfont.1716552119066.woff2 +0 -0
  13. package/es/style.css +1 -1
  14. package/es/style.min.css +1 -1
  15. package/es/ui/index.js +2 -1
  16. package/es/vxe-icon/style.css +62 -545
  17. package/es/vxe-icon/style.min.css +1 -1
  18. package/helper/vetur/attributes.json +1 -1066
  19. package/helper/vetur/tags.json +1 -391
  20. package/lib/anchor/src/anchor.js +1 -1
  21. package/lib/anchor/src/anchor.min.js +1 -1
  22. package/lib/form-design/render/index.js +4 -4
  23. package/lib/form-design/render/index.min.js +1 -1
  24. package/lib/form-design/src/form-design.js +4 -1
  25. package/lib/form-design/src/form-design.min.js +1 -1
  26. package/lib/{iconfont.1716527801283.ttf → icon/style/iconfont.1716552119066.ttf} +0 -0
  27. package/lib/icon/style/iconfont.1716552119066.woff +0 -0
  28. package/lib/icon/style/iconfont.1716552119066.woff2 +0 -0
  29. package/lib/icon/style/style.css +62 -545
  30. package/lib/icon/style/style.min.css +62 -545
  31. package/{es/iconfont.1716527801283.ttf → lib/iconfont.1716552119066.ttf} +0 -0
  32. package/lib/iconfont.1716552119066.woff +0 -0
  33. package/lib/iconfont.1716552119066.woff2 +0 -0
  34. package/lib/index.umd.js +11 -7
  35. package/lib/index.umd.min.js +1 -1
  36. package/lib/style.css +1 -1
  37. package/lib/style.min.css +1 -1
  38. package/lib/ui/index.js +2 -1
  39. package/lib/ui/index.min.js +1 -1
  40. package/lib/vxe-icon/style/style.css +62 -545
  41. package/lib/vxe-icon/style/style.min.css +1 -1
  42. package/package.json +2 -2
  43. package/packages/anchor/src/anchor.ts +3 -3
  44. package/packages/form-design/render/index.ts +4 -4
  45. package/packages/form-design/src/form-design.ts +4 -1
  46. package/packages/ui/index.ts +1 -0
  47. package/styles/components/icon.scss +62 -5
  48. package/styles/icon/iconfont.ttf +0 -0
  49. package/styles/icon/iconfont.woff +0 -0
  50. package/styles/icon/iconfont.woff2 +0 -0
  51. package/types/components/tips.d.ts +1 -1
  52. package/es/icon/style/iconfont.1716527801283.woff +0 -0
  53. package/es/icon/style/iconfont.1716527801283.woff2 +0 -0
  54. package/es/iconfont.1716527801283.woff +0 -0
  55. package/es/iconfont.1716527801283.woff2 +0 -0
  56. package/lib/icon/style/iconfont.1716527801283.woff +0 -0
  57. package/lib/icon/style/iconfont.1716527801283.woff2 +0 -0
  58. package/lib/iconfont.1716527801283.woff +0 -0
  59. package/lib/iconfont.1716527801283.woff2 +0 -0
package/README.en.md CHANGED
@@ -12,7 +12,7 @@
12
12
  [![pull requests closed](https://img.shields.io/github/issues-pr-closed/x-extends/vxe-pc-ui.svg)](https://github.com/x-extends/vxe-pc-ui/pulls?q=is%3Apr+is%3Aclosed)
13
13
  [![npm license](https://img.shields.io/github/license/mashape/apistatus.svg)](LICENSE)
14
14
 
15
- 一个基于 [vue](https://www.npmjs.com/package/vue) PC 端组件库
15
+ A [vue](https://www.npmjs.com/package/vue) based PC side component library.
16
16
 
17
17
  ## Browser Support
18
18
 
@@ -63,7 +63,7 @@ export default defineComponent({
63
63
  return document.querySelector(container);
64
64
  }
65
65
  if (XEUtils.isFunction(container)) {
66
- return container({ $xeAnchor });
66
+ return container({ $anchor: $xeAnchor });
67
67
  }
68
68
  }
69
69
  return null;
@@ -14,7 +14,7 @@ const defaultFormDesignWidgetName = (params) => {
14
14
  renderer.mixin({
15
15
  row: {
16
16
  formDesignWidgetName: defaultFormDesignWidgetName,
17
- formDesignWidgetIcon: 'vxe-icon-feedback',
17
+ formDesignWidgetIcon: 'vxe-icon-row-col',
18
18
  formDesignWidgetGroup: 'layout',
19
19
  renderFormDesignWidgetEdit(renderOpts, renderParams) {
20
20
  return h(WidgetRowEditComponent, { renderOpts, renderParams });
@@ -29,7 +29,7 @@ renderer.mixin({
29
29
  },
30
30
  input: {
31
31
  formDesignWidgetName: defaultFormDesignWidgetName,
32
- formDesignWidgetIcon: 'vxe-icon-feedback',
32
+ formDesignWidgetIcon: 'vxe-icon-input',
33
33
  renderFormDesignWidgetView(renderOpts, renderParams) {
34
34
  return h(WidgetInputViewComponent, { renderOpts, renderParams });
35
35
  },
@@ -41,7 +41,7 @@ renderer.mixin({
41
41
  },
42
42
  textarea: {
43
43
  formDesignWidgetName: defaultFormDesignWidgetName,
44
- formDesignWidgetIcon: 'vxe-icon-feedback',
44
+ formDesignWidgetIcon: 'vxe-icon-textarea',
45
45
  renderFormDesignWidgetView(renderOpts, renderParams) {
46
46
  return h(WidgetTextareaViewComponent, { renderOpts, renderParams });
47
47
  },
@@ -52,7 +52,7 @@ renderer.mixin({
52
52
  },
53
53
  select: {
54
54
  formDesignWidgetName: defaultFormDesignWidgetName,
55
- formDesignWidgetIcon: 'vxe-icon-feedback',
55
+ formDesignWidgetIcon: 'vxe-icon-select',
56
56
  renderFormDesignWidgetView(renderOpts, renderParams) {
57
57
  return h(WidgetSelectViewComponent, { renderOpts, renderParams });
58
58
  },
@@ -14,7 +14,10 @@ export default defineComponent({
14
14
  type: String,
15
15
  default: () => getConfig().formDesign.size
16
16
  },
17
- height: [String, Number],
17
+ height: {
18
+ type: [String, Number],
19
+ default: () => getConfig().formDesign.height
20
+ },
18
21
  widgets: {
19
22
  type: Array,
20
23
  default: () => XEUtils.clone(getConfig().formDesign.widgets) || []