rk-web-core 0.11.6 → 0.11.9

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,7 +1,7 @@
1
1
  {
2
2
  "name": "rk-web-core",
3
3
  "description": "iep core utils",
4
- "version": "0.11.6",
4
+ "version": "0.11.9",
5
5
  "author": "",
6
6
  "main": "rk-web-core.js",
7
7
  "scripts": {
package/rk-web-core.css CHANGED
@@ -717,6 +717,9 @@ html {
717
717
  .rk-web-core-slider-inner-footer span:active svg {
718
718
  fill: var(--antd-wave-shadow-color);
719
719
  }
720
+ .rk-web-core-slider .ant-menu-item:first-child {
721
+ margin-top: 0;
722
+ }
720
723
  .rk-web-core-slider .ant-menu-item .iconfont + span,
721
724
  .rk-web-core-slider .ant-menu-submenu-title .iconfont + span {
722
725
  opacity: 1;
@@ -1376,3 +1379,106 @@ html {
1376
1379
  grid-template-columns: auto;
1377
1380
  }
1378
1381
 
1382
+ .el-loading-parent--relative {
1383
+ position: relative !important;
1384
+ }
1385
+ .el-loading-parent--hidden {
1386
+ overflow: hidden !important;
1387
+ }
1388
+ .el-loading-mask {
1389
+ position: absolute;
1390
+ z-index: 2000;
1391
+ background-color: rgba(0, 0, 0, 0.2) !important;
1392
+ margin: 0;
1393
+ top: 0;
1394
+ right: 0;
1395
+ bottom: 0;
1396
+ left: 0;
1397
+ -webkit-transition: opacity 0.3s;
1398
+ transition: opacity 0.3s;
1399
+ }
1400
+ .el-loading-mask.is-fullscreen {
1401
+ position: fixed;
1402
+ }
1403
+ .el-loading-mask.is-fullscreen .el-loading-spinner {
1404
+ margin-top: -25px;
1405
+ }
1406
+ .el-loading-mask.is-fullscreen .el-loading-spinner .circular {
1407
+ height: 50px;
1408
+ width: 50px;
1409
+ }
1410
+ .el-loading-spinner {
1411
+ top: 50%;
1412
+ margin-top: -21px;
1413
+ width: 100%;
1414
+ text-align: center;
1415
+ position: absolute;
1416
+ }
1417
+ .el-loading-spinner .el-loading-text {
1418
+ color: var(--antd-wave-shadow-color);
1419
+ margin: 3px 0;
1420
+ font-size: 14px;
1421
+ }
1422
+ .el-loading-spinner .circular {
1423
+ height: 42px;
1424
+ width: 42px;
1425
+ -webkit-animation: loading-rotate 2s linear infinite;
1426
+ animation: loading-rotate 2s linear infinite;
1427
+ }
1428
+ .el-loading-spinner .path {
1429
+ -webkit-animation: loading-dash 1.5s ease-in-out infinite;
1430
+ animation: loading-dash 1.5s ease-in-out infinite;
1431
+ stroke-dasharray: 90, 150;
1432
+ stroke-dashoffset: 0;
1433
+ stroke-width: 2;
1434
+ stroke: var(--antd-wave-shadow-color);
1435
+ stroke-linecap: round;
1436
+ }
1437
+ .el-loading-spinner i {
1438
+ color: var(--antd-wave-shadow-color);
1439
+ }
1440
+ .el-loading-fade-enter,
1441
+ .el-loading-fade-leave-active {
1442
+ opacity: 0;
1443
+ }
1444
+ @-webkit-keyframes loading-rotate {
1445
+ 100% {
1446
+ -webkit-transform: rotate(360deg);
1447
+ transform: rotate(360deg);
1448
+ }
1449
+ }
1450
+ @keyframes loading-rotate {
1451
+ 100% {
1452
+ -webkit-transform: rotate(360deg);
1453
+ transform: rotate(360deg);
1454
+ }
1455
+ }
1456
+ @-webkit-keyframes loading-dash {
1457
+ 0% {
1458
+ stroke-dasharray: 1, 200;
1459
+ stroke-dashoffset: 0;
1460
+ }
1461
+ 50% {
1462
+ stroke-dasharray: 90, 150;
1463
+ stroke-dashoffset: -40px;
1464
+ }
1465
+ 100% {
1466
+ stroke-dasharray: 90, 150;
1467
+ stroke-dashoffset: -120px;
1468
+ }
1469
+ }
1470
+ @keyframes loading-dash {
1471
+ 0% {
1472
+ stroke-dasharray: 1, 200;
1473
+ stroke-dashoffset: 0;
1474
+ }
1475
+ 50% {
1476
+ stroke-dasharray: 90, 150;
1477
+ stroke-dashoffset: -40px;
1478
+ }
1479
+ 100% {
1480
+ stroke-dasharray: 90, 150;
1481
+ stroke-dashoffset: -120px;
1482
+ }
1483
+ }
1484
+