@equinor/fusion-framework-cli 4.0.4 → 4.1.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.
|
@@ -5,7 +5,22 @@
|
|
|
5
5
|
<meta charset="UTF-8" />
|
|
6
6
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
7
7
|
<title>Fusion Framework Dev Portal</title>
|
|
8
|
-
<script
|
|
8
|
+
<script>
|
|
9
|
+
/**
|
|
10
|
+
* When defining a custom element the browser would throw an error if already defined.
|
|
11
|
+
* We would like the portal to provide the latest components
|
|
12
|
+
*/
|
|
13
|
+
const _customElementsDefine = window.customElements.define;
|
|
14
|
+
window.customElements.define = (name, cl, conf) => {
|
|
15
|
+
if (!customElements.get(name)) {
|
|
16
|
+
_customElementsDefine.call(window.customElements, name, cl, conf);
|
|
17
|
+
} else {
|
|
18
|
+
console.debug(`duplicate registration of ${name}`);
|
|
19
|
+
}
|
|
20
|
+
};
|
|
21
|
+
</script>
|
|
22
|
+
|
|
23
|
+
<script type="module" crossorigin src="/assets/index-401310fa.js"></script>
|
|
9
24
|
|
|
10
25
|
<body>
|
|
11
26
|
<div id="root"></div>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@equinor/fusion-framework-cli",
|
|
3
|
-
"version": "4.0
|
|
3
|
+
"version": "4.1.0",
|
|
4
4
|
"keywords": [
|
|
5
5
|
"Fusion",
|
|
6
6
|
"Fusion Framework",
|
|
@@ -24,6 +24,7 @@
|
|
|
24
24
|
"prepack": "yarn build"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
+
"@equinor/fusion-framework-app": "^6.0.3",
|
|
27
28
|
"@equinor/fusion-observable": "^6.0.0",
|
|
28
29
|
"@vitejs/plugin-react": "^3.0.0",
|
|
29
30
|
"commander": "^10.0.0",
|
|
@@ -36,12 +37,14 @@
|
|
|
36
37
|
},
|
|
37
38
|
"devDependencies": {
|
|
38
39
|
"@equinor/fusion-framework-app": "^6.0.2",
|
|
39
|
-
"@equinor/fusion-framework-module-context": "^2.0.
|
|
40
|
-
"@equinor/fusion-framework-react": "^3.
|
|
40
|
+
"@equinor/fusion-framework-module-context": "^2.0.3",
|
|
41
|
+
"@equinor/fusion-framework-react": "^3.2.0",
|
|
42
|
+
"@equinor/fusion-query": "^2.0.3",
|
|
41
43
|
"@equinor/fusion-react-button": "^0.6.1",
|
|
42
44
|
"@equinor/fusion-react-context-selector": "^0.3.0",
|
|
43
45
|
"@equinor/fusion-react-icon": "^0.2.15",
|
|
44
46
|
"@equinor/fusion-react-menu": "^0.1.5",
|
|
47
|
+
"@equinor/fusion-react-person": "^0.1.1",
|
|
45
48
|
"@equinor/fusion-react-progress-indicator": "^0.1.6",
|
|
46
49
|
"@equinor/fusion-react-styles": "^0.5.5",
|
|
47
50
|
"@types/express": "^4.17.14",
|
|
@@ -52,5 +55,5 @@
|
|
|
52
55
|
"react-router-dom": "^6.4.3",
|
|
53
56
|
"typescript": "^4.9.3"
|
|
54
57
|
},
|
|
55
|
-
"gitHead": "
|
|
58
|
+
"gitHead": "be1aeed5b4f683fd06e9822ba99113e27a011918"
|
|
56
59
|
}
|