@acorex/components 19.11.13-next.2 → 19.12.0-next.1
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/common/lib/components/interactive-component.class.d.ts +2 -2
- package/fesm2022/acorex-components-common.mjs.map +1 -1
- package/fesm2022/acorex-components-image-editor.mjs.map +1 -1
- package/fesm2022/acorex-components-media-viewer.mjs +2 -3
- package/fesm2022/acorex-components-media-viewer.mjs.map +1 -1
- package/fesm2022/acorex-components-modal-acorex-components-modal-Bs1CnBt8.mjs +192 -0
- package/fesm2022/acorex-components-modal-acorex-components-modal-Bs1CnBt8.mjs.map +1 -0
- package/fesm2022/acorex-components-modal-modal-content.component-DhpujG4d.mjs +181 -0
- package/fesm2022/acorex-components-modal-modal-content.component-DhpujG4d.mjs.map +1 -0
- package/fesm2022/acorex-components-modal.mjs +2 -0
- package/fesm2022/acorex-components-modal.mjs.map +1 -0
- package/fesm2022/acorex-components-paint.mjs +2 -2
- package/fesm2022/acorex-components-paint.mjs.map +1 -1
- package/fesm2022/acorex-components-wysiwyg.mjs +18 -3
- package/fesm2022/acorex-components-wysiwyg.mjs.map +1 -1
- package/media-viewer/lib/media-viewer-container/media-viewer-container.component.d.ts +1 -0
- package/modal/README.md +3 -0
- package/modal/index.d.ts +5 -0
- package/modal/lib/modal-content/modal-content.component.d.ts +43 -0
- package/modal/lib/modal-footer/modal-footer.component.d.ts +5 -0
- package/modal/lib/modal-state.service.d.ts +16 -0
- package/modal/lib/modal.component.d.ts +16 -0
- package/modal/lib/modal.module.d.ts +8 -0
- package/modal/lib/modal.service.d.ts +13 -0
- package/modal/lib/modal.types.d.ts +20 -0
- package/package.json +5 -1
- package/paint/lib/paint/paint-view/paint-view.component.d.ts +1 -1
- package/wysiwyg/lib/wysiwyg/wysiwyg-container/wysiwyg-container.component.d.ts +2 -0
@@ -41,13 +41,13 @@ export declare class MXInteractiveComponent extends MXBaseComponent {
|
|
41
41
|
* @event
|
42
42
|
*/
|
43
43
|
onFocus: EventEmitter<AXFocusEvent>;
|
44
|
-
protected emitOnFocusEvent(e
|
44
|
+
protected emitOnFocusEvent(e?: FocusEvent): void;
|
45
45
|
/**
|
46
46
|
* Fires each time the component gets blurred.
|
47
47
|
* @event
|
48
48
|
*/
|
49
49
|
onBlur: EventEmitter<AXFocusEvent>;
|
50
|
-
protected emitOnBlurEvent(e
|
50
|
+
protected emitOnBlurEvent(e?: FocusEvent): void;
|
51
51
|
focus(): void;
|
52
52
|
blur(): void;
|
53
53
|
/**
|