cnhis-design-vue 3.1.30-beta.6 → 3.1.30

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 (58) hide show
  1. package/es/components/big-table/index.d.ts +0 -1
  2. package/es/components/big-table/index.js +0 -1
  3. package/es/components/button-print/index.d.ts +1268 -0
  4. package/es/components/button-print/index.js +1 -0
  5. package/es/components/button-print/src/ButtonPrint.vue.d.ts +1269 -3
  6. package/es/components/button-print/src/ButtonPrint.vue_vue_type_script_setup_true_lang.js +86 -44
  7. package/es/components/button-print/src/components/IdentityVerification.js +42 -11
  8. package/es/components/button-print/src/components/IdentityVerification.vue.d.ts +1253 -0
  9. package/es/components/button-print/src/components/edit.js +142 -0
  10. package/es/components/button-print/src/components/edit.vue.d.ts +1237 -0
  11. package/es/components/button-print/src/utils/browserPrint.d.ts +1 -0
  12. package/es/components/button-print/src/utils/browserPrint.js +40 -0
  13. package/es/components/button-print/src/utils/index.d.ts +1 -0
  14. package/es/components/button-print/src/utils/index.js +1 -0
  15. package/es/components/button-print/style/index.css +1 -1
  16. package/es/components/iho-table/index.d.ts +7 -3
  17. package/es/components/iho-table/index.js +2 -0
  18. package/es/components/iho-table/src/IhoTable.js +8 -4
  19. package/es/components/iho-table/src/IhoTable.vue.d.ts +6 -2
  20. package/es/components/iho-table/src/components/IhoTableColumn.js +12 -9
  21. package/es/components/iho-table/src/constants/index.d.ts +1 -1
  22. package/es/components/iho-table/src/constants/index.js +1 -0
  23. package/es/components/{big-table → iho-table}/src/hooks/export.d.ts +1 -0
  24. package/es/components/iho-table/src/hooks/export.js +2 -0
  25. package/es/components/iho-table/src/hooks/tapHooks/useConfigHooks.d.ts +3 -1
  26. package/es/components/iho-table/src/hooks/tapHooks/useEventHooks.d.ts +1 -1
  27. package/es/components/{big-table → iho-table}/src/hooks/useColumnConfigAdaptor.d.ts +0 -0
  28. package/es/components/{big-table → iho-table}/src/hooks/useColumnConfigAdaptor.js +0 -0
  29. package/es/components/iho-table/src/hooks/useTableContext.d.ts +1 -1
  30. package/es/components/iho-table/src/plugins/defaultConfigPlugin/index.js +1 -0
  31. package/es/components/iho-table/src/plugins/filterPlugin/filter.d.ts +23 -0
  32. package/es/components/iho-table/src/plugins/filterPlugin/filter.js +99 -0
  33. package/es/components/iho-table/src/plugins/filterPlugin/index.d.ts +1 -0
  34. package/es/components/iho-table/src/plugins/filterPlugin/index.js +80 -0
  35. package/es/components/iho-table/src/plugins/filterPlugin/types.d.ts +14 -0
  36. package/es/components/iho-table/src/plugins/filterPlugin/types.js +8 -0
  37. package/es/components/iho-table/src/plugins/index.js +14 -12
  38. package/es/components/iho-table/src/plugins/lowCodeFieldAdaptorPlugin/index.js +4 -4
  39. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/dateRendererPlugin/editDate.vue.d.ts +1 -1
  40. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/dateRendererPlugin/index.js +14 -3
  41. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/inputRendererPlugin.js +12 -7
  42. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/numberRendererPlugin.js +5 -1
  43. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/selectRendererPlugin/index.js +14 -3
  44. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/separateRendererPlugin/editSeparate.vue.d.ts +1 -1
  45. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/separateRendererPlugin/index.js +24 -10
  46. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/timeRendererPlugin.js +12 -7
  47. package/es/components/iho-table/src/plugins/rendererPlugins/widgets/seqRendererPlugin.js +8 -2
  48. package/es/components/iho-table/src/types/index.d.ts +32 -10
  49. package/es/components/iho-table/src/utils/index.d.ts +4 -1
  50. package/es/components/iho-table/src/utils/index.js +7 -1
  51. package/es/components/iho-table/style/index.css +1 -1
  52. package/es/components/index.css +1 -1
  53. package/es/components/index.d.ts +1 -2
  54. package/es/components/index.js +3 -2
  55. package/es/components/keyboard/src/Keyboard.js +1 -1
  56. package/es/shared/types/index.d.ts +2 -2
  57. package/package.json +2 -2
  58. package/es/components/big-table/src/hooks/export.js +0 -1
@@ -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) {