@fecp/mobile 1.0.63 → 1.0.65
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/packages/mobile/src/components/form/formItem/FormItem.vue.mjs +2 -0
- package/es/packages/mobile/src/components/navigation/tabbar/Tabbar.vue.mjs +17 -18
- package/es/packages/mobile/src/components/navigation/tabbar/index.mjs +2 -2
- package/es/packages/mobile/src/components/navigation/tabbarItem/TabbarItem.vue.mjs +22 -18
- package/es/packages/mobile/src/components/navigation/tabbarItem/index.mjs +2 -2
- package/lib/packages/mobile/src/components/form/formItem/FormItem.vue.js +2 -0
- package/lib/packages/mobile/src/components/navigation/tabbar/Tabbar.vue.js +16 -17
- package/lib/packages/mobile/src/components/navigation/tabbarItem/TabbarItem.vue.js +21 -17
- package/package.json +1 -1
|
@@ -32,6 +32,8 @@ const _sfc_main = {
|
|
|
32
32
|
return defineAsyncComponent(() => import("../fieldCalendarPicker/index.mjs"));
|
|
33
33
|
case "date":
|
|
34
34
|
return defineAsyncComponent(() => import("../fieldDatePicker/index.mjs"));
|
|
35
|
+
case "dateTime":
|
|
36
|
+
return defineAsyncComponent(() => import("../fieldDateTimePicker/index.mjs"));
|
|
35
37
|
case "time":
|
|
36
38
|
return defineAsyncComponent(() => import("../fieldTimePicker/index.mjs"));
|
|
37
39
|
case "radio":
|
|
@@ -1,23 +1,22 @@
|
|
|
1
1
|
/* empty css */
|
|
2
2
|
/* empty css */
|
|
3
|
-
import { createBlock, openBlock,
|
|
4
|
-
import _export_sfc from "../../../../../../_virtual/_plugin-vue_export-helper.mjs";
|
|
3
|
+
import { createBlock, openBlock, mergeProps } from "vue";
|
|
5
4
|
import { Tabbar } from "../../../../../../node_modules/.pnpm/vant@4.9.17_vue@3.5.13_typescript@5.7.3_/node_modules/vant/es/tabbar/index.mjs";
|
|
6
|
-
const _sfc_main = {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
}
|
|
20
|
-
|
|
5
|
+
const _sfc_main = {
|
|
6
|
+
__name: "Tabbar",
|
|
7
|
+
props: {
|
|
8
|
+
tabbarOptions: {
|
|
9
|
+
type: Array,
|
|
10
|
+
default: []
|
|
11
|
+
}
|
|
12
|
+
},
|
|
13
|
+
setup(__props) {
|
|
14
|
+
return (_ctx, _cache) => {
|
|
15
|
+
const _component_van_tabbar = Tabbar;
|
|
16
|
+
return openBlock(), createBlock(_component_van_tabbar, mergeProps(_ctx.$attrs, { route: "" }), null, 16);
|
|
17
|
+
};
|
|
18
|
+
}
|
|
19
|
+
};
|
|
21
20
|
export {
|
|
22
|
-
|
|
21
|
+
_sfc_main as default
|
|
23
22
|
};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import
|
|
1
|
+
import _sfc_main from "./Tabbar.vue.mjs";
|
|
2
2
|
import install from "../../../utils/install.mjs";
|
|
3
|
-
const MobileTabbar = install.withInstall("MobileTabbar",
|
|
3
|
+
const MobileTabbar = install.withInstall("MobileTabbar", _sfc_main);
|
|
4
4
|
export {
|
|
5
5
|
MobileTabbar,
|
|
6
6
|
MobileTabbar as default
|
|
@@ -3,24 +3,28 @@
|
|
|
3
3
|
/* empty css */
|
|
4
4
|
/* empty css */
|
|
5
5
|
/* empty css */
|
|
6
|
-
import { createBlock, openBlock, normalizeProps, guardReactiveProps,
|
|
7
|
-
import _export_sfc from "../../../../../../_virtual/_plugin-vue_export-helper.mjs";
|
|
6
|
+
import { createBlock, openBlock, normalizeProps, guardReactiveProps, withCtx, createTextVNode, toDisplayString } from "vue";
|
|
8
7
|
import { TabbarItem } from "../../../../../../node_modules/.pnpm/vant@4.9.17_vue@3.5.13_typescript@5.7.3_/node_modules/vant/es/tabbar-item/index.mjs";
|
|
9
|
-
const _sfc_main = {
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
8
|
+
const _sfc_main = {
|
|
9
|
+
__name: "TabbarItem",
|
|
10
|
+
props: {
|
|
11
|
+
title: {
|
|
12
|
+
type: String,
|
|
13
|
+
default: "标签"
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
setup(__props) {
|
|
17
|
+
return (_ctx, _cache) => {
|
|
18
|
+
const _component_van_tabbar_item = TabbarItem;
|
|
19
|
+
return openBlock(), createBlock(_component_van_tabbar_item, normalizeProps(guardReactiveProps(_ctx.$attrs)), {
|
|
20
|
+
default: withCtx(() => [
|
|
21
|
+
createTextVNode(toDisplayString(__props.title), 1)
|
|
22
|
+
]),
|
|
23
|
+
_: 1
|
|
24
|
+
}, 16);
|
|
25
|
+
};
|
|
26
|
+
}
|
|
27
|
+
};
|
|
24
28
|
export {
|
|
25
|
-
|
|
29
|
+
_sfc_main as default
|
|
26
30
|
};
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import
|
|
1
|
+
import _sfc_main from "./TabbarItem.vue.mjs";
|
|
2
2
|
import install from "../../../utils/install.mjs";
|
|
3
3
|
const MobileTabbarItem = install.withInstall(
|
|
4
4
|
"MobileTabbarItem",
|
|
5
|
-
|
|
5
|
+
_sfc_main
|
|
6
6
|
);
|
|
7
7
|
export {
|
|
8
8
|
MobileTabbarItem,
|
|
@@ -34,6 +34,8 @@ const _sfc_main = {
|
|
|
34
34
|
return vue.defineAsyncComponent(() => Promise.resolve().then(() => require("../fieldCalendarPicker/index.js")));
|
|
35
35
|
case "date":
|
|
36
36
|
return vue.defineAsyncComponent(() => Promise.resolve().then(() => require("../fieldDatePicker/index.js")));
|
|
37
|
+
case "dateTime":
|
|
38
|
+
return vue.defineAsyncComponent(() => Promise.resolve().then(() => require("../fieldDateTimePicker/index.js")));
|
|
37
39
|
case "time":
|
|
38
40
|
return vue.defineAsyncComponent(() => Promise.resolve().then(() => require("../fieldTimePicker/index.js")));
|
|
39
41
|
case "radio":
|
|
@@ -3,21 +3,20 @@ Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toString
|
|
|
3
3
|
;/* empty css */
|
|
4
4
|
;/* empty css */
|
|
5
5
|
const vue = require("vue");
|
|
6
|
-
const _pluginVue_exportHelper = require("../../../../../../_virtual/_plugin-vue_export-helper.js");
|
|
7
6
|
const index = require("../../../../../../node_modules/.pnpm/vant@4.9.17_vue@3.5.13_typescript@5.7.3_/node_modules/vant/es/tabbar/index.js");
|
|
8
|
-
const _sfc_main = {
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
exports.default =
|
|
7
|
+
const _sfc_main = {
|
|
8
|
+
__name: "Tabbar",
|
|
9
|
+
props: {
|
|
10
|
+
tabbarOptions: {
|
|
11
|
+
type: Array,
|
|
12
|
+
default: []
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
setup(__props) {
|
|
16
|
+
return (_ctx, _cache) => {
|
|
17
|
+
const _component_van_tabbar = index.Tabbar;
|
|
18
|
+
return vue.openBlock(), vue.createBlock(_component_van_tabbar, vue.mergeProps(_ctx.$attrs, { route: "" }), null, 16);
|
|
19
|
+
};
|
|
20
|
+
}
|
|
21
|
+
};
|
|
22
|
+
exports.default = _sfc_main;
|
|
@@ -6,21 +6,25 @@ Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toString
|
|
|
6
6
|
;/* empty css */
|
|
7
7
|
;/* empty css */
|
|
8
8
|
const vue = require("vue");
|
|
9
|
-
const _pluginVue_exportHelper = require("../../../../../../_virtual/_plugin-vue_export-helper.js");
|
|
10
9
|
const index = require("../../../../../../node_modules/.pnpm/vant@4.9.17_vue@3.5.13_typescript@5.7.3_/node_modules/vant/es/tabbar-item/index.js");
|
|
11
|
-
const _sfc_main = {
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
10
|
+
const _sfc_main = {
|
|
11
|
+
__name: "TabbarItem",
|
|
12
|
+
props: {
|
|
13
|
+
title: {
|
|
14
|
+
type: String,
|
|
15
|
+
default: "标签"
|
|
16
|
+
}
|
|
17
|
+
},
|
|
18
|
+
setup(__props) {
|
|
19
|
+
return (_ctx, _cache) => {
|
|
20
|
+
const _component_van_tabbar_item = index.TabbarItem;
|
|
21
|
+
return vue.openBlock(), vue.createBlock(_component_van_tabbar_item, vue.normalizeProps(vue.guardReactiveProps(_ctx.$attrs)), {
|
|
22
|
+
default: vue.withCtx(() => [
|
|
23
|
+
vue.createTextVNode(vue.toDisplayString(__props.title), 1)
|
|
24
|
+
]),
|
|
25
|
+
_: 1
|
|
26
|
+
}, 16);
|
|
27
|
+
};
|
|
28
|
+
}
|
|
29
|
+
};
|
|
30
|
+
exports.default = _sfc_main;
|