-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{ | ||
"files": { | ||
"main.js": "./main.5ca4778a5b6f376dfe8d.bundle.js", | ||
"main.js.map": "./main.5ca4778a5b6f376dfe8d.bundle.js.map", | ||
"runtime~main.js": "./runtime~main.5ca4778a5b6f376dfe8d.bundle.js", | ||
"runtime~main.js.map": "./runtime~main.5ca4778a5b6f376dfe8d.bundle.js.map", | ||
"vendors~main.js": "./vendors~main.5ca4778a5b6f376dfe8d.bundle.js", | ||
"vendors~main.js.map": "./vendors~main.5ca4778a5b6f376dfe8d.bundle.js.map", | ||
"iframe.html": "./iframe.html", | ||
"precache-manifest.d25fcb372fc25092b1c78f5276eef19c.js": "./precache-manifest.d25fcb372fc25092b1c78f5276eef19c.js", | ||
"service-worker.js": "./service-worker.js", | ||
"static/media/loading-annimation.gif": "./static/media/loading-annimation.9b818ae3.gif", | ||
"vendors~main.5ca4778a5b6f376dfe8d.bundle.js.LICENSE.txt": "./vendors~main.5ca4778a5b6f376dfe8d.bundle.js.LICENSE.txt" | ||
}, | ||
"entrypoints": [ | ||
"runtime~main.5ca4778a5b6f376dfe8d.bundle.js", | ||
"vendors~main.5ca4778a5b6f376dfe8d.bundle.js", | ||
"main.5ca4778a5b6f376dfe8d.bundle.js" | ||
] | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,133 @@ | ||
<!doctype html><html lang="en"><head><meta charset="utf-8"><title>Storybook</title><meta name="viewport" content="width=device-width,initial-scale=1"><base target="_parent"><style>:not(.sb-show-main) > .sb-main, | ||
:not(.sb-show-nopreview) > .sb-nopreview, | ||
:not(.sb-show-errordisplay) > .sb-errordisplay { | ||
display: none; | ||
} | ||
|
||
.sb-show-main.sb-main-centered { | ||
margin: 0; | ||
display: flex; | ||
align-items: center; | ||
min-height: 100vh; | ||
} | ||
|
||
.sb-show-main.sb-main-centered #root { | ||
box-sizing: border-box; | ||
margin: auto; | ||
padding: 1rem; | ||
max-height: 100%; /* Hack for centering correctly in IE11 */ | ||
} | ||
|
||
/* Vertical centering fix for IE11 */ | ||
@media screen and (-ms-high-contrast: none), (-ms-high-contrast: active) { | ||
.sb-show-main.sb-main-centered:after { | ||
content: ''; | ||
min-height: inherit; | ||
font-size: 0; | ||
} | ||
} | ||
|
||
.sb-show-main.sb-main-fullscreen { | ||
margin: 0; | ||
padding: 0; | ||
display: block; | ||
} | ||
|
||
.sb-show-main.sb-main-padded { | ||
margin: 0; | ||
padding: 1rem; | ||
display: block; | ||
} | ||
|
||
.sb-wrapper { | ||
position: fixed; | ||
top: 0; | ||
bottom: 0; | ||
left: 0; | ||
right: 0; | ||
padding: 20px; | ||
font-family: "Nunito Sans", -apple-system, ".SFNSText-Regular", "San Francisco", BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif; | ||
-webkit-font-smoothing: antialiased; | ||
overflow: auto; | ||
} | ||
|
||
.sb-heading { | ||
font-size: 14px; | ||
font-weight: 600; | ||
letter-spacing: 0.2px; | ||
margin: 10px 0; | ||
padding-right: 25px; | ||
} | ||
|
||
.sb-nopreview { | ||
display: flex; | ||
align-content: center; | ||
justify-content: center; | ||
} | ||
|
||
.sb-nopreview_main { | ||
margin: auto; | ||
padding: 30px; | ||
border-radius: 10px; | ||
background: rgba(0,0,0,0.03); | ||
} | ||
|
||
.sb-nopreview_heading { | ||
text-align: center; | ||
} | ||
|
||
.sb-errordisplay { | ||
border: 20px solid rgb(187, 49, 49); | ||
background: #222; | ||
color: #fff; | ||
z-index: 999999; | ||
} | ||
|
||
.sb-errordisplay_code { | ||
padding: 10px; | ||
background: #000; | ||
color: #eee; | ||
font-family: "Operator Mono", "Fira Code Retina", "Fira Code", "FiraCode-Retina", "Andale Mono", "Lucida Console", Consolas, Monaco, monospace; | ||
} | ||
|
||
.sb-errordisplay pre { | ||
white-space: pre-wrap; | ||
}</style><script>/* globals window */ | ||
/* eslint-disable no-underscore-dangle */ | ||
try { | ||
if (window.top !== window) { | ||
window.__REACT_DEVTOOLS_GLOBAL_HOOK__ = window.top.__REACT_DEVTOOLS_GLOBAL_HOOK__; | ||
window.__VUE_DEVTOOLS_GLOBAL_HOOK__ = window.top.__VUE_DEVTOOLS_GLOBAL_HOOK__; | ||
window.top.__VUE_DEVTOOLS_CONTEXT__ = window.document; | ||
} | ||
} catch (e) { | ||
// eslint-disable-next-line no-console | ||
console.warn('unable to connect to top frame for connecting dev tools'); | ||
} | ||
|
||
window.onerror = function onerror(message, source, line, column, err) { | ||
if (window.CONFIG_TYPE !== 'DEVELOPMENT') return; | ||
// eslint-disable-next-line no-var, vars-on-top | ||
var xhr = new window.XMLHttpRequest(); | ||
xhr.open('POST', '/runtime-error'); | ||
xhr.setRequestHeader('Content-Type', 'application/json;charset=UTF-8'); | ||
xhr.send( | ||
JSON.stringify({ | ||
/* eslint-disable object-shorthand */ | ||
message: message, | ||
source: source, | ||
line: line, | ||
column: column, | ||
error: err && { message: err.message, name: err.name, stack: err.stack }, | ||
origin: 'preview', | ||
/* eslint-enable object-shorthand */ | ||
}) | ||
); | ||
};</script><style>#root[hidden], | ||
#docs-root[hidden] { | ||
display: none !important; | ||
}</style></head><body><div class="sb-nopreview sb-wrapper"><div class="sb-nopreview_main"><h1 class="sb-nopreview_heading sb-heading">No Preview</h1><p>Sorry, but you either have no stories or none are selected somehow.</p><ul><li>Please check the Storybook config.</li><li>Try reloading the page.</li></ul><p>If the problem persists, check the browser console, or the terminal you've run Storybook from.</p></div></div><div class="sb-errordisplay sb-wrapper"><pre id="error-message" class="sb-heading"></pre><pre class="sb-errordisplay_code"><code id="error-stack"></code></pre></div><div id="root"></div><div id="docs-root"></div><script>window['LOGLEVEL'] = "info"; | ||
|
||
|
||
|
||
window['FRAMEWORK_OPTIONS'] = {};</script><script src="runtime~main.5ca4778a5b6f376dfe8d.bundle.js"></script><script src="vendors~main.5ca4778a5b6f376dfe8d.bundle.js"></script><script src="main.5ca4778a5b6f376dfe8d.bundle.js"></script></body></html> |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>webqueue2</title> | ||
<style> | ||
/* Set height to 100% for body and html to enable the background image to cover the whole page: | ||
*/ | ||
body, | ||
html { | ||
height: 100% | ||
} | ||
|
||
.bgimg { | ||
/* Background image */ | ||
background-image: | ||
url('https://www.creativefabrica.com/wp-content/uploads/2020/03/19/City-Silhouette-Background-with-Building-Graphics-3680815-1.jpg'); | ||
/* Full-screen */ | ||
height: 100%; | ||
width: 100%; | ||
/* Center the background image */ | ||
background-position: center; | ||
/* Scale and zoom in the image */ | ||
background-size: cover; | ||
/* Add position: relative to enable absolutely positioned elements inside the image (place | ||
text) */ | ||
position: relative; | ||
/* Add a white text color to all elements inside the .bgimg container */ | ||
color: white; | ||
/* Add a font */ | ||
font-family: "Courier New", Courier, monospace; | ||
/* Set the font-size to 25 pixels */ | ||
font-size: 25px; | ||
} | ||
|
||
/* Position text in the middle */ | ||
.middle { | ||
position: absolute; | ||
top: 30%; | ||
left: 50%; | ||
transform: translate(-50%, -30%); | ||
text-align: center; | ||
} | ||
|
||
/* Style the <hr> element */ | ||
hr { | ||
margin: auto; | ||
width: 40%; | ||
} | ||
</style> | ||
</head> | ||
|
||
<body> | ||
<div class="bgimg"> | ||
<div class="middle"> | ||
<h1>Under Maintenance</h1> | ||
<hr> | ||
<p>webqueue2 is having some work done. Please check back later.</p> | ||
<p>Mar 14 2021 @ 11:30 PM EDT</p> | ||
</div> | ||
</div> | ||
</body> | ||
|
||
</html> |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
<!doctype html><html lang="en"><head><meta charset="utf-8"/><title>Storybook</title><meta name="viewport" content="width=device-width,initial-scale=1"/><style>html, body { | ||
overflow: hidden; | ||
height: 100%; | ||
width: 100%; | ||
margin: 0; | ||
padding: 0; | ||
} | ||
|
||
* { | ||
box-sizing: border-box; | ||
}</style><script>/* globals window */ | ||
/* eslint-disable no-underscore-dangle */ | ||
try { | ||
if (window.top !== window) { | ||
window.__REACT_DEVTOOLS_GLOBAL_HOOK__ = window.top.__REACT_DEVTOOLS_GLOBAL_HOOK__; | ||
} | ||
} catch (e) { | ||
// eslint-disable-next-line no-console | ||
console.warn('unable to connect to top frame for connecting dev tools'); | ||
} | ||
|
||
window.onerror = function onerror(message, source, line, column, err) { | ||
if (window.CONFIG_TYPE !== 'DEVELOPMENT') return; | ||
// eslint-disable-next-line no-var, vars-on-top | ||
var xhr = new window.XMLHttpRequest(); | ||
xhr.open('POST', '/runtime-error'); | ||
xhr.setRequestHeader('Content-Type', 'application/json;charset=UTF-8'); | ||
xhr.send( | ||
JSON.stringify({ | ||
/* eslint-disable object-shorthand */ | ||
message: message, | ||
source: source, | ||
line: line, | ||
column: column, | ||
error: err && { message: err.message, name: err.name, stack: err.stack }, | ||
origin: 'manager', | ||
/* eslint-enable object-shorthand */ | ||
}) | ||
); | ||
};</script><style>#root[hidden], | ||
#docs-root[hidden] { | ||
display: none !important; | ||
}</style></head><body><div id="root"></div><div id="docs-root"></div><script>window['CONFIG_TYPE'] = "PRODUCTION"; | ||
|
||
|
||
|
||
window['LOGLEVEL'] = "info"; | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
window['DOCS_MODE'] = false;</script><script src="runtime~main.870e8ee0658e83d05c6b.bundle.js"></script><script src="vendors~main.8354bf13203f6e4a3ab0.bundle.js"></script><script src="main.f53a0b7a733b501a2685.bundle.js"></script></body></html> |
Large diffs are not rendered by default.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
{ | ||
"name": "webqueue2", | ||
"short_name": "webqueue2", | ||
"description": "webqueue2", | ||
"icons": [ | ||
{ | ||
"src": "favicon.ico", | ||
"sizes": "64x64 32x32 24x24 16x16", | ||
"type": "image/x-icon" | ||
}, | ||
{ | ||
"src": "logo192.png", | ||
"type": "image/png", | ||
"sizes": "192x192" | ||
}, | ||
{ | ||
"src": "logo512.png", | ||
"type": "image/png", | ||
"sizes": "512x512" | ||
} | ||
], | ||
"start_url": ".", | ||
"display": "standalone", | ||
"theme_color": "#DAAA00", | ||
"background_color": "#ffffff" | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
self.__precacheManifest = (self.__precacheManifest || []).concat([ | ||
{ | ||
"revision": "e27259fa37bf8b69a529c13a31f7986f", | ||
"url": "iframe.html" | ||
}, | ||
{ | ||
"url": "main.5ca4778a5b6f376dfe8d.bundle.js" | ||
}, | ||
{ | ||
"url": "runtime~main.5ca4778a5b6f376dfe8d.bundle.js" | ||
}, | ||
{ | ||
"revision": "9b818ae3e2fb210b954c4fac1193d75b", | ||
"url": "static/media/loading-annimation.9b818ae3.gif" | ||
}, | ||
{ | ||
"url": "vendors~main.5ca4778a5b6f376dfe8d.bundle.js" | ||
}, | ||
{ | ||
"url": "vendors~main.5ca4778a5b6f376dfe8d.bundle.js.LICENSE.txt" | ||
} | ||
]); |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# https://www.robotstxt.org/robotstxt.html | ||
User-agent: * | ||
Disallow: |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
/** | ||
* Welcome to your Workbox-powered service worker! | ||
* | ||
* You'll need to register this file in your web app and you should | ||
* disable HTTP caching for this file too. | ||
* See https://goo.gl/nhQhGp | ||
* | ||
* The rest of the code is auto-generated. Please don't update this file | ||
* directly; instead, make changes to your Workbox build configuration | ||
* and re-run your build process. | ||
* See https://goo.gl/2aRDsh | ||
*/ | ||
|
||
importScripts("https://storage.googleapis.com/workbox-cdn/releases/4.3.1/workbox-sw.js"); | ||
|
||
importScripts( | ||
"precache-manifest.d25fcb372fc25092b1c78f5276eef19c.js" | ||
); | ||
|
||
self.addEventListener('message', (event) => { | ||
if (event.data && event.data.type === 'SKIP_WAITING') { | ||
self.skipWaiting(); | ||
} | ||
}); | ||
|
||
workbox.core.clientsClaim(); | ||
|
||
/** | ||
* The workboxSW.precacheAndRoute() method efficiently caches and responds to | ||
* requests for URLs in the manifest. | ||
* See https://goo.gl/S9QRab | ||
*/ | ||
self.__precacheManifest = [].concat(self.__precacheManifest || []); | ||
workbox.precaching.precacheAndRoute(self.__precacheManifest, {}); | ||
|
||
workbox.routing.registerNavigationRoute(workbox.precaching.getCacheKeyForURL("./index.html"), { | ||
|
||
blacklist: [/^\/_/,/\/[^/?]+\.[^/]+$/], | ||
}); |
Large diffs are not rendered by default.