@finos/legend-extension-dsl-diagram 8.0.186 → 8.0.188

Sign up to get free protection for your applications and to get access to all the features.
package/lib/index.css CHANGED
@@ -1,4 +1,4 @@
1
- /** @license @finos/legend-extension-dsl-diagram v8.0.186
1
+ /** @license @finos/legend-extension-dsl-diagram v8.0.188
2
2
  * Copyright (c) 2020-present, Goldman Sachs
3
3
  *
4
4
  * Licensed under the Apache License, Version 2.0 (the "License");
package/lib/index.d.ts ADDED
@@ -0,0 +1,19 @@
1
+ /**
2
+ * Copyright (c) 2020-present, Goldman Sachs
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
16
+ export * from './graph-manager/index.js';
17
+ export * from './components/index.js';
18
+ export * from './components/studio/index.js';
19
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAEH,cAAc,0BAA0B,CAAC;AACzC,cAAc,uBAAuB,CAAC;AACtC,cAAc,8BAA8B,CAAC"}
package/lib/index.js ADDED
@@ -0,0 +1,19 @@
1
+ /**
2
+ * Copyright (c) 2020-present, Goldman Sachs
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
16
+ export * from './graph-manager/index.js';
17
+ export * from './components/index.js';
18
+ export * from './components/studio/index.js';
19
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAEH,cAAc,0BAA0B,CAAC;AACzC,cAAc,uBAAuB,CAAC;AACtC,cAAc,8BAA8B,CAAC"}
package/lib/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@finos/legend-extension-dsl-diagram",
3
- "version": "8.0.186",
3
+ "version": "8.0.188",
4
4
  "description": "Legend extension for Diagram DSL",
5
5
  "keywords": [
6
6
  "legend",
@@ -21,6 +21,7 @@
21
21
  "sideEffects": false,
22
22
  "type": "module",
23
23
  "exports": {
24
+ ".": "./lib/index.js",
24
25
  "./graph": "./lib/graph-manager/index.js",
25
26
  "./application": "./lib/components/index.js",
26
27
  "./application-studio": "./lib/components/studio/index.js",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@finos/legend-extension-dsl-diagram",
3
- "version": "8.0.186",
3
+ "version": "8.0.188",
4
4
  "description": "Legend extension for Diagram DSL",
5
5
  "keywords": [
6
6
  "legend",
@@ -21,6 +21,7 @@
21
21
  "sideEffects": false,
22
22
  "type": "module",
23
23
  "exports": {
24
+ ".": "./lib/index.js",
24
25
  "./graph": "./lib/graph-manager/index.js",
25
26
  "./application": "./lib/components/index.js",
26
27
  "./application-studio": "./lib/components/studio/index.js",
@@ -45,13 +46,13 @@
45
46
  "test:watch": "jest --watch"
46
47
  },
47
48
  "dependencies": {
48
- "@finos/legend-application": "15.1.11",
49
- "@finos/legend-application-studio": "28.17.14",
50
- "@finos/legend-art": "7.1.39",
51
- "@finos/legend-graph": "31.10.6",
52
- "@finos/legend-lego": "1.2.42",
53
- "@finos/legend-shared": "10.0.41",
54
- "@finos/legend-storage": "3.0.91",
49
+ "@finos/legend-application": "15.1.12",
50
+ "@finos/legend-application-studio": "28.17.15",
51
+ "@finos/legend-art": "7.1.40",
52
+ "@finos/legend-graph": "31.10.7",
53
+ "@finos/legend-lego": "1.2.43",
54
+ "@finos/legend-shared": "10.0.42",
55
+ "@finos/legend-storage": "3.0.92",
55
56
  "@types/react": "18.3.3",
56
57
  "mobx": "6.12.4",
57
58
  "mobx-react-lite": "4.0.7",
@@ -61,7 +62,7 @@
61
62
  "serializr": "3.0.2"
62
63
  },
63
64
  "devDependencies": {
64
- "@finos/legend-dev-utils": "2.1.9",
65
+ "@finos/legend-dev-utils": "2.1.10",
65
66
  "@jest/globals": "29.7.0",
66
67
  "@testing-library/dom": "10.2.0",
67
68
  "@testing-library/react": "16.0.0",
package/src/index.ts ADDED
@@ -0,0 +1,19 @@
1
+ /**
2
+ * Copyright (c) 2020-present, Goldman Sachs
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
16
+
17
+ export * from './graph-manager/index.js';
18
+ export * from './components/index.js';
19
+ export * from './components/studio/index.js';
package/tsconfig.json CHANGED
@@ -48,6 +48,7 @@
48
48
  }
49
49
  ],
50
50
  "files": [
51
+ "./src/index.ts",
51
52
  "./src/__lib__/studio/DSL_Diagram_LegendStudioApplicationNavigationContext.ts",
52
53
  "./src/__lib__/studio/DSL_Diagram_LegendStudioCodeSnippet.ts",
53
54
  "./src/__lib__/studio/DSL_Diagram_LegendStudioCommand.ts",