ados-rcm 1.1.513 → 1.1.515

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 (59) hide show
  1. package/dist/AModule/AComponents/AEditor/modules/tableUp/formats/container-format.d.ts +15 -0
  2. package/dist/AModule/AComponents/AEditor/modules/tableUp/formats/index.d.ts +11 -0
  3. package/dist/AModule/AComponents/AEditor/modules/tableUp/formats/overrides/block.d.ts +9 -0
  4. package/dist/AModule/AComponents/AEditor/modules/tableUp/formats/overrides/index.d.ts +2 -0
  5. package/dist/AModule/AComponents/AEditor/modules/tableUp/formats/overrides/scroll.d.ts +10 -0
  6. package/dist/AModule/AComponents/AEditor/modules/tableUp/formats/table-body-format.d.ts +10 -0
  7. package/dist/AModule/AComponents/AEditor/modules/tableUp/formats/table-caption-format.d.ts +23 -0
  8. package/dist/AModule/AComponents/AEditor/modules/tableUp/formats/table-cell-format.d.ts +26 -0
  9. package/dist/AModule/AComponents/AEditor/modules/tableUp/formats/table-cell-inner-format.d.ts +34 -0
  10. package/dist/AModule/AComponents/AEditor/modules/tableUp/formats/table-col-format.d.ts +22 -0
  11. package/dist/AModule/AComponents/AEditor/modules/tableUp/formats/table-colgroup-format.d.ts +20 -0
  12. package/dist/AModule/AComponents/AEditor/modules/tableUp/formats/table-main-format.d.ts +26 -0
  13. package/dist/AModule/AComponents/AEditor/modules/tableUp/formats/table-row-format.d.ts +25 -0
  14. package/dist/AModule/AComponents/AEditor/modules/tableUp/formats/table-wrapper-format.d.ts +14 -0
  15. package/dist/AModule/AComponents/AEditor/modules/tableUp/formats/utils.d.ts +1 -0
  16. package/dist/AModule/AComponents/AEditor/modules/tableUp/index.d.ts +7 -0
  17. package/dist/AModule/AComponents/AEditor/modules/tableUp/modules/index.d.ts +6 -0
  18. package/dist/AModule/AComponents/AEditor/modules/tableUp/modules/table-align.d.ts +31 -0
  19. package/dist/AModule/AComponents/AEditor/modules/tableUp/modules/table-clipboard.d.ts +42 -0
  20. package/dist/AModule/AComponents/AEditor/modules/tableUp/modules/table-menu/constants.d.ts +12 -0
  21. package/dist/AModule/AComponents/AEditor/modules/tableUp/modules/table-menu/index.d.ts +4 -0
  22. package/dist/AModule/AComponents/AEditor/modules/tableUp/modules/table-menu/table-menu-common.d.ts +43 -0
  23. package/dist/AModule/AComponents/AEditor/modules/tableUp/modules/table-menu/table-menu-contextmenu.d.ts +21 -0
  24. package/dist/AModule/AComponents/AEditor/modules/tableUp/modules/table-menu/table-menu-select.d.ts +9 -0
  25. package/dist/AModule/AComponents/AEditor/modules/tableUp/modules/table-resize/index.d.ts +5 -0
  26. package/dist/AModule/AComponents/AEditor/modules/tableUp/modules/table-resize/table-resize-box.d.ts +56 -0
  27. package/dist/AModule/AComponents/AEditor/modules/tableUp/modules/table-resize/table-resize-common.d.ts +79 -0
  28. package/dist/AModule/AComponents/AEditor/modules/tableUp/modules/table-resize/table-resize-line.d.ts +39 -0
  29. package/dist/AModule/AComponents/AEditor/modules/tableUp/modules/table-resize/table-resize-scale.d.ts +40 -0
  30. package/dist/AModule/AComponents/AEditor/modules/tableUp/modules/table-resize/utils.d.ts +2 -0
  31. package/dist/AModule/AComponents/AEditor/modules/tableUp/modules/table-scrollbar.d.ts +89 -0
  32. package/dist/AModule/AComponents/AEditor/modules/tableUp/modules/table-selection.d.ts +87 -0
  33. package/dist/AModule/AComponents/AEditor/modules/tableUp/table-up.d.ts +119 -0
  34. package/dist/AModule/AComponents/AEditor/modules/tableUp/utils/bem.d.ts +18 -0
  35. package/dist/AModule/AComponents/AEditor/modules/tableUp/utils/blot-helper.d.ts +25 -0
  36. package/dist/AModule/AComponents/AEditor/modules/tableUp/utils/color.d.ts +18 -0
  37. package/dist/AModule/AComponents/AEditor/modules/tableUp/utils/components/button.d.ts +6 -0
  38. package/dist/AModule/AComponents/AEditor/modules/tableUp/utils/components/color-picker.d.ts +6 -0
  39. package/dist/AModule/AComponents/AEditor/modules/tableUp/utils/components/dialog.d.ts +10 -0
  40. package/dist/AModule/AComponents/AEditor/modules/tableUp/utils/components/index.d.ts +6 -0
  41. package/dist/AModule/AComponents/AEditor/modules/tableUp/utils/components/input.d.ts +15 -0
  42. package/dist/AModule/AComponents/AEditor/modules/tableUp/utils/components/table/creator.d.ts +10 -0
  43. package/dist/AModule/AComponents/AEditor/modules/tableUp/utils/components/table/index.d.ts +2 -0
  44. package/dist/AModule/AComponents/AEditor/modules/tableUp/utils/components/table/select-box.d.ts +10 -0
  45. package/dist/AModule/AComponents/AEditor/modules/tableUp/utils/components/tooltip.d.ts +18 -0
  46. package/dist/AModule/AComponents/AEditor/modules/tableUp/utils/constants.d.ts +30 -0
  47. package/dist/AModule/AComponents/AEditor/modules/tableUp/utils/index.d.ts +13 -0
  48. package/dist/AModule/AComponents/AEditor/modules/tableUp/utils/is.d.ts +7 -0
  49. package/dist/AModule/AComponents/AEditor/modules/tableUp/utils/position.d.ts +14 -0
  50. package/dist/AModule/AComponents/AEditor/modules/tableUp/utils/resize-observer-helper.d.ts +4 -0
  51. package/dist/AModule/AComponents/AEditor/modules/tableUp/utils/scroll-event-handle.d.ts +6 -0
  52. package/dist/AModule/AComponents/AEditor/modules/tableUp/utils/transformer.d.ts +2 -0
  53. package/dist/AModule/AComponents/AEditor/modules/tableUp/utils/transition-event-helper.d.ts +1 -0
  54. package/dist/AModule/AComponents/AEditor/modules/tableUp/utils/types.d.ts +149 -0
  55. package/dist/AModule/AComponents/AEditor/modules/tableUp/utils/utils.d.ts +2 -0
  56. package/dist/AModule/AComponents/ATree/ATreeItem.d.ts +1 -0
  57. package/dist/index.cjs.js +198 -198
  58. package/dist/index.es.js +25999 -21757
  59. package/package.json +6 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ados-rcm",
3
- "version": "1.1.513",
3
+ "version": "1.1.515",
4
4
  "private": false,
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -70,10 +70,14 @@
70
70
  "vite-tsconfig-paths": "^4.3.2"
71
71
  },
72
72
  "dependencies": {
73
+ "@dnd-kit/core": "^6.3.1",
74
+ "@dnd-kit/modifiers": "^9.0.0",
75
+ "@dnd-kit/sortable": "^10.0.0",
76
+ "@dnd-kit/utilities": "^3.2.2",
77
+ "@floating-ui/dom": "^1.7.0",
73
78
  "parchment": "^3.0.0",
74
79
  "qs": "^6.14.0",
75
80
  "quill-magic-url": "^4.2.0",
76
- "quill-table-up": "^2.2.0",
77
81
  "react-quill-new": "^3.4.6"
78
82
  }
79
83
  }