yc-pro-components 0.0.25 → 0.0.27

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 (64) hide show
  1. package/es/components/form-item/src/form-item.mjs +2 -1
  2. package/es/components/table/src/table-title-bar.vue2.mjs +1 -0
  3. package/es/components/yc-dialog/src/index.vue2.mjs +1 -1
  4. package/es/components/yc-drawer/src/index.vue.mjs +1 -1
  5. package/es/components/yc-drawer/src/index.vue2.mjs +1 -1
  6. package/es/components/yc-plus-page/src/index.vue.d.ts +53 -211
  7. package/es/components/yc-plus-page/src/index.vue.mjs +1 -1
  8. package/es/components/yc-plus-page/src/index.vue2.mjs +4 -2
  9. package/es/components/yc-plus-tree/src/index.vue.d.ts +5 -0
  10. package/es/components/yc-plus-tree/src/index.vue.mjs +1 -1
  11. package/es/components/yc-plus-tree/src/index.vue2.mjs +14 -6
  12. package/es/index.css +3 -3
  13. package/index.css +54 -54
  14. package/index.js +26 -14
  15. package/index.min.css +3 -3
  16. package/index.min.js +7 -7
  17. package/index.min.mjs +7 -7
  18. package/index.mjs +26 -14
  19. package/lib/components/form-item/src/form-item.js +2 -1
  20. package/lib/components/table/src/table-title-bar.vue2.js +1 -0
  21. package/lib/components/yc-dialog/src/index.vue2.js +1 -1
  22. package/lib/components/yc-drawer/src/index.vue.js +1 -1
  23. package/lib/components/yc-drawer/src/index.vue2.js +1 -1
  24. package/lib/components/yc-plus-page/src/index.vue.d.ts +53 -211
  25. package/lib/components/yc-plus-page/src/index.vue.js +1 -1
  26. package/lib/components/yc-plus-page/src/index.vue2.js +4 -2
  27. package/lib/components/yc-plus-tree/src/index.vue.d.ts +5 -0
  28. package/lib/components/yc-plus-tree/src/index.vue.js +1 -1
  29. package/lib/components/yc-plus-tree/src/index.vue2.js +13 -5
  30. package/lib/index.css +3 -3
  31. package/locale/en.js +1 -1
  32. package/locale/en.min.js +1 -1
  33. package/locale/en.min.mjs +1 -1
  34. package/locale/en.mjs +1 -1
  35. package/locale/ja.js +1 -1
  36. package/locale/ja.min.js +1 -1
  37. package/locale/ja.min.mjs +1 -1
  38. package/locale/ja.mjs +1 -1
  39. package/locale/ko.js +1 -1
  40. package/locale/ko.min.js +1 -1
  41. package/locale/ko.min.mjs +1 -1
  42. package/locale/ko.mjs +1 -1
  43. package/locale/zh-cn.js +1 -1
  44. package/locale/zh-cn.min.js +1 -1
  45. package/locale/zh-cn.min.mjs +1 -1
  46. package/locale/zh-cn.mjs +1 -1
  47. package/locale/zh-tw.js +1 -1
  48. package/locale/zh-tw.min.js +1 -1
  49. package/locale/zh-tw.min.mjs +1 -1
  50. package/locale/zh-tw.mjs +1 -1
  51. package/package.json +1 -1
  52. package/theme-chalk/index.css +1 -1
  53. package/theme-chalk/plus-dialog.css +1 -1
  54. package/theme-chalk/plus-display-item.css +1 -1
  55. package/theme-chalk/plus-table.css +1 -1
  56. package/theme-chalk/plus-yc-dialog.css +1 -1
  57. package/theme-chalk/plus-yc-drawer.css +1 -1
  58. package/theme-chalk/plus-yc-plus-tree.css +1 -1
  59. package/theme-chalk/src/dialog.scss +45 -0
  60. package/theme-chalk/src/display-item.scss +1 -0
  61. package/theme-chalk/src/table.scss +10 -0
  62. package/theme-chalk/src/yc-dialog.scss +50 -0
  63. package/theme-chalk/src/yc-drawer.scss +1 -1
  64. package/theme-chalk/src/yc-plus-tree.scss +1 -0
@@ -42,7 +42,8 @@ const FieldComponentMap = {
42
42
  },
43
43
  "input-number": {
44
44
  component: ElInputNumber,
45
- props: { placeholder: "plus.field.pleaseEnter" }
45
+ // align: 'left' 设置输入文本靠左对齐 (Element Plus 2.10.5+)
46
+ props: { placeholder: "plus.field.pleaseEnter", align: "left" }
46
47
  },
47
48
  radio: {
48
49
  component: ElRadioGroup,
@@ -295,6 +295,7 @@ var _sfc_main = /* @__PURE__ */ defineComponent({
295
295
  key: 2,
296
296
  placement: "bottom",
297
297
  width: columnSettingPopoverWidth.value,
298
+ offset: 8,
298
299
  trigger: "click",
299
300
  title: unref(t)("plus.table.columnSettings")
300
301
  }, {
@@ -11,7 +11,7 @@ var _sfc_main = /* @__PURE__ */ defineComponent({
11
11
  width: {},
12
12
  size: {},
13
13
  maxHeight: { type: [String, Number, Boolean], default: "720px" },
14
- showHeaderBorder: { type: Boolean, default: false }
14
+ showHeaderBorder: { type: Boolean, default: true }
15
15
  },
16
16
  setup(__props) {
17
17
  const props = __props;
@@ -1,6 +1,6 @@
1
1
  import _sfc_main from './index.vue2.mjs';
2
2
  import _export_sfc from '../../../_virtual/_plugin-vue_export-helper.mjs';
3
3
 
4
- var YcDrawerComponent = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-f8ad9f74"], ["__file", "index.vue"]]);
4
+ var YcDrawerComponent = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-e05479bb"], ["__file", "index.vue"]]);
5
5
 
6
6
  export { YcDrawerComponent as default };
@@ -3,7 +3,7 @@ import { isFunction } from 'lodash-es';
3
3
  import { Close } from '@element-plus/icons-vue';
4
4
  import { drawerStore, closeDrawer } from '../store.mjs';
5
5
 
6
- const _withScopeId = (n) => (pushScopeId("data-v-f8ad9f74"), n = n(), popScopeId(), n);
6
+ const _withScopeId = (n) => (pushScopeId("data-v-e05479bb"), n = n(), popScopeId(), n);
7
7
  const _hoisted_1 = { class: "custom-drawer-header" };
8
8
  const _hoisted_2 = { class: "header-content" };
9
9
  const _hoisted_3 = ["id"];