rk-web-core 0.12.3 → 0.12.7
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/1.0c5f48fce112dfb2051e.js +1 -0
- package/package.json +2 -2
- package/rk-web-core.css +47 -0
- package/rk-web-core.js +31 -26
- package/1.8b4c20fabbe12cbca93e.js +0 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
(window.webpackJsonprk_web_core=window.webpackJsonprk_web_core||[]).push([[1],{420:function(n,t,e){var r={"./App.vue":423,"./core/components/loading/src/loading.vue":108,"./core/layouts/AppSetting.vue":172};function u(n){var t=o(n);return e(t)}function o(n){if(!e.o(r,n)){var t=new Error("Cannot find module '"+n+"'");throw t.code="MODULE_NOT_FOUND",t}return r[n]}u.keys=function(){return Object.keys(r)},u.resolve=o,n.exports=u,u.id=420},421:function(n,t,e){"use strict";e.r(t);var r=e(422),u=e.n(r);for(var o in r)["default"].indexOf(o)<0&&function(n){e.d(t,n,(function(){return r[n]}))}(o);t.default=u.a},422:function(n,t,e){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default={name:"app",data:function(){return{}}}},423:function(n,t,e){"use strict";e.r(t);var r=e(424),u=e(421);for(var o in u)["default"].indexOf(o)<0&&function(n){e.d(t,n,(function(){return u[n]}))}(o);var i=e(72),a=Object(i.a)(u.default,r.a,r.b,!1,null,null,null);t.default=a.exports},424:function(n,t,e){"use strict";e.d(t,"a",(function(){return r})),e.d(t,"b",(function(){return u}));var r=function(){var n=this.$createElement;return(this._self._c||n)("div",{attrs:{id:"app"}},[this._v("1111")])},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.12.
|
|
4
|
+
"version": "0.12.7",
|
|
5
5
|
"author": "",
|
|
6
6
|
"main": "rk-web-core.js",
|
|
7
7
|
"scripts": {
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"nprogress": "^0.2.0",
|
|
17
17
|
"resize-observer-polyfill": "^1.5.1",
|
|
18
18
|
"store": "^2.0.12",
|
|
19
|
-
"rk-web-map": "0.3.
|
|
19
|
+
"rk-web-map": "^0.3.111",
|
|
20
20
|
"jsencrypt": "^3.0.1",
|
|
21
21
|
"md5": "^2.3.0"
|
|
22
22
|
},
|
package/rk-web-core.css
CHANGED
|
@@ -1948,3 +1948,50 @@ html {
|
|
|
1948
1948
|
justify-content: center;
|
|
1949
1949
|
}
|
|
1950
1950
|
|
|
1951
|
+
.rk-web-core-nav {
|
|
1952
|
+
display: flex;
|
|
1953
|
+
justify-content: flex-start;
|
|
1954
|
+
align-items: center;
|
|
1955
|
+
gap: 0 10px;
|
|
1956
|
+
}
|
|
1957
|
+
.rk-web-core-nav-item {
|
|
1958
|
+
font-size: 16px;
|
|
1959
|
+
cursor: pointer;
|
|
1960
|
+
user-select: none;
|
|
1961
|
+
display: flex;
|
|
1962
|
+
justify-content: center;
|
|
1963
|
+
align-items: center;
|
|
1964
|
+
height: 50px;
|
|
1965
|
+
position: relative;
|
|
1966
|
+
min-width: 90px;
|
|
1967
|
+
}
|
|
1968
|
+
.rk-web-core-nav-item-icon {
|
|
1969
|
+
width: 100%;
|
|
1970
|
+
height: 100%;
|
|
1971
|
+
}
|
|
1972
|
+
.rk-web-core-nav-item span {
|
|
1973
|
+
display: inline-flex;
|
|
1974
|
+
justify-content: center;
|
|
1975
|
+
align-items: center;
|
|
1976
|
+
white-space: nowrap;
|
|
1977
|
+
padding: 0 10px;
|
|
1978
|
+
height: 50px;
|
|
1979
|
+
position: absolute;
|
|
1980
|
+
left: 0;
|
|
1981
|
+
right: 0;
|
|
1982
|
+
bottom: 0;
|
|
1983
|
+
top: 0;
|
|
1984
|
+
font-size: 14px;
|
|
1985
|
+
}
|
|
1986
|
+
.rk-web-core-nav-menu .ant-dropdown-menu-item,
|
|
1987
|
+
.rk-web-core-nav-menu .ant-dropdown-menu-submenu-title {
|
|
1988
|
+
line-height: 32px;
|
|
1989
|
+
text-align: center;
|
|
1990
|
+
font-size: 14px;
|
|
1991
|
+
}
|
|
1992
|
+
.rk-web-core-nav-menu .ant-dropdown-menu-item:hover,
|
|
1993
|
+
.rk-web-core-nav-menu .ant-dropdown-menu-submenu-title:hover {
|
|
1994
|
+
background: var(--antd-wave-shadow-color-o);
|
|
1995
|
+
color: var(--antd-wave-shadow-color);
|
|
1996
|
+
}
|
|
1997
|
+
|