@fecp/designer 5.5.110 → 5.5.112

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.
Files changed (43) hide show
  1. package/es/designer/package.json.mjs +1 -1
  2. package/es/designer/src/packages/dialog/useDialogDialog.mjs +1 -1
  3. package/es/designer/src/packages/dialogGlobal/useDialogGlobalDialog.mjs +1 -1
  4. package/es/designer/src/packages/form/property/widgets.vue.mjs +2 -2
  5. package/es/designer.css +284 -138
  6. package/es/packages/mobile/index.mjs +0 -2
  7. package/es/packages/mobile/src/components/all.mjs +2 -2
  8. package/es/packages/mobile/src/components/custom/appDetail/AppDetail.vue.mjs +38 -10
  9. package/es/packages/mobile/src/components/custom/appTimeLine/AppTimeLine.vue.mjs +340 -0
  10. package/es/packages/mobile/src/components/custom/appTimeLine/index.mjs +10 -0
  11. package/es/packages/mobile/src/components/custom/approvalBar/ApprovalBar.vue.mjs +142 -62
  12. package/es/packages/mobile/src/components/custom/approvalList/ApprovalCard.vue.mjs +7 -6
  13. package/es/packages/mobile/src/components/custom/approvalList/ApprovalList.vue.mjs +168 -52
  14. package/es/packages/mobile/src/components/custom/timeLineFilter/index.mjs +1 -5
  15. package/es/packages/mobile/src/components/dataDisplay/menuGrid/MenuGrid.vue.mjs +2 -2
  16. package/es/packages/mobile/src/components/navigation/navBar/NavBar.vue.mjs +2 -2
  17. package/es/packages/mobile/src/components/navigation/tabs/Tabs.vue.mjs +15 -7
  18. package/es/packages/mobile/src/index.vue.mjs +3 -3
  19. package/es/packages/mobile/src/page.vue.mjs +53 -3
  20. package/es/packages/vue/src/components/layout/Layout.vue.mjs +1 -1
  21. package/es/packages/vue/src/utils/datasource.mjs +5 -1
  22. package/lib/designer/package.json.js +1 -1
  23. package/lib/designer/src/packages/dialog/useDialogDialog.js +1 -1
  24. package/lib/designer/src/packages/dialogGlobal/useDialogGlobalDialog.js +1 -1
  25. package/lib/designer/src/packages/form/property/widgets.vue.js +2 -2
  26. package/lib/designer.css +284 -138
  27. package/lib/packages/mobile/index.js +8 -10
  28. package/lib/packages/mobile/src/components/all.js +8 -8
  29. package/lib/packages/mobile/src/components/custom/appDetail/AppDetail.vue.js +37 -9
  30. package/lib/packages/mobile/src/components/custom/appTimeLine/AppTimeLine.vue.js +340 -0
  31. package/lib/packages/mobile/src/components/custom/appTimeLine/index.js +10 -0
  32. package/lib/packages/mobile/src/components/custom/approvalBar/ApprovalBar.vue.js +141 -61
  33. package/lib/packages/mobile/src/components/custom/approvalList/ApprovalCard.vue.js +7 -6
  34. package/lib/packages/mobile/src/components/custom/approvalList/ApprovalList.vue.js +168 -52
  35. package/lib/packages/mobile/src/components/custom/timeLineFilter/index.js +1 -4
  36. package/lib/packages/mobile/src/components/dataDisplay/menuGrid/MenuGrid.vue.js +2 -2
  37. package/lib/packages/mobile/src/components/navigation/navBar/NavBar.vue.js +2 -2
  38. package/lib/packages/mobile/src/components/navigation/tabs/Tabs.vue.js +14 -6
  39. package/lib/packages/mobile/src/index.vue.js +3 -3
  40. package/lib/packages/mobile/src/page.vue.js +53 -3
  41. package/lib/packages/vue/src/components/layout/Layout.vue.js +1 -1
  42. package/lib/packages/vue/src/utils/datasource.js +5 -1
  43. package/package.json +1 -1
@@ -69,7 +69,6 @@ import { MobileTabbar } from "./src/components/navigation/tabbar/index.mjs";
69
69
  import { MobileTabbarItem } from "./src/components/navigation/tabbarItem/index.mjs";
70
70
  import { MobileTreeSelect } from "./src/components/navigation/treeSelect/index.mjs";
71
71
  import { MobileLayout } from "./src/components/layout/layout/index.mjs";
72
- import { MobileTimeLineFilter } from "./src/components/custom/timeLineFilter/index.mjs";
73
72
  import { MobileAppDetail } from "./src/components/custom/appDetail/index.mjs";
74
73
  import { MobileApprovalBar } from "./src/components/custom/approvalBar/index.mjs";
75
74
  import { MobileApprovalList } from "./src/components/custom/approvalList/index.mjs";
@@ -154,7 +153,6 @@ export {
154
153
  MobileTabs,
155
154
  MobileTextEllipsis,
156
155
  MobileTimeLine,
157
- MobileTimeLineFilter,
158
156
  MobileTreeSelect,
159
157
  MobileUploader,
160
158
  allowMultipleToast,
@@ -65,10 +65,11 @@ import { MobileTabbar } from "./navigation/tabbar/index.mjs";
65
65
  import { MobileTabbarItem } from "./navigation/tabbarItem/index.mjs";
66
66
  import { MobileTreeSelect } from "./navigation/treeSelect/index.mjs";
67
67
  import { MobileLayout } from "./layout/layout/index.mjs";
68
- import { MobileTimeLineFilter } from "./custom/timeLineFilter/index.mjs";
68
+ import "./custom/timeLineFilter/index.mjs";
69
69
  import { MobileAppDetail } from "./custom/appDetail/index.mjs";
70
70
  import { MobileApprovalBar } from "./custom/approvalBar/index.mjs";
71
71
  import { MobileApprovalList } from "./custom/approvalList/index.mjs";
72
+ import "./custom/appTimeLine/index.mjs";
72
73
  export {
73
74
  MobileActionBar,
74
75
  MobileActionSheet,
@@ -138,7 +139,6 @@ export {
138
139
  MobileTabs,
139
140
  MobileTextEllipsis,
140
141
  MobileTimeLine,
141
- MobileTimeLineFilter,
142
142
  MobileTreeSelect,
143
143
  MobileUploader
144
144
  };
@@ -1,4 +1,5 @@
1
- import { getCurrentInstance, ref, computed, resolveComponent, createElementBlock, openBlock, Fragment, createVNode, createBlock, createCommentVNode, unref, isRef, normalizeProps, mergeProps } from "vue";
1
+ import { getCurrentInstance, ref, computed, resolveComponent, createElementBlock, openBlock, Fragment, createVNode, createBlock, createCommentVNode, unref, isRef, mergeProps } from "vue";
2
+ import { MobileTimeLineFilter } from "../appTimeLine/index.mjs";
2
3
  /* empty css */
3
4
  import _export_sfc from "../../../../../../_virtual/_plugin-vue_export-helper.mjs";
4
5
  const _sfc_main = {
@@ -31,20 +32,37 @@ const _sfc_main = {
31
32
  actionBar: {
32
33
  type: Object
33
34
  },
34
- taskId: {
35
- type: String,
36
- default: ""
35
+ swipeable: {
36
+ type: Boolean,
37
+ default: true
37
38
  },
38
- taskType: {
39
+ operationPageId: {
39
40
  type: String,
40
41
  default: ""
41
42
  }
42
43
  },
43
44
  setup(__props) {
45
+ var _a, _b;
44
46
  const props = __props;
45
47
  const currentInstance = getCurrentInstance();
46
48
  const ctx = currentInstance.proxy;
47
49
  ctx.route;
50
+ const opinionTypeOptions = ref([]);
51
+ const taskData = { ...props.params.taskData };
52
+ const taskParams = { ...props.params };
53
+ delete taskParams.taskData;
54
+ ctx.$http.postForm(
55
+ "/base-server/flow/flowApproveDetail/findById",
56
+ {
57
+ taskId: (_a = props.params) == null ? void 0 : _a.taskId,
58
+ type: (_b = props.params) == null ? void 0 : _b.type
59
+ },
60
+ false
61
+ ).then((data) => {
62
+ opinionTypeOptions.value = data.approvalBtn.filter(
63
+ (item) => item.approveType != "C1"
64
+ );
65
+ });
48
66
  const activeName = ref("tab_base_info");
49
67
  const baseInfoPageId = ref("");
50
68
  if (props.baseInfoPageSource == "dynamic") ;
@@ -64,7 +82,11 @@ const _sfc_main = {
64
82
  tabs.push({ id: "tab_doc_info", title: "要件信息" });
65
83
  }
66
84
  if (props.approvalHistory) {
67
- tabs.push({ id: "tab_timeline_info", title: "审批历史" });
85
+ tabs.push({
86
+ id: "tab_timeline_info",
87
+ title: "审批历史",
88
+ component: MobileTimeLineFilter
89
+ });
68
90
  }
69
91
  return tabs;
70
92
  });
@@ -79,14 +101,20 @@ const _sfc_main = {
79
101
  modelValue: unref(activeName),
80
102
  "onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => isRef(activeName) ? activeName.value = $event : null),
81
103
  options: unref(tabsOptions),
82
- params: __props.params
83
- }, null, 8, ["modelValue", "options", "params"]),
84
- __props.actionBar ? (openBlock(), createBlock(_component_FecMobileApprovalBar, normalizeProps(mergeProps({ key: 0 }, __props.actionBar)), null, 16)) : createCommentVNode("", true)
104
+ params: taskParams,
105
+ swipeable: __props.swipeable
106
+ }, null, 8, ["modelValue", "options", "swipeable"]),
107
+ __props.actionBar ? (openBlock(), createBlock(_component_FecMobileApprovalBar, mergeProps({ key: 0 }, __props.actionBar, {
108
+ params: taskParams,
109
+ taskData,
110
+ opinionTypeOptions: unref(opinionTypeOptions),
111
+ operationPageId: __props.operationPageId
112
+ }), null, 16, ["opinionTypeOptions", "operationPageId"])) : createCommentVNode("", true)
85
113
  ], 64);
86
114
  };
87
115
  }
88
116
  };
89
- const _AppDetail = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-ab2095bf"]]);
117
+ const _AppDetail = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-081aef4a"]]);
90
118
  export {
91
119
  _AppDetail as default
92
120
  };
@@ -0,0 +1,340 @@
1
+ /* empty css */
2
+ /* empty css */
3
+ /* empty css */
4
+ /* empty css */
5
+ /* empty css */
6
+ /* empty css */
7
+ import { ref, watch, computed, createElementBlock, openBlock, createBlock, unref, createVNode, withCtx, createTextVNode, Fragment, renderList, normalizeClass, createElementVNode, createCommentVNode, toDisplayString, normalizeStyle } from "vue";
8
+ /* empty css */
9
+ import _export_sfc from "../../../../../../_virtual/_plugin-vue_export-helper.mjs";
10
+ import { Loading } from "../../../../node_modules/vant/es/loading/index.mjs";
11
+ import { Steps } from "../../../../node_modules/vant/es/steps/index.mjs";
12
+ import { Step } from "../../../../node_modules/vant/es/step/index.mjs";
13
+ const _hoisted_1 = { class: "fec-mobile-approval-timeline" };
14
+ const _hoisted_2 = {
15
+ key: 0,
16
+ class: "fec-timeline-loading"
17
+ };
18
+ const _hoisted_3 = { class: "fec-step-square" };
19
+ const _hoisted_4 = { class: "fec-step-square-text" };
20
+ const _hoisted_5 = { class: "fec-step-square" };
21
+ const _hoisted_6 = { class: "fec-step-square-text" };
22
+ const _hoisted_7 = { class: "fec-step-square" };
23
+ const _hoisted_8 = { class: "fec-step-square-text" };
24
+ const _hoisted_9 = { class: "fec-step-header" };
25
+ const _hoisted_10 = { class: "fec-step-title" };
26
+ const _hoisted_11 = { class: "fec-step-name" };
27
+ const _hoisted_12 = {
28
+ key: 0,
29
+ class: "fec-step-role"
30
+ };
31
+ const _hoisted_13 = { class: "fec-step-header-right" };
32
+ const _hoisted_14 = { class: "fec-step-time" };
33
+ const _hoisted_15 = {
34
+ key: 0,
35
+ class: "fec-step-desc"
36
+ };
37
+ const _hoisted_16 = { class: "fec-step-opinion" };
38
+ const _hoisted_17 = {
39
+ key: 0,
40
+ class: "fec-step-desc-text"
41
+ };
42
+ const _sfc_main = {
43
+ __name: "AppTimeLine",
44
+ props: {
45
+ // 业务主键号
46
+ traceNo: {
47
+ type: String,
48
+ default: ""
49
+ },
50
+ // 图标映射(可配置)
51
+ iconMap: {
52
+ type: Object,
53
+ default: () => ({
54
+ 同意: { color: "#52c41a", icon: "✓" },
55
+ 打回: { color: "#f5222d", icon: "✕" },
56
+ 终止: { color: "#f5222d", icon: "■" },
57
+ 发起流程: { color: "#52c41a", icon: "✓" },
58
+ 当前任务: { color: "#fa8c16", icon: "○" }
59
+ })
60
+ }
61
+ },
62
+ setup(__props) {
63
+ const props = __props;
64
+ const loading = ref(false);
65
+ const hisTask = ref([]);
66
+ const task = ref([]);
67
+ const mockData = {
68
+ task: [
69
+ {
70
+ taskDefinitionKey: "UserTask_05pjyxs",
71
+ name: "业务部负责人审批",
72
+ createTime: "2026-06-16 14:37:03",
73
+ taskId: "c9b2007a-694d-11f1-bc9c-5405db9932f3",
74
+ duration: "35分10秒",
75
+ assignee: [
76
+ {
77
+ opName: "大鹏租赁业务部主管",
78
+ opNo: "dpzl02",
79
+ userId: "14c87112e7324486aec4721abf14f1f1"
80
+ },
81
+ {
82
+ opName: "王永超",
83
+ opNo: "wych",
84
+ userId: "6ae80b11533adcf510ec44632ce69213"
85
+ },
86
+ {
87
+ opName: "管理员",
88
+ opNo: "admin",
89
+ userId: "ae1d74c1f44ea40dfd9c9f30d45b3084"
90
+ },
91
+ {
92
+ opName: "业务部负责人",
93
+ opNo: "0002",
94
+ userId: "ff1825c49ee45bda61413461bed41ba0"
95
+ }
96
+ ],
97
+ taskType: "task"
98
+ }
99
+ ],
100
+ hisTask: [
101
+ {
102
+ taskDefinitionKey: "UserTask_1gwjv5e",
103
+ name: "业务经理发起",
104
+ createTime: "2026-06-16 14:26:24",
105
+ taskType: "task",
106
+ taskId: "4c5d747e-694c-11f1-b0e9-5405db9932f3",
107
+ assignee: "huyanming",
108
+ assigneeName: "huyanming",
109
+ endTime: "2026-06-16 14:37:03",
110
+ endDate: "2026-06-16 14:37:03",
111
+ duration: "10分39秒",
112
+ approveName: "同意",
113
+ approveDesc: "123123123"
114
+ },
115
+ {
116
+ taskDefinitionKey: "UserTask_1c82hgw",
117
+ name: "风控部负责人",
118
+ createTime: "2026-06-16 14:20:39",
119
+ taskType: "task",
120
+ taskId: "7e7868d3-694b-11f1-b0e9-5405db9932f3",
121
+ assignee: "admin",
122
+ assigneeName: "管理员",
123
+ endTime: "2026-06-16 14:26:24",
124
+ endDate: "2026-06-16 14:26:24",
125
+ duration: "5分45秒",
126
+ approveName: "打回",
127
+ approveDesc: "打回审批意见111111"
128
+ },
129
+ {
130
+ taskDefinitionKey: "UserTask_080zfmp",
131
+ name: "风控经理",
132
+ createTime: "2026-06-15 16:47:02",
133
+ taskType: "task",
134
+ taskId: "c76f76b6-6896-11f1-8f11-f64eb4e04b4b",
135
+ assignee: "admin",
136
+ assigneeName: "管理员",
137
+ endTime: "2026-06-16 14:20:36",
138
+ endDate: "2026-06-16 14:20:36",
139
+ duration: "21小时33分",
140
+ approveName: "同意",
141
+ approveDesc: "222222222"
142
+ },
143
+ {
144
+ taskDefinitionKey: "UserTask_05pjyxs",
145
+ name: "业务部负责人审批",
146
+ createTime: "2026-06-03 17:34:07",
147
+ taskType: "task",
148
+ taskId: "5e59eff6-5f2f-11f1-ab6a-fa163ecd6953",
149
+ assignee: "admin",
150
+ assigneeName: "管理员",
151
+ endTime: "2026-06-15 16:47:02",
152
+ endDate: "2026-06-15 16:47:02",
153
+ duration: "11天23小时",
154
+ approveName: "同意",
155
+ approveDesc: "同意"
156
+ },
157
+ {
158
+ taskDefinitionKey: "UserTask_1gwjv5e",
159
+ name: "业务经理发起",
160
+ createTime: "2026-06-03 17:34:07",
161
+ taskType: "task",
162
+ taskId: "5e409b8f-5f2f-11f1-ab6a-fa163ecd6953",
163
+ assignee: "huyanming",
164
+ assigneeName: "huyanming",
165
+ endTime: "2026-06-03 17:34:07",
166
+ endDate: "2026-06-03 17:34:07",
167
+ duration: "149毫秒",
168
+ approveName: "发起流程",
169
+ approveDesc: ""
170
+ }
171
+ ]
172
+ };
173
+ watch(
174
+ () => props.traceNo,
175
+ (val) => {
176
+ if (val) {
177
+ fetchData();
178
+ } else {
179
+ hisTask.value = [];
180
+ task.value = [];
181
+ }
182
+ },
183
+ { immediate: true }
184
+ );
185
+ function fetchData() {
186
+ loading.value = true;
187
+ setTimeout(() => {
188
+ hisTask.value = mockData.hisTask || [];
189
+ task.value = mockData.task || [];
190
+ loading.value = false;
191
+ }, 300);
192
+ }
193
+ const timelineList = computed(() => {
194
+ const list = [];
195
+ const his = (hisTask.value || []).slice().sort((a, b) => {
196
+ return new Date(a.createTime) - new Date(b.createTime);
197
+ });
198
+ his.forEach((item) => {
199
+ list.push({ ...item, __type: "history" });
200
+ });
201
+ (task.value || []).forEach((item) => {
202
+ list.push({ ...item, __type: "current" });
203
+ });
204
+ return list;
205
+ });
206
+ function getName(item) {
207
+ var _a;
208
+ if (item.__type === "current" && Array.isArray(item.assignee)) {
209
+ return ((_a = item.assignee[0]) == null ? void 0 : _a.opName) || "未知";
210
+ }
211
+ return item.assigneeName || item.name || "未知";
212
+ }
213
+ function getRole(item) {
214
+ return item.name || "";
215
+ }
216
+ function getInitial(item) {
217
+ const name = getName(item);
218
+ return name ? name.charAt(0) : "?";
219
+ }
220
+ function getOpinion(item) {
221
+ if (item.__type === "current") {
222
+ return "待审批";
223
+ }
224
+ return item.approveName || "";
225
+ }
226
+ function getOpinionDesc(item) {
227
+ if (item.__type === "current") return "";
228
+ return item.approveDesc || "";
229
+ }
230
+ function getIconColor(item) {
231
+ var _a;
232
+ if (item.__type === "current") {
233
+ return ((_a = props.iconMap["当前任务"]) == null ? void 0 : _a.color) || "#fa8c16";
234
+ }
235
+ const opinion = item.approveName || "";
236
+ if (props.iconMap[opinion]) {
237
+ return props.iconMap[opinion].color;
238
+ }
239
+ if (opinion.includes("同意") || opinion.includes("发起")) return "#52c41a";
240
+ if (opinion.includes("打回") || opinion.includes("终止") || opinion.includes("拒绝"))
241
+ return "#f5222d";
242
+ return "#52c41a";
243
+ }
244
+ function getIconText(item) {
245
+ var _a;
246
+ if (item.__type === "current") {
247
+ return ((_a = props.iconMap["当前任务"]) == null ? void 0 : _a.icon) || "○";
248
+ }
249
+ const opinion = item.approveName || "";
250
+ if (props.iconMap[opinion]) {
251
+ return props.iconMap[opinion].icon;
252
+ }
253
+ return "✓";
254
+ }
255
+ function formatTime(time) {
256
+ if (!time) return "";
257
+ const d = new Date(time);
258
+ if (isNaN(d.getTime())) return time;
259
+ const pad = (n) => String(n).padStart(2, "0");
260
+ return `${d.getFullYear()}-${pad(d.getMonth() + 1)}-${pad(d.getDate())} ${pad(
261
+ d.getHours()
262
+ )}:${pad(d.getMinutes())}`;
263
+ }
264
+ return (_ctx, _cache) => {
265
+ const _component_van_loading = Loading;
266
+ const _component_van_step = Step;
267
+ const _component_van_steps = Steps;
268
+ return openBlock(), createElementBlock("div", _hoisted_1, [
269
+ unref(loading) ? (openBlock(), createElementBlock("div", _hoisted_2, [
270
+ createVNode(_component_van_loading, {
271
+ size: "20",
272
+ color: "#999"
273
+ }, {
274
+ default: withCtx(() => _cache[0] || (_cache[0] = [
275
+ createTextVNode("加载中...")
276
+ ])),
277
+ _: 1
278
+ })
279
+ ])) : (openBlock(), createBlock(_component_van_steps, {
280
+ key: 1,
281
+ direction: "vertical",
282
+ active: unref(timelineList).length - 1,
283
+ "active-color": "#52c41a",
284
+ "inactive-icon": "circle",
285
+ class: "fec-steps"
286
+ }, {
287
+ default: withCtx(() => [
288
+ (openBlock(true), createElementBlock(Fragment, null, renderList(unref(timelineList), (item, index) => {
289
+ return openBlock(), createBlock(_component_van_step, {
290
+ key: item.taskId || index,
291
+ class: normalizeClass(["fec-step", `fec-step-${item.__type}`])
292
+ }, {
293
+ "finish-icon": withCtx(() => [
294
+ createElementVNode("div", _hoisted_3, [
295
+ createElementVNode("span", _hoisted_4, toDisplayString(getInitial(item)), 1)
296
+ ])
297
+ ]),
298
+ "active-icon": withCtx(() => [
299
+ createElementVNode("div", _hoisted_5, [
300
+ createElementVNode("span", _hoisted_6, toDisplayString(getInitial(item)), 1)
301
+ ])
302
+ ]),
303
+ "inactive-icon": withCtx(() => [
304
+ createElementVNode("div", _hoisted_7, [
305
+ createElementVNode("span", _hoisted_8, toDisplayString(getInitial(item)), 1)
306
+ ])
307
+ ]),
308
+ default: withCtx(() => [
309
+ createElementVNode("div", _hoisted_9, [
310
+ createElementVNode("div", _hoisted_10, [
311
+ createElementVNode("span", _hoisted_11, toDisplayString(getName(item)), 1),
312
+ getRole(item) ? (openBlock(), createElementBlock("span", _hoisted_12, toDisplayString(getRole(item)), 1)) : createCommentVNode("", true)
313
+ ]),
314
+ createElementVNode("div", _hoisted_13, [
315
+ createElementVNode("div", _hoisted_14, toDisplayString(formatTime(item.endTime || item.createTime)), 1),
316
+ getOpinion(item) ? (openBlock(), createElementBlock("div", _hoisted_15, [
317
+ createElementVNode("span", {
318
+ class: "fec-step-icon",
319
+ style: normalizeStyle({ background: getIconColor(item) })
320
+ }, toDisplayString(getIconText(item)), 5),
321
+ createElementVNode("span", _hoisted_16, toDisplayString(getOpinion(item)), 1)
322
+ ])) : createCommentVNode("", true)
323
+ ])
324
+ ]),
325
+ getOpinionDesc(item) ? (openBlock(), createElementBlock("div", _hoisted_17, toDisplayString(getOpinionDesc(item)), 1)) : createCommentVNode("", true)
326
+ ]),
327
+ _: 2
328
+ }, 1032, ["class"]);
329
+ }), 128))
330
+ ]),
331
+ _: 1
332
+ }, 8, ["active"]))
333
+ ]);
334
+ };
335
+ }
336
+ };
337
+ const _TimeLineFilter = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-ca283130"]]);
338
+ export {
339
+ _TimeLineFilter as default
340
+ };
@@ -0,0 +1,10 @@
1
+ import _TimeLineFilter from "./AppTimeLine.vue.mjs";
2
+ import install from "../../../utils/install.mjs";
3
+ const MobileTimeLineFilter = install.withInstall(
4
+ "MobileTimeLineFilter",
5
+ _TimeLineFilter
6
+ );
7
+ export {
8
+ MobileTimeLineFilter,
9
+ MobileTimeLineFilter as default
10
+ };