cnhis-design-vue 3.1.15-beta.9 → 3.1.16-beta.1

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 (39) hide show
  1. package/es/packages/big-table/src/hooks/useAnnotation.js +1 -2
  2. package/es/packages/big-table/src/hooks/useColumnConfigAdaptor.js +7 -2
  3. package/es/packages/big-table/src/hooks/useEdit.js +16 -8
  4. package/es/packages/fabric-chart/src/hooks/useDraw.js +1 -0
  5. package/es/packages/fabric-chart/src/hooks/useLeft.js +1 -2
  6. package/es/packages/form-config/index.d.ts +1749 -0
  7. package/es/packages/form-config/src/FormConfig.vue.d.ts +1749 -0
  8. package/es/packages/form-config/src/components/FormConfigEdit.js +3 -3
  9. package/es/packages/form-config/src/components/FormConfigEdit.vue.d.ts +1747 -0
  10. package/es/packages/form-config/style/index.css +1 -1
  11. package/es/packages/form-render/src/components/renderer/combination/index.js +3 -3
  12. package/es/packages/form-render/src/components/renderer/formItem.js +1 -2
  13. package/es/packages/form-render/src/hooks/useFieldListAdaptor.js +2 -2
  14. package/es/packages/form-render/src/types/fieldItem.d.ts +8 -0
  15. package/es/packages/form-render/src/utils/index.d.ts +1 -0
  16. package/es/packages/form-render/src/utils/index.js +9 -2
  17. package/es/packages/form-table/src/hooks/useNuiThemeOverrides.js +1 -1
  18. package/es/packages/index.css +1 -1
  19. package/es/packages/index.d.ts +1 -0
  20. package/es/packages/index.js +1 -1
  21. package/es/packages/scale-view/src/hooks/scaleview-init.js +35 -35
  22. package/es/packages/shortcut-provider/index.d.ts +17 -2
  23. package/es/packages/shortcut-provider/index.js +1 -1
  24. package/es/packages/shortcut-provider/src/ShortcutProvider.js +5 -1
  25. package/es/packages/shortcut-provider/src/ShortcutProvider.vue.d.ts +17 -2
  26. package/es/packages/shortcut-provider/src/hooks/index.js +1 -1
  27. package/es/packages/shortcut-provider/src/hooks/useShortcuts.d.ts +10 -10
  28. package/es/packages/shortcut-provider/src/hooks/useShortcuts.js +45 -38
  29. package/es/packages/shortcut-provider/src/types/index.d.ts +2 -19
  30. package/es/packages/shortcut-setter/index.d.ts +1698 -4283
  31. package/es/packages/shortcut-setter/src/ShortcutSetter.js +63 -10
  32. package/es/packages/shortcut-setter/src/ShortcutSetter.vue.d.ts +1723 -4306
  33. package/es/packages/shortcut-setter/src/ShortcutSetterItem.js +26 -95
  34. package/es/packages/shortcut-setter/src/ShortcutSetterItem.vue.d.ts +30 -3363
  35. package/es/packages/shortcut-setter/src/types/index.d.ts +6 -0
  36. package/es/packages/shortcut-setter/src/types/index.js +1 -0
  37. package/package.json +1 -1
  38. package/es/packages/shortcut-setter/constant/index.d.ts +0 -4
  39. package/es/packages/shortcut-setter/constant/index.js +0 -7
@@ -0,0 +1,6 @@
1
+ import { ShortcutSignatureInfo } from '../../../../../es/packages/shortcut-provider';
2
+ export interface ShortcutSetterExpose {
3
+ loadSignature(): void;
4
+ getSignature(): Record<string, ShortcutSignatureInfo>;
5
+ setSignature(): void;
6
+ }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "cnhis-design-vue",
3
3
  "private": false,
4
- "version": "3.1.15-beta.9",
4
+ "version": "3.1.16-beta.1",
5
5
  "license": "ISC",
6
6
  "module": "es/packages/index.js",
7
7
  "main": "es/packages/index.js",
@@ -1,4 +0,0 @@
1
- export declare enum ShortcutInputState {
2
- STATIC = 0,
3
- EDIT = 1
4
- }
@@ -1,7 +0,0 @@
1
- var ShortcutInputState = /* @__PURE__ */ ((ShortcutInputState2) => {
2
- ShortcutInputState2[ShortcutInputState2["STATIC"] = 0] = "STATIC";
3
- ShortcutInputState2[ShortcutInputState2["EDIT"] = 1] = "EDIT";
4
- return ShortcutInputState2;
5
- })(ShortcutInputState || {});
6
-
7
- export { ShortcutInputState };