@finos/legend-application-studio-bootstrap 7.17.0 → 7.18.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/lib/index.css +2 -2
- package/lib/index.js +28 -28
- package/lib/index.js.map +1 -1
- package/package.json +18 -18
- package/src/index.tsx +35 -35
package/lib/index.css
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/** @license @finos/legend-application-studio-bootstrap v7.
|
|
1
|
+
/** @license @finos/legend-application-studio-bootstrap v7.18.0
|
|
2
2
|
* Copyright (c) 2020-present, Goldman Sachs
|
|
3
3
|
*
|
|
4
4
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
@@ -14,4 +14,4 @@
|
|
|
14
14
|
* limitations under the License.
|
|
15
15
|
*/
|
|
16
16
|
|
|
17
|
-
@import'@finos/legend-art/lib/index.css';@import'@finos/legend-application/lib/index.css';@import'@finos/legend-query-builder/lib/index.css';@import'@finos/legend-application-studio/lib/index.css';@import'@finos/legend-extension-dsl-service/lib/index.css';@import'@finos/legend-extension-dsl-diagram/lib/index.css';@import'@finos/legend-extension-dsl-data-space/lib/index.css';@import'@finos/legend-extension-dsl-persistence/lib/index.css';@import'@finos/legend-extension-dsl-mastery/lib/index.css';@import'@finos/legend-extension-dsl-text/lib/index.css';@import'@finos/legend-extension-
|
|
17
|
+
@import'@finos/legend-art/lib/index.css';@import'@finos/legend-application/lib/index.css';@import'@finos/legend-query-builder/lib/index.css';@import'@finos/legend-application-studio/lib/index.css';@import'@finos/legend-extension-dsl-service/lib/index.css';@import'@finos/legend-extension-dsl-diagram/lib/index.css';@import'@finos/legend-extension-dsl-data-space/lib/index.css';@import'@finos/legend-extension-dsl-persistence/lib/index.css';@import'@finos/legend-extension-dsl-mastery/lib/index.css';@import'@finos/legend-extension-dsl-text/lib/index.css';@import'@finos/legend-extension-store-service-store/lib/index.css'/*# sourceMappingURL=index.css.map */
|
package/lib/index.js
CHANGED
|
@@ -13,46 +13,46 @@
|
|
|
13
13
|
* See the License for the specific language governing permissions and
|
|
14
14
|
* limitations under the License.
|
|
15
15
|
*/
|
|
16
|
-
import { LegendStudio,
|
|
16
|
+
import { LegendStudio, DSL_ExternalFormat_LegendStudioApplicationPlugin, } from '@finos/legend-application-studio';
|
|
17
17
|
import { WebConsole, } from '@finos/legend-shared';
|
|
18
|
-
import {
|
|
19
|
-
import {
|
|
20
|
-
import {
|
|
21
|
-
import {
|
|
22
|
-
import {
|
|
23
|
-
import {
|
|
24
|
-
import {
|
|
25
|
-
import {
|
|
26
|
-
import {
|
|
27
|
-
import {
|
|
18
|
+
import { DSL_Text_GraphManagerPreset, DSL_Text_LegendStudioApplicationPlugin, } from '@finos/legend-extension-dsl-text';
|
|
19
|
+
import { DSL_Diagram_GraphManagerPreset, DSL_Diagram_LegendStudioApplicationPlugin, } from '@finos/legend-extension-dsl-diagram';
|
|
20
|
+
import { DSL_DataSpace_GraphManagerPreset, DSL_DataSpace_LegendStudioApplicationPlugin, } from '@finos/legend-extension-dsl-data-space';
|
|
21
|
+
import { DSL_Persistence_GraphManagerPreset, DSL_Persistence_LegendStudioApplicationPlugin, } from '@finos/legend-extension-dsl-persistence';
|
|
22
|
+
import { DSL_Mastery_GraphManagerPreset, DSL_Mastery_LegendStudioApplicationPlugin, } from '@finos/legend-extension-dsl-mastery';
|
|
23
|
+
import { STO_ServiceStore_GraphManagerPreset, STO_ServiceStore_LegendStudioApplicationPlugin, } from '@finos/legend-extension-store-service-store';
|
|
24
|
+
import { FMT_Morphir_LegendStudioApplicationPlugin } from '@finos/legend-extension-format-morphir';
|
|
25
|
+
import { DSL_ExternalFormat_GraphPreset } from '@finos/legend-graph';
|
|
26
|
+
import { DSL_PersistenceCloud_GraphManagerPreset } from '@finos/legend-extension-dsl-persistence-cloud';
|
|
27
|
+
import { FMT_JSONSchema_GraphManagerPreset } from '@finos/legend-extension-format-json-schema';
|
|
28
28
|
import { DSL_Service_LegendStudioApplicationPlugin } from '@finos/legend-extension-dsl-service';
|
|
29
29
|
export class LegendStudioWebApplication {
|
|
30
30
|
static getPresetCollection() {
|
|
31
31
|
return [
|
|
32
32
|
// graph managers
|
|
33
|
-
new
|
|
34
|
-
new
|
|
35
|
-
new
|
|
36
|
-
new
|
|
37
|
-
new
|
|
38
|
-
new
|
|
39
|
-
new
|
|
40
|
-
new
|
|
41
|
-
new
|
|
33
|
+
new DSL_Text_GraphManagerPreset(),
|
|
34
|
+
new DSL_Diagram_GraphManagerPreset(),
|
|
35
|
+
new DSL_DataSpace_GraphManagerPreset(),
|
|
36
|
+
new DSL_ExternalFormat_GraphPreset(),
|
|
37
|
+
new DSL_Persistence_GraphManagerPreset(),
|
|
38
|
+
new DSL_Mastery_GraphManagerPreset(),
|
|
39
|
+
new DSL_PersistenceCloud_GraphManagerPreset(),
|
|
40
|
+
new FMT_JSONSchema_GraphManagerPreset(),
|
|
41
|
+
new STO_ServiceStore_GraphManagerPreset(),
|
|
42
42
|
];
|
|
43
43
|
}
|
|
44
44
|
static getPluginCollection() {
|
|
45
45
|
return [
|
|
46
46
|
// application
|
|
47
|
-
new
|
|
48
|
-
new
|
|
49
|
-
new
|
|
47
|
+
new DSL_Text_LegendStudioApplicationPlugin(),
|
|
48
|
+
new DSL_Diagram_LegendStudioApplicationPlugin(),
|
|
49
|
+
new DSL_DataSpace_LegendStudioApplicationPlugin(),
|
|
50
50
|
new DSL_Service_LegendStudioApplicationPlugin(),
|
|
51
|
-
new
|
|
52
|
-
new
|
|
53
|
-
new
|
|
54
|
-
new
|
|
55
|
-
new
|
|
51
|
+
new DSL_ExternalFormat_LegendStudioApplicationPlugin(),
|
|
52
|
+
new DSL_Persistence_LegendStudioApplicationPlugin(),
|
|
53
|
+
new DSL_Mastery_LegendStudioApplicationPlugin(),
|
|
54
|
+
new STO_ServiceStore_LegendStudioApplicationPlugin(),
|
|
55
|
+
new FMT_Morphir_LegendStudioApplicationPlugin(),
|
|
56
56
|
// loggers
|
|
57
57
|
new WebConsole(),
|
|
58
58
|
];
|
package/lib/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAEH,OAAO,EACL,YAAY,EACZ
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAEH,OAAO,EACL,YAAY,EACZ,gDAAgD,GACjD,MAAM,kCAAkC,CAAC;AAC1C,OAAO,EAGL,UAAU,GACX,MAAM,sBAAsB,CAAC;AAC9B,OAAO,EACL,2BAA2B,EAC3B,sCAAsC,GACvC,MAAM,kCAAkC,CAAC;AAC1C,OAAO,EACL,8BAA8B,EAC9B,yCAAyC,GAC1C,MAAM,qCAAqC,CAAC;AAC7C,OAAO,EACL,gCAAgC,EAChC,2CAA2C,GAC5C,MAAM,wCAAwC,CAAC;AAChD,OAAO,EACL,kCAAkC,EAClC,6CAA6C,GAC9C,MAAM,yCAAyC,CAAC;AACjD,OAAO,EACL,8BAA8B,EAC9B,yCAAyC,GAC1C,MAAM,qCAAqC,CAAC;AAC7C,OAAO,EACL,mCAAmC,EACnC,8CAA8C,GAC/C,MAAM,6CAA6C,CAAC;AACrD,OAAO,EAAE,yCAAyC,EAAE,MAAM,wCAAwC,CAAC;AACnG,OAAO,EAAE,8BAA8B,EAAE,MAAM,qBAAqB,CAAC;AACrE,OAAO,EAAE,uCAAuC,EAAE,MAAM,+CAA+C,CAAC;AACxG,OAAO,EAAE,iCAAiC,EAAE,MAAM,4CAA4C,CAAC;AAC/F,OAAO,EAAE,yCAAyC,EAAE,MAAM,qCAAqC,CAAC;AAEhG,MAAM,OAAO,0BAA0B;IACrC,MAAM,CAAC,mBAAmB;QACxB,OAAO;YACL,iBAAiB;YACjB,IAAI,2BAA2B,EAAE;YACjC,IAAI,8BAA8B,EAAE;YACpC,IAAI,gCAAgC,EAAE;YACtC,IAAI,8BAA8B,EAAE;YACpC,IAAI,kCAAkC,EAAE;YACxC,IAAI,8BAA8B,EAAE;YACpC,IAAI,uCAAuC,EAAE;YAC7C,IAAI,iCAAiC,EAAE;YACvC,IAAI,mCAAmC,EAAE;SAC1C,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,mBAAmB;QACxB,OAAO;YACL,cAAc;YACd,IAAI,sCAAsC,EAAE;YAC5C,IAAI,yCAAyC,EAAE;YAC/C,IAAI,2CAA2C,EAAE;YACjD,IAAI,yCAAyC,EAAE;YAC/C,IAAI,gDAAgD,EAAE;YACtD,IAAI,6CAA6C,EAAE;YACnD,IAAI,yCAAyC,EAAE;YAC/C,IAAI,8CAA8C,EAAE;YACpD,IAAI,yCAAyC,EAAE;YAE/C,UAAU;YACV,IAAI,UAAU,EAAE;SACjB,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,GAAG,CAAC,OAAe;QACxB,YAAY,CAAC,MAAM,EAAE;aAClB,KAAK,CAAC,EAAE,OAAO,EAAE,CAAC;aAClB,WAAW,CAAC,0BAA0B,CAAC,mBAAmB,EAAE,CAAC;aAC7D,WAAW,CAAC,0BAA0B,CAAC,mBAAmB,EAAE,CAAC;aAC7D,KAAK,EAAE;aACP,KAAK,CAAC,CAAC,CAAU,EAAE,EAAE;YACpB,MAAM,CAAC,CAAC;QACV,CAAC,CAAC,CAAC;IACP,CAAC;CACF"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@finos/legend-application-studio-bootstrap",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.18.0",
|
|
4
4
|
"description": "Legend Studio application bootrap",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"legend",
|
|
@@ -44,32 +44,32 @@
|
|
|
44
44
|
"publish:snapshot": "node ../../scripts/release/publishDevSnapshot.js"
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
|
-
"@finos/legend-application": "8.0.
|
|
48
|
-
"@finos/legend-application-studio": "
|
|
49
|
-
"@finos/legend-art": "3.
|
|
50
|
-
"@finos/legend-extension-dsl-data-space": "
|
|
51
|
-
"@finos/legend-extension-dsl-diagram": "
|
|
52
|
-
"@finos/legend-extension-dsl-mastery": "
|
|
53
|
-
"@finos/legend-extension-dsl-persistence": "
|
|
54
|
-
"@finos/legend-extension-dsl-persistence-cloud": "
|
|
55
|
-
"@finos/legend-extension-dsl-service": "0.0.
|
|
56
|
-
"@finos/legend-extension-dsl-text": "
|
|
57
|
-
"@finos/legend-extension-
|
|
58
|
-
"@finos/legend-extension-
|
|
59
|
-
"@finos/legend-extension-
|
|
60
|
-
"@finos/legend-graph": "
|
|
61
|
-
"@finos/legend-shared": "6.1.
|
|
47
|
+
"@finos/legend-application": "8.0.1",
|
|
48
|
+
"@finos/legend-application-studio": "18.0.0",
|
|
49
|
+
"@finos/legend-art": "3.3.0",
|
|
50
|
+
"@finos/legend-extension-dsl-data-space": "7.0.0",
|
|
51
|
+
"@finos/legend-extension-dsl-diagram": "7.0.0",
|
|
52
|
+
"@finos/legend-extension-dsl-mastery": "2.0.0",
|
|
53
|
+
"@finos/legend-extension-dsl-persistence": "4.0.0",
|
|
54
|
+
"@finos/legend-extension-dsl-persistence-cloud": "4.0.0",
|
|
55
|
+
"@finos/legend-extension-dsl-service": "0.0.2",
|
|
56
|
+
"@finos/legend-extension-dsl-text": "5.0.0",
|
|
57
|
+
"@finos/legend-extension-format-json-schema": "1.0.0",
|
|
58
|
+
"@finos/legend-extension-format-morphir": "1.0.0",
|
|
59
|
+
"@finos/legend-extension-store-service-store": "1.0.0",
|
|
60
|
+
"@finos/legend-graph": "17.0.0",
|
|
61
|
+
"@finos/legend-shared": "6.1.3",
|
|
62
62
|
"@types/react": "18.0.21",
|
|
63
63
|
"react": "18.2.0"
|
|
64
64
|
},
|
|
65
65
|
"devDependencies": {
|
|
66
|
-
"@finos/legend-dev-utils": "2.0.
|
|
66
|
+
"@finos/legend-dev-utils": "2.0.18",
|
|
67
67
|
"cross-env": "7.0.3",
|
|
68
68
|
"eslint": "8.24.0",
|
|
69
69
|
"npm-run-all": "4.1.5",
|
|
70
70
|
"rimraf": "3.0.2",
|
|
71
71
|
"sass": "1.55.0",
|
|
72
|
-
"typescript": "4.8.
|
|
72
|
+
"typescript": "4.8.4"
|
|
73
73
|
},
|
|
74
74
|
"publishConfig": {
|
|
75
75
|
"directory": "build/publishContent"
|
package/src/index.tsx
CHANGED
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
|
|
17
17
|
import {
|
|
18
18
|
LegendStudio,
|
|
19
|
-
|
|
19
|
+
DSL_ExternalFormat_LegendStudioApplicationPlugin,
|
|
20
20
|
} from '@finos/legend-application-studio';
|
|
21
21
|
import {
|
|
22
22
|
type AbstractPreset,
|
|
@@ -24,63 +24,63 @@ import {
|
|
|
24
24
|
WebConsole,
|
|
25
25
|
} from '@finos/legend-shared';
|
|
26
26
|
import {
|
|
27
|
-
|
|
28
|
-
|
|
27
|
+
DSL_Text_GraphManagerPreset,
|
|
28
|
+
DSL_Text_LegendStudioApplicationPlugin,
|
|
29
29
|
} from '@finos/legend-extension-dsl-text';
|
|
30
30
|
import {
|
|
31
|
-
|
|
32
|
-
|
|
31
|
+
DSL_Diagram_GraphManagerPreset,
|
|
32
|
+
DSL_Diagram_LegendStudioApplicationPlugin,
|
|
33
33
|
} from '@finos/legend-extension-dsl-diagram';
|
|
34
34
|
import {
|
|
35
|
-
|
|
36
|
-
|
|
35
|
+
DSL_DataSpace_GraphManagerPreset,
|
|
36
|
+
DSL_DataSpace_LegendStudioApplicationPlugin,
|
|
37
37
|
} from '@finos/legend-extension-dsl-data-space';
|
|
38
38
|
import {
|
|
39
|
-
|
|
40
|
-
|
|
39
|
+
DSL_Persistence_GraphManagerPreset,
|
|
40
|
+
DSL_Persistence_LegendStudioApplicationPlugin,
|
|
41
41
|
} from '@finos/legend-extension-dsl-persistence';
|
|
42
42
|
import {
|
|
43
|
-
|
|
44
|
-
|
|
43
|
+
DSL_Mastery_GraphManagerPreset,
|
|
44
|
+
DSL_Mastery_LegendStudioApplicationPlugin,
|
|
45
45
|
} from '@finos/legend-extension-dsl-mastery';
|
|
46
46
|
import {
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
} from '@finos/legend-extension-
|
|
50
|
-
import {
|
|
51
|
-
import {
|
|
52
|
-
import {
|
|
53
|
-
import {
|
|
47
|
+
STO_ServiceStore_GraphManagerPreset,
|
|
48
|
+
STO_ServiceStore_LegendStudioApplicationPlugin,
|
|
49
|
+
} from '@finos/legend-extension-store-service-store';
|
|
50
|
+
import { FMT_Morphir_LegendStudioApplicationPlugin } from '@finos/legend-extension-format-morphir';
|
|
51
|
+
import { DSL_ExternalFormat_GraphPreset } from '@finos/legend-graph';
|
|
52
|
+
import { DSL_PersistenceCloud_GraphManagerPreset } from '@finos/legend-extension-dsl-persistence-cloud';
|
|
53
|
+
import { FMT_JSONSchema_GraphManagerPreset } from '@finos/legend-extension-format-json-schema';
|
|
54
54
|
import { DSL_Service_LegendStudioApplicationPlugin } from '@finos/legend-extension-dsl-service';
|
|
55
55
|
|
|
56
56
|
export class LegendStudioWebApplication {
|
|
57
57
|
static getPresetCollection(): AbstractPreset[] {
|
|
58
58
|
return [
|
|
59
59
|
// graph managers
|
|
60
|
-
new
|
|
61
|
-
new
|
|
62
|
-
new
|
|
63
|
-
new
|
|
64
|
-
new
|
|
65
|
-
new
|
|
66
|
-
new
|
|
67
|
-
new
|
|
68
|
-
new
|
|
60
|
+
new DSL_Text_GraphManagerPreset(),
|
|
61
|
+
new DSL_Diagram_GraphManagerPreset(),
|
|
62
|
+
new DSL_DataSpace_GraphManagerPreset(),
|
|
63
|
+
new DSL_ExternalFormat_GraphPreset(),
|
|
64
|
+
new DSL_Persistence_GraphManagerPreset(),
|
|
65
|
+
new DSL_Mastery_GraphManagerPreset(),
|
|
66
|
+
new DSL_PersistenceCloud_GraphManagerPreset(),
|
|
67
|
+
new FMT_JSONSchema_GraphManagerPreset(),
|
|
68
|
+
new STO_ServiceStore_GraphManagerPreset(),
|
|
69
69
|
];
|
|
70
70
|
}
|
|
71
71
|
|
|
72
72
|
static getPluginCollection(): AbstractPlugin[] {
|
|
73
73
|
return [
|
|
74
74
|
// application
|
|
75
|
-
new
|
|
76
|
-
new
|
|
77
|
-
new
|
|
75
|
+
new DSL_Text_LegendStudioApplicationPlugin(),
|
|
76
|
+
new DSL_Diagram_LegendStudioApplicationPlugin(),
|
|
77
|
+
new DSL_DataSpace_LegendStudioApplicationPlugin(),
|
|
78
78
|
new DSL_Service_LegendStudioApplicationPlugin(),
|
|
79
|
-
new
|
|
80
|
-
new
|
|
81
|
-
new
|
|
82
|
-
new
|
|
83
|
-
new
|
|
79
|
+
new DSL_ExternalFormat_LegendStudioApplicationPlugin(),
|
|
80
|
+
new DSL_Persistence_LegendStudioApplicationPlugin(),
|
|
81
|
+
new DSL_Mastery_LegendStudioApplicationPlugin(),
|
|
82
|
+
new STO_ServiceStore_LegendStudioApplicationPlugin(),
|
|
83
|
+
new FMT_Morphir_LegendStudioApplicationPlugin(),
|
|
84
84
|
|
|
85
85
|
// loggers
|
|
86
86
|
new WebConsole(),
|