@fecp/mobile 1.0.68 → 1.0.70
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/es/mobile.css +10 -6
- package/es/packages/mobile/src/components/layout/layout/Layout.vue.mjs +1 -1
- package/es/packages/mobile/src/components/navigation/navBar/NavBar.vue.mjs +1 -1
- package/es/packages/mobile/src/components/navigation/tabbar/Tabbar.vue.mjs +4 -1
- package/lib/mobile.css +10 -6
- package/lib/packages/mobile/src/components/layout/layout/Layout.vue.js +1 -1
- package/lib/packages/mobile/src/components/navigation/navBar/NavBar.vue.js +1 -1
- package/lib/packages/mobile/src/components/navigation/tabbar/Tabbar.vue.js +4 -1
- package/package.json +1 -1
package/es/mobile.css
CHANGED
|
@@ -120,26 +120,30 @@
|
|
|
120
120
|
:root,:host{--van-tabbar-item-font-size: var(--van-font-size-sm);--van-tabbar-item-text-color: var(--van-text-color);--van-tabbar-item-active-color: var(--van-primary-color);--van-tabbar-item-active-background: var(--van-background-2);--van-tabbar-item-line-height: 1;--van-tabbar-item-icon-size: 22px;--van-tabbar-item-icon-margin-bottom: var(--van-padding-base)}.van-tabbar-item{display:flex;flex:1;flex-direction:column;align-items:center;justify-content:center;color:var(--van-tabbar-item-text-color);font-size:var(--van-tabbar-item-font-size);line-height:var(--van-tabbar-item-line-height);cursor:pointer}.van-tabbar-item__icon{margin-bottom:var(--van-tabbar-item-icon-margin-bottom);font-size:var(--van-tabbar-item-icon-size)}.van-tabbar-item__icon .van-icon{display:block}.van-tabbar-item__icon .van-badge{margin-top:var(--van-padding-base)}.van-tabbar-item__icon img{display:block;height:20px}.van-tabbar-item--active{color:var(--van-tabbar-item-active-color);background-color:var(--van-tabbar-item-active-background)}
|
|
121
121
|
:root,:host{--van-tree-select-font-size: var(--van-font-size-md);--van-tree-select-nav-background: var(--van-background);--van-tree-select-content-background: var(--van-background-2);--van-tree-select-nav-item-padding: 14px var(--van-padding-sm);--van-tree-select-item-height: 48px;--van-tree-select-item-active-color: var(--van-primary-color);--van-tree-select-item-disabled-color: var(--van-gray-5);--van-tree-select-item-selected-size: 16px}.van-tree-select{position:relative;display:flex;font-size:var(--van-tree-select-font-size)}.van-tree-select__nav{flex:1;overflow-y:auto;background:var(--van-tree-select-nav-background);-webkit-overflow-scrolling:touch}.van-tree-select__nav-item{padding:var(--van-tree-select-nav-item-padding)}.van-tree-select__content{flex:2;overflow-y:auto;background:var(--van-tree-select-content-background);-webkit-overflow-scrolling:touch}.van-tree-select__item{position:relative;padding:0 32px 0 var(--van-padding-md);font-weight:var(--van-font-bold);line-height:var(--van-tree-select-item-height);-webkit-user-select:none;user-select:none;cursor:pointer}.van-tree-select__item--active{color:var(--van-tree-select-item-active-color)}.van-tree-select__item:active{background-color:var(--van-active-color)}.van-tree-select__item--disabled{color:var(--van-tree-select-item-disabled-color);cursor:not-allowed}.van-tree-select__item--disabled:active{background-color:transparent}.van-tree-select__selected{position:absolute;top:50%;right:var(--van-padding-md);margin-top:calc(var(--van-padding-xs) * -1);font-size:var(--van-tree-select-item-selected-size)}
|
|
122
122
|
|
|
123
|
-
.fec-layout-container[data-v-
|
|
123
|
+
.fec-layout-container[data-v-6509d63d] {
|
|
124
124
|
display: flex;
|
|
125
125
|
flex-direction: column;
|
|
126
126
|
flex: 1;
|
|
127
127
|
flex-basis: auto;
|
|
128
128
|
box-sizing: border-box;
|
|
129
129
|
min-width: 0;
|
|
130
|
-
height:
|
|
130
|
+
height: 100vh;
|
|
131
131
|
}
|
|
132
|
-
.fec-layout-footer[data-v-
|
|
133
|
-
.fec-layout-header[data-v-
|
|
132
|
+
.fec-layout-footer[data-v-6509d63d],
|
|
133
|
+
.fec-layout-header[data-v-6509d63d] {
|
|
134
134
|
box-sizing: border-box;
|
|
135
135
|
flex-shrink: 0;
|
|
136
136
|
}
|
|
137
|
-
.fec-layout-main[data-v-
|
|
137
|
+
.fec-layout-main[data-v-6509d63d] {
|
|
138
138
|
display: block;
|
|
139
139
|
flex: 1;
|
|
140
140
|
flex-basis: auto;
|
|
141
|
-
padding:
|
|
141
|
+
padding: 12px;
|
|
142
142
|
overflow: auto;
|
|
143
|
+
}
|
|
144
|
+
.fec-layout-header[data-v-6509d63d] .van-nav-bar--fixed,
|
|
145
|
+
.fec-layout-header[data-v-6509d63d] .van-tabbar--fixed {
|
|
146
|
+
position: relative;
|
|
143
147
|
}
|
|
144
148
|
:root {
|
|
145
149
|
--vxe-ui-border-radius: 8px;
|
|
@@ -19,7 +19,7 @@ function _sfc_render(_ctx, _cache) {
|
|
|
19
19
|
])
|
|
20
20
|
]);
|
|
21
21
|
}
|
|
22
|
-
const _Layout = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render], ["__scopeId", "data-v-
|
|
22
|
+
const _Layout = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render], ["__scopeId", "data-v-6509d63d"]]);
|
|
23
23
|
export {
|
|
24
24
|
_Layout as default
|
|
25
25
|
};
|
|
@@ -9,7 +9,7 @@ const _sfc_main = {};
|
|
|
9
9
|
function _sfc_render(_ctx, _cache) {
|
|
10
10
|
const _component_van_nav_bar = NavBar;
|
|
11
11
|
return openBlock(), createBlock(_component_van_nav_bar, mergeProps(_ctx.$attrs, {
|
|
12
|
-
fixed:
|
|
12
|
+
fixed: false,
|
|
13
13
|
"safe-area-inset-top": ""
|
|
14
14
|
}), createSlots({ _: 2 }, [
|
|
15
15
|
renderList(_ctx.$slots, (item, key) => {
|
|
@@ -13,7 +13,10 @@ const _sfc_main = {
|
|
|
13
13
|
setup(__props) {
|
|
14
14
|
return (_ctx, _cache) => {
|
|
15
15
|
const _component_van_tabbar = Tabbar;
|
|
16
|
-
return openBlock(), createBlock(_component_van_tabbar, mergeProps(_ctx.$attrs, {
|
|
16
|
+
return openBlock(), createBlock(_component_van_tabbar, mergeProps(_ctx.$attrs, {
|
|
17
|
+
route: "",
|
|
18
|
+
fixed: false
|
|
19
|
+
}), {
|
|
17
20
|
default: withCtx(() => [
|
|
18
21
|
renderSlot(_ctx.$slots, "default")
|
|
19
22
|
]),
|
package/lib/mobile.css
CHANGED
|
@@ -120,26 +120,30 @@
|
|
|
120
120
|
:root,:host{--van-tabbar-item-font-size: var(--van-font-size-sm);--van-tabbar-item-text-color: var(--van-text-color);--van-tabbar-item-active-color: var(--van-primary-color);--van-tabbar-item-active-background: var(--van-background-2);--van-tabbar-item-line-height: 1;--van-tabbar-item-icon-size: 22px;--van-tabbar-item-icon-margin-bottom: var(--van-padding-base)}.van-tabbar-item{display:flex;flex:1;flex-direction:column;align-items:center;justify-content:center;color:var(--van-tabbar-item-text-color);font-size:var(--van-tabbar-item-font-size);line-height:var(--van-tabbar-item-line-height);cursor:pointer}.van-tabbar-item__icon{margin-bottom:var(--van-tabbar-item-icon-margin-bottom);font-size:var(--van-tabbar-item-icon-size)}.van-tabbar-item__icon .van-icon{display:block}.van-tabbar-item__icon .van-badge{margin-top:var(--van-padding-base)}.van-tabbar-item__icon img{display:block;height:20px}.van-tabbar-item--active{color:var(--van-tabbar-item-active-color);background-color:var(--van-tabbar-item-active-background)}
|
|
121
121
|
:root,:host{--van-tree-select-font-size: var(--van-font-size-md);--van-tree-select-nav-background: var(--van-background);--van-tree-select-content-background: var(--van-background-2);--van-tree-select-nav-item-padding: 14px var(--van-padding-sm);--van-tree-select-item-height: 48px;--van-tree-select-item-active-color: var(--van-primary-color);--van-tree-select-item-disabled-color: var(--van-gray-5);--van-tree-select-item-selected-size: 16px}.van-tree-select{position:relative;display:flex;font-size:var(--van-tree-select-font-size)}.van-tree-select__nav{flex:1;overflow-y:auto;background:var(--van-tree-select-nav-background);-webkit-overflow-scrolling:touch}.van-tree-select__nav-item{padding:var(--van-tree-select-nav-item-padding)}.van-tree-select__content{flex:2;overflow-y:auto;background:var(--van-tree-select-content-background);-webkit-overflow-scrolling:touch}.van-tree-select__item{position:relative;padding:0 32px 0 var(--van-padding-md);font-weight:var(--van-font-bold);line-height:var(--van-tree-select-item-height);-webkit-user-select:none;user-select:none;cursor:pointer}.van-tree-select__item--active{color:var(--van-tree-select-item-active-color)}.van-tree-select__item:active{background-color:var(--van-active-color)}.van-tree-select__item--disabled{color:var(--van-tree-select-item-disabled-color);cursor:not-allowed}.van-tree-select__item--disabled:active{background-color:transparent}.van-tree-select__selected{position:absolute;top:50%;right:var(--van-padding-md);margin-top:calc(var(--van-padding-xs) * -1);font-size:var(--van-tree-select-item-selected-size)}
|
|
122
122
|
|
|
123
|
-
.fec-layout-container[data-v-
|
|
123
|
+
.fec-layout-container[data-v-6509d63d] {
|
|
124
124
|
display: flex;
|
|
125
125
|
flex-direction: column;
|
|
126
126
|
flex: 1;
|
|
127
127
|
flex-basis: auto;
|
|
128
128
|
box-sizing: border-box;
|
|
129
129
|
min-width: 0;
|
|
130
|
-
height:
|
|
130
|
+
height: 100vh;
|
|
131
131
|
}
|
|
132
|
-
.fec-layout-footer[data-v-
|
|
133
|
-
.fec-layout-header[data-v-
|
|
132
|
+
.fec-layout-footer[data-v-6509d63d],
|
|
133
|
+
.fec-layout-header[data-v-6509d63d] {
|
|
134
134
|
box-sizing: border-box;
|
|
135
135
|
flex-shrink: 0;
|
|
136
136
|
}
|
|
137
|
-
.fec-layout-main[data-v-
|
|
137
|
+
.fec-layout-main[data-v-6509d63d] {
|
|
138
138
|
display: block;
|
|
139
139
|
flex: 1;
|
|
140
140
|
flex-basis: auto;
|
|
141
|
-
padding:
|
|
141
|
+
padding: 12px;
|
|
142
142
|
overflow: auto;
|
|
143
|
+
}
|
|
144
|
+
.fec-layout-header[data-v-6509d63d] .van-nav-bar--fixed,
|
|
145
|
+
.fec-layout-header[data-v-6509d63d] .van-tabbar--fixed {
|
|
146
|
+
position: relative;
|
|
143
147
|
}
|
|
144
148
|
:root {
|
|
145
149
|
--vxe-ui-border-radius: 8px;
|
|
@@ -21,5 +21,5 @@ function _sfc_render(_ctx, _cache) {
|
|
|
21
21
|
])
|
|
22
22
|
]);
|
|
23
23
|
}
|
|
24
|
-
const _Layout = /* @__PURE__ */ _pluginVue_exportHelper.default(_sfc_main, [["render", _sfc_render], ["__scopeId", "data-v-
|
|
24
|
+
const _Layout = /* @__PURE__ */ _pluginVue_exportHelper.default(_sfc_main, [["render", _sfc_render], ["__scopeId", "data-v-6509d63d"]]);
|
|
25
25
|
exports.default = _Layout;
|
|
@@ -11,7 +11,7 @@ const _sfc_main = {};
|
|
|
11
11
|
function _sfc_render(_ctx, _cache) {
|
|
12
12
|
const _component_van_nav_bar = index.NavBar;
|
|
13
13
|
return vue.openBlock(), vue.createBlock(_component_van_nav_bar, vue.mergeProps(_ctx.$attrs, {
|
|
14
|
-
fixed:
|
|
14
|
+
fixed: false,
|
|
15
15
|
"safe-area-inset-top": ""
|
|
16
16
|
}), vue.createSlots({ _: 2 }, [
|
|
17
17
|
vue.renderList(_ctx.$slots, (item, key) => {
|
|
@@ -15,7 +15,10 @@ const _sfc_main = {
|
|
|
15
15
|
setup(__props) {
|
|
16
16
|
return (_ctx, _cache) => {
|
|
17
17
|
const _component_van_tabbar = index.Tabbar;
|
|
18
|
-
return vue.openBlock(), vue.createBlock(_component_van_tabbar, vue.mergeProps(_ctx.$attrs, {
|
|
18
|
+
return vue.openBlock(), vue.createBlock(_component_van_tabbar, vue.mergeProps(_ctx.$attrs, {
|
|
19
|
+
route: "",
|
|
20
|
+
fixed: false
|
|
21
|
+
}), {
|
|
19
22
|
default: vue.withCtx(() => [
|
|
20
23
|
vue.renderSlot(_ctx.$slots, "default")
|
|
21
24
|
]),
|