@finos/legend-extension-dsl-data-space-studio 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- package/LICENSE +201 -0
- package/README.md +3 -0
- package/lib/__lib__/DSL_DataSpace_LegendStudioCodeSnippet.d.ts +17 -0
- package/lib/__lib__/DSL_DataSpace_LegendStudioCodeSnippet.d.ts.map +1 -0
- package/lib/__lib__/DSL_DataSpace_LegendStudioCodeSnippet.js +54 -0
- package/lib/__lib__/DSL_DataSpace_LegendStudioCodeSnippet.js.map +1 -0
- package/lib/__lib__/DSL_DataSpace_LegendStudioDocumentation.d.ts +21 -0
- package/lib/__lib__/DSL_DataSpace_LegendStudioDocumentation.d.ts.map +1 -0
- package/lib/__lib__/DSL_DataSpace_LegendStudioDocumentation.js +22 -0
- package/lib/__lib__/DSL_DataSpace_LegendStudioDocumentation.js.map +1 -0
- package/lib/components/DSL_DataSpace_LegendStudioApplicationPlugin.d.ts +39 -0
- package/lib/components/DSL_DataSpace_LegendStudioApplicationPlugin.d.ts.map +1 -0
- package/lib/components/DSL_DataSpace_LegendStudioApplicationPlugin.js +206 -0
- package/lib/components/DSL_DataSpace_LegendStudioApplicationPlugin.js.map +1 -0
- package/lib/components/DataSpacePreviewAction.d.ts +25 -0
- package/lib/components/DataSpacePreviewAction.d.ts.map +1 -0
- package/lib/components/DataSpacePreviewAction.js +53 -0
- package/lib/components/DataSpacePreviewAction.js.map +1 -0
- package/lib/components/DataSpaceQueryAction.d.ts +24 -0
- package/lib/components/DataSpaceQueryAction.d.ts.map +1 -0
- package/lib/components/DataSpaceQueryAction.js +52 -0
- package/lib/components/DataSpaceQueryAction.js.map +1 -0
- package/lib/components/DataSpaceTemplateQueryPromoteReview.d.ts +19 -0
- package/lib/components/DataSpaceTemplateQueryPromoteReview.d.ts.map +1 -0
- package/lib/components/DataSpaceTemplateQueryPromoteReview.js +81 -0
- package/lib/components/DataSpaceTemplateQueryPromoteReview.js.map +1 -0
- package/lib/index.css +17 -0
- package/lib/index.css.map +1 -0
- package/lib/index.d.ts +17 -0
- package/lib/index.d.ts.map +1 -0
- package/lib/index.js +17 -0
- package/lib/index.js.map +1 -0
- package/lib/package.json +75 -0
- package/lib/stores/DataSpacePreviewState.d.ts +33 -0
- package/lib/stores/DataSpacePreviewState.d.ts.map +1 -0
- package/lib/stores/DataSpacePreviewState.js +116 -0
- package/lib/stores/DataSpacePreviewState.js.map +1 -0
- package/lib/stores/DataSpaceTemplateQueryPromotionReviewerStore.d.ts +61 -0
- package/lib/stores/DataSpaceTemplateQueryPromotionReviewerStore.d.ts.map +1 -0
- package/lib/stores/DataSpaceTemplateQueryPromotionReviewerStore.js +406 -0
- package/lib/stores/DataSpaceTemplateQueryPromotionReviewerStore.js.map +1 -0
- package/package.json +75 -0
- package/src/__lib__/DSL_DataSpace_LegendStudioCodeSnippet.ts +54 -0
- package/src/__lib__/DSL_DataSpace_LegendStudioDocumentation.ts +21 -0
- package/src/components/DSL_DataSpace_LegendStudioApplicationPlugin.tsx +299 -0
- package/src/components/DataSpacePreviewAction.tsx +136 -0
- package/src/components/DataSpaceQueryAction.tsx +100 -0
- package/src/components/DataSpaceTemplateQueryPromoteReview.tsx +292 -0
- package/src/index.ts +17 -0
- package/src/stores/DataSpacePreviewState.ts +199 -0
- package/src/stores/DataSpaceTemplateQueryPromotionReviewerStore.ts +636 -0
- package/tsconfig.json +54 -0
- package/tsconfig.package.json +37 -0
@@ -0,0 +1,37 @@
|
|
1
|
+
{
|
2
|
+
"compilerOptions": {
|
3
|
+
"lib": [
|
4
|
+
"dom",
|
5
|
+
"dom.iterable",
|
6
|
+
"esnext",
|
7
|
+
"webworker",
|
8
|
+
"scripthost"
|
9
|
+
],
|
10
|
+
"composite": true,
|
11
|
+
"declaration": true,
|
12
|
+
"declarationMap": true,
|
13
|
+
"sourceMap": true,
|
14
|
+
"target": "esnext",
|
15
|
+
"module": "nodenext",
|
16
|
+
"skipLibCheck": true,
|
17
|
+
"resolveJsonModule": true,
|
18
|
+
"verbatimModuleSyntax": true,
|
19
|
+
"strict": true,
|
20
|
+
"noImplicitOverride": true,
|
21
|
+
"noUncheckedIndexedAccess": true,
|
22
|
+
"exactOptionalPropertyTypes": true,
|
23
|
+
"forceConsistentCasingInFileNames": true,
|
24
|
+
"outDir": "./lib",
|
25
|
+
"tsBuildInfoFile": "./build/package.tsbuildinfo",
|
26
|
+
"rootDir": "./"
|
27
|
+
},
|
28
|
+
"files": [
|
29
|
+
"./package.json"
|
30
|
+
],
|
31
|
+
"include": [
|
32
|
+
"package.json"
|
33
|
+
],
|
34
|
+
"exclude": [
|
35
|
+
"lib"
|
36
|
+
]
|
37
|
+
}
|