@lionweb/class-core 0.7.0-beta.20 → 0.7.0-beta.21
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.
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { DeltaReceiver } from "../index.js";
|
|
2
2
|
/**
|
|
3
|
-
* A
|
|
3
|
+
* A *delta compositor* is used to *aggregate* deltas as {@link CompositeDelta composite deltas}.
|
|
4
4
|
*
|
|
5
5
|
* Usage:
|
|
6
6
|
* ```typescript
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
// SPDX-License-Identifier: Apache-2.0
|
|
17
17
|
import { CompositeDelta } from "../index.js";
|
|
18
18
|
/**
|
|
19
|
-
* A
|
|
19
|
+
* A *delta compositor* is used to *aggregate* deltas as {@link CompositeDelta composite deltas}.
|
|
20
20
|
*
|
|
21
21
|
* Usage:
|
|
22
22
|
* ```typescript
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lionweb/class-core",
|
|
3
|
-
"version": "0.7.0-beta.
|
|
3
|
+
"version": "0.7.0-beta.21",
|
|
4
4
|
"description": "Generic, language-aspecific base types for generated TypeScript APIs",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -27,9 +27,9 @@
|
|
|
27
27
|
"release": "npm publish"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@lionweb/core": "0.7.0-beta.
|
|
31
|
-
"@lionweb/json": "0.7.0-beta.
|
|
32
|
-
"@lionweb/ts-utils": "0.7.0-beta.
|
|
30
|
+
"@lionweb/core": "0.7.0-beta.21",
|
|
31
|
+
"@lionweb/json": "0.7.0-beta.21",
|
|
32
|
+
"@lionweb/ts-utils": "0.7.0-beta.21",
|
|
33
33
|
"littoral-templates": "0.5.1",
|
|
34
34
|
"mobx": "6.13.7"
|
|
35
35
|
}
|
package/src/deltas/compositor.ts
CHANGED
|
@@ -19,7 +19,7 @@ import { CompositeDelta, DeltaReceiver, IDelta } from "../index.js"
|
|
|
19
19
|
|
|
20
20
|
|
|
21
21
|
/**
|
|
22
|
-
* A
|
|
22
|
+
* A *delta compositor* is used to *aggregate* deltas as {@link CompositeDelta composite deltas}.
|
|
23
23
|
*
|
|
24
24
|
* Usage:
|
|
25
25
|
* ```typescript
|