rk-web-core 0.11.5 → 0.11.8

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.
@@ -0,0 +1 @@
1
+ (window.webpackJsonprk_web_core=window.webpackJsonprk_web_core||[]).push([[1],{390:function(n,e,t){var r={"./App.vue":393,"./core/components/loading/src/loading.vue":99};function u(n){var e=o(n);return t(e)}function o(n){if(!t.o(r,n)){var e=new Error("Cannot find module '"+n+"'");throw e.code="MODULE_NOT_FOUND",e}return r[n]}u.keys=function(){return Object.keys(r)},u.resolve=o,n.exports=u,u.id=390},391:function(n,e,t){"use strict";t.r(e);var r=t(392),u=t.n(r);for(var o in r)["default"].indexOf(o)<0&&function(n){t.d(e,n,(function(){return r[n]}))}(o);e.default=u.a},392:function(n,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"app",data:function(){return{}}}},393:function(n,e,t){"use strict";t.r(e);var r=t(394),u=t(391);for(var o in u)["default"].indexOf(o)<0&&function(n){t.d(e,n,(function(){return u[n]}))}(o);var i=t(145),a=Object(i.a)(u.default,r.a,r.b,!1,null,null,null);e.default=a.exports},394:function(n,e,t){"use strict";t.d(e,"a",(function(){return r})),t.d(e,"b",(function(){return u}));var r=function(){var n=this.$createElement;return(this._self._c||n)("div",{attrs:{id:"app"}})},u=[]}}]);
package/package.json CHANGED
@@ -1,13 +1,12 @@
1
1
  {
2
2
  "name": "rk-web-core",
3
3
  "description": "iep core utils",
4
- "version": "0.11.5",
4
+ "version": "0.11.8",
5
5
  "author": "",
6
6
  "main": "rk-web-core.js",
7
7
  "scripts": {
8
8
  "dev": "cross-env NODE_ENV=development webpack-dev-server --open --hot",
9
- "build": "cross-env NODE_ENV=production webpack --progress --hide-modules",
10
- "postinstall": "node scripts/postinstall.js || echo \\\"ignore\\\""
9
+ "build": "cross-env NODE_ENV=production webpack --progress --hide-modules"
11
10
  },
12
11
  "dependencies": {
13
12
  "@micro-zoe/micro-app": "^0.8.5",
@@ -17,7 +16,7 @@
17
16
  "nprogress": "^0.2.0",
18
17
  "resize-observer-polyfill": "^1.5.1",
19
18
  "store": "^2.0.12",
20
- "rk-web-map": "^0.3.83"
19
+ "rk-web-map": "^0.3.85"
21
20
  },
22
21
  "devDependencies": {
23
22
  "vue": "^2.6.14",
package/rk-web-core.css CHANGED
@@ -1376,3 +1376,106 @@ html {
1376
1376
  grid-template-columns: auto;
1377
1377
  }
1378
1378
 
1379
+ .el-loading-parent--relative {
1380
+ position: relative !important;
1381
+ }
1382
+ .el-loading-parent--hidden {
1383
+ overflow: hidden !important;
1384
+ }
1385
+ .el-loading-mask {
1386
+ position: absolute;
1387
+ z-index: 2000;
1388
+ background-color: transparent !important;
1389
+ margin: 0;
1390
+ top: 0;
1391
+ right: 0;
1392
+ bottom: 0;
1393
+ left: 0;
1394
+ -webkit-transition: opacity 0.3s;
1395
+ transition: opacity 0.3s;
1396
+ }
1397
+ .el-loading-mask.is-fullscreen {
1398
+ position: fixed;
1399
+ }
1400
+ .el-loading-mask.is-fullscreen .el-loading-spinner {
1401
+ margin-top: -25px;
1402
+ }
1403
+ .el-loading-mask.is-fullscreen .el-loading-spinner .circular {
1404
+ height: 50px;
1405
+ width: 50px;
1406
+ }
1407
+ .el-loading-spinner {
1408
+ top: 50%;
1409
+ margin-top: -21px;
1410
+ width: 100%;
1411
+ text-align: center;
1412
+ position: absolute;
1413
+ }
1414
+ .el-loading-spinner .el-loading-text {
1415
+ color: var(--antd-wave-shadow-color);
1416
+ margin: 3px 0;
1417
+ font-size: 14px;
1418
+ }
1419
+ .el-loading-spinner .circular {
1420
+ height: 42px;
1421
+ width: 42px;
1422
+ -webkit-animation: loading-rotate 2s linear infinite;
1423
+ animation: loading-rotate 2s linear infinite;
1424
+ }
1425
+ .el-loading-spinner .path {
1426
+ -webkit-animation: loading-dash 1.5s ease-in-out infinite;
1427
+ animation: loading-dash 1.5s ease-in-out infinite;
1428
+ stroke-dasharray: 90, 150;
1429
+ stroke-dashoffset: 0;
1430
+ stroke-width: 2;
1431
+ stroke: var(--antd-wave-shadow-color);
1432
+ stroke-linecap: round;
1433
+ }
1434
+ .el-loading-spinner i {
1435
+ color: var(--antd-wave-shadow-color);
1436
+ }
1437
+ .el-loading-fade-enter,
1438
+ .el-loading-fade-leave-active {
1439
+ opacity: 0;
1440
+ }
1441
+ @-webkit-keyframes loading-rotate {
1442
+ 100% {
1443
+ -webkit-transform: rotate(360deg);
1444
+ transform: rotate(360deg);
1445
+ }
1446
+ }
1447
+ @keyframes loading-rotate {
1448
+ 100% {
1449
+ -webkit-transform: rotate(360deg);
1450
+ transform: rotate(360deg);
1451
+ }
1452
+ }
1453
+ @-webkit-keyframes loading-dash {
1454
+ 0% {
1455
+ stroke-dasharray: 1, 200;
1456
+ stroke-dashoffset: 0;
1457
+ }
1458
+ 50% {
1459
+ stroke-dasharray: 90, 150;
1460
+ stroke-dashoffset: -40px;
1461
+ }
1462
+ 100% {
1463
+ stroke-dasharray: 90, 150;
1464
+ stroke-dashoffset: -120px;
1465
+ }
1466
+ }
1467
+ @keyframes loading-dash {
1468
+ 0% {
1469
+ stroke-dasharray: 1, 200;
1470
+ stroke-dashoffset: 0;
1471
+ }
1472
+ 50% {
1473
+ stroke-dasharray: 90, 150;
1474
+ stroke-dashoffset: -40px;
1475
+ }
1476
+ 100% {
1477
+ stroke-dasharray: 90, 150;
1478
+ stroke-dashoffset: -120px;
1479
+ }
1480
+ }
1481
+