solid-shim 0.1.0 → 0.1.1
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/841.mashlib.min.js +70 -0
- package/dist/841.mashlib.min.js.map +1 -0
- package/dist/index.html +3 -30
- package/dist/mashlib.min.js +288 -0
- package/dist/mashlib.min.js.map +1 -0
- package/package.json +3 -2
- package/dist/mashlib.js +0 -3337
- package/dist/vendors-node_modules_jsonld_lib_jsonld_js.mashlib.js +0 -415
package/dist/index.html
CHANGED
|
@@ -1,11 +1,4 @@
|
|
|
1
|
-
<!
|
|
2
|
-
<html lang="en">
|
|
3
|
-
<head>
|
|
4
|
-
<meta charset="UTF-8">
|
|
5
|
-
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
6
|
-
<title>Solid Shim - Data Browser</title>
|
|
7
|
-
<style>
|
|
8
|
-
* {
|
|
1
|
+
<!doctype html><html lang="en"><head><meta charset="UTF-8"><meta name="viewport" content="width=device-width,initial-scale=1"><title>Solid Shim - Data Browser</title><style>* {
|
|
9
2
|
box-sizing: border-box;
|
|
10
3
|
}
|
|
11
4
|
html, body {
|
|
@@ -13,24 +6,7 @@
|
|
|
13
6
|
padding: 0;
|
|
14
7
|
height: 100%;
|
|
15
8
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
|
|
16
|
-
}
|
|
17
|
-
</style>
|
|
18
|
-
<script defer src="mashlib.js"></script></head>
|
|
19
|
-
<body id="PageBody">
|
|
20
|
-
<header id="PageHeader">
|
|
21
|
-
<!-- Header content will be populated by solid-ui -->
|
|
22
|
-
</header>
|
|
23
|
-
|
|
24
|
-
<main id="DummyUUID">
|
|
25
|
-
<!-- Main content area for panes -->
|
|
26
|
-
</main>
|
|
27
|
-
|
|
28
|
-
<footer id="PageFooter">
|
|
29
|
-
<!-- Footer content will be populated by solid-ui -->
|
|
30
|
-
</footer>
|
|
31
|
-
|
|
32
|
-
<script>
|
|
33
|
-
// Initialize the data browser when the page loads
|
|
9
|
+
}</style><script defer="defer" src="mashlib.min.js"></script></head><body id="PageBody"><header id="PageHeader"></header><main id="DummyUUID"></main><footer id="PageFooter"></footer><script>// Initialize the data browser when the page loads
|
|
34
10
|
window.addEventListener('DOMContentLoaded', function() {
|
|
35
11
|
if (window.panes && window.panes.runDataBrowser) {
|
|
36
12
|
// Get URI from URL hash or query parameter
|
|
@@ -38,7 +14,4 @@
|
|
|
38
14
|
const uri = urlParams.get('uri') || window.location.hash.slice(1) || null
|
|
39
15
|
window.panes.runDataBrowser(uri)
|
|
40
16
|
}
|
|
41
|
-
})
|
|
42
|
-
</script>
|
|
43
|
-
</body>
|
|
44
|
-
</html>
|
|
17
|
+
})</script></body></html>
|