mashlib 2.0.0-e99c8da3 → 2.0.0-ed2c62a7
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/browse-test.html +26 -65
- package/dist/browse.html +20 -61
- package/dist/databrowser.html +1 -1
- package/dist/mash.css +617 -2435
- package/dist/mash.css.map +1 -1
- package/dist/mashlib.js +1817 -1619
- package/dist/mashlib.js.map +1 -1
- package/dist/mashlib.min.js +146 -332
- package/dist/mashlib.min.js.map +1 -1
- package/package.json +17 -24
package/dist/browse-test.html
CHANGED
|
@@ -33,7 +33,7 @@ document.addEventListener('DOMContentLoaded', function() {
|
|
|
33
33
|
const goButton = dom.getElementById('goButton')
|
|
34
34
|
const loginButtonArea = document.getElementById("loginButtonArea");
|
|
35
35
|
const webIdArea = dom.getElementById('webId')
|
|
36
|
-
const
|
|
36
|
+
const banner = dom.getElementById('inputArea')
|
|
37
37
|
|
|
38
38
|
uriField.addEventListener('keyup', function (e) {
|
|
39
39
|
if (e.keyCode === 13) {
|
|
@@ -59,8 +59,11 @@ document.addEventListener('DOMContentLoaded', function() {
|
|
|
59
59
|
const logoutButton = loginButtonArea.querySelector('input');
|
|
60
60
|
logoutButton.value = "Logout";
|
|
61
61
|
let displayId = `<${me.value}>`;
|
|
62
|
-
webIdArea.innerHTML = displayId;
|
|
63
|
-
|
|
62
|
+
webIdArea.innerHTML = displayId;
|
|
63
|
+
banner.style.backgroundColor="#bbccbb";
|
|
64
|
+
} else {
|
|
65
|
+
banner.style.backgroundColor="#ccbbbb";
|
|
66
|
+
}
|
|
64
67
|
loginButtonArea.style.display="inline-block";
|
|
65
68
|
}
|
|
66
69
|
|
|
@@ -84,52 +87,33 @@ document.addEventListener('DOMContentLoaded', function() {
|
|
|
84
87
|
</script>
|
|
85
88
|
</head>
|
|
86
89
|
<body>
|
|
87
|
-
<a href="#DummyUUID" class="skip-link">Skip to main content</a>
|
|
88
90
|
|
|
89
|
-
<
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
<main id="mainContent" tabindex="-1">
|
|
93
|
-
|
|
94
|
-
<div class="input-row" id="inputArea">
|
|
95
|
-
Viewing <input id="uriField" type="text" class="uri-field" placeholder="enter a pod address e.g. https://you.solidcommunity.net/"/> <input type="button" id="goButton" value="Go" />
|
|
91
|
+
<div style="width:100%;" id="inputArea">
|
|
92
|
+
<div style="margin-bottom:0.6em">
|
|
93
|
+
The SolidOS Databrowser
|
|
96
94
|
</div>
|
|
97
|
-
<div
|
|
98
|
-
|
|
99
|
-
|
|
95
|
+
<div style="margin-left:1em">
|
|
96
|
+
Viewing <input id="uriField" type="text" style="font-size:100%; min-width:25em; padding:0.5em;" placeholder="enter a pod address e.g. https://you.solidcommunity.net/"/> <input type="button" id="goButton" value="Go" />
|
|
97
|
+
</div>
|
|
98
|
+
<div style="margin-top:0.5em;margin-left:1em">
|
|
99
|
+
As user <span id="webId"><public user></span> <span id="loginButtonArea"></span>
|
|
100
100
|
</div>
|
|
101
101
|
</div>
|
|
102
102
|
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
<
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
<tbody>
|
|
112
|
-
<!-- Table rows injected by JS -->
|
|
113
|
-
</tbody>
|
|
114
|
-
</table>
|
|
115
|
-
<div id="GlobalDashboard" aria-label="Global Dashboard"></div>
|
|
116
|
-
</div>
|
|
117
|
-
</main>
|
|
103
|
+
<table style="width:100%;">
|
|
104
|
+
<tr>
|
|
105
|
+
<div class="TabulatorOutline" id="DummyUUID" role="main">
|
|
106
|
+
<table id="outline"></table>
|
|
107
|
+
<div id="GlobalDashboard"></div>
|
|
108
|
+
</div>
|
|
109
|
+
</tr>
|
|
110
|
+
</table>
|
|
118
111
|
|
|
119
|
-
<footer id="PageFooter" role="contentinfo"></footer>
|
|
120
112
|
<style>
|
|
121
|
-
|
|
113
|
+
#inputArea {
|
|
122
114
|
width:100%;
|
|
123
|
-
padding:
|
|
124
|
-
background-color:#
|
|
125
|
-
margin-bottom:0.6em;
|
|
126
|
-
}
|
|
127
|
-
.input-row {
|
|
128
|
-
margin-left:1em;
|
|
129
|
-
}
|
|
130
|
-
.user-row {
|
|
131
|
-
margin-top:0.5em;
|
|
132
|
-
margin-left:1em;
|
|
115
|
+
padding:0.5em;
|
|
116
|
+
background-color:#d0d0d0;
|
|
133
117
|
}
|
|
134
118
|
#loginButtonArea input {
|
|
135
119
|
display:inline-block;
|
|
@@ -141,33 +125,10 @@ document.addEventListener('DOMContentLoaded', function() {
|
|
|
141
125
|
padding-top:0.6em;
|
|
142
126
|
padding-bottom:0.6em;
|
|
143
127
|
}
|
|
144
|
-
#uriField
|
|
145
|
-
font-size:100%;
|
|
146
|
-
min-width:25em;
|
|
147
|
-
padding:0.5em;
|
|
128
|
+
#uriField {
|
|
148
129
|
width:70%;
|
|
149
130
|
margin-top:0.6em !important;
|
|
150
131
|
}
|
|
151
|
-
|
|
152
|
-
/* Ensure skip link is visible when focused */
|
|
153
|
-
.skip-link {
|
|
154
|
-
position:absolute;
|
|
155
|
-
left:-999px;
|
|
156
|
-
top:auto;
|
|
157
|
-
width:1px;
|
|
158
|
-
height:1px;
|
|
159
|
-
overflow:hidden;
|
|
160
|
-
}
|
|
161
|
-
.skip-link:focus {
|
|
162
|
-
position: static;
|
|
163
|
-
width: auto;
|
|
164
|
-
height: auto;
|
|
165
|
-
padding: 0.5em 1em;
|
|
166
|
-
background: #005fcc;
|
|
167
|
-
color: #fff;
|
|
168
|
-
z-index: 1000;
|
|
169
|
-
outline: none;
|
|
170
|
-
}
|
|
171
132
|
</style>
|
|
172
133
|
|
|
173
134
|
</body></html>
|
package/dist/browse.html
CHANGED
|
@@ -87,51 +87,33 @@ document.addEventListener('DOMContentLoaded', function() {
|
|
|
87
87
|
</script>
|
|
88
88
|
</head>
|
|
89
89
|
<body>
|
|
90
|
-
<a href="#DummyUUID" class="skip-link">Skip to main content</a>
|
|
91
90
|
|
|
92
|
-
<
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
<main id="mainContent" tabindex="-1">
|
|
96
|
-
<div class="input-row" id="inputArea">
|
|
97
|
-
Viewing <input id="uriField" type="text" class="uri-field" placeholder="enter a pod address e.g. https://you.solidcommunity.net/"/> <input type="button" id="goButton" value="Go" />
|
|
91
|
+
<div style="width:100%;" id="inputArea">
|
|
92
|
+
<div style="margin-bottom:0.6em">
|
|
93
|
+
The SolidOS Databrowser
|
|
98
94
|
</div>
|
|
99
|
-
<div
|
|
100
|
-
|
|
101
|
-
|
|
95
|
+
<div style="margin-left:1em">
|
|
96
|
+
Viewing <input id="uriField" type="text" style="font-size:100%; min-width:25em; padding:0.5em;" placeholder="enter a pod address e.g. https://you.solidcommunity.net/"/> <input type="button" id="goButton" value="Go" />
|
|
97
|
+
</div>
|
|
98
|
+
<div style="margin-top:0.5em;margin-left:1em">
|
|
99
|
+
As user <span id="webId"><public user></span> <span id="loginButtonArea"></span>
|
|
102
100
|
</div>
|
|
103
101
|
</div>
|
|
104
102
|
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
<
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
<tbody>
|
|
114
|
-
<!-- Table rows injected by JS -->
|
|
115
|
-
</tbody>
|
|
116
|
-
</table>
|
|
117
|
-
<div id="GlobalDashboard" aria-label="Global Dashboard"></div>
|
|
118
|
-
</div>
|
|
119
|
-
</main>
|
|
103
|
+
<table style="width:100%;">
|
|
104
|
+
<tr>
|
|
105
|
+
<div class="TabulatorOutline" id="DummyUUID" role="main">
|
|
106
|
+
<table id="outline"></table>
|
|
107
|
+
<div id="GlobalDashboard"></div>
|
|
108
|
+
</div>
|
|
109
|
+
</tr>
|
|
110
|
+
</table>
|
|
120
111
|
|
|
121
|
-
<footer id="PageFooter" role="contentinfo"></footer>
|
|
122
112
|
<style>
|
|
123
|
-
|
|
113
|
+
#inputArea {
|
|
124
114
|
width:100%;
|
|
125
|
-
padding:
|
|
126
|
-
background-color:#
|
|
127
|
-
margin-bottom:0.6em;
|
|
128
|
-
}
|
|
129
|
-
.input-row {
|
|
130
|
-
margin-left:1em;
|
|
131
|
-
}
|
|
132
|
-
.user-row {
|
|
133
|
-
margin-top:0.5em;
|
|
134
|
-
margin-left:1em;
|
|
115
|
+
padding:0.5em;
|
|
116
|
+
background-color:#d0d0d0;
|
|
135
117
|
}
|
|
136
118
|
#loginButtonArea input {
|
|
137
119
|
display:inline-block;
|
|
@@ -143,33 +125,10 @@ document.addEventListener('DOMContentLoaded', function() {
|
|
|
143
125
|
padding-top:0.6em;
|
|
144
126
|
padding-bottom:0.6em;
|
|
145
127
|
}
|
|
146
|
-
#uriField
|
|
147
|
-
font-size:100%;
|
|
148
|
-
min-width:25em;
|
|
149
|
-
padding:0.5em;
|
|
128
|
+
#uriField {
|
|
150
129
|
width:70%;
|
|
151
130
|
margin-top:0.6em !important;
|
|
152
131
|
}
|
|
153
|
-
|
|
154
|
-
/* Ensure skip link is visible when focused */
|
|
155
|
-
.skip-link {
|
|
156
|
-
position:absolute;
|
|
157
|
-
left:-999px;
|
|
158
|
-
top:auto;
|
|
159
|
-
width:1px;
|
|
160
|
-
height:1px;
|
|
161
|
-
overflow:hidden;
|
|
162
|
-
}
|
|
163
|
-
.skip-link:focus {
|
|
164
|
-
position: static;
|
|
165
|
-
width: auto;
|
|
166
|
-
height: auto;
|
|
167
|
-
padding: 0.5em 1em;
|
|
168
|
-
background: #005fcc;
|
|
169
|
-
color: #fff;
|
|
170
|
-
z-index: 1000;
|
|
171
|
-
outline: none;
|
|
172
|
-
}
|
|
173
132
|
</style>
|
|
174
133
|
|
|
175
134
|
</body></html>
|
package/dist/databrowser.html
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
<!doctype html><html><head><meta charset="utf-8"/><title>SolidOS Web App</title><script>document.addEventListener('DOMContentLoaded', function() {
|
|
2
2
|
panes.runDataBrowser()
|
|
3
|
-
})</script><script defer="defer" src="/mashlib.min.js"></script><link href="/mash.css" rel="stylesheet"></head><body id="PageBody"><
|
|
3
|
+
})</script><script defer="defer" src="/mashlib.min.js"></script><link href="/mash.css" rel="stylesheet"></head><body id="PageBody"><header id="PageHeader"></header><div class="TabulatorOutline" id="DummyUUID" role="main"><table id="outline"></table><div id="GlobalDashboard"></div></div><footer id="PageFooter"></footer></body></html>
|