@finos/legend-application-studio-bootstrap 11.47.0 → 11.49.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 +1 -1
- package/package.json +22 -22
- package/tsconfig.json +17 -1
package/lib/index.css
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@finos/legend-application-studio-bootstrap",
|
|
3
|
-
"version": "11.
|
|
3
|
+
"version": "11.49.0",
|
|
4
4
|
"description": "Legend Studio application bootrap",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"legend",
|
|
@@ -44,31 +44,31 @@
|
|
|
44
44
|
"publish:snapshot": "node ../../scripts/release/publishDevSnapshot.js"
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
|
-
"@finos/legend-application": "15.0.
|
|
48
|
-
"@finos/legend-application-studio": "28.16.
|
|
49
|
-
"@finos/legend-art": "7.1.
|
|
50
|
-
"@finos/legend-extension-assortment": "0.0.
|
|
51
|
-
"@finos/legend-extension-dsl-data-space": "10.3.
|
|
52
|
-
"@finos/legend-extension-dsl-data-space-studio": "0.1.
|
|
53
|
-
"@finos/legend-extension-dsl-diagram": "8.0.
|
|
54
|
-
"@finos/legend-extension-dsl-persistence": "5.0.
|
|
55
|
-
"@finos/legend-extension-dsl-service": "1.0.
|
|
56
|
-
"@finos/legend-extension-dsl-text": "6.0.
|
|
57
|
-
"@finos/legend-extension-store-service-store": "2.0.
|
|
58
|
-
"@finos/legend-graph": "31.9.
|
|
59
|
-
"@finos/legend-lego": "1.2.
|
|
60
|
-
"@finos/legend-shared": "10.0.
|
|
61
|
-
"@types/react": "18.2
|
|
62
|
-
"react": "18.
|
|
47
|
+
"@finos/legend-application": "15.0.76",
|
|
48
|
+
"@finos/legend-application-studio": "28.16.23",
|
|
49
|
+
"@finos/legend-art": "7.1.28",
|
|
50
|
+
"@finos/legend-extension-assortment": "0.0.145",
|
|
51
|
+
"@finos/legend-extension-dsl-data-space": "10.3.11",
|
|
52
|
+
"@finos/legend-extension-dsl-data-space-studio": "0.1.11",
|
|
53
|
+
"@finos/legend-extension-dsl-diagram": "8.0.167",
|
|
54
|
+
"@finos/legend-extension-dsl-persistence": "5.0.167",
|
|
55
|
+
"@finos/legend-extension-dsl-service": "1.0.168",
|
|
56
|
+
"@finos/legend-extension-dsl-text": "6.0.167",
|
|
57
|
+
"@finos/legend-extension-store-service-store": "2.0.167",
|
|
58
|
+
"@finos/legend-graph": "31.9.15",
|
|
59
|
+
"@finos/legend-lego": "1.2.29",
|
|
60
|
+
"@finos/legend-shared": "10.0.35",
|
|
61
|
+
"@types/react": "18.3.2",
|
|
62
|
+
"react": "18.3.1"
|
|
63
63
|
},
|
|
64
64
|
"devDependencies": {
|
|
65
|
-
"@finos/legend-dev-utils": "2.1.
|
|
65
|
+
"@finos/legend-dev-utils": "2.1.5",
|
|
66
66
|
"cross-env": "7.0.3",
|
|
67
|
-
"eslint": "8.
|
|
67
|
+
"eslint": "8.57.0",
|
|
68
68
|
"npm-run-all": "4.1.5",
|
|
69
|
-
"rimraf": "5.0.
|
|
70
|
-
"sass": "1.
|
|
71
|
-
"typescript": "5.
|
|
69
|
+
"rimraf": "5.0.7",
|
|
70
|
+
"sass": "1.77.1",
|
|
71
|
+
"typescript": "5.4.5"
|
|
72
72
|
},
|
|
73
73
|
"publishConfig": {
|
|
74
74
|
"directory": "build/publishContent"
|
package/tsconfig.json
CHANGED
|
@@ -24,7 +24,23 @@
|
|
|
24
24
|
"outDir": "./lib",
|
|
25
25
|
"tsBuildInfoFile": "./build/prod.tsbuildinfo",
|
|
26
26
|
"rootDir": "./src",
|
|
27
|
-
"jsx": "react-jsx"
|
|
27
|
+
"jsx": "react-jsx",
|
|
28
|
+
"moduleResolution": "nodenext",
|
|
29
|
+
"moduleDetection": "force",
|
|
30
|
+
"isolatedModules": true,
|
|
31
|
+
"esModuleInterop": true,
|
|
32
|
+
"allowSyntheticDefaultImports": true,
|
|
33
|
+
"preserveConstEnums": true,
|
|
34
|
+
"incremental": true,
|
|
35
|
+
"useDefineForClassFields": true,
|
|
36
|
+
"noImplicitAny": true,
|
|
37
|
+
"noImplicitThis": true,
|
|
38
|
+
"strictNullChecks": true,
|
|
39
|
+
"strictFunctionTypes": true,
|
|
40
|
+
"strictBindCallApply": true,
|
|
41
|
+
"strictPropertyInitialization": true,
|
|
42
|
+
"alwaysStrict": true,
|
|
43
|
+
"useUnknownInCatchVariables": true
|
|
28
44
|
},
|
|
29
45
|
"files": [
|
|
30
46
|
"./src/index.tsx"
|