@lionweb/io-lionweb-mps-specific 0.7.2-beta.1 → 0.7.2-beta.3
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,28 +1,36 @@
|
|
|
1
1
|
```mermaid
|
|
2
2
|
classDiagram
|
|
3
3
|
|
|
4
|
-
class ConceptDescription
|
|
4
|
+
class ConceptDescription {
|
|
5
5
|
+String? conceptAlias
|
|
6
6
|
+String? conceptShortDescription
|
|
7
7
|
+String? helpUrl
|
|
8
8
|
}
|
|
9
|
+
<<Annotation>> ConceptDescription
|
|
10
|
+
ConceptDescription ..> Classifier : <i>annotates</i>
|
|
9
11
|
|
|
10
|
-
class Deprecated
|
|
12
|
+
class Deprecated {
|
|
11
13
|
+String? comment
|
|
12
14
|
+String? build
|
|
13
15
|
}
|
|
16
|
+
<<Annotation>> Deprecated
|
|
17
|
+
Deprecated ..> IKeyed : <i>annotates</i>
|
|
14
18
|
|
|
15
|
-
class KeyedDescription
|
|
19
|
+
class KeyedDescription {
|
|
16
20
|
+String? documentation
|
|
17
21
|
}
|
|
22
|
+
<<Annotation>> KeyedDescription
|
|
23
|
+
KeyedDescription ..> IKeyed : <i>annotates</i>
|
|
18
24
|
|
|
19
|
-
class ShortDescription
|
|
25
|
+
class ShortDescription {
|
|
20
26
|
+String? description
|
|
21
27
|
}
|
|
28
|
+
<<Annotation>> ShortDescription
|
|
29
|
+
ShortDescription ..> Node : <i>annotates</i>
|
|
22
30
|
|
|
23
31
|
class VirtualPackage
|
|
24
32
|
<<Annotation>> VirtualPackage
|
|
25
|
-
VirtualPackage ..> Node
|
|
33
|
+
VirtualPackage ..> Node : <i>annotates</i>
|
|
26
34
|
INamed <|.. VirtualPackage
|
|
27
35
|
|
|
28
36
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lionweb/io-lionweb-mps-specific",
|
|
3
|
-
"version": "0.7.2-beta.
|
|
3
|
+
"version": "0.7.2-beta.3",
|
|
4
4
|
"description": "TypeScript implementation of the io.lionweb.mps.specific language",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -15,10 +15,10 @@
|
|
|
15
15
|
"url": "https://github.com/LionWeb-io/lionweb-typescript/issues"
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@lionweb/core": "0.7.2-beta.
|
|
19
|
-
"@lionweb/json": "0.7.2-beta.
|
|
20
|
-
"@lionweb/textgen-utils": "0.7.2-beta.
|
|
21
|
-
"@lionweb/ts-utils": "0.7.2-beta.
|
|
18
|
+
"@lionweb/core": "0.7.2-beta.3",
|
|
19
|
+
"@lionweb/json": "0.7.2-beta.3",
|
|
20
|
+
"@lionweb/textgen-utils": "0.7.2-beta.3",
|
|
21
|
+
"@lionweb/ts-utils": "0.7.2-beta.3",
|
|
22
22
|
"littoral-templates": "0.5.1"
|
|
23
23
|
},
|
|
24
24
|
"scripts": {
|