cnhis-design-vue 3.1.14-beta.13 → 3.1.14-beta.16

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 (31) hide show
  1. package/es/node_modules/@formily/path/esm/contexts.js +22 -0
  2. package/es/node_modules/@formily/path/esm/destructor.js +124 -0
  3. package/es/node_modules/@formily/path/esm/index.js +579 -0
  4. package/es/node_modules/@formily/path/esm/matcher.js +199 -0
  5. package/es/node_modules/@formily/path/esm/parser.js +402 -0
  6. package/es/node_modules/@formily/path/esm/shared.js +73 -0
  7. package/es/node_modules/@formily/path/esm/tokenizer.js +287 -0
  8. package/es/node_modules/@formily/path/esm/tokens.js +240 -0
  9. package/es/node_modules/@formily/path/esm/types.js +17 -0
  10. package/es/packages/big-table/src/BigTable.vue.d.ts +13 -6
  11. package/es/packages/big-table/src/BigTable.vue_vue_type_script_setup_true_lang.js +4 -4
  12. package/es/packages/big-table/src/utils.js +1 -0
  13. package/es/packages/big-table/style/index.css +133 -0
  14. package/es/packages/fabric-chart/src/FabricChart.js +0 -1
  15. package/es/packages/fabric-chart/src/hooks/useLeft.js +15 -4
  16. package/es/packages/form-render/src/components/renderer/combination.d.ts +6 -0
  17. package/es/packages/form-render/src/components/renderer/combination.js +53 -16
  18. package/es/packages/form-render/src/components/renderer/select.js +2 -4
  19. package/es/packages/form-render/src/components/renderer/simpleComponent.d.ts +1 -0
  20. package/es/packages/form-render/src/components/renderer/simpleComponent.js +4 -3
  21. package/es/packages/form-render/src/hooks/useFieldListAdaptor.js +1 -0
  22. package/es/packages/form-render/src/types/fieldItem.d.ts +1 -0
  23. package/es/packages/index.css +133 -0
  24. package/es/packages/shortcut-provider/src/types/index.d.ts +11 -9
  25. package/es/packages/shortcut-provider/src/utils/index.js +5 -5
  26. package/es/packages/shortcut-setter/index.d.ts +3248 -1486
  27. package/es/packages/shortcut-setter/src/ShortcutSetter.js +9 -5
  28. package/es/packages/shortcut-setter/src/ShortcutSetter.vue.d.ts +3248 -1486
  29. package/es/packages/shortcut-setter/src/ShortcutSetterItem.js +24 -11
  30. package/es/packages/shortcut-setter/src/ShortcutSetterItem.vue.d.ts +1700 -1661
  31. package/package.json +1 -1
@@ -1,6 +1,7 @@
1
- import { defineComponent, computed, resolveComponent, openBlock, createBlock, unref } from 'vue';
1
+ import { defineComponent, computed, openBlock, createBlock, unref } from 'vue';
2
2
  import { useShortcuts } from '../../../packages/shortcut-provider';
3
3
  import ShortcutSetterItem from './ShortcutSetterItem.js';
4
+ import FormRender from '../../form-render/index.js';
4
5
  import _export_sfc from '../../../_virtual/plugin-vue_export-helper.js';
5
6
 
6
7
  const _sfc_main = /* @__PURE__ */ defineComponent({
@@ -16,16 +17,19 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
16
17
  val_key: shortcut.key,
17
18
  alias: shortcut.label,
18
19
  html_type: "SHORTCUT",
19
- placeholder: "\u8BF7\u8F93\u5165\u65B0\u7684\u5FEB\u6377\u952E",
20
- componentProps: { glob: props.glob },
20
+ componentProps: {
21
+ glob: props.glob,
22
+ editPlaceholder: shortcut.editPlaceholder,
23
+ placeholder: shortcut.placeholder,
24
+ operation: shortcut.operation
25
+ },
21
26
  elem_width: 12
22
27
  };
23
28
  });
24
29
  });
25
30
  const components = { SHORTCUT: ShortcutSetterItem };
26
31
  return (_ctx, _cache) => {
27
- const _component_c_form_render = resolveComponent("c-form-render");
28
- return openBlock(), createBlock(_component_c_form_render, {
32
+ return openBlock(), createBlock(unref(FormRender), {
29
33
  key: String(props.glob),
30
34
  "label-placement": "left",
31
35
  "field-list": unref(fieldList),