@acorex/components 20.2.55 → 20.2.57
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/code-editor/index.d.ts +3 -9
- package/data-list/index.d.ts +1 -1
- package/fesm2022/acorex-components-code-editor.mjs +47 -47
- package/fesm2022/acorex-components-code-editor.mjs.map +1 -1
- package/fesm2022/acorex-components-data-list.mjs +11 -22
- package/fesm2022/acorex-components-data-list.mjs.map +1 -1
- package/fesm2022/acorex-components-data-pager.mjs +0 -1
- package/fesm2022/acorex-components-data-pager.mjs.map +1 -1
- package/fesm2022/acorex-components-data-table.mjs +1 -1
- package/fesm2022/acorex-components-data-table.mjs.map +1 -1
- package/fesm2022/acorex-components-form.mjs +6 -8
- package/fesm2022/acorex-components-form.mjs.map +1 -1
- package/fesm2022/acorex-components-media-viewer.mjs +4 -3
- package/fesm2022/acorex-components-media-viewer.mjs.map +1 -1
- package/fesm2022/acorex-components-pdf-reader.mjs +2 -2
- package/fesm2022/acorex-components-pdf-reader.mjs.map +1 -1
- package/fesm2022/acorex-components-side-menu.mjs +2 -2
- package/fesm2022/acorex-components-side-menu.mjs.map +1 -1
- package/fesm2022/acorex-components-tree-view.mjs +131 -13
- package/fesm2022/acorex-components-tree-view.mjs.map +1 -1
- package/fesm2022/acorex-components-wysiwyg.mjs +3 -3
- package/fesm2022/acorex-components-wysiwyg.mjs.map +1 -1
- package/media-viewer/index.d.ts +1 -0
- package/package.json +16 -15
- package/tree-view/index.d.ts +46 -5
- package/wysiwyg/index.d.ts +0 -1
|
@@ -261,9 +261,9 @@ class AXWysiwygContainerComponent extends classes((MXInputBaseValueComponent), M
|
|
|
261
261
|
* @param isDisabled - Whether the component should be disabled.
|
|
262
262
|
* @returns void - No return value.
|
|
263
263
|
*/
|
|
264
|
-
setDisabledState(isDisabled) {
|
|
265
|
-
|
|
266
|
-
}
|
|
264
|
+
// override setDisabledState(isDisabled: boolean): void {
|
|
265
|
+
// super.setDisabledState(isDisabled);
|
|
266
|
+
// }
|
|
267
267
|
setWysiwygContent(value) {
|
|
268
268
|
const quill = this.wysiwyg();
|
|
269
269
|
const delta = quill.clipboard.convert({ html: value });
|