-
Notifications
You must be signed in to change notification settings - Fork 81
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e1a50c6
commit 6bce40c
Showing
316 changed files
with
5,507 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
.DS_Store | ||
node_modules/ | ||
dist/ | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,184 @@ | ||
<!DOCTYPE html><html><head><meta charset=utf-8><meta http-equiv=X-UA-Compatible content="IE=edge,chrome=1"><meta name=renderer content=webkit><meta name=viewport content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no"><link rel=icon href=/favicon.png><title>PmHub</title><!--[if lt IE 11]><script>window.location.href='/html/ie.html';</script><![endif]--><style>html, | ||
body, | ||
#app { | ||
height: 100%; | ||
margin: 0px; | ||
padding: 0px; | ||
} | ||
.chromeframe { | ||
margin: 0.2em 0; | ||
background: #ccc; | ||
color: #000; | ||
padding: 0.2em 0; | ||
} | ||
|
||
#loader-wrapper { | ||
position: fixed; | ||
top: 0; | ||
left: 0; | ||
width: 100%; | ||
height: 100%; | ||
z-index: 999999; | ||
} | ||
|
||
#loader { | ||
display: block; | ||
position: relative; | ||
left: 50%; | ||
top: 50%; | ||
width: 150px; | ||
height: 150px; | ||
margin: -75px 0 0 -75px; | ||
border-radius: 50%; | ||
border: 3px solid transparent; | ||
border-top-color: #FFF; | ||
-webkit-animation: spin 2s linear infinite; | ||
-ms-animation: spin 2s linear infinite; | ||
-moz-animation: spin 2s linear infinite; | ||
-o-animation: spin 2s linear infinite; | ||
animation: spin 2s linear infinite; | ||
z-index: 1001; | ||
} | ||
|
||
#loader:before { | ||
content: ""; | ||
position: absolute; | ||
top: 5px; | ||
left: 5px; | ||
right: 5px; | ||
bottom: 5px; | ||
border-radius: 50%; | ||
border: 3px solid transparent; | ||
border-top-color: #FFF; | ||
-webkit-animation: spin 3s linear infinite; | ||
-moz-animation: spin 3s linear infinite; | ||
-o-animation: spin 3s linear infinite; | ||
-ms-animation: spin 3s linear infinite; | ||
animation: spin 3s linear infinite; | ||
} | ||
|
||
#loader:after { | ||
content: ""; | ||
position: absolute; | ||
top: 15px; | ||
left: 15px; | ||
right: 15px; | ||
bottom: 15px; | ||
border-radius: 50%; | ||
border: 3px solid transparent; | ||
border-top-color: #FFF; | ||
-moz-animation: spin 1.5s linear infinite; | ||
-o-animation: spin 1.5s linear infinite; | ||
-ms-animation: spin 1.5s linear infinite; | ||
-webkit-animation: spin 1.5s linear infinite; | ||
animation: spin 1.5s linear infinite; | ||
} | ||
|
||
|
||
@-webkit-keyframes spin { | ||
0% { | ||
-webkit-transform: rotate(0deg); | ||
-ms-transform: rotate(0deg); | ||
transform: rotate(0deg); | ||
} | ||
100% { | ||
-webkit-transform: rotate(360deg); | ||
-ms-transform: rotate(360deg); | ||
transform: rotate(360deg); | ||
} | ||
} | ||
|
||
@keyframes spin { | ||
0% { | ||
-webkit-transform: rotate(0deg); | ||
-ms-transform: rotate(0deg); | ||
transform: rotate(0deg); | ||
} | ||
100% { | ||
-webkit-transform: rotate(360deg); | ||
-ms-transform: rotate(360deg); | ||
transform: rotate(360deg); | ||
} | ||
} | ||
|
||
|
||
#loader-wrapper .loader-section { | ||
position: fixed; | ||
top: 0; | ||
width: 51%; | ||
height: 100%; | ||
background: #7171C6; | ||
z-index: 1000; | ||
-webkit-transform: translateX(0); | ||
-ms-transform: translateX(0); | ||
transform: translateX(0); | ||
} | ||
|
||
#loader-wrapper .loader-section.section-left { | ||
left: 0; | ||
} | ||
|
||
#loader-wrapper .loader-section.section-right { | ||
right: 0; | ||
} | ||
|
||
|
||
.loaded #loader-wrapper .loader-section.section-left { | ||
-webkit-transform: translateX(-100%); | ||
-ms-transform: translateX(-100%); | ||
transform: translateX(-100%); | ||
-webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000); | ||
transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000); | ||
} | ||
|
||
.loaded #loader-wrapper .loader-section.section-right { | ||
-webkit-transform: translateX(100%); | ||
-ms-transform: translateX(100%); | ||
transform: translateX(100%); | ||
-webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000); | ||
transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000); | ||
} | ||
|
||
.loaded #loader { | ||
opacity: 0; | ||
-webkit-transition: all 0.3s ease-out; | ||
transition: all 0.3s ease-out; | ||
} | ||
|
||
.loaded #loader-wrapper { | ||
visibility: hidden; | ||
-webkit-transform: translateY(-100%); | ||
-ms-transform: translateY(-100%); | ||
transform: translateY(-100%); | ||
-webkit-transition: all 0.3s 1s ease-out; | ||
transition: all 0.3s 1s ease-out; | ||
} | ||
|
||
.no-js #loader-wrapper { | ||
display: none; | ||
} | ||
|
||
.no-js h1 { | ||
color: #222222; | ||
} | ||
|
||
#loader-wrapper .load_title { | ||
font-family: 'Open Sans'; | ||
color: #FFF; | ||
font-size: 19px; | ||
width: 100%; | ||
text-align: center; | ||
z-index: 9999999999999; | ||
position: absolute; | ||
top: 60%; | ||
opacity: 1; | ||
line-height: 30px; | ||
} | ||
|
||
#loader-wrapper .load_title span { | ||
font-weight: normal; | ||
font-style: italic; | ||
font-size: 13px; | ||
color: #FFF; | ||
opacity: 0.5; | ||
}</style><link href=/static/css/chunk-libs.ea078ece.css rel=stylesheet><link href=/static/css/app.ad8da92b.css rel=stylesheet></head><body><div id=app><div id=loader-wrapper><div id=loader></div><div class="loader-section section-left"></div><div class="loader-section section-right"></div><div class=load_title>正在加载系统资源,请耐心等待</div></div></div><script>(function(e){function n(n){for(var t,u,d=n[0],f=n[1],h=n[2],o=0,k=[];o<d.length;o++)u=d[o],Object.prototype.hasOwnProperty.call(r,u)&&r[u]&&k.push(r[u][0]),r[u]=0;for(t in f)Object.prototype.hasOwnProperty.call(f,t)&&(e[t]=f[t]);b&&b(n);while(k.length)k.shift()();return a.push.apply(a,h||[]),c()}function c(){for(var e,n=0;n<a.length;n++){for(var c=a[n],t=!0,u=1;u<c.length;u++){var d=c[u];0!==r[d]&&(t=!1)}t&&(a.splice(n--,1),e=f(f.s=c[0]))}return e}var t={},u={runtime:0},r={runtime:0},a=[];function d(e){return f.p+"static/js/"+({}[e]||e)+"."+{"chunk-0db52f62":"949a8e43","chunk-2727631f":"d53cf103","chunk-2d0b2b28":"6267aaf1","chunk-57374dca":"aff70a50","chunk-2d0f012d":"ddeb06bb","chunk-2d212b99":"eadf8bea","chunk-1d8f19ed":"4b094117","chunk-891b7a02":"8ab96b08","chunk-46f2cf5c":"e7dc32a9","chunk-4d851f42":"ad216408","chunk-2e1559c4":"d6daf688","chunk-53dbcb75":"30ee6357","chunk-548b6580":"e1889516","chunk-68702101":"b9adb2ca","chunk-79f8c5df":"c140fc8b","chunk-a45731e8":"e1747f74","chunk-7d2f99e9":"49fdd777","chunk-c4993c78":"97a4932e","chunk-d19c1a98":"0dd837c0","chunk-f68c3d16":"57d39f97","chunk-090629e2":"dde93463","chunk-757161b0":"20d73325","chunk-9f1951aa":"1324f1a5","chunk-b59517e2":"e2705529","chunk-2338b63a":"ef93d720","chunk-2126ed7b":"2c007711","chunk-a6f9a23c":"511425e5","chunk-2de2a51c":"08f0c0d9","chunk-a96d8a5a":"dbdbb572","chunk-3b864f98":"ed1d423f","chunk-2d216214":"566dc78d","chunk-abc13330":"f9367a91"}[e]+".js"}function f(n){if(t[n])return t[n].exports;var c=t[n]={i:n,l:!1,exports:{}};return e[n].call(c.exports,c,c.exports,f),c.l=!0,c.exports}f.e=function(e){var n=[],c={"chunk-0db52f62":1,"chunk-57374dca":1,"chunk-891b7a02":1,"chunk-46f2cf5c":1,"chunk-2e1559c4":1,"chunk-53dbcb75":1,"chunk-79f8c5df":1,"chunk-7d2f99e9":1,"chunk-f68c3d16":1,"chunk-757161b0":1,"chunk-9f1951aa":1,"chunk-b59517e2":1,"chunk-2126ed7b":1,"chunk-a6f9a23c":1,"chunk-2de2a51c":1,"chunk-a96d8a5a":1,"chunk-3b864f98":1};u[e]?n.push(u[e]):0!==u[e]&&c[e]&&n.push(u[e]=new Promise((function(n,c){for(var t="static/css/"+({}[e]||e)+"."+{"chunk-0db52f62":"c6485236","chunk-2727631f":"31d6cfe0","chunk-2d0b2b28":"31d6cfe0","chunk-57374dca":"208886b7","chunk-2d0f012d":"31d6cfe0","chunk-2d212b99":"31d6cfe0","chunk-1d8f19ed":"31d6cfe0","chunk-891b7a02":"64a51fc9","chunk-46f2cf5c":"6fad9d09","chunk-4d851f42":"31d6cfe0","chunk-2e1559c4":"cae5fd31","chunk-53dbcb75":"84f98409","chunk-548b6580":"31d6cfe0","chunk-68702101":"31d6cfe0","chunk-79f8c5df":"bbc9fa95","chunk-a45731e8":"31d6cfe0","chunk-7d2f99e9":"1ee0c1ba","chunk-c4993c78":"31d6cfe0","chunk-d19c1a98":"31d6cfe0","chunk-f68c3d16":"f224786f","chunk-090629e2":"31d6cfe0","chunk-757161b0":"62a7ba52","chunk-9f1951aa":"eb72df07","chunk-b59517e2":"455e7bdb","chunk-2338b63a":"31d6cfe0","chunk-2126ed7b":"ed22794c","chunk-a6f9a23c":"1ee24900","chunk-2de2a51c":"726f9250","chunk-a96d8a5a":"bfc95a45","chunk-3b864f98":"dda31ef6","chunk-2d216214":"31d6cfe0","chunk-abc13330":"31d6cfe0"}[e]+".css",r=f.p+t,a=document.getElementsByTagName("link"),d=0;d<a.length;d++){var h=a[d],o=h.getAttribute("data-href")||h.getAttribute("href");if("stylesheet"===h.rel&&(o===t||o===r))return n()}var k=document.getElementsByTagName("style");for(d=0;d<k.length;d++){h=k[d],o=h.getAttribute("data-href");if(o===t||o===r)return n()}var b=document.createElement("link");b.rel="stylesheet",b.type="text/css",b.onload=n,b.onerror=function(n){var t=n&&n.target&&n.target.src||r,a=new Error("Loading CSS chunk "+e+" failed.\n("+t+")");a.code="CSS_CHUNK_LOAD_FAILED",a.request=t,delete u[e],b.parentNode.removeChild(b),c(a)},b.href=r;var i=document.getElementsByTagName("head")[0];i.appendChild(b)})).then((function(){u[e]=0})));var t=r[e];if(0!==t)if(t)n.push(t[2]);else{var a=new Promise((function(n,c){t=r[e]=[n,c]}));n.push(t[2]=a);var h,o=document.createElement("script");o.charset="utf-8",o.timeout=120,f.nc&&o.setAttribute("nonce",f.nc),o.src=d(e);var k=new Error;h=function(n){o.onerror=o.onload=null,clearTimeout(b);var c=r[e];if(0!==c){if(c){var t=n&&("load"===n.type?"missing":n.type),u=n&&n.target&&n.target.src;k.message="Loading chunk "+e+" failed.\n("+t+": "+u+")",k.name="ChunkLoadError",k.type=t,k.request=u,c[1](k)}r[e]=void 0}};var b=setTimeout((function(){h({type:"timeout",target:o})}),12e4);o.onerror=o.onload=h,document.head.appendChild(o)}return Promise.all(n)},f.m=e,f.c=t,f.d=function(e,n,c){f.o(e,n)||Object.defineProperty(e,n,{enumerable:!0,get:c})},f.r=function(e){"undefined"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},f.t=function(e,n){if(1&n&&(e=f(e)),8&n)return e;if(4&n&&"object"===typeof e&&e&&e.__esModule)return e;var c=Object.create(null);if(f.r(c),Object.defineProperty(c,"default",{enumerable:!0,value:e}),2&n&&"string"!=typeof e)for(var t in e)f.d(c,t,function(n){return e[n]}.bind(null,t));return c},f.n=function(e){var n=e&&e.__esModule?function(){return e["default"]}:function(){return e};return f.d(n,"a",n),n},f.o=function(e,n){return Object.prototype.hasOwnProperty.call(e,n)},f.p="/",f.oe=function(e){throw console.error(e),e};var h=window["webpackJsonp"]=window["webpackJsonp"]||[],o=h.push.bind(h);h.push=n,h=h.slice();for(var k=0;k<h.length;k++)n(h[k]);var b=o;c()})([]);</script><script src=/static/js/chunk-elementUI.0582c755.js></script><script src=/static/js/chunk-libs.99415a5e.js></script><script src=/static/js/app.9d5cb2fe.js></script></body></html> |
Binary file not shown.
Binary file added
BIN
+63.6 KB
pmhub-ui/dist/libs/monaco-editor/vs/base/browser/ui/codicons/codicon/codicon.ttf
Binary file not shown.
12 changes: 12 additions & 0 deletions
12
pmhub-ui/dist/libs/monaco-editor/vs/base/worker/workerMain.js
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
Oops, something went wrong.