ados-rcm 1.1.701 → 1.1.702
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/FullScreen.d.ts +4 -0
- package/dist/index.cjs.js +151 -151
- package/dist/index.es.js +181 -156
- package/package.json +1 -1
|
@@ -14,6 +14,7 @@ export default class QuillToggleFullscreenButton {
|
|
|
14
14
|
private _button;
|
|
15
15
|
private _resizeObserver;
|
|
16
16
|
private _placeholder;
|
|
17
|
+
private _keyboardHandler;
|
|
17
18
|
constructor(quill: Quill, options?: QuillFullscreenButtonOptions);
|
|
18
19
|
private _createButton;
|
|
19
20
|
private _createToolbarButton;
|
|
@@ -21,4 +22,7 @@ export default class QuillToggleFullscreenButton {
|
|
|
21
22
|
private _checkScrollbar;
|
|
22
23
|
private _checkVisibility;
|
|
23
24
|
private _toggleFullscreen;
|
|
25
|
+
private _setupKeyboardHandler;
|
|
26
|
+
private _removeKeyboardHandler;
|
|
27
|
+
private _exitFullscreen;
|
|
24
28
|
}
|