@storecraft/dashboard 1.0.0 → 1.0.2
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/dist/lib/index.cjs +269 -269
- package/dist/lib/index.js +5545 -5544
- package/dist/lib/index.umd.cjs +226 -226
- package/dist/website/127.0.0.1_5500_a.html.png +0 -0
- package/dist/website/a.html +12 -5
- package/dist/website/assets/index-D1Xj3p7S.js +801 -0
- package/dist/website/assets/index-YfK3rjdH.js +801 -0
- package/dist/website/favicon.ico +0 -0
- package/dist/website/index.html +3 -2
- package/dist/website/index2.mjs +67697 -0
- package/package.json +3 -2
Binary file
|
package/dist/website/a.html
CHANGED
@@ -6,10 +6,17 @@
|
|
6
6
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
7
7
|
<title>Storecraft - Next Gen Commerce-As-Code</title>
|
8
8
|
<script
|
9
|
-
|
10
|
-
|
9
|
+
id='_storecraft_script_'
|
10
|
+
type="module"
|
11
|
+
async="false" defer="false" sssrc="./index2.mjs" >
|
12
|
+
import {mountStorecraftDashboard} from './index2.mjs';
|
13
|
+
mountStorecraftDashboard(
|
14
|
+
document.getElementById('root'), false
|
15
|
+
)
|
16
|
+
|
11
17
|
</script>
|
12
|
-
<script type='text/javascript'>
|
18
|
+
<!-- <script type='text/javascript' async="false" defer="false">
|
19
|
+
|
13
20
|
console.log('StorecraftDashboard')
|
14
21
|
|
15
22
|
var script = document.querySelector('#_storecraft_script_');
|
@@ -19,11 +26,11 @@
|
|
19
26
|
function() {
|
20
27
|
window.StorecraftDashboard.mountStorecraftDashboard(
|
21
28
|
document.getElementById('root'), false
|
22
|
-
)
|
29
|
+
)
|
23
30
|
}
|
24
31
|
);
|
25
32
|
|
26
|
-
</script>
|
33
|
+
</script> -->
|
27
34
|
</head>
|
28
35
|
<body>
|
29
36
|
<div id="root"></div>
|