@feedmepos/mf-financing 0.0.2 → 0.0.4

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.
@@ -0,0 +1,14 @@
1
+ import { openBlock as r, createElementBlock as s } from "vue";
2
+ const a = (t, e) => {
3
+ const c = t.__vccOpts || t;
4
+ for (const [n, o] of e)
5
+ c[n] = o;
6
+ return c;
7
+ }, _ = {};
8
+ function l(t, e) {
9
+ return r(), s("p", null, "just a testing what");
10
+ }
11
+ const f = /* @__PURE__ */ a(_, [["render", l]]);
12
+ export {
13
+ f as default
14
+ };
package/dist/app.d.ts CHANGED
@@ -1,13 +1,23 @@
1
1
  import enUS from "./assets/locales/en-US.json";
2
+ import { routes } from "./router";
2
3
  export type AppMessagesSchema = typeof enUS;
3
4
  export declare const i18nMessages: {
4
5
  "en-US": {
5
- financing: {};
6
+ financing: {
7
+ title: string;
8
+ routes: {
9
+ application: string;
10
+ };
11
+ };
6
12
  };
7
13
  "zh-CN": {
8
- financing: {};
14
+ financing: {
15
+ title: string;
16
+ routes: {
17
+ application: string;
18
+ };
19
+ };
9
20
  };
10
21
  };
11
- declare const routers: import("vue-router").Router;
12
- export { routers };
22
+ export { routes };
13
23
  export { default as FmApp } from "./App.vue";
package/dist/app.js CHANGED
@@ -2,25 +2,35 @@ import { createRouter as ht, createWebHistory as dt, useRoute as ut } from "vue-
2
2
  import { computed as ft, defineComponent as pt, onMounted as mt, resolveComponent as gt, openBlock as _t, createBlock as bt, unref as vt } from "vue";
3
3
  import { defineStore as It } from "pinia";
4
4
  import { useCoreStore as yt } from "@feedmepos/mf-common";
5
- const Et = {}, wt = {
5
+ const Et = {
6
+ title: "Financing",
7
+ routes: {
8
+ application: "Application"
9
+ }
10
+ }, wt = {
6
11
  financing: Et
7
- }, St = {}, At = {
12
+ }, St = {
13
+ title: "融资",
14
+ routes: {
15
+ application: "申请"
16
+ }
17
+ }, At = {
8
18
  financing: St
9
- }, Tt = ht({
10
- history: dt(),
11
- routes: [
12
- {
13
- path: "/",
14
- name: "mf-financing",
15
- component: () => import("./Financing-6bpYBvrC.js")
16
- },
17
- {
18
- path: "/forbidden",
19
- name: "mf-financing-forbidden",
20
- component: () => import("./Forbidden-Dqw0MqyC.js")
19
+ }, Tt = [
20
+ {
21
+ path: "/",
22
+ name: "mf-financing-application",
23
+ component: () => import("./Application-lADRz5Yu.js"),
24
+ meta: {
25
+ sidebarDisplay: "i18n:financing.routes.application"
21
26
  }
22
- ]
23
- }), Ct = It("mf-financing-iframe", () => {
27
+ }
28
+ ];
29
+ ht({
30
+ history: dt(),
31
+ routes: Tt
32
+ });
33
+ const Ct = It("mf-financing-iframe", () => {
24
34
  const r = {
25
35
  isIframe: !1
26
36
  }, e = ft(() => r);
@@ -3679,9 +3689,9 @@ const Jn = /* @__PURE__ */ pt({
3679
3689
  }), qn = {
3680
3690
  "en-US": wt,
3681
3691
  "zh-CN": At
3682
- }, Xn = Tt;
3692
+ };
3683
3693
  export {
3684
3694
  Jn as FmApp,
3685
3695
  qn as i18nMessages,
3686
- Xn as routers
3696
+ Tt as routes
3687
3697
  };
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@feedmepos/mf-financing",
3
- "version": "0.0.2",
3
+ "version": "0.0.4",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "dist"
@@ -1,3 +1,4 @@
1
+ import { type RouteRecordRaw } from "vue-router";
1
2
  declare module "vue-router" {
2
3
  interface RouteMeta {
3
4
  parent?: string;
@@ -9,5 +10,7 @@ declare module "vue-router" {
9
10
  };
10
11
  }
11
12
  }
13
+ declare const routes: RouteRecordRaw[];
12
14
  declare const router: import("vue-router").Router;
15
+ export { routes };
13
16
  export default router;