@ibiz-template/vue3-components 0.7.41-alpha.45 → 0.7.41-alpha.46

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 (72) hide show
  1. package/dist/{index-DgqTP4Vw.js → index-B0XiEslO.js} +1 -1
  2. package/dist/{index-Dr0VM8iS.js → index-B6kaPJDO.js} +1 -1
  3. package/dist/{index-yLzheFmH.js → index-DTj1Yy9-.js} +4 -4
  4. package/dist/index.min.css +1 -1
  5. package/dist/index.system.min.js +1 -1
  6. package/dist/{wang-editor-homqxACE.js → wang-editor-CRTv7Ujm.js} +1 -1
  7. package/dist/{xlsx-util-C5MBICNN.js → xlsx-util-CqW4WJ9G.js} +1 -1
  8. package/es/common/button-list/button-list.css +1 -1
  9. package/es/index.mjs +1 -0
  10. package/es/locale/en/index.mjs +13 -0
  11. package/es/locale/zh-CN/index.mjs +13 -0
  12. package/es/node_modules/.pnpm/modern-screenshot@4.6.7/node_modules/modern-screenshot/dist/index.mjs +1652 -0
  13. package/es/util/ai-chat-util/ai-chat-util.mjs +21 -21
  14. package/es/util/app-util/app-util.mjs +2 -4
  15. package/es/util/index.mjs +1 -0
  16. package/es/util/inline-ai-util/inline-ai-textarea/inline-ai-textarea.hook.mjs +3 -3
  17. package/es/util/screen-shot-util/screen-shot/components/index.mjs +3 -0
  18. package/es/util/screen-shot-util/screen-shot/components/screen-shot/screen-shot.css +1 -0
  19. package/es/util/screen-shot-util/screen-shot/components/screen-shot/screen-shot.mjs +113 -0
  20. package/es/util/screen-shot-util/screen-shot/components/screen-shot-toolbar/screen-shot-toolbar.css +1 -0
  21. package/es/util/screen-shot-util/screen-shot/components/screen-shot-toolbar/screen-shot-toolbar.mjs +105 -0
  22. package/es/util/screen-shot-util/screen-shot/constant/index.mjs +172 -0
  23. package/es/util/screen-shot-util/screen-shot/controller/index.mjs +3 -0
  24. package/es/util/screen-shot-util/screen-shot/controller/screen-shot.controller.mjs +366 -0
  25. package/es/util/screen-shot-util/screen-shot/controller/screen-shot.store.mjs +51 -0
  26. package/es/util/screen-shot-util/screen-shot/icon/icon.mjs +90 -0
  27. package/es/util/screen-shot-util/screen-shot/icon/index.mjs +3 -0
  28. package/es/util/screen-shot-util/screen-shot/index.mjs +4 -0
  29. package/es/util/screen-shot-util/screen-shot/module/draw-arrow.mjs +109 -0
  30. package/es/util/screen-shot-util/screen-shot/module/draw-circle.mjs +25 -0
  31. package/es/util/screen-shot-util/screen-shot/module/draw-mosaic.mjs +54 -0
  32. package/es/util/screen-shot-util/screen-shot/module/draw-pencil.mjs +15 -0
  33. package/es/util/screen-shot-util/screen-shot/module/draw-rectangle.mjs +12 -0
  34. package/es/util/screen-shot-util/screen-shot/module/draw-text.mjs +12 -0
  35. package/es/util/screen-shot-util/screen-shot/module/index.mjs +8 -0
  36. package/es/util/screen-shot-util/screen-shot/type/index.mjs +16 -0
  37. package/es/util/screen-shot-util/screen-shot/util/index.mjs +8 -0
  38. package/es/util/screen-shot-util/screen-shot-util.mjs +67 -0
  39. package/es/web-app/main.mjs +2 -0
  40. package/lib/common/button-list/button-list.css +1 -1
  41. package/lib/index.cjs +2 -0
  42. package/lib/locale/en/index.cjs +13 -0
  43. package/lib/locale/zh-CN/index.cjs +13 -0
  44. package/lib/node_modules/.pnpm/modern-screenshot@4.6.7/node_modules/modern-screenshot/dist/index.cjs +1667 -0
  45. package/lib/util/ai-chat-util/ai-chat-util.cjs +21 -21
  46. package/lib/util/app-util/app-util.cjs +2 -4
  47. package/lib/util/index.cjs +2 -0
  48. package/lib/util/inline-ai-util/inline-ai-textarea/inline-ai-textarea.hook.cjs +3 -3
  49. package/lib/util/screen-shot-util/screen-shot/components/index.cjs +7 -0
  50. package/lib/util/screen-shot-util/screen-shot/components/screen-shot/screen-shot.cjs +115 -0
  51. package/lib/util/screen-shot-util/screen-shot/components/screen-shot/screen-shot.css +1 -0
  52. package/lib/util/screen-shot-util/screen-shot/components/screen-shot-toolbar/screen-shot-toolbar.cjs +107 -0
  53. package/lib/util/screen-shot-util/screen-shot/components/screen-shot-toolbar/screen-shot-toolbar.css +1 -0
  54. package/lib/util/screen-shot-util/screen-shot/constant/index.cjs +174 -0
  55. package/lib/util/screen-shot-util/screen-shot/controller/index.cjs +7 -0
  56. package/lib/util/screen-shot-util/screen-shot/controller/screen-shot.controller.cjs +368 -0
  57. package/lib/util/screen-shot-util/screen-shot/controller/screen-shot.store.cjs +53 -0
  58. package/lib/util/screen-shot-util/screen-shot/icon/icon.cjs +100 -0
  59. package/lib/util/screen-shot-util/screen-shot/icon/index.cjs +15 -0
  60. package/lib/util/screen-shot-util/screen-shot/index.cjs +8 -0
  61. package/lib/util/screen-shot-util/screen-shot/module/draw-arrow.cjs +111 -0
  62. package/lib/util/screen-shot-util/screen-shot/module/draw-circle.cjs +27 -0
  63. package/lib/util/screen-shot-util/screen-shot/module/draw-mosaic.cjs +56 -0
  64. package/lib/util/screen-shot-util/screen-shot/module/draw-pencil.cjs +18 -0
  65. package/lib/util/screen-shot-util/screen-shot/module/draw-rectangle.cjs +14 -0
  66. package/lib/util/screen-shot-util/screen-shot/module/draw-text.cjs +14 -0
  67. package/lib/util/screen-shot-util/screen-shot/module/index.cjs +18 -0
  68. package/lib/util/screen-shot-util/screen-shot/type/index.cjs +18 -0
  69. package/lib/util/screen-shot-util/screen-shot/util/index.cjs +10 -0
  70. package/lib/util/screen-shot-util/screen-shot-util.cjs +69 -0
  71. package/lib/web-app/main.cjs +2 -0
  72. package/package.json +6 -5

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.