@vc-shell/framework 1.1.27 → 1.1.29
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-DjFrEbcz.js → index-AgS-u96H.js} +1 -1
- package/dist/{index-BZxRjAGk.js → index-B8e874V3.js} +1 -1
- package/dist/{index-C0M62ScY.js → index-BeTy-tH8.js} +1 -1
- package/dist/{index-C3-32wVM.js → index-BerVe4OV.js} +1 -1
- package/dist/{index-BY-R-HdZ.js → index-BhEc39Bx.js} +1 -1
- package/dist/{index-DH6g1vn6.js → index-Bn87vMP8.js} +1 -1
- package/dist/{index-Ytl5MiZA.js → index-Bpzd_lmX.js} +1 -1
- package/dist/{index-bTh-yQ1Q.js → index-C-pBZXky.js} +1 -1
- package/dist/{index-DOWE0lAY.js → index-CK1ZmJzV.js} +14725 -14761
- package/dist/{index-CDDikrWT.js → index-CM7z23lM.js} +1 -1
- package/dist/{index-DgTmfnFD.js → index-CR9ZPpuz.js} +1 -1
- package/dist/{index-D0ULQYO-.js → index-Cl-FWJ0z.js} +1 -1
- package/dist/{index-BzqwPR6i.js → index-DFp2PcZu.js} +1 -1
- package/dist/{index-copXmHaa.js → index-DJxEdMUZ.js} +1 -1
- package/dist/{index-7QxPGzyc.js → index-HFn5nMnu.js} +1 -1
- package/dist/{index-BqYr-8f0.js → index-NX-Ek0LQ.js} +1 -1
- package/dist/{index-BTSkZXT8.js → index-sElVLLwP.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/dist/ui/components/molecules/vc-select/vc-select.vue.d.ts +1 -0
- package/dist/ui/components/molecules/vc-select/vc-select.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 +27 -25
- package/ui/components/molecules/vc-select/vc-select.vue +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,21 @@
|
|
|
1
|
+
## [1.1.29](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.28...v1.1.29) (2025-06-05)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **vc-input-dropdown, vc-select:** enhance dropdown and select components with toggle state management for improved user experience ([af3ff4f](https://github.com/VirtoCommerce/vc-shell/commit/af3ff4fef54d07e2861d6b7cc8facdf741e50b35))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
## [1.1.28](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.27...v1.1.28) (2025-06-04)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
|
|
15
|
+
* **modularity:** enhance Blade registration with inject support and improve route handling for workspace components ([1d5a8e3](https://github.com/VirtoCommerce/vc-shell/commit/1d5a8e386168079bd56e9cd633edf79a3c086ce1))
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
|
|
1
19
|
## [1.1.27](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.26...v1.1.27) (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-CK1ZmJzV.js";
|
|
3
3
|
import "vue";
|
|
4
4
|
import "vee-validate";
|
|
5
5
|
export {
|
|
@@ -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-CK1ZmJzV.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 { 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-CK1ZmJzV.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",
|
|
@@ -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-CK1ZmJzV.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 { 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-CK1ZmJzV.js";
|
|
2
2
|
const g = n({
|
|
3
3
|
String: r.string,
|
|
4
4
|
Number: r.number,
|
|
@@ -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-CK1ZmJzV.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 { 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-CK1ZmJzV.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 { 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-CK1ZmJzV.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 { b as o, E as S, s as t, t as $, a as l, p as x, L as R, r as V, i as r, f as U, c as W, h as v, k as u } from "./index-
|
|
1
|
+
import { b as o, E as S, s as t, t as $, a as l, p as x, L as R, r as V, i as r, f as U, c as W, h as v, k as u } from "./index-CK1ZmJzV.js";
|
|
2
2
|
const b = 1, m = 2, p = 263, k = 3, c = 264, s = 265, Y = 266, Z = 4, w = 5, _ = 6, h = 7, X = 8, j = 9, f = 10, G = 11, g = 12, E = 13, I = 14, N = 15, F = 16, C = 17, L = 18, A = 19, H = 20, K = 21, D = 22, B = 23, M = 24, J = 25, OO = 26, $O = 27, QO = 28, iO = 29, yO = 30, aO = 31, zO = 32, SO = 33, PO = 34, WO = 35, eO = 36, TO = 37, sO = 38, XO = 39, dO = 40, nO = 41, qO = 42, oO = 43, tO = 44, lO = 45, xO = 46, RO = 47, VO = 48, rO = 49, UO = 50, vO = 51, uO = 52, bO = 53, mO = 54, pO = 55, kO = 56, cO = 57, YO = 58, ZO = 59, wO = 60, _O = 61, e = 62, hO = 63, jO = 64, fO = 65, GO = {
|
|
3
3
|
abstract: Z,
|
|
4
4
|
and: w,
|