cnhis-design-vue 3.1.30-beta.7 → 3.1.31-beta.0

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 (53) hide show
  1. package/es/components/button-print/index.d.ts +1268 -0
  2. package/es/components/button-print/index.js +1 -0
  3. package/es/components/button-print/src/ButtonPrint.vue.d.ts +1269 -3
  4. package/es/components/button-print/src/ButtonPrint.vue_vue_type_script_setup_true_lang.js +86 -44
  5. package/es/components/button-print/src/components/IdentityVerification.js +42 -11
  6. package/es/components/button-print/src/components/IdentityVerification.vue.d.ts +1253 -0
  7. package/es/components/button-print/src/components/edit.js +142 -0
  8. package/es/components/button-print/src/components/edit.vue.d.ts +1237 -0
  9. package/es/components/button-print/src/utils/browserPrint.d.ts +1 -0
  10. package/es/components/button-print/src/utils/browserPrint.js +40 -0
  11. package/es/components/button-print/src/utils/index.d.ts +1 -0
  12. package/es/components/button-print/src/utils/index.js +1 -0
  13. package/es/components/button-print/style/index.css +1 -1
  14. package/es/components/form-render/src/hooks/useBusinessBinding.d.ts +1 -1
  15. package/es/components/form-render/src/hooks/useBusinessBinding.js +16 -9
  16. package/es/components/form-render/src/utils/business.js +1 -1
  17. package/es/components/iho-table/index.d.ts +45 -39
  18. package/es/components/iho-table/index.js +1 -0
  19. package/es/components/iho-table/src/IhoTable.js +9 -4
  20. package/es/components/iho-table/src/IhoTable.vue.d.ts +45 -39
  21. package/es/components/iho-table/src/components/IhoTableColumn.js +8 -5
  22. package/es/components/iho-table/src/constants/index.d.ts +1 -1
  23. package/es/components/iho-table/src/constants/index.js +2 -0
  24. package/es/components/iho-table/src/hooks/tapHooks/useConfigHooks.d.ts +3 -1
  25. package/es/components/iho-table/src/hooks/tapHooks/useEventHooks.d.ts +1 -1
  26. package/es/components/iho-table/src/hooks/useTableContext.d.ts +1 -1
  27. package/es/components/iho-table/src/plugins/filterPlugin/filter.js +189 -0
  28. package/es/components/iho-table/src/plugins/filterPlugin/filter.vue.d.ts +126 -0
  29. package/es/components/iho-table/src/plugins/filterPlugin/index.d.ts +1 -0
  30. package/es/components/iho-table/src/plugins/filterPlugin/index.js +74 -0
  31. package/es/components/iho-table/src/plugins/filterPlugin/types.d.ts +11 -0
  32. package/es/components/iho-table/src/plugins/filterPlugin/types.js +8 -0
  33. package/es/components/iho-table/src/plugins/index.js +14 -12
  34. package/es/components/iho-table/src/plugins/lowCodeFieldAdaptorPlugin/index.js +4 -3
  35. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/dateRendererPlugin/editDate.vue.d.ts +1 -1
  36. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/dateRendererPlugin/index.js +14 -3
  37. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/inputRendererPlugin.js +12 -7
  38. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/numberRendererPlugin.js +5 -1
  39. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/selectRendererPlugin/index.js +14 -3
  40. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/separateRendererPlugin/editSeparate.vue.d.ts +1 -1
  41. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/separateRendererPlugin/index.js +17 -5
  42. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/separateRendererPlugin/separateUtils.d.ts +2 -4
  43. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/separateRendererPlugin/separateUtils.js +2 -17
  44. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/timeRendererPlugin.js +12 -7
  45. package/es/components/iho-table/src/plugins/rendererPlugins/widgets/seqRendererPlugin.js +8 -2
  46. package/es/components/iho-table/src/types/index.d.ts +36 -10
  47. package/es/components/iho-table/src/utils/index.d.ts +12 -1
  48. package/es/components/iho-table/src/utils/index.js +36 -2
  49. package/es/components/iho-table/style/index.css +1 -1
  50. package/es/components/index.css +1 -1
  51. package/es/components/index.js +1 -0
  52. package/es/shared/types/index.d.ts +2 -2
  53. package/package.json +2 -2
@@ -2,6 +2,7 @@ import { COMPONENT_NAMESPACE } from '../../shared/global/variable.js';
2
2
  import { safeComponentRegister } from '../../shared/utils/index.js';
3
3
  import script from './src/ButtonPrint.js';
4
4
  export { Print } from './src/utils/print.js';
5
+ export { useBrowserPrint } from './src/utils/browserPrint.js';
5
6
 
6
7
  const ButtonPrint = script;
7
8
  ButtonPrint.install = function(app) {