@ones-editor/editor 2.3.3 → 2.4.0

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.
@@ -7,7 +7,12 @@ export default class DefaultErrorHandler implements ErrorHandler {
7
7
  private _errorInfoBar;
8
8
  private _dirtyFlag;
9
9
  private _connectionFlag;
10
+ private _offlineFlag;
10
11
  private _errorMessage;
12
+ constructor();
13
+ destroy(): void;
14
+ private _handleOffline;
15
+ private _handleOnline;
11
16
  onMaxUsersError: () => void;
12
17
  onDirtyTimeoutError: () => void;
13
18
  onClean: () => void;
@@ -29,5 +34,4 @@ export default class DefaultErrorHandler implements ErrorHandler {
29
34
  get bar(): ErrorInfoBar;
30
35
  showUploadResourceErrorDialog(options?: UploadResourceErrorDialogOptions): AlertDialog | null;
31
36
  private hasPopup;
32
- destroy(): void;
33
37
  }