@ckeditor/ckeditor5-engine 47.5.0 → 47.6.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ckeditor/ckeditor5-engine",
3
- "version": "47.5.0",
3
+ "version": "47.6.0-alpha.0",
4
4
  "description": "The editing engine of CKEditor 5 – the best browser-based rich text editor.",
5
5
  "keywords": [
6
6
  "wysiwyg",
@@ -24,7 +24,7 @@
24
24
  "type": "module",
25
25
  "main": "src/index.js",
26
26
  "dependencies": {
27
- "@ckeditor/ckeditor5-utils": "47.5.0",
27
+ "@ckeditor/ckeditor5-utils": "47.6.0-alpha.0",
28
28
  "es-toolkit": "1.39.5"
29
29
  },
30
30
  "author": "CKSource (http://cksource.com/)",
@@ -253,6 +253,9 @@ export declare abstract class ModelNode extends ModelTypeCheckable {
253
253
  _clearAttributes(): void;
254
254
  }
255
255
  /**
256
- * Node's attributes. See {@link module:utils/tomap~toMap} for a list of accepted values.
256
+ * Represents a set of model node attributes, accepted as either a plain object
257
+ * with string keys or an iterable of `[ key, value ]` pairs (e.g., a `Map`).
258
+ *
259
+ * See {@link module:utils/tomap~toMap} for more details and examples.
257
260
  */
258
261
  export type ModelNodeAttributes = Record<string, unknown> | Iterable<[string, unknown]>;