@ckeditor/ckeditor5-watchdog 37.0.0-alpha.0 → 37.0.0-alpha.2
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/package.json +9 -9
- package/src/contextwatchdog.d.ts +3 -3
- package/src/editorwatchdog.d.ts +1 -1
- package/src/watchdog.d.ts +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ckeditor/ckeditor5-watchdog",
|
|
3
|
-
"version": "37.0.0-alpha.
|
|
3
|
+
"version": "37.0.0-alpha.2",
|
|
4
4
|
"description": "A watchdog feature for CKEditor 5 editors. It keeps a CKEditor 5 editor instance running.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ckeditor",
|
|
@@ -14,13 +14,13 @@
|
|
|
14
14
|
"lodash-es": "^4.17.15"
|
|
15
15
|
},
|
|
16
16
|
"devDependencies": {
|
|
17
|
-
"@ckeditor/ckeditor5-core": "^37.0.0-alpha.
|
|
18
|
-
"@ckeditor/ckeditor5-dev-utils": "^
|
|
19
|
-
"@ckeditor/ckeditor5-editor-classic": "^37.0.0-alpha.
|
|
20
|
-
"@ckeditor/ckeditor5-paragraph": "^37.0.0-alpha.
|
|
21
|
-
"@ckeditor/ckeditor5-theme-lark": "^37.0.0-alpha.
|
|
22
|
-
"@ckeditor/ckeditor5-utils": "^37.0.0-alpha.
|
|
23
|
-
"ckeditor5": "^37.0.0-alpha.
|
|
17
|
+
"@ckeditor/ckeditor5-core": "^37.0.0-alpha.2",
|
|
18
|
+
"@ckeditor/ckeditor5-dev-utils": "^35.0.0",
|
|
19
|
+
"@ckeditor/ckeditor5-editor-classic": "^37.0.0-alpha.2",
|
|
20
|
+
"@ckeditor/ckeditor5-paragraph": "^37.0.0-alpha.2",
|
|
21
|
+
"@ckeditor/ckeditor5-theme-lark": "^37.0.0-alpha.2",
|
|
22
|
+
"@ckeditor/ckeditor5-utils": "^37.0.0-alpha.2",
|
|
23
|
+
"ckeditor5": "^37.0.0-alpha.2",
|
|
24
24
|
"typescript": "^4.8.4",
|
|
25
25
|
"webpack": "^5.58.1",
|
|
26
26
|
"webpack-cli": "^4.9.0"
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
],
|
|
50
50
|
"scripts": {
|
|
51
51
|
"dll:build": "webpack",
|
|
52
|
-
"build": "tsc -p ./tsconfig.
|
|
52
|
+
"build": "tsc -p ./tsconfig.json",
|
|
53
53
|
"postversion": "npm run build"
|
|
54
54
|
},
|
|
55
55
|
"types": "src/index.d.ts"
|
package/src/contextwatchdog.d.ts
CHANGED
|
@@ -247,7 +247,7 @@ export default class ContextWatchdog<TContext extends Context = Context> extends
|
|
|
247
247
|
* } );
|
|
248
248
|
* ```
|
|
249
249
|
*
|
|
250
|
-
* @eventName restart
|
|
250
|
+
* @eventName ~ContextWatchdog#restart
|
|
251
251
|
*/
|
|
252
252
|
export type ContextWatchdogRestartEvent = {
|
|
253
253
|
name: 'restart';
|
|
@@ -263,7 +263,7 @@ export type ContextWatchdogRestartEvent = {
|
|
|
263
263
|
* } );
|
|
264
264
|
* ```
|
|
265
265
|
*
|
|
266
|
-
* @eventName itemError
|
|
266
|
+
* @eventName ~ContextWatchdog#itemError
|
|
267
267
|
*/
|
|
268
268
|
export type ContextWatchdogItemErrorEvent = {
|
|
269
269
|
name: 'itemError';
|
|
@@ -286,7 +286,7 @@ export type ContextWatchdogItemErrorEventData = {
|
|
|
286
286
|
* } );
|
|
287
287
|
* ```
|
|
288
288
|
*
|
|
289
|
-
* @eventName itemRestart
|
|
289
|
+
* @eventName ~ContextWatchdog#itemRestart
|
|
290
290
|
*/
|
|
291
291
|
export type ContextWatchdogItemRestartEvent = {
|
|
292
292
|
name: 'itemRestart';
|
package/src/editorwatchdog.d.ts
CHANGED
|
@@ -145,7 +145,7 @@ export default class EditorWatchdog<TEditor extends Editor = Editor> extends Wat
|
|
|
145
145
|
/**
|
|
146
146
|
* Fired after the watchdog restarts the error in case of a crash.
|
|
147
147
|
*
|
|
148
|
-
* @eventName restart
|
|
148
|
+
* @eventName ~EditorWatchdog#restart
|
|
149
149
|
*/
|
|
150
150
|
export type EditorWatchdogRestartEvent = {
|
|
151
151
|
name: 'restart';
|
package/src/watchdog.d.ts
CHANGED
|
@@ -154,7 +154,7 @@ export default abstract class Watchdog {
|
|
|
154
154
|
* } );
|
|
155
155
|
* ```
|
|
156
156
|
*
|
|
157
|
-
* @eventName error
|
|
157
|
+
* @eventName ~Watchdog#error
|
|
158
158
|
*/
|
|
159
159
|
export type WatchdogErrorEvent = {
|
|
160
160
|
name: 'error';
|
|
@@ -170,7 +170,7 @@ export type WatchdogErrorEventData = {
|
|
|
170
170
|
/**
|
|
171
171
|
* Fired when the watchdog state changed.
|
|
172
172
|
*
|
|
173
|
-
* @eventName stateChange
|
|
173
|
+
* @eventName ~Watchdog#stateChange
|
|
174
174
|
*/
|
|
175
175
|
export type WatchdogStateChangeEvent = {
|
|
176
176
|
name: 'stateChange';
|