web-component-gallery 0.1.30 → 0.1.32
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/dist/index.umd.js +1 -1
- package/dist/layout.umd.js +4913 -0
- package/dist/weather.umd.js +1 -1
- package/lib/layout/Header.jsx +50 -0
- package/lib/layout/Header.less +0 -0
- package/lib/layout/Layout.jsx +62 -0
- package/lib/layout/components/MultiTab/APIEnums.js +17 -0
- package/lib/layout/components/MultiTab/MultiTab.jsx +182 -0
- package/lib/layout/components/MultiTab/RouteAPI.js +69 -0
- package/lib/layout/components/MultiTab/RouteContent.jsx +89 -0
- package/lib/layout/components/MultiTab/RouteKeepAlive.js +183 -0
- package/lib/layout/components/MultiTab/css.js +2 -0
- package/lib/layout/components/MultiTab/events.js +2 -0
- package/lib/layout/components/MultiTab/index.js +15 -0
- package/lib/layout/components/MultiTab/index.less +63 -0
- package/lib/layout/components/RightContent/AvatarDropdown.vue +0 -0
- package/lib/layout/components/RightContent/index.jsx +22 -0
- package/lib/layout/components/RouteMenu/BaseMenu.jsx +181 -0
- package/lib/layout/components/RouteMenu/index.js +2 -0
- package/lib/layout/components/SiderMenu/SiderMenu.jsx +83 -0
- package/lib/layout/components/SiderMenu/css.js +2 -0
- package/lib/layout/components/SiderMenu/index.js +2 -0
- package/lib/layout/components/SiderMenu/index.jsx +34 -0
- package/lib/layout/components/SiderMenu/index.less +109 -0
- package/lib/layout/components/index.js +15 -0
- package/lib/layout/style/css.js +2 -0
- package/lib/layout/style/index.css +1 -0
- package/lib/layout/style/index.js +2 -0
- package/lib/layout/style/index.less +7 -0
- package/lib/layout/utils/util.js +65 -0
- package/lib/weather/index.vue +1 -1
- package/package.json +6 -2
- package/plugins/lib/layout/Header.jsx +50 -0
- package/plugins/lib/layout/Header.less +0 -0
- package/plugins/lib/layout/Layout.jsx +62 -0
- package/plugins/lib/layout/components/MultiTab/APIEnums.js +17 -0
- package/plugins/lib/layout/components/MultiTab/MultiTab.jsx +182 -0
- package/plugins/lib/layout/components/MultiTab/RouteAPI.js +69 -0
- package/plugins/lib/layout/components/MultiTab/RouteContent.jsx +89 -0
- package/plugins/lib/layout/components/MultiTab/RouteKeepAlive.js +183 -0
- package/plugins/lib/layout/components/MultiTab/events.js +2 -0
- package/plugins/lib/layout/components/MultiTab/index.js +15 -0
- package/plugins/lib/layout/components/MultiTab/index.less +63 -0
- package/plugins/lib/layout/components/RightContent/AvatarDropdown.vue +0 -0
- package/plugins/lib/layout/components/RightContent/index.jsx +22 -0
- package/plugins/lib/layout/components/RouteMenu/BaseMenu.jsx +181 -0
- package/plugins/lib/layout/components/RouteMenu/index.js +2 -0
- package/plugins/lib/layout/components/SiderMenu/SiderMenu.jsx +83 -0
- package/plugins/lib/layout/components/SiderMenu/index.jsx +34 -0
- package/plugins/lib/layout/components/SiderMenu/index.less +109 -0
- package/plugins/lib/layout/components/index.js +15 -0
- package/plugins/lib/layout/style/index.less +7 -0
- package/plugins/lib/layout/utils/util.js +65 -0
- package/plugins/lib/weather/index.vue +1 -1
- package/plugins/utils/Websocket.js +1 -1
package/dist/index.umd.js
CHANGED
|
@@ -8197,7 +8197,7 @@ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpac
|
|
|
8197
8197
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
8198
8198
|
|
|
8199
8199
|
"use strict";
|
|
8200
|
-
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ render: function() { return /* binding */ render; },\n/* harmony export */ staticRenderFns: function() { return /* binding */ staticRenderFns; }\n/* harmony export */ });\nvar render = function render() {\n var _vm = this,\n _c = _vm._self._c;\n return _c(\"div\", {\n staticClass: \"weather\"\n }, [_vm._t(\"weatherIcon\"), _vm._v(\" \"), _c(\"span\", {\n staticClass: \"weather__Info\"\n }, [_vm._v(_vm._s(_vm.weatherInfo.weather))]), _vm._v(\" \"), _c(\"span\", {\n staticClass: \"weather__Temp\"\n }, [_vm._v(\"温度\" + _vm._s(_vm.weatherInfo.temperature) + \"°\")])], 2);\n};\nvar staticRenderFns = [];\nrender._withStripped = true;\n\n\n//# sourceURL=webpack://mui/./plugins/lib/weather/index.vue?./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/lib/loaders/templateLoader.js??ruleSet%5B1%5D.rules%5B2%5D!./node_modules/vue-loader/lib/index.js??vue-loader-options");
|
|
8200
|
+
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ render: function() { return /* binding */ render; },\n/* harmony export */ staticRenderFns: function() { return /* binding */ staticRenderFns; }\n/* harmony export */ });\nvar render = function render() {\n var _vm = this,\n _c = _vm._self._c;\n return _c(\"div\", {\n staticClass: \"weather\"\n }, [_vm._t(\"weatherIcon\", null, {\n weatherInfo: _vm.weatherInfo\n }), _vm._v(\" \"), _c(\"span\", {\n staticClass: \"weather__Info\"\n }, [_vm._v(_vm._s(_vm.weatherInfo.weather))]), _vm._v(\" \"), _c(\"span\", {\n staticClass: \"weather__Temp\"\n }, [_vm._v(\"温度\" + _vm._s(_vm.weatherInfo.temperature) + \"°\")])], 2);\n};\nvar staticRenderFns = [];\nrender._withStripped = true;\n\n\n//# sourceURL=webpack://mui/./plugins/lib/weather/index.vue?./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/lib/loaders/templateLoader.js??ruleSet%5B1%5D.rules%5B2%5D!./node_modules/vue-loader/lib/index.js??vue-loader-options");
|
|
8201
8201
|
|
|
8202
8202
|
/***/ }),
|
|
8203
8203
|
|