@ckeditor/ckeditor5-watchdog 48.1.0 → 48.2.0-alpha.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.
@@ -23,7 +23,7 @@ import type { ActionsRecorderEntry } from './actionsrecorderconfig.js';
23
23
  *
24
24
  * ```ts
25
25
  * ClassicEditor
26
- * .create( editorElement, {
26
+ * .create( {
27
27
  * plugins: [ ActionsRecorder, ... ],
28
28
  * actionsRecorder: {
29
29
  * maxEntries: 1000, // This is the default value and could be adjusted.
@@ -46,7 +46,7 @@ import type { ActionsRecorderEntry } from './actionsrecorderconfig.js';
46
46
  *
47
47
  * ```ts
48
48
  * ClassicEditor
49
- * .create( editorElement, {
49
+ * .create( {
50
50
  * plugins: [ ActionsRecorder, ... ],
51
51
  * actionsRecorder: {
52
52
  * maxEntries: 50, // This is the batch size.
@@ -11,7 +11,7 @@ import type { ActionsRecorder } from './actionsrecorder.js';
11
11
  *
12
12
  * ```ts
13
13
  * ClassicEditor
14
- * .create( editorElement, {
14
+ * .create( {
15
15
  * actionsRecorder: ... // ActionsRecorder feature options.
16
16
  * } )
17
17
  * .then( ... )
@@ -29,7 +29,7 @@ export interface ActionsRecorderConfig {
29
29
  *
30
30
  * ```ts
31
31
  * ClassicEditor
32
- * .create( editorElement, {
32
+ * .create( {
33
33
  * plugins: [ ActionsRecorder, ... ],
34
34
  * actionsRecorder: {
35
35
  * maxEntries: 1000
@@ -51,7 +51,7 @@ export interface ActionsRecorderConfig {
51
51
  *
52
52
  * ```ts
53
53
  * ClassicEditor
54
- * .create( editorElement, {
54
+ * .create( {
55
55
  * plugins: [ ActionsRecorder, ... ],
56
56
  * actionsRecorder: {
57
57
  * onFilter( entry, prevEntries ) {
@@ -70,7 +70,7 @@ export interface ActionsRecorderConfig {
70
70
  *
71
71
  * ```ts
72
72
  * ClassicEditor
73
- * .create( editorElement, {
73
+ * .create( {
74
74
  * plugins: [ ActionsRecorder, ... ],
75
75
  * actionsRecorder: {
76
76
  * onError( error, entries ) {
@@ -91,7 +91,7 @@ export interface ActionsRecorderConfig {
91
91
  *
92
92
  * ```ts
93
93
  * ClassicEditor
94
- * .create( editorElement, {
94
+ * .create( {
95
95
  * plugins: [ ActionsRecorder, ... ],
96
96
  * actionsRecorder: {
97
97
  * onMaxEntries() {
package/dist/index.js CHANGED
@@ -1256,7 +1256,7 @@ const mainQueueId = Symbol('MainQueueId');
1256
1256
  *
1257
1257
  * ```ts
1258
1258
  * ClassicEditor
1259
- * .create( editorElement, {
1259
+ * .create( {
1260
1260
  * plugins: [ ActionsRecorder, ... ],
1261
1261
  * actionsRecorder: {
1262
1262
  * maxEntries: 1000, // This is the default value and could be adjusted.
@@ -1279,7 +1279,7 @@ const mainQueueId = Symbol('MainQueueId');
1279
1279
  *
1280
1280
  * ```ts
1281
1281
  * ClassicEditor
1282
- * .create( editorElement, {
1282
+ * .create( {
1283
1283
  * plugins: [ ActionsRecorder, ... ],
1284
1284
  * actionsRecorder: {
1285
1285
  * maxEntries: 50, // This is the batch size.