@vc-shell/framework 1.1.26 → 1.1.28
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/CHANGELOG.md +18 -0
- package/core/plugins/modularity/index.ts +58 -123
- package/dist/core/plugins/modularity/index.d.ts.map +1 -1
- package/dist/framework.js +1 -1
- package/dist/{index-CYbdhec2.js → index-7oS3eFh-.js} +1 -1
- package/dist/{index-RMOqRXFr.js → index-8QpC1wvA.js} +1 -1
- package/dist/{index-DQczMBoO.js → index-BHDraKdx.js} +1 -1
- package/dist/{index-DXHjWa3b.js → index-BZeGCags.js} +1 -1
- package/dist/{index-Nr1LNRXa.js → index-BflAYhLw.js} +1 -1
- package/dist/{index-DyPpTQJI.js → index-Bl3GMBPU.js} +1 -1
- package/dist/{index-BGghog2f.js → index-BqbTCfTP.js} +1 -1
- package/dist/{index-BQNK41p5.js → index-BreOR-mg.js} +1 -1
- package/dist/{index-3B7GY2EI.js → index-C0eMfF4B.js} +1 -1
- package/dist/{index-BeIJlP3x.js → index-CHjYI8C4.js} +1 -1
- package/dist/{index-Tsyx9GI7.js → index-CPNtJp2i.js} +1 -1
- package/dist/{index-20xYwcGS.js → index-CaSFBVuP.js} +17109 -17140
- package/dist/{index-BobFEOd-.js → index-D39t0F9o.js} +1 -1
- package/dist/{index-Dcf_1-Il.js → index-DRBfl1Gs.js} +1 -1
- package/dist/{index-BGUwsXYM.js → index-DeapITF7.js} +1 -1
- package/dist/{index-DSNT0XVw.js → index-FDkLzFA_.js} +1 -1
- package/dist/{index-DszRvG1r.js → index-_KCehRXk.js} +1 -1
- package/dist/index.css +1 -1
- package/dist/shared/components/blade-navigation/composables/useBladeNavigation/internal/bladeWatchers.d.ts.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/ui/components/molecules/vc-input-dropdown/vc-input-dropdown.vue.d.ts.map +1 -1
- package/package.json +4 -4
- package/shared/components/blade-navigation/composables/useBladeNavigation/internal/bladeRouteResolver.ts +1 -1
- package/shared/components/blade-navigation/composables/useBladeNavigation/internal/bladeWatchers.ts +22 -16
- package/ui/components/molecules/vc-input-dropdown/vc-input-dropdown.vue +11 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,21 @@
|
|
|
1
|
+
## [1.1.28](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.27...v1.1.28) (2025-06-04)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **modularity:** enhance Blade registration with inject support and improve route handling for workspace components ([1d5a8e3](https://github.com/VirtoCommerce/vc-shell/commit/1d5a8e386168079bd56e9cd633edf79a3c086ce1))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
## [1.1.27](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.26...v1.1.27) (2025-06-04)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
|
|
15
|
+
* **vc-input-dropdown:** add toggle button to dropdown component for improved user interaction ([1289dd5](https://github.com/VirtoCommerce/vc-shell/commit/1289dd5fbc7c2adcddd69184e8eb0792c7121c97))
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
|
|
1
19
|
## [1.1.26](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.25...v1.1.26) (2025-06-04)
|
|
2
20
|
|
|
3
21
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { App, Component, h, resolveComponent, watch } from "vue";
|
|
1
|
+
import { App, Component, h, inject, resolveComponent, watch } from "vue";
|
|
2
2
|
import { i18n } from "./../i18n";
|
|
3
3
|
import { Router } from "vue-router";
|
|
4
4
|
import { BladeInstanceConstructor, BladeVNode } from "./../../../shared/components/blade-navigation/types";
|
|
@@ -6,6 +6,7 @@ import { kebabToPascal } from "./../../utilities";
|
|
|
6
6
|
import { addMenuItem, useMenuService, useNotifications } from "../../composables";
|
|
7
7
|
import * as _ from "lodash-es";
|
|
8
8
|
import { notification } from "../../../shared";
|
|
9
|
+
import { BladeRegistryKey, IBladeRegistrationData, IBladeRegistryInstance } from "../../composables/useBladeRegistry";
|
|
9
10
|
|
|
10
11
|
export function createModule(components: { [key: string]: BladeInstanceConstructor }, locales?: unknown) {
|
|
11
12
|
return {
|
|
@@ -44,6 +45,21 @@ export function createAppModule(
|
|
|
44
45
|
install(app: App, options?: { router: Router }): void {
|
|
45
46
|
let routerInstance: Router;
|
|
46
47
|
|
|
48
|
+
// Inject the BladeRegistry instance
|
|
49
|
+
const bladeRegistry = app.runWithContext(() => inject<IBladeRegistryInstance>(BladeRegistryKey));
|
|
50
|
+
let registerBladeWithRegistry: (name: string, data: IBladeRegistrationData) => void;
|
|
51
|
+
|
|
52
|
+
if (bladeRegistry && bladeRegistry._registerBladeFn) {
|
|
53
|
+
registerBladeWithRegistry = bladeRegistry._registerBladeFn;
|
|
54
|
+
} else {
|
|
55
|
+
console.error(
|
|
56
|
+
"createAppModule: BladeRegistry or its _registerBladeFn not found via inject. Blade registration will be skipped.",
|
|
57
|
+
);
|
|
58
|
+
registerBladeWithRegistry = (name: string, data: IBladeRegistrationData) => {
|
|
59
|
+
console.warn(`BladeRegistry (noop): Tried to register '${name}' but _registerBladeFn is missing.`);
|
|
60
|
+
};
|
|
61
|
+
}
|
|
62
|
+
|
|
47
63
|
if (options && options.router) {
|
|
48
64
|
const { router } = options;
|
|
49
65
|
routerInstance = router;
|
|
@@ -61,155 +77,52 @@ export function createAppModule(
|
|
|
61
77
|
page.isBlade = true;
|
|
62
78
|
|
|
63
79
|
if (!page.url) {
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
80
|
+
if (page.name) {
|
|
81
|
+
registerBladeWithRegistry(page.name, {
|
|
82
|
+
component: page,
|
|
83
|
+
isWorkspace: page.isWorkspace || false,
|
|
84
|
+
});
|
|
85
|
+
} else {
|
|
86
|
+
console.warn(
|
|
87
|
+
"createAppModule: Page without URL is missing a name. Cannot register with BladeRegistry.",
|
|
88
|
+
page,
|
|
68
89
|
);
|
|
69
|
-
if (existingPageIndex !== -1) {
|
|
70
|
-
app.config.globalProperties.pages.splice(existingPageIndex, 1);
|
|
71
|
-
}
|
|
72
90
|
}
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
// Remove existing bladeRoute if it exists
|
|
78
|
-
if (app.config.globalProperties.bladeRoutes) {
|
|
79
|
-
const existingBladeRouteIndex = app.config.globalProperties.bladeRoutes.findIndex(
|
|
80
|
-
(r: BladeInstanceConstructor) => r.name === page.name,
|
|
81
|
-
);
|
|
82
|
-
if (existingBladeRouteIndex !== -1) {
|
|
83
|
-
app.config.globalProperties.bladeRoutes.splice(existingBladeRouteIndex, 1);
|
|
84
|
-
}
|
|
91
|
+
} else {
|
|
92
|
+
const routeName = page.name || kebabToPascal(page.url.substring(1));
|
|
93
|
+
if (page.name !== routeName) {
|
|
94
|
+
page.name = routeName;
|
|
85
95
|
}
|
|
86
96
|
|
|
87
|
-
|
|
88
|
-
app.config.globalProperties.bladeRoutes?.push({
|
|
97
|
+
registerBladeWithRegistry(routeName, {
|
|
89
98
|
component: page,
|
|
90
|
-
|
|
99
|
+
route: page.url,
|
|
91
100
|
isWorkspace: page.isWorkspace || false,
|
|
92
101
|
});
|
|
93
102
|
|
|
94
|
-
// Register component globally
|
|
95
|
-
if (page.name) {
|
|
96
|
-
if (app.component(page.name)) {
|
|
97
|
-
// Overwrite existing component
|
|
98
|
-
console.warn(
|
|
99
|
-
`Component ${page.name} is already registered. It will be overwritten with the new component.`,
|
|
100
|
-
);
|
|
101
|
-
}
|
|
102
|
-
app.component(page.name, page);
|
|
103
|
-
}
|
|
104
|
-
}
|
|
105
|
-
|
|
106
|
-
if (!page.moduleUid) {
|
|
107
|
-
page.moduleUid = uid;
|
|
108
|
-
}
|
|
109
|
-
|
|
110
|
-
if (page.notifyType) {
|
|
111
|
-
const notifyTypes = Array.isArray(page.notifyType) ? page.notifyType : [page.notifyType];
|
|
112
|
-
|
|
113
|
-
if (notifyTypes.length > 0) {
|
|
114
|
-
const { markAsRead, setNotificationHandler } = useNotifications(notifyTypes);
|
|
115
|
-
|
|
116
|
-
setNotificationHandler((message) => {
|
|
117
|
-
if (message.title) {
|
|
118
|
-
notification(message.title, {
|
|
119
|
-
onClose() {
|
|
120
|
-
markAsRead(message);
|
|
121
|
-
},
|
|
122
|
-
});
|
|
123
|
-
}
|
|
124
|
-
});
|
|
125
|
-
}
|
|
126
|
-
}
|
|
127
|
-
|
|
128
|
-
// Dynamically add pages to Vue Router
|
|
129
|
-
if (page.url) {
|
|
130
103
|
const mainRoute = routerInstance.getRoutes().find((r) => r.meta?.root);
|
|
131
|
-
|
|
132
104
|
if (!mainRoute) {
|
|
133
|
-
throw new Error(
|
|
134
|
-
"[vc-shell][createAppModule] Main route not found. Ensure `meta: { root: true }` is set on the main application route.",
|
|
135
|
-
);
|
|
105
|
+
throw new Error("Main route not found. Make sure you have added `meta: {root: true}` to the main route.");
|
|
136
106
|
}
|
|
137
|
-
|
|
138
|
-
if (!mainRoute.name || typeof mainRoute.name !== "string" || mainRoute.name.trim() === "") {
|
|
139
|
-
console.error(
|
|
140
|
-
"[vc-shell][createAppModule] Main route found, but its 'name' property is missing, not a string, or empty. Cannot add child routes for blades. Main route details:",
|
|
141
|
-
mainRoute,
|
|
142
|
-
);
|
|
143
|
-
// Potentially throw an error here or handle it, as blade routes won't be added
|
|
144
|
-
return; // Skip adding this blade route if mainRoute.name is invalid
|
|
145
|
-
}
|
|
146
|
-
|
|
147
107
|
const mainRouteName = mainRoute.name;
|
|
148
108
|
|
|
149
|
-
const
|
|
150
|
-
|
|
151
|
-
const BladeInstanceConstructor = Object.assign({}, page, { name: routeName });
|
|
152
|
-
|
|
153
|
-
const bladeVNode = h(BladeInstanceConstructor, {
|
|
109
|
+
const bladeVNodeForRouter = h(page, {
|
|
154
110
|
navigation: {},
|
|
155
111
|
}) as BladeVNode;
|
|
156
112
|
|
|
157
|
-
// Remove existing route if it exists
|
|
158
113
|
if (routerInstance.hasRoute(routeName)) {
|
|
159
114
|
routerInstance.removeRoute(routeName);
|
|
160
115
|
}
|
|
161
116
|
|
|
162
|
-
// Add new route
|
|
163
117
|
routerInstance.addRoute(mainRouteName as string, {
|
|
164
118
|
name: routeName,
|
|
165
119
|
path: page.url.substring(1),
|
|
166
|
-
components: { default:
|
|
120
|
+
components: { default: bladeVNodeForRouter },
|
|
167
121
|
meta: {
|
|
168
|
-
permissions: page
|
|
122
|
+
permissions: page.permissions,
|
|
169
123
|
},
|
|
170
124
|
});
|
|
171
125
|
|
|
172
|
-
// Remove existing page in global properties if it exists
|
|
173
|
-
if (app.config.globalProperties.pages) {
|
|
174
|
-
const existingPageIndex = app.config.globalProperties.pages.findIndex(
|
|
175
|
-
(p: BladeInstanceConstructor) => p.name === (bladeVNode.type as BladeInstanceConstructor).name,
|
|
176
|
-
);
|
|
177
|
-
if (existingPageIndex !== -1) {
|
|
178
|
-
app.config.globalProperties.pages.splice(existingPageIndex, 1);
|
|
179
|
-
}
|
|
180
|
-
}
|
|
181
|
-
|
|
182
|
-
// Add new page to global properties - storing the component constructor (VNode's type)
|
|
183
|
-
app.config.globalProperties.pages?.push(bladeVNode.type as BladeInstanceConstructor);
|
|
184
|
-
|
|
185
|
-
// Remove existing bladeRoute if it exists
|
|
186
|
-
if (app.config.globalProperties.bladeRoutes) {
|
|
187
|
-
const existingBladeRouteIndex = app.config.globalProperties.bladeRoutes.findIndex(
|
|
188
|
-
(r: BladeInstanceConstructor) => r.name === routeName,
|
|
189
|
-
);
|
|
190
|
-
if (existingBladeRouteIndex !== -1) {
|
|
191
|
-
app.config.globalProperties.bladeRoutes.splice(existingBladeRouteIndex, 1);
|
|
192
|
-
}
|
|
193
|
-
}
|
|
194
|
-
|
|
195
|
-
// Add new bladeRoute - storing the component constructor (VNode's type) in the component field
|
|
196
|
-
app.config.globalProperties.bladeRoutes?.push({
|
|
197
|
-
component: bladeVNode.type as BladeInstanceConstructor,
|
|
198
|
-
route: page.url,
|
|
199
|
-
name: routeName,
|
|
200
|
-
isWorkspace: page.isWorkspace || false,
|
|
201
|
-
});
|
|
202
|
-
|
|
203
|
-
// Register component globally
|
|
204
|
-
if (app.component(BladeInstanceConstructor.name)) {
|
|
205
|
-
// Overwrite existing component
|
|
206
|
-
console.warn(
|
|
207
|
-
`Component ${BladeInstanceConstructor.name} is already registered. It will be overwritten with the new component.`,
|
|
208
|
-
);
|
|
209
|
-
}
|
|
210
|
-
app.component(BladeInstanceConstructor.name, BladeInstanceConstructor);
|
|
211
|
-
|
|
212
|
-
// Add to menu
|
|
213
126
|
if (page.menuItem) {
|
|
214
127
|
addMenuItem({
|
|
215
128
|
...page.menuItem,
|
|
@@ -220,6 +133,28 @@ export function createAppModule(
|
|
|
220
133
|
});
|
|
221
134
|
}
|
|
222
135
|
}
|
|
136
|
+
|
|
137
|
+
if (!page.moduleUid) {
|
|
138
|
+
page.moduleUid = uid;
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
if (page.notifyType) {
|
|
142
|
+
const notifyTypes = Array.isArray(page.notifyType) ? page.notifyType : [page.notifyType];
|
|
143
|
+
|
|
144
|
+
if (notifyTypes.length > 0) {
|
|
145
|
+
const { markAsRead, setNotificationHandler } = useNotifications(notifyTypes);
|
|
146
|
+
|
|
147
|
+
setNotificationHandler((message) => {
|
|
148
|
+
if (message.title) {
|
|
149
|
+
notification(message.title, {
|
|
150
|
+
onClose() {
|
|
151
|
+
markAsRead(message);
|
|
152
|
+
},
|
|
153
|
+
});
|
|
154
|
+
}
|
|
155
|
+
});
|
|
156
|
+
}
|
|
157
|
+
}
|
|
223
158
|
});
|
|
224
159
|
|
|
225
160
|
if (notificationTemplates) {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../core/plugins/modularity/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,SAAS,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../core/plugins/modularity/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,SAAS,EAAsC,MAAM,KAAK,CAAC;AAEzE,OAAO,EAAE,MAAM,EAAE,MAAM,YAAY,CAAC;AACpC,OAAO,EAAE,wBAAwB,EAAc,MAAM,qDAAqD,CAAC;AAO3G,wBAAgB,YAAY,CAAC,UAAU,EAAE;IAAE,CAAC,GAAG,EAAE,MAAM,GAAG,wBAAwB,CAAA;CAAE,EAAE,OAAO,CAAC,EAAE,OAAO;iBAEtF,GAAG,GAAG,IAAI;EAuB1B;AAED,wBAAgB,eAAe,CAC7B,KAAK,EAAE;IAAE,CAAC,GAAG,EAAE,MAAM,GAAG,wBAAwB,CAAA;CAAE,EAClD,OAAO,CAAC,EAAE;IAAE,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAA;CAAE,EACnC,qBAAqB,CAAC,EAAE;IAAE,CAAC,GAAG,EAAE,MAAM,GAAG,SAAS,GAAG;QAAE,UAAU,CAAC,EAAE,MAAM,CAAA;KAAE,CAAA;CAAE,EAC9E,gBAAgB,CAAC,EAAE;IAAE,CAAC,GAAG,EAAE,MAAM,GAAG,SAAS,CAAA;CAAE;iBAGhC,GAAG,YAAY;QAAE,MAAM,EAAE,MAAM,CAAA;KAAE,GAAG,IAAI;EAuJxD;AAED,cAAc,UAAU,CAAC;AACzB,cAAc,qBAAqB,CAAC"}
|
package/dist/framework.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import "vue-router";
|
|
2
|
-
import { df as o, H as n, F as c, bX as r, R as d, bY as l, bZ as u, bL as p, U as b, X as g, dp as y, dr as S, dq as m, bJ as V, bM as I, z as h, Y as C, B as D, d6 as P, bN as A, b_ as L, b$ as R, dP as M, e2 as f, c0 as B, c1 as v, c2 as T, c3 as w, Z as E, $ as O, a0 as N, a1 as U, a2 as K, c4 as W, c5 as x, c6 as F, a3 as k, D as q, d_ as z, bO as _, c7 as j, a4 as H, a5 as J, dZ as G, dx as Q, dw as X, A as Y, c8 as Z, d7 as $, bP as aa, c9 as sa, ca as ea, cb as ta, cc as ia, cd as oa, ce as na, cf as ca, d9 as ra, cg as da, ch as la, ci as ua, d8 as pa, cj as ba, dJ as ga, dW as ya, bK as Sa, ck as ma, dl as Va, a6 as Ia, dY as ha, G as Ca, a7 as Da, cl as Pa, cm as Aa, d$ as La, cn as Ra, bQ as Ma, co as fa, da as Ba, cp as va, cq as Ta, dQ as wa, cr as Ea, cs as Oa, ct as Na, cu as Ua, bR as Ka, cv as Wa, e0 as xa, cw as Fa, cx as ka, a8 as qa, a9 as za, M as _a, aa as ja, cy as Ha, cz as Ja, cA as Ga, cB as Qa, bS as Xa, dF as Ya, dS as Za, dT as $a, y as as, cC as ss, cD as es, bT as ts, cE as is, db as os, ab as ns, cF as cs, cG as rs, cH as ds, dc as ls, ac as us, ad as ps, cI as bs, cJ as gs, ae as ys, af as Ss, ag as ms, cK as Vs, cL as Is, dd as hs, cM as Cs, bU as Ds, cN as Ps, cO as As, e1 as Ls, cP as Rs, cQ as Ms, cR as fs, cS as Bs, ah as vs, bV as Ts, cT as ws, cU as Es, bW as Os, cV as Ns, ai as Us, dX as Ks, S as Ws, dn as xs, aj as Fs, dU as ks, cW as qs, cX as zs, cY as _s, de as js, cZ as Hs, c_ as Js, T as Gs, dV as Qs, c$ as Xs, d0 as Ys, dR as Zs, d1 as $s, d2 as ae, d3 as se, d4 as ee, aP as te, dy as ie, _ as oe, aQ as ne, dD as ce, dC as re, ax as de, J as le, V as ue, aM as pe, K as be, O as ge, aR as ye, ay as Se, aK as me, aA as Ve, az as Ie, aS as he, P as Ce, Q as De, al as Pe, aB as Ae, aC as Le, aN as Re, am as Me, an as fe, ao as Be, aT as ve, aJ as Te, aE as we, aU as Ee, dM as Oe, dL as Ne, ap as Ue, aL as Ke, aF as We, aq as xe, aG as Fe, aw as ke, aH as qe, ar as ze, as as _e, aO as je, aV as He, aI as Je, aD as Ge, av as Qe, at as Xe, au as Ye, d5 as Ze, ak as $e, W as at, aX as st, bl as et, b7 as tt, bo as it, by as ot, br as nt, bx as ct, bz as rt, dB as dt, dg as lt, dj as ut, dz as pt, bB as bt, ds as gt, bE as yt, bA as St, w as mt, bD as Vt, bw as It, dk as ht, dO as Ct, bu as Dt, dh as Pt, di as At, dm as Lt, bs as Rt, bv as Mt, bt as ft, x as Bt, dI as vt, bI as Tt, dK as wt, bj as Et, bg as Ot, b5 as Nt, bm as Ut, bd as Kt, bi as Wt, bF as xt, bf as Ft, bH as kt, bG as qt, b1 as zt, bk as _t, bb as jt, dA as Ht, b4 as Jt, b0 as Gt, b8 as Qt, dE as Xt, ba as Yt, dG as Zt, bh as $t, du as ai, bC as si, bq as ei, dt as ti, b3 as ii, aW as oi, dH as ni, b9 as ci, dv as ri, b2 as di, b6 as li, aZ as ui, a$ as pi, dN as bi, a_ as gi, bn as yi, bc as Si, bp as mi, aY as Vi, be as Ii } from "./index-
|
|
2
|
+
import { df as o, H as n, F as c, bX as r, R as d, bY as l, bZ as u, bL as p, U as b, X as g, dp as y, dr as S, dq as m, bJ as V, bM as I, z as h, Y as C, B as D, d6 as P, bN as A, b_ as L, b$ as R, dP as M, e2 as f, c0 as B, c1 as v, c2 as T, c3 as w, Z as E, $ as O, a0 as N, a1 as U, a2 as K, c4 as W, c5 as x, c6 as F, a3 as k, D as q, d_ as z, bO as _, c7 as j, a4 as H, a5 as J, dZ as G, dx as Q, dw as X, A as Y, c8 as Z, d7 as $, bP as aa, c9 as sa, ca as ea, cb as ta, cc as ia, cd as oa, ce as na, cf as ca, d9 as ra, cg as da, ch as la, ci as ua, d8 as pa, cj as ba, dJ as ga, dW as ya, bK as Sa, ck as ma, dl as Va, a6 as Ia, dY as ha, G as Ca, a7 as Da, cl as Pa, cm as Aa, d$ as La, cn as Ra, bQ as Ma, co as fa, da as Ba, cp as va, cq as Ta, dQ as wa, cr as Ea, cs as Oa, ct as Na, cu as Ua, bR as Ka, cv as Wa, e0 as xa, cw as Fa, cx as ka, a8 as qa, a9 as za, M as _a, aa as ja, cy as Ha, cz as Ja, cA as Ga, cB as Qa, bS as Xa, dF as Ya, dS as Za, dT as $a, y as as, cC as ss, cD as es, bT as ts, cE as is, db as os, ab as ns, cF as cs, cG as rs, cH as ds, dc as ls, ac as us, ad as ps, cI as bs, cJ as gs, ae as ys, af as Ss, ag as ms, cK as Vs, cL as Is, dd as hs, cM as Cs, bU as Ds, cN as Ps, cO as As, e1 as Ls, cP as Rs, cQ as Ms, cR as fs, cS as Bs, ah as vs, bV as Ts, cT as ws, cU as Es, bW as Os, cV as Ns, ai as Us, dX as Ks, S as Ws, dn as xs, aj as Fs, dU as ks, cW as qs, cX as zs, cY as _s, de as js, cZ as Hs, c_ as Js, T as Gs, dV as Qs, c$ as Xs, d0 as Ys, dR as Zs, d1 as $s, d2 as ae, d3 as se, d4 as ee, aP as te, dy as ie, _ as oe, aQ as ne, dD as ce, dC as re, ax as de, J as le, V as ue, aM as pe, K as be, O as ge, aR as ye, ay as Se, aK as me, aA as Ve, az as Ie, aS as he, P as Ce, Q as De, al as Pe, aB as Ae, aC as Le, aN as Re, am as Me, an as fe, ao as Be, aT as ve, aJ as Te, aE as we, aU as Ee, dM as Oe, dL as Ne, ap as Ue, aL as Ke, aF as We, aq as xe, aG as Fe, aw as ke, aH as qe, ar as ze, as as _e, aO as je, aV as He, aI as Je, aD as Ge, av as Qe, at as Xe, au as Ye, d5 as Ze, ak as $e, W as at, aX as st, bl as et, b7 as tt, bo as it, by as ot, br as nt, bx as ct, bz as rt, dB as dt, dg as lt, dj as ut, dz as pt, bB as bt, ds as gt, bE as yt, bA as St, w as mt, bD as Vt, bw as It, dk as ht, dO as Ct, bu as Dt, dh as Pt, di as At, dm as Lt, bs as Rt, bv as Mt, bt as ft, x as Bt, dI as vt, bI as Tt, dK as wt, bj as Et, bg as Ot, b5 as Nt, bm as Ut, bd as Kt, bi as Wt, bF as xt, bf as Ft, bH as kt, bG as qt, b1 as zt, bk as _t, bb as jt, dA as Ht, b4 as Jt, b0 as Gt, b8 as Qt, dE as Xt, ba as Yt, dG as Zt, bh as $t, du as ai, bC as si, bq as ei, dt as ti, b3 as ii, aW as oi, dH as ni, b9 as ci, dv as ri, b2 as di, b6 as li, aZ as ui, a$ as pi, dN as bi, a_ as gi, bn as yi, bc as Si, bp as mi, aY as Vi, be as Ii } from "./index-CaSFBVuP.js";
|
|
3
3
|
import "vue";
|
|
4
4
|
import "vee-validate";
|
|
5
5
|
export {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { b as D, E as h, s as L, C as H, t as n, d as B, a as K, L as M, e as OO, m as d, g as eO, i as iO, f as aO, h as f, k as nO, N as rO, I as QO } from "./index-
|
|
1
|
+
import { b as D, E as h, s as L, C as H, t as n, d as B, a as K, L as M, e as OO, m as d, g as eO, i as iO, f as aO, h as f, k as nO, N as rO, I as QO } from "./index-CaSFBVuP.js";
|
|
2
2
|
const tO = 1, Z = 194, j = 195, oO = 196, x = 197, dO = 198, sO = 199, lO = 200, TO = 2, E = 3, u = 201, SO = 24, pO = 25, qO = 49, gO = 50, PO = 55, mO = 56, $O = 57, hO = 59, cO = 60, fO = 61, XO = 62, yO = 63, zO = 65, WO = 238, vO = 71, RO = 241, kO = 242, _O = 243, xO = 244, uO = 245, UO = 246, bO = 247, VO = 248, Y = 72, GO = 249, wO = 250, ZO = 251, jO = 252, EO = 253, YO = 254, FO = 255, CO = 256, JO = 73, AO = 77, NO = 263, IO = 112, DO = 130, LO = 151, HO = 152, BO = 155, p = 10, q = 13, k = 32, c = 9, _ = 35, KO = 40, MO = 46, R = 123, U = 125, F = 39, C = 34, b = 92, Oe = 111, ee = 120, ie = 78, ae = 117, ne = 85, re = /* @__PURE__ */ new Set([
|
|
3
3
|
pO,
|
|
4
4
|
qO,
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { b as s, E as R, l as Y, s as x, C as w, t as O, a as d, m as X, L as k, d as h, e as f, i as u, f as y, c as l, h as g, j, k as U, g as G, N as b, I as Z } from "./index-
|
|
1
|
+
import { b as s, E as R, l as Y, s as x, C as w, t as O, a as d, m as X, L as k, d as h, e as f, i as u, f as y, c as l, h as g, j, k as U, g as G, N as b, I as Z } from "./index-CaSFBVuP.js";
|
|
2
2
|
const _ = 177, q = 179, E = 184, v = 12, C = 13, D = 17, z = 20, F = 25, B = 53, N = 95, I = 142, L = 144, A = 145, J = 148, M = 10, H = 13, K = 32, OO = 9, $ = 47, QO = 41, eO = 125, aO = new R((Q, e) => {
|
|
3
3
|
for (let n = 0, a = Q.next; (e.context && (a < 0 || a == M || a == H || a == $ && Q.peek(n + 1) == $) || a == QO || a == eO) && Q.acceptToken(_), !(a != K && a != OO); )
|
|
4
4
|
a = Q.peek(++n);
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { n as r, a as i, L as n, b as $, i as y, f as P, c as X, k as m, E as S, s as c, t as O } from "./index-
|
|
1
|
+
import { n as r, a as i, L as n, b as $, i as y, f as P, c as X, k as m, E as S, s as c, t as O } from "./index-CaSFBVuP.js";
|
|
2
2
|
const s = 110, l = 1, f = 2, t = [
|
|
3
3
|
9,
|
|
4
4
|
10,
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { b as v, E as i, s as _, C as W, t as e, n as g, a as x, L as V, f as p, i as U, k as E, c as N } from "./index-
|
|
1
|
+
import { b as v, E as i, s as _, C as W, t as e, n as g, a as x, L as V, f as p, i as U, k as E, c as N } from "./index-CaSFBVuP.js";
|
|
2
2
|
const j = 168, X = 169, C = 170, I = 1, D = 2, w = 3, L = 171, F = 172, Y = 4, z = 173, K = 5, A = 174, T = 175, Z = 176, s = 177, G = 6, k = 7, B = 8, H = 9, c = 0, R = [
|
|
3
3
|
9,
|
|
4
4
|
10,
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { L as te, a as ae, b as re, i as ne, f as ie, s as se, c as oe, t as i, E as le, d as ce, e as de, g as me } from "./index-
|
|
1
|
+
import { L as te, a as ae, b as re, i as ne, f as ie, s as se, c as oe, t as i, E as le, d as ce, e as de, g as me } from "./index-CaSFBVuP.js";
|
|
2
2
|
const ue = 36, X = 1, fe = 2, b = 3, C = 4, pe = 5, ge = 6, he = 7, _e = 8, be = 9, ve = 10, ye = 11, ke = 12, xe = 13, Oe = 14, we = 15, Qe = 16, Ce = 17, I = 18, Se = 19, A = 20, E = 21, R = 22, Pe = 23, qe = 24;
|
|
3
3
|
function P(t) {
|
|
4
4
|
return t >= 65 && t <= 90 || t >= 97 && t <= 122 || t >= 48 && t <= 57;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { a as p, L as u, p as l, r as n, b, v as m, s as S, t, l as r } from "./index-
|
|
1
|
+
import { a as p, L as u, p as l, r as n, b, v as m, s as S, t, l as r } from "./index-CaSFBVuP.js";
|
|
2
2
|
const c = /* @__PURE__ */ b.deserialize({
|
|
3
3
|
version: 14,
|
|
4
4
|
states: "%pOVOWOOObQPOOOpOSO'#C_OOOO'#Cp'#CpQVOWOOQxQPOOO!TQQOOQ!YQPOOOOOO,58y,58yO!_OSO,58yOOOO-E6n-E6nO!dQQO'#CqQ{QPOOO!iQPOOQ{QPOOO!qQPOOOOOO1G.e1G.eOOQO,59],59]OOQO-E6o-E6oO!yOpO'#CiO#RO`O'#CiQOQPOOO#ZO#tO'#CmO#fO!bO'#CmOOQO,59T,59TO#qOpO,59TO#vO`O,59TOOOO'#Cr'#CrO#{O#tO,59XOOQO,59X,59XOOOO'#Cs'#CsO$WO!bO,59XOOQO1G.o1G.oOOOO-E6p-E6pOOQO1G.s1G.sOOOO-E6q-E6q",
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { b as s, s as n, t as r, a as o, L as P, i as Q, f as i, c as a, k as c } from "./index-
|
|
1
|
+
import { b as s, s as n, t as r, a as o, L as P, i as Q, f as i, c as a, k as c } from "./index-CaSFBVuP.js";
|
|
2
2
|
const g = n({
|
|
3
3
|
String: r.string,
|
|
4
4
|
Number: r.number,
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { b as G, E as A, s as N, C as I, t as p, o as Y, a as j, L as U, g as k, q as Z, i as B, f as D, u as M } from "./index-
|
|
1
|
+
import { b as G, E as A, s as N, C as I, t as p, o as Y, a as j, L as U, g as k, q as Z, i as B, f as D, u as M } from "./index-CaSFBVuP.js";
|
|
2
2
|
const h = 1, F = 2, L = 3, K = 4, H = 5, J = 36, ee = 37, te = 38, Oe = 11, oe = 13;
|
|
3
3
|
function re(e) {
|
|
4
4
|
return e == 45 || e == 46 || e == 58 || e >= 65 && e <= 90 || e == 95 || e >= 97 && e <= 122 || e >= 161;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { b as W, E as i, s as U, C as B, t as n, a as C, L as b, r as E, i as u, f as M, h as v, k as N } from "./index-
|
|
1
|
+
import { b as W, E as i, s as U, C as B, t as n, a as C, L as b, r as E, i as u, f as M, h as v, k as N } from "./index-CaSFBVuP.js";
|
|
2
2
|
const c = 63, D = 64, j = 1, A = 2, y = 3, H = 4, Z = 5, F = 6, I = 7, z = 65, K = 66, J = 8, OO = 9, eO = 10, aO = 11, rO = 12, V = 13, tO = 19, nO = 20, oO = 29, PO = 33, QO = 34, sO = 47, lO = 0, T = 1, g = 2, d = 3, m = 4;
|
|
3
3
|
class s {
|
|
4
4
|
constructor(e, a, r) {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { a as g, L as P, p as q, r as l, b as c, v as i, s as R, t as r, E as p } from "./index-
|
|
1
|
+
import { a as g, L as P, p as q, r as l, b as c, v as i, s as R, t as r, E as p } from "./index-CaSFBVuP.js";
|
|
2
2
|
const b = 1, $ = 33, m = 34, v = 35, x = 36, W = /* @__PURE__ */ new p((O) => {
|
|
3
3
|
let e = O.pos;
|
|
4
4
|
for (; ; ) {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { a as O, L as b, b as r, i as s, f as a, s as t, h as P, k as n, t as e } from "./index-
|
|
1
|
+
import { a as O, L as b, b as r, i as s, f as a, s as t, h as P, k as n, t as e } from "./index-CaSFBVuP.js";
|
|
2
2
|
const S = { __proto__: null, anyref: 34, dataref: 34, eqref: 34, externref: 34, i31ref: 34, funcref: 34, i8: 34, i16: 34, i32: 34, i64: 34, f32: 34, f64: 34 }, Q = /* @__PURE__ */ r.deserialize({
|
|
3
3
|
version: 14,
|
|
4
4
|
states: "!^Q]QPOOOqQPO'#CbOOQO'#Cd'#CdOOQO'#Cl'#ClOOQO'#Ch'#ChQ]QPOOOOQO,58|,58|OxQPO,58|OOQO-E6f-E6fOOQO1G.h1G.h",
|