ados-rcm 1.1.512 → 1.1.514
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/README.md +94 -94
- package/dist/AModule/AComponents/AEditor/modules/ImageResizer.d.ts +165 -46
- 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/AResource/AResource.d.ts +16 -6
- package/dist/AModule/AComponents/ATree/ATreeItem.d.ts +1 -0
- package/dist/index.cjs.js +264 -147
- package/dist/index.es.js +28348 -22465
- package/package.json +6 -1
- package/dist/AModule/AComponents/AEditor/modules/TablePicker.d.ts +0 -40
- package/dist/AModule/AComponents/AEditor/modules/TableUI.d.ts +0 -69
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.