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.
- package/dist/AModule/AComponents/AEditor/modules/tableUp/formats/container-format.d.ts +15 -0
- package/dist/AModule/AComponents/AEditor/modules/tableUp/formats/index.d.ts +11 -0
- package/dist/AModule/AComponents/AEditor/modules/tableUp/formats/overrides/block.d.ts +9 -0
- package/dist/AModule/AComponents/AEditor/modules/tableUp/formats/overrides/index.d.ts +2 -0
- package/dist/AModule/AComponents/AEditor/modules/tableUp/formats/overrides/scroll.d.ts +10 -0
- package/dist/AModule/AComponents/AEditor/modules/tableUp/formats/table-body-format.d.ts +10 -0
- package/dist/AModule/AComponents/AEditor/modules/tableUp/formats/table-caption-format.d.ts +23 -0
- package/dist/AModule/AComponents/AEditor/modules/tableUp/formats/table-cell-format.d.ts +26 -0
- package/dist/AModule/AComponents/AEditor/modules/tableUp/formats/table-cell-inner-format.d.ts +34 -0
- package/dist/AModule/AComponents/AEditor/modules/tableUp/formats/table-col-format.d.ts +22 -0
- package/dist/AModule/AComponents/AEditor/modules/tableUp/formats/table-colgroup-format.d.ts +20 -0
- package/dist/AModule/AComponents/AEditor/modules/tableUp/formats/table-main-format.d.ts +26 -0
- package/dist/AModule/AComponents/AEditor/modules/tableUp/formats/table-row-format.d.ts +25 -0
- package/dist/AModule/AComponents/AEditor/modules/tableUp/formats/table-wrapper-format.d.ts +14 -0
- package/dist/AModule/AComponents/AEditor/modules/tableUp/formats/utils.d.ts +1 -0
- package/dist/AModule/AComponents/AEditor/modules/tableUp/index.d.ts +7 -0
- package/dist/AModule/AComponents/AEditor/modules/tableUp/modules/index.d.ts +6 -0
- package/dist/AModule/AComponents/AEditor/modules/tableUp/modules/table-align.d.ts +31 -0
- package/dist/AModule/AComponents/AEditor/modules/tableUp/modules/table-clipboard.d.ts +42 -0
- package/dist/AModule/AComponents/AEditor/modules/tableUp/modules/table-menu/constants.d.ts +12 -0
- package/dist/AModule/AComponents/AEditor/modules/tableUp/modules/table-menu/index.d.ts +4 -0
- package/dist/AModule/AComponents/AEditor/modules/tableUp/modules/table-menu/table-menu-common.d.ts +43 -0
- package/dist/AModule/AComponents/AEditor/modules/tableUp/modules/table-menu/table-menu-contextmenu.d.ts +21 -0
- package/dist/AModule/AComponents/AEditor/modules/tableUp/modules/table-menu/table-menu-select.d.ts +9 -0
- package/dist/AModule/AComponents/AEditor/modules/tableUp/modules/table-resize/index.d.ts +5 -0
- package/dist/AModule/AComponents/AEditor/modules/tableUp/modules/table-resize/table-resize-box.d.ts +56 -0
- package/dist/AModule/AComponents/AEditor/modules/tableUp/modules/table-resize/table-resize-common.d.ts +79 -0
- package/dist/AModule/AComponents/AEditor/modules/tableUp/modules/table-resize/table-resize-line.d.ts +39 -0
- package/dist/AModule/AComponents/AEditor/modules/tableUp/modules/table-resize/table-resize-scale.d.ts +40 -0
- package/dist/AModule/AComponents/AEditor/modules/tableUp/modules/table-resize/utils.d.ts +2 -0
- package/dist/AModule/AComponents/AEditor/modules/tableUp/modules/table-scrollbar.d.ts +89 -0
- package/dist/AModule/AComponents/AEditor/modules/tableUp/modules/table-selection.d.ts +87 -0
- package/dist/AModule/AComponents/AEditor/modules/tableUp/table-up.d.ts +119 -0
- package/dist/AModule/AComponents/AEditor/modules/tableUp/utils/bem.d.ts +18 -0
- package/dist/AModule/AComponents/AEditor/modules/tableUp/utils/blot-helper.d.ts +25 -0
- package/dist/AModule/AComponents/AEditor/modules/tableUp/utils/color.d.ts +18 -0
- package/dist/AModule/AComponents/AEditor/modules/tableUp/utils/components/button.d.ts +6 -0
- package/dist/AModule/AComponents/AEditor/modules/tableUp/utils/components/color-picker.d.ts +6 -0
- package/dist/AModule/AComponents/AEditor/modules/tableUp/utils/components/dialog.d.ts +10 -0
- package/dist/AModule/AComponents/AEditor/modules/tableUp/utils/components/index.d.ts +6 -0
- package/dist/AModule/AComponents/AEditor/modules/tableUp/utils/components/input.d.ts +15 -0
- package/dist/AModule/AComponents/AEditor/modules/tableUp/utils/components/table/creator.d.ts +10 -0
- package/dist/AModule/AComponents/AEditor/modules/tableUp/utils/components/table/index.d.ts +2 -0
- package/dist/AModule/AComponents/AEditor/modules/tableUp/utils/components/table/select-box.d.ts +10 -0
- package/dist/AModule/AComponents/AEditor/modules/tableUp/utils/components/tooltip.d.ts +18 -0
- package/dist/AModule/AComponents/AEditor/modules/tableUp/utils/constants.d.ts +30 -0
- package/dist/AModule/AComponents/AEditor/modules/tableUp/utils/index.d.ts +13 -0
- package/dist/AModule/AComponents/AEditor/modules/tableUp/utils/is.d.ts +7 -0
- package/dist/AModule/AComponents/AEditor/modules/tableUp/utils/position.d.ts +14 -0
- package/dist/AModule/AComponents/AEditor/modules/tableUp/utils/resize-observer-helper.d.ts +4 -0
- package/dist/AModule/AComponents/AEditor/modules/tableUp/utils/scroll-event-handle.d.ts +6 -0
- package/dist/AModule/AComponents/AEditor/modules/tableUp/utils/transformer.d.ts +2 -0
- package/dist/AModule/AComponents/AEditor/modules/tableUp/utils/transition-event-helper.d.ts +1 -0
- package/dist/AModule/AComponents/AEditor/modules/tableUp/utils/types.d.ts +149 -0
- package/dist/AModule/AComponents/AEditor/modules/tableUp/utils/utils.d.ts +2 -0
- package/dist/AModule/AComponents/ATree/ATreeItem.d.ts +1 -0
- package/dist/index.cjs.js +198 -198
- package/dist/index.es.js +25999 -21757
- package/package.json +6 -2
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "ados-rcm",
|
3
|
-
"version": "1.1.
|
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
|
}
|