@vue/compiler-dom 3.6.0-alpha.5 → 3.6.0-alpha.6
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/dist/compiler-dom.cjs.js +5 -2
- package/dist/compiler-dom.cjs.prod.js +5 -2
- package/dist/compiler-dom.d.ts +1 -0
- package/dist/compiler-dom.esm-browser.js +5 -3
- package/dist/compiler-dom.esm-browser.prod.js +2 -2
- package/dist/compiler-dom.esm-bundler.js +5 -3
- package/dist/compiler-dom.global.js +5 -2
- package/dist/compiler-dom.global.prod.js +2 -2
- package/package.json +3 -3
package/dist/compiler-dom.cjs.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @vue/compiler-dom v3.6.0-alpha.
|
|
2
|
+
* @vue/compiler-dom v3.6.0-alpha.6
|
|
3
3
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
4
4
|
* @license MIT
|
|
5
5
|
**/
|
|
@@ -306,7 +306,9 @@ const isNonKeyModifier = /* @__PURE__ */ shared.makeMap(
|
|
|
306
306
|
`stop,prevent,self,ctrl,shift,alt,meta,exact,middle`
|
|
307
307
|
);
|
|
308
308
|
const maybeKeyModifier = /* @__PURE__ */ shared.makeMap("left,right");
|
|
309
|
-
const isKeyboardEvent = /* @__PURE__ */ shared.makeMap(
|
|
309
|
+
const isKeyboardEvent = /* @__PURE__ */ shared.makeMap(
|
|
310
|
+
`onkeyup,onkeydown,onkeypress`
|
|
311
|
+
);
|
|
310
312
|
const resolveModifiers = (key, modifiers, context, loc) => {
|
|
311
313
|
const keyModifiers = [];
|
|
312
314
|
const nonKeyModifiers = [];
|
|
@@ -929,6 +931,7 @@ exports.V_ON_WITH_MODIFIERS = V_ON_WITH_MODIFIERS;
|
|
|
929
931
|
exports.V_SHOW = V_SHOW;
|
|
930
932
|
exports.compile = compile;
|
|
931
933
|
exports.createDOMCompilerError = createDOMCompilerError;
|
|
934
|
+
exports.isKeyboardEvent = isKeyboardEvent;
|
|
932
935
|
exports.isValidHTMLNesting = isValidHTMLNesting;
|
|
933
936
|
exports.parse = parse;
|
|
934
937
|
exports.parserOptions = parserOptions;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @vue/compiler-dom v3.6.0-alpha.
|
|
2
|
+
* @vue/compiler-dom v3.6.0-alpha.6
|
|
3
3
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
4
4
|
* @license MIT
|
|
5
5
|
**/
|
|
@@ -288,7 +288,9 @@ const isNonKeyModifier = /* @__PURE__ */ shared.makeMap(
|
|
|
288
288
|
`stop,prevent,self,ctrl,shift,alt,meta,exact,middle`
|
|
289
289
|
);
|
|
290
290
|
const maybeKeyModifier = /* @__PURE__ */ shared.makeMap("left,right");
|
|
291
|
-
const isKeyboardEvent = /* @__PURE__ */ shared.makeMap(
|
|
291
|
+
const isKeyboardEvent = /* @__PURE__ */ shared.makeMap(
|
|
292
|
+
`onkeyup,onkeydown,onkeypress`
|
|
293
|
+
);
|
|
292
294
|
const resolveModifiers = (key, modifiers, context, loc) => {
|
|
293
295
|
const keyModifiers = [];
|
|
294
296
|
const nonKeyModifiers = [];
|
|
@@ -887,6 +889,7 @@ exports.V_ON_WITH_MODIFIERS = V_ON_WITH_MODIFIERS;
|
|
|
887
889
|
exports.V_SHOW = V_SHOW;
|
|
888
890
|
exports.compile = compile;
|
|
889
891
|
exports.createDOMCompilerError = createDOMCompilerError;
|
|
892
|
+
exports.isKeyboardEvent = isKeyboardEvent;
|
|
890
893
|
exports.isValidHTMLNesting = isValidHTMLNesting;
|
|
891
894
|
exports.parse = parse;
|
|
892
895
|
exports.parserOptions = parserOptions;
|
package/dist/compiler-dom.d.ts
CHANGED
|
@@ -36,6 +36,7 @@ export declare enum DOMErrorCodes {
|
|
|
36
36
|
}
|
|
37
37
|
export declare const DOMErrorMessages: Record<DOMErrorCodes, string>;
|
|
38
38
|
|
|
39
|
+
export declare const isKeyboardEvent: (key: string) => boolean;
|
|
39
40
|
export declare const resolveModifiers: (key: ExpressionNode | string, modifiers: SimpleExpressionNode[], context: TransformContext | null, loc: SourceLocation) => {
|
|
40
41
|
keyModifiers: string[];
|
|
41
42
|
nonKeyModifiers: string[];
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @vue/compiler-dom v3.6.0-alpha.
|
|
2
|
+
* @vue/compiler-dom v3.6.0-alpha.6
|
|
3
3
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
4
4
|
* @license MIT
|
|
5
5
|
**/
|
|
@@ -6334,7 +6334,9 @@ const isNonKeyModifier = /* @__PURE__ */ makeMap(
|
|
|
6334
6334
|
`stop,prevent,self,ctrl,shift,alt,meta,exact,middle`
|
|
6335
6335
|
);
|
|
6336
6336
|
const maybeKeyModifier = /* @__PURE__ */ makeMap("left,right");
|
|
6337
|
-
const isKeyboardEvent = /* @__PURE__ */ makeMap(
|
|
6337
|
+
const isKeyboardEvent = /* @__PURE__ */ makeMap(
|
|
6338
|
+
`onkeyup,onkeydown,onkeypress`
|
|
6339
|
+
);
|
|
6338
6340
|
const resolveModifiers = (key, modifiers, context, loc) => {
|
|
6339
6341
|
const keyModifiers = [];
|
|
6340
6342
|
const nonKeyModifiers = [];
|
|
@@ -6707,4 +6709,4 @@ function parse(template, options = {}) {
|
|
|
6707
6709
|
return baseParse(template, extend({}, parserOptions, options));
|
|
6708
6710
|
}
|
|
6709
6711
|
|
|
6710
|
-
export { BASE_TRANSITION, BindingTypes, CAMELIZE, CAPITALIZE, CREATE_BLOCK, CREATE_COMMENT, CREATE_ELEMENT_BLOCK, CREATE_ELEMENT_VNODE, CREATE_SLOTS, CREATE_STATIC, CREATE_TEXT, CREATE_VNODE, CompilerDeprecationTypes, ConstantTypes, DOMDirectiveTransforms, DOMErrorCodes, DOMErrorMessages, DOMNodeTransforms, ElementTypes, ErrorCodes, FRAGMENT, GUARD_REACTIVE_PROPS, IS_MEMO_SAME, IS_REF, KEEP_ALIVE, MERGE_PROPS, NORMALIZE_CLASS, NORMALIZE_PROPS, NORMALIZE_STYLE, NewlineType, NodeTypes, OPEN_BLOCK, POP_SCOPE_ID, PUSH_SCOPE_ID, RENDER_LIST, RENDER_SLOT, RESOLVE_COMPONENT, RESOLVE_DIRECTIVE, RESOLVE_DYNAMIC_COMPONENT, RESOLVE_FILTER, SET_BLOCK_TRACKING, SUSPENSE, TELEPORT, TO_DISPLAY_STRING, TO_HANDLERS, TO_HANDLER_KEY, TRANSITION, TRANSITION_GROUP, TS_NODE_TYPES, UNREF, V_MODEL_CHECKBOX, V_MODEL_DYNAMIC, V_MODEL_RADIO, V_MODEL_SELECT, V_MODEL_TEXT, V_ON_WITH_KEYS, V_ON_WITH_MODIFIERS, V_SHOW, WITH_CTX, WITH_DIRECTIVES, WITH_MEMO, advancePositionWithClone, advancePositionWithMutation, assert, baseCompile, baseParse, buildDirectiveArgs, buildProps, buildSlots, checkCompatEnabled, compile, convertToBlock, createArrayExpression, createAssignmentExpression, createBlockStatement, createCacheExpression, createCallExpression, createCompilerError, createCompoundExpression, createConditionalExpression, createDOMCompilerError, createForLoopParams, createFunctionExpression, createIfStatement, createInterpolation, createObjectExpression, createObjectProperty, createReturnStatement, createRoot, createSequenceExpression, createSimpleExpression, createStructuralDirectiveTransform, createTemplateLiteral, createTransformContext, createVNodeCall, defaultOnError, defaultOnWarn, errorMessages, extractIdentifiers, filterNonCommentChildren, findDir, findProp, forAliasRE, generate, generateCodeFrame, getBaseTransformPreset, getConstantType, getMemoedVNodeCall, getSelfName, getVNodeBlockHelper, getVNodeHelper, hasDynamicKeyVBind, hasScopeRef, hasSingleChild, helperNameMap, injectProp, isAllWhitespace, isCommentOrWhitespace, isConstantNode, isCoreComponent, isFnExpression, isFnExpressionBrowser, isFnExpressionNode, isFunctionType, isInDestructureAssignment, isInNewExpression, isLiteralWhitelisted, isMemberExpression, isMemberExpressionBrowser, isMemberExpressionNode, isReferencedIdentifier, isSimpleIdentifier, isSingleIfBlock, isSlotOutlet, isStaticArgOf, isStaticExp, isStaticNode, isStaticProperty, isStaticPropertyKey, isTemplateNode, isText$1 as isText, isVPre, isVSlot, isValidHTMLNesting, isWhitespaceText, locStub, noopDirectiveTransform, parse, parserOptions, postTransformTransition, processExpression, processFor, processIf, processSlotOutlet, registerRuntimeHelpers, resolveComponentType, resolveModifiers, stringifyExpression, toValidAssetId, trackSlotScopes, trackVForSlotScopes, transform, transformBind, transformElement, transformExpression, transformModel$1 as transformModel, transformOn$1 as transformOn, transformStyle, transformVBindShorthand, traverseNode, unwrapTSNode, validFirstIdentCharRE, walkBlockDeclarations, walkFunctionParams, walkIdentifiers, warnDeprecation };
|
|
6712
|
+
export { BASE_TRANSITION, BindingTypes, CAMELIZE, CAPITALIZE, CREATE_BLOCK, CREATE_COMMENT, CREATE_ELEMENT_BLOCK, CREATE_ELEMENT_VNODE, CREATE_SLOTS, CREATE_STATIC, CREATE_TEXT, CREATE_VNODE, CompilerDeprecationTypes, ConstantTypes, DOMDirectiveTransforms, DOMErrorCodes, DOMErrorMessages, DOMNodeTransforms, ElementTypes, ErrorCodes, FRAGMENT, GUARD_REACTIVE_PROPS, IS_MEMO_SAME, IS_REF, KEEP_ALIVE, MERGE_PROPS, NORMALIZE_CLASS, NORMALIZE_PROPS, NORMALIZE_STYLE, NewlineType, NodeTypes, OPEN_BLOCK, POP_SCOPE_ID, PUSH_SCOPE_ID, RENDER_LIST, RENDER_SLOT, RESOLVE_COMPONENT, RESOLVE_DIRECTIVE, RESOLVE_DYNAMIC_COMPONENT, RESOLVE_FILTER, SET_BLOCK_TRACKING, SUSPENSE, TELEPORT, TO_DISPLAY_STRING, TO_HANDLERS, TO_HANDLER_KEY, TRANSITION, TRANSITION_GROUP, TS_NODE_TYPES, UNREF, V_MODEL_CHECKBOX, V_MODEL_DYNAMIC, V_MODEL_RADIO, V_MODEL_SELECT, V_MODEL_TEXT, V_ON_WITH_KEYS, V_ON_WITH_MODIFIERS, V_SHOW, WITH_CTX, WITH_DIRECTIVES, WITH_MEMO, advancePositionWithClone, advancePositionWithMutation, assert, baseCompile, baseParse, buildDirectiveArgs, buildProps, buildSlots, checkCompatEnabled, compile, convertToBlock, createArrayExpression, createAssignmentExpression, createBlockStatement, createCacheExpression, createCallExpression, createCompilerError, createCompoundExpression, createConditionalExpression, createDOMCompilerError, createForLoopParams, createFunctionExpression, createIfStatement, createInterpolation, createObjectExpression, createObjectProperty, createReturnStatement, createRoot, createSequenceExpression, createSimpleExpression, createStructuralDirectiveTransform, createTemplateLiteral, createTransformContext, createVNodeCall, defaultOnError, defaultOnWarn, errorMessages, extractIdentifiers, filterNonCommentChildren, findDir, findProp, forAliasRE, generate, generateCodeFrame, getBaseTransformPreset, getConstantType, getMemoedVNodeCall, getSelfName, getVNodeBlockHelper, getVNodeHelper, hasDynamicKeyVBind, hasScopeRef, hasSingleChild, helperNameMap, injectProp, isAllWhitespace, isCommentOrWhitespace, isConstantNode, isCoreComponent, isFnExpression, isFnExpressionBrowser, isFnExpressionNode, isFunctionType, isInDestructureAssignment, isInNewExpression, isKeyboardEvent, isLiteralWhitelisted, isMemberExpression, isMemberExpressionBrowser, isMemberExpressionNode, isReferencedIdentifier, isSimpleIdentifier, isSingleIfBlock, isSlotOutlet, isStaticArgOf, isStaticExp, isStaticNode, isStaticProperty, isStaticPropertyKey, isTemplateNode, isText$1 as isText, isVPre, isVSlot, isValidHTMLNesting, isWhitespaceText, locStub, noopDirectiveTransform, parse, parserOptions, postTransformTransition, processExpression, processFor, processIf, processSlotOutlet, registerRuntimeHelpers, resolveComponentType, resolveModifiers, stringifyExpression, toValidAssetId, trackSlotScopes, trackVForSlotScopes, transform, transformBind, transformElement, transformExpression, transformModel$1 as transformModel, transformOn$1 as transformOn, transformStyle, transformVBindShorthand, traverseNode, unwrapTSNode, validFirstIdentCharRE, walkBlockDeclarations, walkFunctionParams, walkIdentifiers, warnDeprecation };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @vue/compiler-dom v3.6.0-alpha.
|
|
2
|
+
* @vue/compiler-dom v3.6.0-alpha.6
|
|
3
3
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
4
4
|
* @license MIT
|
|
5
5
|
**/let e;function t(e){let t=Object.create(null);for(let n of e.split(","))t[n]=1;return e=>e in t}let n={},i=()=>{},r=()=>!1,s=e=>111===e.charCodeAt(0)&&110===e.charCodeAt(1)&&(e.charCodeAt(2)>122||97>e.charCodeAt(2)),o=Object.assign,a=Array.isArray,l=e=>"string"==typeof e,c=e=>"symbol"==typeof e,h=e=>null!==e&&"object"==typeof e,d=t(",key,ref,ref_for,ref_key,onVnodeBeforeMount,onVnodeMounted,onVnodeBeforeUpdate,onVnodeUpdated,onVnodeBeforeUnmount,onVnodeUnmounted"),p=t("bind,cloak,else-if,else,for,html,if,model,on,once,pre,show,slot,text,memo"),u=e=>{let t=Object.create(null);return n=>t[n]||(t[n]=e(n))},f=/-(\w)/g,E=(e,t)=>t?t.toUpperCase():"",m=u(e=>e.replace(f,E)),_=u(e=>e.charAt(0).toUpperCase()+e.slice(1)),S=u(e=>e?`on${_(e)}`:"");function g(e,t=0,n=e.length){if((t=Math.max(0,Math.min(t,e.length)))>(n=Math.max(0,Math.min(n,e.length))))return"";let i=e.split(/(\r?\n)/),r=i.filter((e,t)=>t%2==1);i=i.filter((e,t)=>t%2==0);let s=0,o=[];for(let e=0;e<i.length;e++)if((s+=i[e].length+(r[e]&&r[e].length||0))>=t){for(let a=e-2;a<=e+2||n>s;a++){if(a<0||a>=i.length)continue;let l=a+1;o.push(`${l}${" ".repeat(Math.max(3-String(l).length,0))}| ${i[a]}`);let c=i[a].length,h=r[a]&&r[a].length||0;if(a===e){let e=t-(s-(c+h)),i=Math.max(1,n>s?c-e:n-t);o.push(" | "+" ".repeat(e)+"^".repeat(i))}else if(a>e){if(n>s){let e=Math.max(Math.min(n-s,c),1);o.push(" | "+"^".repeat(e))}s+=c+h}}break}return o.join(`
|
|
@@ -11,4 +11,4 @@ Use a v-bind binding combined with a v-on listener that emits update:x event ins
|
|
|
11
11
|
`,-1),e.hoists.length)){let e=[k,V,w,X,U].filter(e=>s.includes(e)).map(nb).join(", ");n(`const { ${e} } = _Vue
|
|
12
12
|
`,-1)}(function(e,t){if(!e.length)return;t.pure=!0;let{push:n,newline:i}=t;i();for(let r=0;r<e.length;r++){let s=e[r];s&&(n(`const _hoisted_${r+1} = `),nM(s,t),i())}t.pure=!1})(e.hoists,t),i(),n("return ")}(e,n);let u=(c?["_ctx","_push","_parent","_attrs"]:["_ctx","_cache"]).join(", ");if(r(`function ${c?"ssrRender":"render"}(${u}) {`),o(),p&&(r("with (_ctx) {"),o(),d&&(r(`const { ${h.map(nb).join(", ")} } = _Vue
|
|
13
13
|
`,-1),l())),e.components.length&&(nR(e.components,"component",n),(e.directives.length||e.temps>0)&&l()),e.directives.length&&(nR(e.directives,"directive",n),e.temps>0&&l()),e.filters&&e.filters.length&&(l(),nR(e.filters,"filter",n),l()),e.temps>0){r("let ");for(let t=0;t<e.temps;t++)r(`${t>0?", ":""}_temp${t}`)}return(e.components.length||e.directives.length||e.temps)&&(r(`
|
|
14
|
-
`,0),l()),c||r("return "),e.codegenNode?nM(e.codegenNode,n):r("null"),p&&(a(),r("}")),a(),r("}"),{ast:e,code:n.code,preamble:"",map:n.map?n.map.toJSON():void 0,helpers:e.helpers}}function nR(e,t,{helper:n,push:i,newline:r,isTS:s}){let o=n("filter"===t?H:"component"===t?F:$);for(let n=0;n<e.length;n++){let a=e[n],l=a.endsWith("__self");l&&(a=a.slice(0,-6)),i(`const ${tw(a,t)} = ${o}(${JSON.stringify(a)}${l?", true":""})${s?"!":""}`),n<e.length-1&&r()}}function nx(e,t){let n=e.length>3;t.push("["),n&&t.indent(),nL(e,t,n),n&&t.deindent(),t.push("]")}function nL(e,t,n=!1,i=!0){let{push:r,newline:s}=t;for(let o=0;o<e.length;o++){let c=e[o];l(c)?r(c,-3):a(c)?nx(c,t):nM(c,t),o<e.length-1&&(n?(i&&r(","),s()):i&&r(", "))}}function nM(e,t){var n,i,r;if(l(e))return void t.push(e,-3);if(c(e))return void t.push(t.helper(e));switch(e.type){case 1:case 9:case 11:case 12:nM(e.codegenNode,t);break;case 2:n=e,t.push(JSON.stringify(n.content),-3,n);break;case 4:nP(e,t);break;case 5:!function(e,t){let{push:n,helper:i,pure:r}=t;r&&n(nA),n(`${i(W)}(`),nM(e.content,t),n(")")}(e,t);break;case 8:nD(e,t);break;case 3:!function(e,t){let{push:n,helper:i,pure:r}=t;r&&n(nA),n(`${i(w)}(${JSON.stringify(e.content)})`,-3,e)}(e,t);break;case 13:!function(e,t){let n,{push:i,helper:r,pure:s}=t,{tag:o,props:a,children:l,patchFlag:c,dynamicProps:h,directives:d,isBlock:p,disableTracking:u,isComponent:f}=e;c&&(n=String(c)),d&&i(r(G)+"("),p&&i(`(${r(M)}(${u?"true":""}), `),s&&i(nA),i(r(p?ew(t.inSSR,f):eV(t.inSSR,f))+"(",-2,e),nL(function(e){let t=e.length;for(;t--&&null==e[t];);return e.slice(0,t+1).map(e=>e||"null")}([o,a,l,n,h]),t),i(")"),p&&i(")"),d&&(i(", "),nM(d,t),i(")"))}(e,t);break;case 14:!function(e,t){let{push:n,helper:i,pure:r}=t,s=l(e.callee)?e.callee:i(e.callee);r&&n(nA),n(s+"(",-2,e),nL(e.arguments,t),n(")")}(e,t);break;case 15:!function(e,t){let{push:n,indent:i,deindent:r,newline:s}=t,{properties:o}=e;if(!o.length)return n("{}",-2,e);let a=o.length>1;n(a?"{":"{ "),a&&i();for(let e=0;e<o.length;e++){let{key:i,value:r}=o[e];!function(e,t){let{push:n}=t;8===e.type?(n("["),nD(e,t),n("]")):e.isStatic?n(th(e.content)?e.content:JSON.stringify(e.content),-2,e):n(`[${e.content}]`,-3,e)}(i,t),n(": "),nM(r,t),e<o.length-1&&(n(","),s())}a&&r(),n(a?"}":" }")}(e,t);break;case 17:i=e,r=t,nx(i.elements,r);break;case 18:!function(e,t){let{push:n,indent:i,deindent:r}=t,{params:s,returns:o,body:l,newline:c,isSlot:h}=e;h&&n(`_${ep[ea]}(`),n("(",-2,e),a(s)?nL(s,t):s&&nM(s,t),n(") => "),(c||l)&&(n("{"),i()),o?(c&&n("return "),a(o)?nx(o,t):nM(o,t)):l&&nM(l,t),(c||l)&&(r(),n("}")),h&&(e.isNonScopedSlot&&n(", undefined, true"),n(")"))}(e,t);break;case 19:!function(e,t){let{test:n,consequent:i,alternate:r,newline:s}=e,{push:o,indent:a,deindent:l,newline:c}=t;if(4===n.type){let e=!th(n.content);e&&o("("),nP(n,t),e&&o(")")}else o("("),nM(n,t),o(")");s&&a(),t.indentLevel++,s||o(" "),o("? "),nM(i,t),t.indentLevel--,s&&c(),s||o(" "),o(": ");let h=19===r.type;!h&&t.indentLevel++,nM(r,t),!h&&t.indentLevel--,s&&l(!0)}(e,t);break;case 20:!function(e,t){let{push:n,helper:i,indent:r,deindent:s,newline:o}=t,{needPauseTracking:a,needArraySpread:l}=e;l&&n("[...("),n(`_cache[${e.index}] || (`),a&&(r(),n(`${i(er)}(-1`),e.inVOnce&&n(", true"),n("),"),o(),n("(")),n(`_cache[${e.index}] = `),nM(e.value,t),a&&(n(`).cacheIndex = ${e.index},`),o(),n(`${i(er)}(1),`),o(),n(`_cache[${e.index}]`),s()),n(")"),l&&n(")]")}(e,t);break;case 21:nL(e.body,t,!0,!1)}}function nP(e,t){let{content:n,isStatic:i}=e;t.push(i?JSON.stringify(n):n,-3,e)}function nD(e,t){for(let n=0;n<e.children.length;n++){let i=e.children[n];l(i)?t.push(i,-3):nM(i,t)}}let nk=t("true,false,null,this"),nV=(e,t)=>{if(5===e.type)e.content=nw(e.content,t);else if(1===e.type){let n=tA(e,"memo");for(let i=0;i<e.props.length;i++){let r=e.props[i];if(7===r.type&&"for"!==r.name){let e=r.exp,i=r.arg;!e||4!==e.type||"on"===r.name&&i||n&&i&&4===i.type&&"key"===i.content||(r.exp=nw(e,t,"slot"===r.name)),i&&4===i.type&&!i.isStatic&&(r.arg=nw(i,t))}}}};function nw(e,t,n=!1,i=!1,r=Object.create(t.identifiers)){return e}function nX(e){return l(e)?e:4===e.type?e.content:e.children.map(nX).join("")}let nU=nO(/^(?:if|else|else-if)$/,(e,t,n)=>nF(e,t,n,(e,t,i)=>{let r=n.parent.children,s=r.indexOf(e),o=0;for(;s-- >=0;){let e=r[s];e&&9===e.type&&(o+=e.branches.length)}return()=>{i?e.codegenNode=n$(t,o,n):function(e){for(;;)if(19===e.type)if(19!==e.alternate.type)return e;else e=e.alternate;else 20===e.type&&(e=e.value)}(e.codegenNode).alternate=n$(t,o+e.branches.length-1,n)}}));function nF(e,t,n,i){if("else"!==t.name&&(!t.exp||!t.exp.content.trim())){let i=t.exp?t.exp.loc:e.loc;n.onError(e1(28,t.loc)),t.exp=ey("true",!1,i)}if("if"===t.name){var r;let s=nB(e,t),o={type:9,loc:nh((r=e.loc).start.offset,r.end.offset),branches:[s]};if(n.replaceNode(o),i)return i(o,s,!0)}else{let r=n.parent.children,s=r.indexOf(e);for(;s-- >=-1;){let o=r[s];if(o&&tJ(o)){n.removeNode(o);continue}if(o&&9===o.type){("else-if"===t.name||"else"===t.name)&&void 0===o.branches[o.branches.length-1].condition&&n.onError(e1(30,e.loc)),n.removeNode();let r=nB(e,t);o.branches.push(r);let s=i&&i(o,r,!1);ny(r,n),s&&s(),n.currentNode=null}else n.onError(e1(30,e.loc));break}}}function nB(e,t){let n=3===e.tagType;return{type:10,loc:e.loc,condition:"else"===t.name?void 0:t.exp,children:n&&!tA(e,"for")?e.children:[e],userKey:tb(e,"key"),isTemplateIf:n}}function n$(e,t,n){return e.condition?ev(e.condition,nH(e,t,n),eb(n.helper(w),['""',"true"])):nH(e,t,n)}function nH(e,t,n){let{helper:i}=n,r=eI("key",ey(`${t}`,!1,e_,2)),{children:s}=e,o=s[0];if(1!==s.length||1!==o.type)if(1!==s.length||11!==o.type)return eg(n,i(C),eN([r]),s,64,void 0,void 0,!0,!1,!1,e.loc);else{let e=o.codegenNode;return tk(e,r,n),e}{let e=o.codegenNode,t=tU(e);return 13===t.type&&eX(t,n),tk(t,r,n),e}}let nG=nO("for",(e,t,n)=>{let{helper:i,removeHelper:r}=n;return nq(e,t,n,t=>{let s=eb(i(q),[t.source]),o=tM(e),a=tA(e,"memo"),l=tb(e,"key",!1,!0);l&&l.type;let c=l&&(6===l.type?l.value?ey(l.value.content,!0):void 0:l.exp),h=l&&c?eI("key",c):null,d=4===t.source.type&&t.source.constType>0,p=d?64:l?128:256;return t.codegenNode=eg(n,i(C),void 0,s,p,void 0,void 0,!0,!d,!1,e.loc),()=>{let l,{children:p}=t,u=1!==p.length||1!==p[0].type,f=tP(e)?e:o&&1===e.children.length&&tP(e.children[0])?e.children[0]:null;if(f?(l=f.codegenNode,o&&h&&tk(l,h,n)):u?l=eg(n,i(C),h?eN([h]):void 0,e.children,64,void 0,void 0,!0,void 0,!1):(l=p[0].codegenNode,o&&h&&tk(l,h,n),!d!==l.isBlock&&(l.isBlock?(r(M),r(ew(n.inSSR,l.isComponent))):r(eV(n.inSSR,l.isComponent))),l.isBlock=!d,l.isBlock?(i(M),i(ew(n.inSSR,l.isComponent))):i(eV(n.inSSR,l.isComponent))),a){let e=eC(nj(t.parseResult,[ey("_cached")]));e.body=ex([eA(["const _memo = (",a.exp,")"]),eA(["if (_cached",...c?[" && _cached.key === ",c]:[],` && ${n.helperString(ed)}(_cached, _memo)) return _cached`]),eA(["const _item = ",l]),ey("_item.memo = _memo"),ey("return _item")]),s.arguments.push(e,ey("_cache"),ey(String(n.cached.length))),n.cached.push(null)}else s.arguments.push(eC(nj(t.parseResult),l,!0))}})});function nq(e,t,n,i){if(!t.exp)return void n.onError(e1(31,t.loc));let r=t.forParseResult;if(!r)return void n.onError(e1(32,t.loc));nJ(r);let{scopes:s}=n,{source:o,value:a,key:l,index:c}=r,h={type:11,loc:t.loc,source:o,valueAlias:a,keyAlias:l,objectIndexAlias:c,parseResult:r,children:tM(e)?e.children:[e]};n.replaceNode(h),s.vFor++;let d=i&&i(h);return()=>{s.vFor--,d&&d()}}function nJ(e,t){e.finalized||(e.finalized=!0)}function nj({value:e,key:t,index:n},i=[]){var r=[e,t,n,...i];let s=r.length;for(;s--&&!r[s];);return r.slice(0,s+1).map((e,t)=>e||ey("_".repeat(t+1),!1))}let nW=ey("undefined",!1),nK=(e,t)=>{if(1===e.type&&(1===e.tagType||3===e.tagType)){let n=tA(e,"slot");if(n)return n.exp,t.scopes.vSlot++,()=>{t.scopes.vSlot--}}},nY=(e,t)=>{let n;if(tM(e)&&e.props.some(tL)&&(n=tA(e,"for"))){let e=n.forParseResult;if(e){nJ(e);let{value:n,key:i,index:r}=e,{addIdentifiers:s,removeIdentifiers:o}=t;return n&&s(n),i&&s(i),r&&s(r),()=>{n&&o(n),i&&o(i),r&&o(r)}}}},nQ=(e,t,n,i)=>eC(e,n,!1,!0,n.length?n[0].loc:i);function nz(e,t,n=nQ){t.helper(ea);let{children:i,loc:r}=e,s=[],o=[],a=t.scopes.vSlot>0||t.scopes.vFor>0,l=tA(e,"slot",!0);if(l){let{arg:e,exp:t}=l;e&&!ta(e)&&(a=!0),s.push(eI(e||ey("default",!0),n(t,void 0,i,r)))}let c=!1,h=!1,d=[],p=new Set,u=0;for(let e=0;e<i.length;e++){let r,f,E,m,_=i[e];if(!tM(_)||!(r=tA(_,"slot",!0))){3!==_.type&&d.push(_);continue}if(l){t.onError(e1(37,r.loc));break}c=!0;let{children:S,loc:g}=_,{arg:T=ey("default",!0),exp:N,loc:I}=r;ta(T)?f=T?T.content:"default":a=!0;let y=tA(_,"for"),O=n(N,y,S,g);if(E=tA(_,"if"))a=!0,o.push(ev(E.exp,nZ(T,O,u++),nW));else if(m=tA(_,/^else(?:-if)?$/,!0)){let n,r=e;for(;r--&&tJ(n=i[r]););if(n&&tM(n)&&tA(n,/^(?:else-)?if$/)){let e=o[o.length-1];for(;19===e.alternate.type;)e=e.alternate;e.alternate=m.exp?ev(m.exp,nZ(T,O,u++),nW):nZ(T,O,u++)}else t.onError(e1(30,m.loc))}else if(y){a=!0;let e=y.forParseResult;e?(nJ(e),o.push(eb(t.helper(q),[e.source,eC(nj(e),nZ(T,O),!0)]))):t.onError(e1(32,y.loc))}else{if(f){if(p.has(f)){t.onError(e1(38,I));continue}p.add(f),"default"===f&&(h=!0)}s.push(eI(T,O))}}if(!l){let e=(e,i)=>{let s=n(e,void 0,i,r);return t.compatConfig&&(s.isNonScopedSlot=!0),eI("default",s)};c?d.length&&!d.every(tq)&&(h?t.onError(e1(39,d[0].loc)):s.push(e(void 0,d))):s.push(e(void 0,i))}let f=a?2:!function e(t){for(let n=0;n<t.length;n++){let i=t[n];switch(i.type){case 1:if(2===i.tagType||e(i.children))return!0;break;case 9:if(e(i.branches))return!0;break;case 10:case 11:if(e(i.children))return!0}}return!1}(e.children)?1:3,E=eN(s.concat(eI("_",ey(f+"",!1))),r);return o.length&&(E=eb(t.helper(j),[E,eT(o)])),{slots:E,hasDynamicSlots:a}}function nZ(e,t,n){let i=[eI("name",e),eI("fn",t)];return null!=n&&i.push(eI("key",ey(String(n),!0))),eN(i)}let n1=new WeakMap,n0=(e,t)=>function(){let n,i,r,s,o;if(1!==(e=t.currentNode).type||0!==e.tagType&&1!==e.tagType)return;let{tag:a,props:l}=e,c=1===e.tagType,d=c?n2(e,t):`"${a}"`,p=h(d)&&d.callee===B,u=0,f=p||d===v||d===R||!c&&("svg"===a||"foreignObject"===a||"math"===a);if(l.length>0){let i=n3(e,t,void 0,c,p);n=i.props,u=i.patchFlag,s=i.dynamicPropNames;let r=i.directives;o=r&&r.length?eT(r.map(e=>n6(e,t))):void 0,i.shouldUseBlock&&(f=!0)}if(e.children.length>0)if(d===x&&(f=!0,u|=1024),c&&d!==v&&d!==x){let{slots:n,hasDynamicSlots:r}=nz(e,t);i=n,r&&(u|=1024)}else if(1===e.children.length&&d!==v){let n=e.children[0],r=n.type,s=5===r||8===r;s&&0===nm(n,t)&&(u|=1),i=s||2===r?n:e.children}else i=e.children;s&&s.length&&(r=function(e){let t="[";for(let n=0,i=e.length;n<i;n++)t+=JSON.stringify(e[n]),n<i-1&&(t+=", ");return t+"]"}(s)),e.codegenNode=eg(t,d,n,i,0===u?void 0:u,r,o,!!f,!1,c,e.loc)};function n2(e,t,n=!1){let{tag:i}=e,r=n5(i),s=tb(e,"is",!1,!0);if(s)if(r||eK("COMPILER_IS_ON_ELEMENT",t)){let e;if(6===s.type?e=s.value&&ey(s.value.content,!0):(e=s.exp)||(e=ey("is",!1,s.arg.loc)),e)return eb(t.helper(B),[e])}else 6===s.type&&s.value.content.startsWith("vue:")&&(i=s.value.content.slice(4));let o=tl(i)||t.isBuiltInComponent(i);return o?(n||t.helper(o),o):(t.helper(F),t.components.add(i),tw(i,"component"))}function n3(e,t,n=e.props,i,r,o=!1){let a,{tag:l,loc:h,children:u}=e,f=[],E=[],m=[],_=u.length>0,S=!1,g=0,T=!1,N=!1,I=!1,y=!1,O=!1,A=!1,b=[],C=e=>{f.length&&(E.push(eN(n4(f),h)),f=[]),e&&E.push(e)},v=()=>{t.scopes.vFor>0&&f.push(eI(ey("ref_for",!0),ey("true")))},R=({key:e,value:n})=>{if(ta(e)){let o=e.content,a=s(o);a&&(!i||r)&&"onclick"!==o.toLowerCase()&&"onUpdate:modelValue"!==o&&!d(o)&&(y=!0),a&&d(o)&&(A=!0),a&&14===n.type&&(n=n.arguments[0]),20===n.type||(4===n.type||8===n.type)&&nm(n,t)>0||("ref"===o?T=!0:"class"===o?N=!0:"style"===o?I=!0:"key"===o||b.includes(o)||b.push(o),i&&("class"===o||"style"===o)&&!b.includes(o)&&b.push(o))}else O=!0};for(let r=0;r<n.length;r++){let s=n[r];if(6===s.type){let{loc:e,name:n,nameLoc:i,value:r}=s;if("ref"===n&&(T=!0,v()),"is"===n&&(n5(l)||r&&r.content.startsWith("vue:")||eK("COMPILER_IS_ON_ELEMENT",t)))continue;f.push(eI(ey(n,!0,i),ey(r?r.content:"",!0,r?r.loc:e)))}else{let{name:n,arg:r,exp:a,loc:d,modifiers:u}=s,T="bind"===n,N="on"===n;if("slot"===n){i||t.onError(e1(40,d));continue}if("once"===n||"memo"===n||"is"===n||T&&tC(r,"is")&&(n5(l)||eK("COMPILER_IS_ON_ELEMENT",t))||N&&o)continue;if((T&&tC(r,"key")||N&&_&&tC(r,"vue:before-update"))&&(S=!0),T&&tC(r,"ref")&&v(),!r&&(T||N)){if(O=!0,a)if(T){if(C(),eK("COMPILER_V_BIND_OBJECT_ORDER",t)){E.unshift(a);continue}v(),C(),E.push(a)}else C({type:14,loc:d,callee:t.helper(ee),arguments:i?[a]:[a,"true"]});else t.onError(e1(T?34:35,d));continue}T&&u.some(e=>"prop"===e.content)&&(g|=32);let I=t.directiveTransforms[n];if(I){let{props:n,needRuntime:i}=I(s,e,t);o||n.forEach(R),N&&r&&!ta(r)?C(eN(n,h)):f.push(...n),i&&(m.push(s),c(i)&&n1.set(s,i))}else!p(n)&&(m.push(s),_&&(S=!0))}}if(E.length?(C(),a=E.length>1?eb(t.helper(K),E,h):E[0]):f.length&&(a=eN(n4(f),h)),O?g|=16:(N&&!i&&(g|=2),I&&!i&&(g|=4),b.length&&(g|=8),y&&(g|=32)),!S&&(0===g||32===g)&&(T||A||m.length>0)&&(g|=512),!t.inSSR&&a)switch(a.type){case 15:let x=-1,L=-1,M=!1;for(let e=0;e<a.properties.length;e++){let t=a.properties[e].key;ta(t)?"class"===t.content?x=e:"style"===t.content&&(L=e):t.isHandlerKey||(M=!0)}let P=a.properties[x],D=a.properties[L];M?a=eb(t.helper(z),[a]):(P&&!ta(P.value)&&(P.value=eb(t.helper(Y),[P.value])),D&&(I||4===D.value.type&&"["===D.value.content.trim()[0]||17===D.value.type)&&(D.value=eb(t.helper(Q),[D.value])));break;case 14:break;default:a=eb(t.helper(z),[eb(t.helper(Z),[a])])}return{props:a,directives:m,patchFlag:g,dynamicPropNames:b,shouldUseBlock:S}}function n4(e){let t=new Map,n=[];for(let o=0;o<e.length;o++){var i,r;let a=e[o];if(8===a.key.type||!a.key.isStatic){n.push(a);continue}let l=a.key.content,c=t.get(l);c?("style"===l||"class"===l||s(l))&&(i=c,r=a,17===i.value.type?i.value.elements.push(r.value):i.value=eT([i.value,r.value],i.loc)):(t.set(l,a),n.push(a))}return n}function n6(e,t){let n=[],i=n1.get(e);i?n.push(t.helperString(i)):(t.helper($),t.directives.add(e.name),n.push(tw(e.name,"directive")));let{loc:r}=e;if(e.exp&&n.push(e.exp),e.arg&&(e.exp||n.push("void 0"),n.push(e.arg)),Object.keys(e.modifiers).length){e.arg||(e.exp||n.push("void 0"),n.push("void 0"));let t=ey("true",!1,r);n.push(eN(e.modifiers.map(e=>eI(e,t)),r))}return eT(n,e.loc)}function n5(e){return"component"===e||"Component"===e}let n9=(e,t)=>{if(tP(e)){let{children:n,loc:i}=e,{slotName:r,slotProps:s}=n7(e,t),o=[t.prefixIdentifiers?"_ctx.$slots":"$slots",r,"{}","undefined","true"],a=2;s&&(o[2]=s,a=3),n.length&&(o[3]=eC([],n,!1,!1,i),a=4),t.scopeId&&!t.slotted&&(a=5),o.splice(a),e.codegenNode=eb(t.helper(J),o,i)}};function n7(e,t){let n,i='"default"',r=[];for(let t=0;t<e.props.length;t++){let n=e.props[t];if(6===n.type)n.value&&("name"===n.name?i=JSON.stringify(n.value.content):(n.name=m(n.name),r.push(n)));else if("bind"===n.name&&tC(n.arg,"name")){if(n.exp)i=n.exp;else if(n.arg&&4===n.arg.type){let e=m(n.arg.content);i=n.exp=ey(e,!1,n.arg.loc)}}else"bind"===n.name&&n.arg&&ta(n.arg)&&(n.arg.content=m(n.arg.content)),r.push(n)}if(r.length>0){let{props:i,directives:s}=n3(e,t,r,!1,!1);n=i,s.length&&t.onError(e1(36,s[0].loc))}return{slotName:i,slotProps:n}}let n8=(e,t,n,i)=>{let r,{loc:s,modifiers:o,arg:a}=e;if(!e.exp&&!o.length,4===a.type)if(a.isStatic){let e=a.content;e.startsWith("vue:")&&(e=`vnode-${e.slice(4)}`),r=ey(0!==t.tagType||e.startsWith("vnode")||!/[A-Z]/.test(e)?S(m(e)):`on:${e}`,!0,a.loc)}else r=eA([`${n.helperString(ei)}(`,a,")"]);else(r=a).children.unshift(`${n.helperString(ei)}(`),r.children.push(")");let l=e.exp;l&&!l.content.trim()&&(l=void 0);let c=n.cacheHandlers&&!l&&!n.inVOnce;if(l){let e=t_(l),t=!(e||tN(l)),n=l.content.includes(";");(t||c&&e)&&(l=eA([`${t?"$event":"(...args)"} => ${n?"{":"("}`,l,n?"}":")"]))}let h={props:[eI(r,l||ey("() => {}",!1,s))]};return i&&(h=i(h)),c&&(h.props[0].value=n.cache(h.props[0].value)),h.props.forEach(e=>e.key.isHandlerKey=!0),h},ie=(e,t,n)=>{let{modifiers:i}=e,r=e.arg,{exp:s}=e;return s&&4===s.type&&!s.content.trim()&&(s=void 0),4!==r.type?(r.children.unshift("("),r.children.push(') || ""')):r.isStatic||(r.content=r.content?`${r.content} || ""`:'""'),i.some(e=>"camel"===e.content)&&(4===r.type?r.isStatic?r.content=m(r.content):r.content=`${n.helperString(et)}(${r.content})`:(r.children.unshift(`${n.helperString(et)}(`),r.children.push(")"))),!n.inSSR&&(i.some(e=>"prop"===e.content)&&it(r,"."),i.some(e=>"attr"===e.content)&&it(r,"^")),{props:[eI(r,s)]}},it=(e,t)=>{4===e.type?e.isStatic?e.content=t+e.content:e.content=`\`${t}\${${e.content}}\``:(e.children.unshift(`'${t}' + (`),e.children.push(")"))},ii=(e,t)=>{if(0===e.type||1===e.type||11===e.type||10===e.type)return()=>{let n,i=e.children,r=!1;for(let e=0;e<i.length;e++){let t=i[e];if(tR(t)){r=!0;for(let r=e+1;r<i.length;r++){let s=i[r];if(tR(s))n||(n=i[e]=eA([t],t.loc)),n.children.push(" + ",s),i.splice(r,1),r--;else{n=void 0;break}}}}if(r&&(1!==i.length||0!==e.type&&(1!==e.type||0!==e.tagType||e.props.find(e=>7===e.type&&!t.directiveTransforms[e.name])||"template"===e.tag)))for(let e=0;e<i.length;e++){let n=i[e];if(tR(n)||8===n.type){let r=[];(2!==n.type||" "!==n.content)&&r.push(n),t.ssr||0!==nm(n,t)||r.push("1"),i[e]={type:12,content:n,loc:n.loc,codegenNode:eb(t.helper(X),r)}}}}},ir=new WeakSet,is=(e,t)=>{if(1===e.type&&tA(e,"once",!0)&&!ir.has(e)&&!t.inVOnce&&!t.inSSR)return ir.add(e),t.inVOnce=!0,t.helper(er),()=>{t.inVOnce=!1;let e=t.currentNode;e.codegenNode&&(e.codegenNode=t.cache(e.codegenNode,!0,!0))}},io=(e,t,n)=>{let i,{exp:r,arg:s}=e;if(!r)return n.onError(e1(41,e.loc)),ia();let o=r.loc.source.trim(),a=4===r.type?r.content:o,l=n.bindingMetadata[o];if("props"===l||"props-aliased"===l)return r.loc,ia();if(!a.trim()||!t_(r))return n.onError(e1(42,r.loc)),ia();let c=s||ey("modelValue",!0),h=s?ta(s)?`onUpdate:${m(s.content)}`:eA(['"onUpdate:" + ',s]):"onUpdate:modelValue",d=n.isTS?"($event: any)":"$event";i=eA([`${d} => ((`,r,") = $event)"]);let p=[eI(c,e.exp),eI(h,i)];if(e.modifiers.length&&1===t.tagType){let t,n=e.modifiers.map(e=>e.content).map(e=>(th(e)?e:JSON.stringify(e))+": true").join(", "),i=s?ta(s)?(t=s.content,`${"modelValue"===t||"model-value"===t?"model":t}Modifiers${"model"===t?"$":""}`):eA([s,' + "Modifiers"']):"modelModifiers";p.push(eI(i,ey(`{ ${n} }`,!1,e.loc,2)))}return ia(p)};function ia(e=[]){return{props:e}}let il=/[\w).+\-_$\]]/,ic=(e,t)=>{eK("COMPILER_FILTERS",t)&&(5===e.type?ih(e.content,t):1===e.type&&e.props.forEach(e=>{7===e.type&&"for"!==e.name&&e.exp&&ih(e.exp,t)}))};function ih(e,t){if(4===e.type)id(e,t);else for(let n=0;n<e.children.length;n++){let i=e.children[n];"object"==typeof i&&(4===i.type?id(i,t):8===i.type?ih(e,t):5===i.type&&ih(i.content,t))}}function id(e,t){let n=e.content,i=!1,r=!1,s=!1,o=!1,a=0,l=0,c=0,h=0,d,p,u,f,E=[];for(u=0;u<n.length;u++)if(p=d,d=n.charCodeAt(u),i)39===d&&92!==p&&(i=!1);else if(r)34===d&&92!==p&&(r=!1);else if(s)96===d&&92!==p&&(s=!1);else if(o)47===d&&92!==p&&(o=!1);else if(124!==d||124===n.charCodeAt(u+1)||124===n.charCodeAt(u-1)||a||l||c){switch(d){case 34:r=!0;break;case 39:i=!0;break;case 96:s=!0;break;case 40:c++;break;case 41:c--;break;case 91:l++;break;case 93:l--;break;case 123:a++;break;case 125:a--}if(47===d){let e,t=u-1;for(;t>=0&&" "===(e=n.charAt(t));t--);e&&il.test(e)||(o=!0)}}else void 0===f?(h=u+1,f=n.slice(0,u).trim()):m();function m(){E.push(n.slice(h,u).trim()),h=u+1}if(void 0===f?f=n.slice(0,u).trim():0!==h&&m(),E.length){for(u=0;u<E.length;u++)f=function(e,t,n){n.helper(H);let i=t.indexOf("(");if(i<0)return n.filters.add(t),`${tw(t,"filter")}(${e})`;{let r=t.slice(0,i),s=t.slice(i+1);return n.filters.add(r),`${tw(r,"filter")}(${e}${")"!==s?","+s:s}`}}(f,E[u],t);e.content=f,e.ast=void 0}}let ip=new WeakSet,iu=(e,t)=>{if(1===e.type){let n=tA(e,"memo");if(!(!n||ip.has(e))&&!t.inSSR)return ip.add(e),()=>{let i=e.codegenNode||t.currentNode.codegenNode;i&&13===i.type&&(1!==e.tagType&&eX(i,t),e.codegenNode=eb(t.helper(eh),[n.exp,eC(void 0,i),"_cache",String(t.cached.length)]),t.cached.push(null))}}},iE=(e,t)=>{if(1===e.type){for(let n of e.props)if(7===n.type&&"bind"===n.name&&(!n.exp||4===n.exp.type&&!n.exp.content.trim())&&n.arg){let e=n.arg;if(4===e.type&&e.isStatic){let t=m(e.content);(td.test(t[0])||"-"===t[0])&&(n.exp=ey(t,!1,e.loc))}else t.onError(e1(52,e.loc)),n.exp=ey("",!0,e.loc)}}};function im(e){return[[iE,is,nU,iu,nG,ic,n9,n0,nK,ii],{on:n8,bind:ie,model:io}]}function i_(e,t={}){let n=t.onError||ez,i="module"===t.mode;!0===t.prefixIdentifiers?n(e1(47)):i&&n(e1(48)),t.cacheHandlers&&n(e1(49)),t.scopeId&&!i&&n(e1(50));let r=o({},t,{prefixIdentifiers:!1}),s=l(e)?nf(e,r):e,[a,c]=im();return nI(s,o({},r,{nodeTransforms:[...a,...t.nodeTransforms||[]],directiveTransforms:o({},c,t.directiveTransforms||{})})),nv(s,r)}let iS={DATA:"data",PROPS:"props",PROPS_ALIASED:"props-aliased",SETUP_LET:"setup-let",SETUP_CONST:"setup-const",SETUP_REACTIVE_CONST:"setup-reactive-const",SETUP_MAYBE_REF:"setup-maybe-ref",SETUP_REF:"setup-ref",OPTIONS:"options",LITERAL_CONST:"literal-const"},ig=()=>({props:[]}),iT=Symbol(""),iN=Symbol(""),iI=Symbol(""),iy=Symbol(""),iO=Symbol(""),iA=Symbol(""),ib=Symbol(""),iC=Symbol(""),iv=Symbol(""),iR=Symbol("");eu({[iT]:"vModelRadio",[iN]:"vModelCheckbox",[iI]:"vModelText",[iy]:"vModelSelect",[iO]:"vModelDynamic",[iA]:"withModifiers",[ib]:"withKeys",[iC]:"vShow",[iv]:"Transition",[iR]:"TransitionGroup"});let ix={parseMode:"html",isVoidTag:b,isNativeTag:e=>y(e)||O(e)||A(e),isPreTag:e=>"pre"===e,isIgnoreNewlineTag:e=>"pre"===e||"textarea"===e,decodeEntities:function(t,n=!1){return(e||(e=document.createElement("div")),n)?(e.innerHTML=`<div foo="${t.replace(/"/g,""")}">`,e.children[0].getAttribute("foo")):(e.innerHTML=t,e.textContent)},isBuiltInComponent:e=>"Transition"===e||"transition"===e?iv:"TransitionGroup"===e||"transition-group"===e?iR:void 0,getNamespace(e,t,n){let i=t?t.ns:n;if(t&&2===i)if("annotation-xml"===t.tag){if(O(e))return 1;t.props.some(e=>6===e.type&&"encoding"===e.name&&null!=e.value&&("text/html"===e.value.content||"application/xhtml+xml"===e.value.content))&&(i=0)}else/^m(?:[ions]|text)$/.test(t.tag)&&"mglyph"!==e&&"malignmark"!==e&&(i=0);else t&&1===i&&("foreignObject"===t.tag||"desc"===t.tag||"title"===t.tag)&&(i=0);if(0===i){if(O(e))return 1;if(A(e))return 2}return i}},iL=e=>{1===e.type&&e.props.forEach((t,n)=>{6===t.type&&"style"===t.name&&t.value&&(e.props[n]={type:7,name:"bind",arg:ey("style",!0,t.loc),exp:iM(t.value.content,t.loc),modifiers:[],loc:t.loc})})},iM=(e,t)=>{let n;return ey(JSON.stringify((n={},e.replace(I,"").split(T).forEach(e=>{if(e){let t=e.split(N);t.length>1&&(n[t[0].trim()]=t[1].trim())}}),n)),!1,t,3)};function iP(e,t){return e1(e,t)}let iD={X_V_HTML_NO_EXPRESSION:53,53:"X_V_HTML_NO_EXPRESSION",X_V_HTML_WITH_CHILDREN:54,54:"X_V_HTML_WITH_CHILDREN",X_V_TEXT_NO_EXPRESSION:55,55:"X_V_TEXT_NO_EXPRESSION",X_V_TEXT_WITH_CHILDREN:56,56:"X_V_TEXT_WITH_CHILDREN",X_V_MODEL_ON_INVALID_ELEMENT:57,57:"X_V_MODEL_ON_INVALID_ELEMENT",X_V_MODEL_ARG_ON_ELEMENT:58,58:"X_V_MODEL_ARG_ON_ELEMENT",X_V_MODEL_ON_FILE_INPUT_ELEMENT:59,59:"X_V_MODEL_ON_FILE_INPUT_ELEMENT",X_V_MODEL_UNNECESSARY_VALUE:60,60:"X_V_MODEL_UNNECESSARY_VALUE",X_V_SHOW_NO_EXPRESSION:61,61:"X_V_SHOW_NO_EXPRESSION",X_TRANSITION_INVALID_CHILDREN:62,62:"X_TRANSITION_INVALID_CHILDREN",X_IGNORED_SIDE_EFFECT_TAG:63,63:"X_IGNORED_SIDE_EFFECT_TAG",__EXTEND_POINT__:64,64:"__EXTEND_POINT__"},ik={53:"v-html is missing expression.",54:"v-html will override element children.",55:"v-text is missing expression.",56:"v-text will override element children.",57:"v-model can only be used on <input>, <textarea> and <select> elements.",58:"v-model argument is not supported on plain elements.",59:"v-model cannot be used on file inputs since they are read-only. Use a v-on:change listener instead.",60:"Unnecessary value binding used alongside v-model. It will interfere with v-model's behavior.",61:"v-show is missing expression.",62:"<Transition> expects exactly one child element or component.",63:"Tags with side effect (<script> and <style>) are ignored in client component templates.",64:""},iV=t("passive,once,capture"),iw=t("stop,prevent,self,ctrl,shift,alt,meta,exact,middle"),iX=t("left,right"),iU=t("onkeyup,onkeydown,onkeypress"),iF=(e,t,n,i)=>{let r=[],s=[],o=[];for(let i=0;i<t.length;i++){let a=t[i].content;if("native"===a&&n&&eY("COMPILER_V_ON_NATIVE",n))o.push(a);else if(iV(a))o.push(a);else{let t=l(e)?e:ta(e)?e.content:null;iX(a)?t?iU(t.toLowerCase())?r.push(a):s.push(a):(r.push(a),s.push(a)):iw(a)?s.push(a):r.push(a)}}return{keyModifiers:r,nonKeyModifiers:s,eventOptionModifiers:o}},iB=(e,t)=>ta(e)&&"onclick"===e.content.toLowerCase()?ey(t,!0):4!==e.type?eA(["(",e,`) === "onClick" ? "${t}" : (`,e,")"]):e;function i$(e,t,n=iH){return()=>{if(!e.children.length)return;n(e)&&t(iP(62,{start:e.children[0].loc.start,end:e.children[e.children.length-1].loc.end,source:""}));let i=e.children[0];if(1===i.type)for(let t of i.props)7===t.type&&"show"===t.name&&e.props.push({type:6,name:"persisted",nameLoc:e.loc,value:void 0,loc:e.loc})}}function iH(e){let t=e.children=e.children.filter(e=>!tJ(e)),n=t[0];return 1!==t.length||11===n.type||9===n.type&&n.branches.some(iH)}let iG=(e,t)=>{1===e.type&&0===e.tagType&&("script"===e.tag||"style"===e.tag)&&t.removeNode()};function iq(e,t){return"template"===e||(e in iW?iW[e].has(t):t in iK?iK[t].has(e):!(e in iY&&iY[e].has(t)||t in iQ&&iQ[t].has(e)))}let iJ=new Set(["h1","h2","h3","h4","h5","h6"]),ij=new Set([]),iW={head:new Set(["base","basefront","bgsound","link","meta","title","noscript","noframes","style","script","template"]),optgroup:new Set(["option"]),select:new Set(["optgroup","option","hr"]),table:new Set(["caption","colgroup","tbody","tfoot","thead"]),tr:new Set(["td","th"]),colgroup:new Set(["col"]),tbody:new Set(["tr"]),thead:new Set(["tr"]),tfoot:new Set(["tr"]),script:ij,iframe:ij,option:ij,textarea:ij,style:ij,title:ij},iK={html:ij,body:new Set(["html"]),head:new Set(["html"]),td:new Set(["tr"]),colgroup:new Set(["table"]),caption:new Set(["table"]),tbody:new Set(["table"]),tfoot:new Set(["table"]),col:new Set(["colgroup"]),th:new Set(["tr"]),thead:new Set(["table"]),tr:new Set(["tbody","thead","tfoot"]),dd:new Set(["dl","div"]),dt:new Set(["dl","div"]),figcaption:new Set(["figure"]),summary:new Set(["details"]),area:new Set(["map"])},iY={p:new Set(["address","article","aside","blockquote","center","details","dialog","dir","div","dl","fieldset","figure","footer","form","h1","h2","h3","h4","h5","h6","header","hgroup","hr","li","main","nav","menu","ol","p","pre","section","table","ul"]),svg:new Set(["b","blockquote","br","code","dd","div","dl","dt","em","embed","h1","h2","h3","h4","h5","h6","hr","i","img","li","menu","meta","ol","p","pre","ruby","s","small","span","strong","sub","sup","table","u","ul","var"])},iQ={a:new Set(["a"]),button:new Set(["button"]),dd:new Set(["dd","dt"]),dt:new Set(["dd","dt"]),form:new Set(["form"]),li:new Set(["li"]),h1:iJ,h2:iJ,h3:iJ,h4:iJ,h5:iJ,h6:iJ},iz=[iL],iZ={cloak:ig,html:(e,t,n)=>{let{exp:i,loc:r}=e;return i||n.onError(iP(53,r)),t.children.length&&(n.onError(iP(54,r)),t.children.length=0),{props:[eI(ey("innerHTML",!0,r),i||ey("",!0))]}},text:(e,t,n)=>{let{exp:i,loc:r}=e;return i||n.onError(iP(55,r)),t.children.length&&(n.onError(iP(56,r)),t.children.length=0),{props:[eI(ey("textContent",!0),i?nm(i,n)>0?i:eb(n.helperString(W),[i],r):ey("",!0))]}},model:(e,t,n)=>{let i=io(e,t,n);if(!i.props.length||1===t.tagType)return i;e.arg&&n.onError(iP(58,e.arg.loc));let{tag:r}=t,s=n.isCustomElement(r);if("input"===r||"textarea"===r||"select"===r||s){let o=iI,a=!1;if("input"===r||s){let i=tb(t,"type");if(i){if(7===i.type)o=iO;else if(i.value)switch(i.value.content){case"radio":o=iT;break;case"checkbox":o=iN;break;case"file":a=!0,n.onError(iP(59,e.loc))}}else tv(t)&&(o=iO)}else"select"===r&&(o=iy);a||(i.needRuntime=n.helper(o))}else n.onError(iP(57,e.loc));return i.props=i.props.filter(e=>4!==e.key.type||"modelValue"!==e.key.content),i},on:(e,t,n)=>n8(e,t,n,t=>{let{modifiers:i}=e;if(!i.length)return t;let{key:r,value:s}=t.props[0],{keyModifiers:o,nonKeyModifiers:a,eventOptionModifiers:l}=iF(r,i,n,e.loc);if(a.includes("right")&&(r=iB(r,"onContextmenu")),a.includes("middle")&&(r=iB(r,"onMouseup")),a.length&&(s=eb(n.helper(iA),[s,JSON.stringify(a)])),o.length&&(!ta(r)||iU(r.content.toLowerCase()))&&(s=eb(n.helper(ib),[s,JSON.stringify(o)])),l.length){let e=l.map(_).join("");r=ta(r)?ey(`${r.content}${e}`,!0):eA(["(",r,`) + "${e}"`])}return{props:[eI(r,s)]}}),show:(e,t,n)=>{let{exp:i,loc:r}=e;return i||n.onError(iP(61,r)),{props:[],needRuntime:n.helper(iC)}}};function i1(e,t={}){return i_(e,o({},ix,t,{nodeTransforms:[iG,...iz,...t.nodeTransforms||[]],directiveTransforms:o({},iZ,t.directiveTransforms||{}),transformHoist:null}))}function i0(e,t={}){return nf(e,o({},ix,t))}export{L as BASE_TRANSITION,iS as BindingTypes,et as CAMELIZE,en as CAPITALIZE,P as CREATE_BLOCK,w as CREATE_COMMENT,D as CREATE_ELEMENT_BLOCK,V as CREATE_ELEMENT_VNODE,j as CREATE_SLOTS,U as CREATE_STATIC,X as CREATE_TEXT,k as CREATE_VNODE,eJ as CompilerDeprecationTypes,em as ConstantTypes,iZ as DOMDirectiveTransforms,iD as DOMErrorCodes,ik as DOMErrorMessages,iz as DOMNodeTransforms,eE as ElementTypes,e0 as ErrorCodes,C as FRAGMENT,Z as GUARD_REACTIVE_PROPS,ed as IS_MEMO_SAME,ec as IS_REF,x as KEEP_ALIVE,K as MERGE_PROPS,Y as NORMALIZE_CLASS,z as NORMALIZE_PROPS,Q as NORMALIZE_STYLE,nC as NewlineType,ef as NodeTypes,M as OPEN_BLOCK,eo as POP_SCOPE_ID,es as PUSH_SCOPE_ID,q as RENDER_LIST,J as RENDER_SLOT,F as RESOLVE_COMPONENT,$ as RESOLVE_DIRECTIVE,B as RESOLVE_DYNAMIC_COMPONENT,H as RESOLVE_FILTER,er as SET_BLOCK_TRACKING,R as SUSPENSE,v as TELEPORT,W as TO_DISPLAY_STRING,ee as TO_HANDLERS,ei as TO_HANDLER_KEY,iv as TRANSITION,iR as TRANSITION_GROUP,ti as TS_NODE_TYPES,el as UNREF,iN as V_MODEL_CHECKBOX,iO as V_MODEL_DYNAMIC,iT as V_MODEL_RADIO,iy as V_MODEL_SELECT,iI as V_MODEL_TEXT,ib as V_ON_WITH_KEYS,iA as V_ON_WITH_MODIFIERS,iC as V_SHOW,ea as WITH_CTX,G as WITH_DIRECTIVES,eh as WITH_MEMO,tI as advancePositionWithClone,ty as advancePositionWithMutation,tO as assert,i_ as baseCompile,nf as baseParse,n6 as buildDirectiveArgs,n3 as buildProps,nz as buildSlots,eY as checkCompatEnabled,i1 as compile,eX as convertToBlock,eT as createArrayExpression,eP as createAssignmentExpression,ex as createBlockStatement,eR as createCacheExpression,eb as createCallExpression,e1 as createCompilerError,eA as createCompoundExpression,ev as createConditionalExpression,iP as createDOMCompilerError,nj as createForLoopParams,eC as createFunctionExpression,eM as createIfStatement,eO as createInterpolation,eN as createObjectExpression,eI as createObjectProperty,ek as createReturnStatement,eS as createRoot,eD as createSequenceExpression,ey as createSimpleExpression,nO as createStructuralDirectiveTransform,eL as createTemplateLiteral,nN as createTransformContext,eg as createVNodeCall,ez as defaultOnError,eZ as defaultOnWarn,e2 as errorMessages,e8 as extractIdentifiers,tF as filterNonCommentChildren,tA as findDir,tb as findProp,tH as forAliasRE,nv as generate,g as generateCodeFrame,im as getBaseTransformPreset,nm as getConstantType,tU as getMemoedVNodeCall,nT as getSelfName,ew as getVNodeBlockHelper,eV as getVNodeHelper,tv as hasDynamicKeyVBind,tX as hasScopeRef,tB as hasSingleChild,ep as helperNameMap,tk as injectProp,tG as isAllWhitespace,tJ as isCommentOrWhitespace,to as isConstantNode,tl as isCoreComponent,tN as isFnExpression,tg as isFnExpressionBrowser,tT as isFnExpressionNode,te as isFunctionType,e6 as isInDestructureAssignment,e5 as isInNewExpression,nk as isLiteralWhitelisted,t_ as isMemberExpression,tE as isMemberExpressionBrowser,tm as isMemberExpressionNode,e4 as isReferencedIdentifier,th as isSimpleIdentifier,t$ as isSingleIfBlock,tP as isSlotOutlet,tC as isStaticArgOf,ta as isStaticExp,ts as isStaticNode,tt as isStaticProperty,tn as isStaticPropertyKey,tM as isTemplateNode,tR as isText,tx as isVPre,tL as isVSlot,iq as isValidHTMLNesting,tq as isWhitespaceText,e_ as locStub,ig as noopDirectiveTransform,i0 as parse,ix as parserOptions,i$ as postTransformTransition,nw as processExpression,nq as processFor,nF as processIf,n7 as processSlotOutlet,eu as registerRuntimeHelpers,n2 as resolveComponentType,iF as resolveModifiers,nX as stringifyExpression,tw as toValidAssetId,nK as trackSlotScopes,nY as trackVForSlotScopes,nI as transform,ie as transformBind,n0 as transformElement,nV as transformExpression,io as transformModel,n8 as transformOn,iL as transformStyle,iE as transformVBindShorthand,ny as traverseNode,tr as unwrapTSNode,td as validFirstIdentCharRE,e7 as walkBlockDeclarations,e9 as walkFunctionParams,e3 as walkIdentifiers,eQ as warnDeprecation};
|
|
14
|
+
`,0),l()),c||r("return "),e.codegenNode?nM(e.codegenNode,n):r("null"),p&&(a(),r("}")),a(),r("}"),{ast:e,code:n.code,preamble:"",map:n.map?n.map.toJSON():void 0,helpers:e.helpers}}function nR(e,t,{helper:n,push:i,newline:r,isTS:s}){let o=n("filter"===t?H:"component"===t?F:$);for(let n=0;n<e.length;n++){let a=e[n],l=a.endsWith("__self");l&&(a=a.slice(0,-6)),i(`const ${tw(a,t)} = ${o}(${JSON.stringify(a)}${l?", true":""})${s?"!":""}`),n<e.length-1&&r()}}function nx(e,t){let n=e.length>3;t.push("["),n&&t.indent(),nL(e,t,n),n&&t.deindent(),t.push("]")}function nL(e,t,n=!1,i=!0){let{push:r,newline:s}=t;for(let o=0;o<e.length;o++){let c=e[o];l(c)?r(c,-3):a(c)?nx(c,t):nM(c,t),o<e.length-1&&(n?(i&&r(","),s()):i&&r(", "))}}function nM(e,t){var n,i,r;if(l(e))return void t.push(e,-3);if(c(e))return void t.push(t.helper(e));switch(e.type){case 1:case 9:case 11:case 12:nM(e.codegenNode,t);break;case 2:n=e,t.push(JSON.stringify(n.content),-3,n);break;case 4:nP(e,t);break;case 5:!function(e,t){let{push:n,helper:i,pure:r}=t;r&&n(nA),n(`${i(W)}(`),nM(e.content,t),n(")")}(e,t);break;case 8:nD(e,t);break;case 3:!function(e,t){let{push:n,helper:i,pure:r}=t;r&&n(nA),n(`${i(w)}(${JSON.stringify(e.content)})`,-3,e)}(e,t);break;case 13:!function(e,t){let n,{push:i,helper:r,pure:s}=t,{tag:o,props:a,children:l,patchFlag:c,dynamicProps:h,directives:d,isBlock:p,disableTracking:u,isComponent:f}=e;c&&(n=String(c)),d&&i(r(G)+"("),p&&i(`(${r(M)}(${u?"true":""}), `),s&&i(nA),i(r(p?ew(t.inSSR,f):eV(t.inSSR,f))+"(",-2,e),nL(function(e){let t=e.length;for(;t--&&null==e[t];);return e.slice(0,t+1).map(e=>e||"null")}([o,a,l,n,h]),t),i(")"),p&&i(")"),d&&(i(", "),nM(d,t),i(")"))}(e,t);break;case 14:!function(e,t){let{push:n,helper:i,pure:r}=t,s=l(e.callee)?e.callee:i(e.callee);r&&n(nA),n(s+"(",-2,e),nL(e.arguments,t),n(")")}(e,t);break;case 15:!function(e,t){let{push:n,indent:i,deindent:r,newline:s}=t,{properties:o}=e;if(!o.length)return n("{}",-2,e);let a=o.length>1;n(a?"{":"{ "),a&&i();for(let e=0;e<o.length;e++){let{key:i,value:r}=o[e];!function(e,t){let{push:n}=t;8===e.type?(n("["),nD(e,t),n("]")):e.isStatic?n(th(e.content)?e.content:JSON.stringify(e.content),-2,e):n(`[${e.content}]`,-3,e)}(i,t),n(": "),nM(r,t),e<o.length-1&&(n(","),s())}a&&r(),n(a?"}":" }")}(e,t);break;case 17:i=e,r=t,nx(i.elements,r);break;case 18:!function(e,t){let{push:n,indent:i,deindent:r}=t,{params:s,returns:o,body:l,newline:c,isSlot:h}=e;h&&n(`_${ep[ea]}(`),n("(",-2,e),a(s)?nL(s,t):s&&nM(s,t),n(") => "),(c||l)&&(n("{"),i()),o?(c&&n("return "),a(o)?nx(o,t):nM(o,t)):l&&nM(l,t),(c||l)&&(r(),n("}")),h&&(e.isNonScopedSlot&&n(", undefined, true"),n(")"))}(e,t);break;case 19:!function(e,t){let{test:n,consequent:i,alternate:r,newline:s}=e,{push:o,indent:a,deindent:l,newline:c}=t;if(4===n.type){let e=!th(n.content);e&&o("("),nP(n,t),e&&o(")")}else o("("),nM(n,t),o(")");s&&a(),t.indentLevel++,s||o(" "),o("? "),nM(i,t),t.indentLevel--,s&&c(),s||o(" "),o(": ");let h=19===r.type;!h&&t.indentLevel++,nM(r,t),!h&&t.indentLevel--,s&&l(!0)}(e,t);break;case 20:!function(e,t){let{push:n,helper:i,indent:r,deindent:s,newline:o}=t,{needPauseTracking:a,needArraySpread:l}=e;l&&n("[...("),n(`_cache[${e.index}] || (`),a&&(r(),n(`${i(er)}(-1`),e.inVOnce&&n(", true"),n("),"),o(),n("(")),n(`_cache[${e.index}] = `),nM(e.value,t),a&&(n(`).cacheIndex = ${e.index},`),o(),n(`${i(er)}(1),`),o(),n(`_cache[${e.index}]`),s()),n(")"),l&&n(")]")}(e,t);break;case 21:nL(e.body,t,!0,!1)}}function nP(e,t){let{content:n,isStatic:i}=e;t.push(i?JSON.stringify(n):n,-3,e)}function nD(e,t){for(let n=0;n<e.children.length;n++){let i=e.children[n];l(i)?t.push(i,-3):nM(i,t)}}let nk=t("true,false,null,this"),nV=(e,t)=>{if(5===e.type)e.content=nw(e.content,t);else if(1===e.type){let n=tA(e,"memo");for(let i=0;i<e.props.length;i++){let r=e.props[i];if(7===r.type&&"for"!==r.name){let e=r.exp,i=r.arg;!e||4!==e.type||"on"===r.name&&i||n&&i&&4===i.type&&"key"===i.content||(r.exp=nw(e,t,"slot"===r.name)),i&&4===i.type&&!i.isStatic&&(r.arg=nw(i,t))}}}};function nw(e,t,n=!1,i=!1,r=Object.create(t.identifiers)){return e}function nX(e){return l(e)?e:4===e.type?e.content:e.children.map(nX).join("")}let nU=nO(/^(?:if|else|else-if)$/,(e,t,n)=>nF(e,t,n,(e,t,i)=>{let r=n.parent.children,s=r.indexOf(e),o=0;for(;s-- >=0;){let e=r[s];e&&9===e.type&&(o+=e.branches.length)}return()=>{i?e.codegenNode=n$(t,o,n):function(e){for(;;)if(19===e.type)if(19!==e.alternate.type)return e;else e=e.alternate;else 20===e.type&&(e=e.value)}(e.codegenNode).alternate=n$(t,o+e.branches.length-1,n)}}));function nF(e,t,n,i){if("else"!==t.name&&(!t.exp||!t.exp.content.trim())){let i=t.exp?t.exp.loc:e.loc;n.onError(e1(28,t.loc)),t.exp=ey("true",!1,i)}if("if"===t.name){var r;let s=nB(e,t),o={type:9,loc:nh((r=e.loc).start.offset,r.end.offset),branches:[s]};if(n.replaceNode(o),i)return i(o,s,!0)}else{let r=n.parent.children,s=r.indexOf(e);for(;s-- >=-1;){let o=r[s];if(o&&tJ(o)){n.removeNode(o);continue}if(o&&9===o.type){("else-if"===t.name||"else"===t.name)&&void 0===o.branches[o.branches.length-1].condition&&n.onError(e1(30,e.loc)),n.removeNode();let r=nB(e,t);o.branches.push(r);let s=i&&i(o,r,!1);ny(r,n),s&&s(),n.currentNode=null}else n.onError(e1(30,e.loc));break}}}function nB(e,t){let n=3===e.tagType;return{type:10,loc:e.loc,condition:"else"===t.name?void 0:t.exp,children:n&&!tA(e,"for")?e.children:[e],userKey:tb(e,"key"),isTemplateIf:n}}function n$(e,t,n){return e.condition?ev(e.condition,nH(e,t,n),eb(n.helper(w),['""',"true"])):nH(e,t,n)}function nH(e,t,n){let{helper:i}=n,r=eI("key",ey(`${t}`,!1,e_,2)),{children:s}=e,o=s[0];if(1!==s.length||1!==o.type)if(1!==s.length||11!==o.type)return eg(n,i(C),eN([r]),s,64,void 0,void 0,!0,!1,!1,e.loc);else{let e=o.codegenNode;return tk(e,r,n),e}{let e=o.codegenNode,t=tU(e);return 13===t.type&&eX(t,n),tk(t,r,n),e}}let nG=nO("for",(e,t,n)=>{let{helper:i,removeHelper:r}=n;return nq(e,t,n,t=>{let s=eb(i(q),[t.source]),o=tM(e),a=tA(e,"memo"),l=tb(e,"key",!1,!0);l&&l.type;let c=l&&(6===l.type?l.value?ey(l.value.content,!0):void 0:l.exp),h=l&&c?eI("key",c):null,d=4===t.source.type&&t.source.constType>0,p=d?64:l?128:256;return t.codegenNode=eg(n,i(C),void 0,s,p,void 0,void 0,!0,!d,!1,e.loc),()=>{let l,{children:p}=t,u=1!==p.length||1!==p[0].type,f=tP(e)?e:o&&1===e.children.length&&tP(e.children[0])?e.children[0]:null;if(f?(l=f.codegenNode,o&&h&&tk(l,h,n)):u?l=eg(n,i(C),h?eN([h]):void 0,e.children,64,void 0,void 0,!0,void 0,!1):(l=p[0].codegenNode,o&&h&&tk(l,h,n),!d!==l.isBlock&&(l.isBlock?(r(M),r(ew(n.inSSR,l.isComponent))):r(eV(n.inSSR,l.isComponent))),l.isBlock=!d,l.isBlock?(i(M),i(ew(n.inSSR,l.isComponent))):i(eV(n.inSSR,l.isComponent))),a){let e=eC(nj(t.parseResult,[ey("_cached")]));e.body=ex([eA(["const _memo = (",a.exp,")"]),eA(["if (_cached",...c?[" && _cached.key === ",c]:[],` && ${n.helperString(ed)}(_cached, _memo)) return _cached`]),eA(["const _item = ",l]),ey("_item.memo = _memo"),ey("return _item")]),s.arguments.push(e,ey("_cache"),ey(String(n.cached.length))),n.cached.push(null)}else s.arguments.push(eC(nj(t.parseResult),l,!0))}})});function nq(e,t,n,i){if(!t.exp)return void n.onError(e1(31,t.loc));let r=t.forParseResult;if(!r)return void n.onError(e1(32,t.loc));nJ(r);let{scopes:s}=n,{source:o,value:a,key:l,index:c}=r,h={type:11,loc:t.loc,source:o,valueAlias:a,keyAlias:l,objectIndexAlias:c,parseResult:r,children:tM(e)?e.children:[e]};n.replaceNode(h),s.vFor++;let d=i&&i(h);return()=>{s.vFor--,d&&d()}}function nJ(e,t){e.finalized||(e.finalized=!0)}function nj({value:e,key:t,index:n},i=[]){var r=[e,t,n,...i];let s=r.length;for(;s--&&!r[s];);return r.slice(0,s+1).map((e,t)=>e||ey("_".repeat(t+1),!1))}let nW=ey("undefined",!1),nK=(e,t)=>{if(1===e.type&&(1===e.tagType||3===e.tagType)){let n=tA(e,"slot");if(n)return n.exp,t.scopes.vSlot++,()=>{t.scopes.vSlot--}}},nY=(e,t)=>{let n;if(tM(e)&&e.props.some(tL)&&(n=tA(e,"for"))){let e=n.forParseResult;if(e){nJ(e);let{value:n,key:i,index:r}=e,{addIdentifiers:s,removeIdentifiers:o}=t;return n&&s(n),i&&s(i),r&&s(r),()=>{n&&o(n),i&&o(i),r&&o(r)}}}},nQ=(e,t,n,i)=>eC(e,n,!1,!0,n.length?n[0].loc:i);function nz(e,t,n=nQ){t.helper(ea);let{children:i,loc:r}=e,s=[],o=[],a=t.scopes.vSlot>0||t.scopes.vFor>0,l=tA(e,"slot",!0);if(l){let{arg:e,exp:t}=l;e&&!ta(e)&&(a=!0),s.push(eI(e||ey("default",!0),n(t,void 0,i,r)))}let c=!1,h=!1,d=[],p=new Set,u=0;for(let e=0;e<i.length;e++){let r,f,E,m,_=i[e];if(!tM(_)||!(r=tA(_,"slot",!0))){3!==_.type&&d.push(_);continue}if(l){t.onError(e1(37,r.loc));break}c=!0;let{children:S,loc:g}=_,{arg:T=ey("default",!0),exp:N,loc:I}=r;ta(T)?f=T?T.content:"default":a=!0;let y=tA(_,"for"),O=n(N,y,S,g);if(E=tA(_,"if"))a=!0,o.push(ev(E.exp,nZ(T,O,u++),nW));else if(m=tA(_,/^else(?:-if)?$/,!0)){let n,r=e;for(;r--&&tJ(n=i[r]););if(n&&tM(n)&&tA(n,/^(?:else-)?if$/)){let e=o[o.length-1];for(;19===e.alternate.type;)e=e.alternate;e.alternate=m.exp?ev(m.exp,nZ(T,O,u++),nW):nZ(T,O,u++)}else t.onError(e1(30,m.loc))}else if(y){a=!0;let e=y.forParseResult;e?(nJ(e),o.push(eb(t.helper(q),[e.source,eC(nj(e),nZ(T,O),!0)]))):t.onError(e1(32,y.loc))}else{if(f){if(p.has(f)){t.onError(e1(38,I));continue}p.add(f),"default"===f&&(h=!0)}s.push(eI(T,O))}}if(!l){let e=(e,i)=>{let s=n(e,void 0,i,r);return t.compatConfig&&(s.isNonScopedSlot=!0),eI("default",s)};c?d.length&&!d.every(tq)&&(h?t.onError(e1(39,d[0].loc)):s.push(e(void 0,d))):s.push(e(void 0,i))}let f=a?2:!function e(t){for(let n=0;n<t.length;n++){let i=t[n];switch(i.type){case 1:if(2===i.tagType||e(i.children))return!0;break;case 9:if(e(i.branches))return!0;break;case 10:case 11:if(e(i.children))return!0}}return!1}(e.children)?1:3,E=eN(s.concat(eI("_",ey(f+"",!1))),r);return o.length&&(E=eb(t.helper(j),[E,eT(o)])),{slots:E,hasDynamicSlots:a}}function nZ(e,t,n){let i=[eI("name",e),eI("fn",t)];return null!=n&&i.push(eI("key",ey(String(n),!0))),eN(i)}let n1=new WeakMap,n0=(e,t)=>function(){let n,i,r,s,o;if(1!==(e=t.currentNode).type||0!==e.tagType&&1!==e.tagType)return;let{tag:a,props:l}=e,c=1===e.tagType,d=c?n2(e,t):`"${a}"`,p=h(d)&&d.callee===B,u=0,f=p||d===v||d===R||!c&&("svg"===a||"foreignObject"===a||"math"===a);if(l.length>0){let i=n3(e,t,void 0,c,p);n=i.props,u=i.patchFlag,s=i.dynamicPropNames;let r=i.directives;o=r&&r.length?eT(r.map(e=>n6(e,t))):void 0,i.shouldUseBlock&&(f=!0)}if(e.children.length>0)if(d===x&&(f=!0,u|=1024),c&&d!==v&&d!==x){let{slots:n,hasDynamicSlots:r}=nz(e,t);i=n,r&&(u|=1024)}else if(1===e.children.length&&d!==v){let n=e.children[0],r=n.type,s=5===r||8===r;s&&0===nm(n,t)&&(u|=1),i=s||2===r?n:e.children}else i=e.children;s&&s.length&&(r=function(e){let t="[";for(let n=0,i=e.length;n<i;n++)t+=JSON.stringify(e[n]),n<i-1&&(t+=", ");return t+"]"}(s)),e.codegenNode=eg(t,d,n,i,0===u?void 0:u,r,o,!!f,!1,c,e.loc)};function n2(e,t,n=!1){let{tag:i}=e,r=n5(i),s=tb(e,"is",!1,!0);if(s)if(r||eK("COMPILER_IS_ON_ELEMENT",t)){let e;if(6===s.type?e=s.value&&ey(s.value.content,!0):(e=s.exp)||(e=ey("is",!1,s.arg.loc)),e)return eb(t.helper(B),[e])}else 6===s.type&&s.value.content.startsWith("vue:")&&(i=s.value.content.slice(4));let o=tl(i)||t.isBuiltInComponent(i);return o?(n||t.helper(o),o):(t.helper(F),t.components.add(i),tw(i,"component"))}function n3(e,t,n=e.props,i,r,o=!1){let a,{tag:l,loc:h,children:u}=e,f=[],E=[],m=[],_=u.length>0,S=!1,g=0,T=!1,N=!1,I=!1,y=!1,O=!1,A=!1,b=[],C=e=>{f.length&&(E.push(eN(n4(f),h)),f=[]),e&&E.push(e)},v=()=>{t.scopes.vFor>0&&f.push(eI(ey("ref_for",!0),ey("true")))},R=({key:e,value:n})=>{if(ta(e)){let o=e.content,a=s(o);a&&(!i||r)&&"onclick"!==o.toLowerCase()&&"onUpdate:modelValue"!==o&&!d(o)&&(y=!0),a&&d(o)&&(A=!0),a&&14===n.type&&(n=n.arguments[0]),20===n.type||(4===n.type||8===n.type)&&nm(n,t)>0||("ref"===o?T=!0:"class"===o?N=!0:"style"===o?I=!0:"key"===o||b.includes(o)||b.push(o),i&&("class"===o||"style"===o)&&!b.includes(o)&&b.push(o))}else O=!0};for(let r=0;r<n.length;r++){let s=n[r];if(6===s.type){let{loc:e,name:n,nameLoc:i,value:r}=s;if("ref"===n&&(T=!0,v()),"is"===n&&(n5(l)||r&&r.content.startsWith("vue:")||eK("COMPILER_IS_ON_ELEMENT",t)))continue;f.push(eI(ey(n,!0,i),ey(r?r.content:"",!0,r?r.loc:e)))}else{let{name:n,arg:r,exp:a,loc:d,modifiers:u}=s,T="bind"===n,N="on"===n;if("slot"===n){i||t.onError(e1(40,d));continue}if("once"===n||"memo"===n||"is"===n||T&&tC(r,"is")&&(n5(l)||eK("COMPILER_IS_ON_ELEMENT",t))||N&&o)continue;if((T&&tC(r,"key")||N&&_&&tC(r,"vue:before-update"))&&(S=!0),T&&tC(r,"ref")&&v(),!r&&(T||N)){if(O=!0,a)if(T){if(C(),eK("COMPILER_V_BIND_OBJECT_ORDER",t)){E.unshift(a);continue}v(),C(),E.push(a)}else C({type:14,loc:d,callee:t.helper(ee),arguments:i?[a]:[a,"true"]});else t.onError(e1(T?34:35,d));continue}T&&u.some(e=>"prop"===e.content)&&(g|=32);let I=t.directiveTransforms[n];if(I){let{props:n,needRuntime:i}=I(s,e,t);o||n.forEach(R),N&&r&&!ta(r)?C(eN(n,h)):f.push(...n),i&&(m.push(s),c(i)&&n1.set(s,i))}else!p(n)&&(m.push(s),_&&(S=!0))}}if(E.length?(C(),a=E.length>1?eb(t.helper(K),E,h):E[0]):f.length&&(a=eN(n4(f),h)),O?g|=16:(N&&!i&&(g|=2),I&&!i&&(g|=4),b.length&&(g|=8),y&&(g|=32)),!S&&(0===g||32===g)&&(T||A||m.length>0)&&(g|=512),!t.inSSR&&a)switch(a.type){case 15:let x=-1,L=-1,M=!1;for(let e=0;e<a.properties.length;e++){let t=a.properties[e].key;ta(t)?"class"===t.content?x=e:"style"===t.content&&(L=e):t.isHandlerKey||(M=!0)}let P=a.properties[x],D=a.properties[L];M?a=eb(t.helper(z),[a]):(P&&!ta(P.value)&&(P.value=eb(t.helper(Y),[P.value])),D&&(I||4===D.value.type&&"["===D.value.content.trim()[0]||17===D.value.type)&&(D.value=eb(t.helper(Q),[D.value])));break;case 14:break;default:a=eb(t.helper(z),[eb(t.helper(Z),[a])])}return{props:a,directives:m,patchFlag:g,dynamicPropNames:b,shouldUseBlock:S}}function n4(e){let t=new Map,n=[];for(let o=0;o<e.length;o++){var i,r;let a=e[o];if(8===a.key.type||!a.key.isStatic){n.push(a);continue}let l=a.key.content,c=t.get(l);c?("style"===l||"class"===l||s(l))&&(i=c,r=a,17===i.value.type?i.value.elements.push(r.value):i.value=eT([i.value,r.value],i.loc)):(t.set(l,a),n.push(a))}return n}function n6(e,t){let n=[],i=n1.get(e);i?n.push(t.helperString(i)):(t.helper($),t.directives.add(e.name),n.push(tw(e.name,"directive")));let{loc:r}=e;if(e.exp&&n.push(e.exp),e.arg&&(e.exp||n.push("void 0"),n.push(e.arg)),Object.keys(e.modifiers).length){e.arg||(e.exp||n.push("void 0"),n.push("void 0"));let t=ey("true",!1,r);n.push(eN(e.modifiers.map(e=>eI(e,t)),r))}return eT(n,e.loc)}function n5(e){return"component"===e||"Component"===e}let n9=(e,t)=>{if(tP(e)){let{children:n,loc:i}=e,{slotName:r,slotProps:s}=n7(e,t),o=[t.prefixIdentifiers?"_ctx.$slots":"$slots",r,"{}","undefined","true"],a=2;s&&(o[2]=s,a=3),n.length&&(o[3]=eC([],n,!1,!1,i),a=4),t.scopeId&&!t.slotted&&(a=5),o.splice(a),e.codegenNode=eb(t.helper(J),o,i)}};function n7(e,t){let n,i='"default"',r=[];for(let t=0;t<e.props.length;t++){let n=e.props[t];if(6===n.type)n.value&&("name"===n.name?i=JSON.stringify(n.value.content):(n.name=m(n.name),r.push(n)));else if("bind"===n.name&&tC(n.arg,"name")){if(n.exp)i=n.exp;else if(n.arg&&4===n.arg.type){let e=m(n.arg.content);i=n.exp=ey(e,!1,n.arg.loc)}}else"bind"===n.name&&n.arg&&ta(n.arg)&&(n.arg.content=m(n.arg.content)),r.push(n)}if(r.length>0){let{props:i,directives:s}=n3(e,t,r,!1,!1);n=i,s.length&&t.onError(e1(36,s[0].loc))}return{slotName:i,slotProps:n}}let n8=(e,t,n,i)=>{let r,{loc:s,modifiers:o,arg:a}=e;if(!e.exp&&!o.length,4===a.type)if(a.isStatic){let e=a.content;e.startsWith("vue:")&&(e=`vnode-${e.slice(4)}`),r=ey(0!==t.tagType||e.startsWith("vnode")||!/[A-Z]/.test(e)?S(m(e)):`on:${e}`,!0,a.loc)}else r=eA([`${n.helperString(ei)}(`,a,")"]);else(r=a).children.unshift(`${n.helperString(ei)}(`),r.children.push(")");let l=e.exp;l&&!l.content.trim()&&(l=void 0);let c=n.cacheHandlers&&!l&&!n.inVOnce;if(l){let e=t_(l),t=!(e||tN(l)),n=l.content.includes(";");(t||c&&e)&&(l=eA([`${t?"$event":"(...args)"} => ${n?"{":"("}`,l,n?"}":")"]))}let h={props:[eI(r,l||ey("() => {}",!1,s))]};return i&&(h=i(h)),c&&(h.props[0].value=n.cache(h.props[0].value)),h.props.forEach(e=>e.key.isHandlerKey=!0),h},ie=(e,t,n)=>{let{modifiers:i}=e,r=e.arg,{exp:s}=e;return s&&4===s.type&&!s.content.trim()&&(s=void 0),4!==r.type?(r.children.unshift("("),r.children.push(') || ""')):r.isStatic||(r.content=r.content?`${r.content} || ""`:'""'),i.some(e=>"camel"===e.content)&&(4===r.type?r.isStatic?r.content=m(r.content):r.content=`${n.helperString(et)}(${r.content})`:(r.children.unshift(`${n.helperString(et)}(`),r.children.push(")"))),!n.inSSR&&(i.some(e=>"prop"===e.content)&&it(r,"."),i.some(e=>"attr"===e.content)&&it(r,"^")),{props:[eI(r,s)]}},it=(e,t)=>{4===e.type?e.isStatic?e.content=t+e.content:e.content=`\`${t}\${${e.content}}\``:(e.children.unshift(`'${t}' + (`),e.children.push(")"))},ii=(e,t)=>{if(0===e.type||1===e.type||11===e.type||10===e.type)return()=>{let n,i=e.children,r=!1;for(let e=0;e<i.length;e++){let t=i[e];if(tR(t)){r=!0;for(let r=e+1;r<i.length;r++){let s=i[r];if(tR(s))n||(n=i[e]=eA([t],t.loc)),n.children.push(" + ",s),i.splice(r,1),r--;else{n=void 0;break}}}}if(r&&(1!==i.length||0!==e.type&&(1!==e.type||0!==e.tagType||e.props.find(e=>7===e.type&&!t.directiveTransforms[e.name])||"template"===e.tag)))for(let e=0;e<i.length;e++){let n=i[e];if(tR(n)||8===n.type){let r=[];(2!==n.type||" "!==n.content)&&r.push(n),t.ssr||0!==nm(n,t)||r.push("1"),i[e]={type:12,content:n,loc:n.loc,codegenNode:eb(t.helper(X),r)}}}}},ir=new WeakSet,is=(e,t)=>{if(1===e.type&&tA(e,"once",!0)&&!ir.has(e)&&!t.inVOnce&&!t.inSSR)return ir.add(e),t.inVOnce=!0,t.helper(er),()=>{t.inVOnce=!1;let e=t.currentNode;e.codegenNode&&(e.codegenNode=t.cache(e.codegenNode,!0,!0))}},io=(e,t,n)=>{let i,{exp:r,arg:s}=e;if(!r)return n.onError(e1(41,e.loc)),ia();let o=r.loc.source.trim(),a=4===r.type?r.content:o,l=n.bindingMetadata[o];if("props"===l||"props-aliased"===l)return r.loc,ia();if(!a.trim()||!t_(r))return n.onError(e1(42,r.loc)),ia();let c=s||ey("modelValue",!0),h=s?ta(s)?`onUpdate:${m(s.content)}`:eA(['"onUpdate:" + ',s]):"onUpdate:modelValue",d=n.isTS?"($event: any)":"$event";i=eA([`${d} => ((`,r,") = $event)"]);let p=[eI(c,e.exp),eI(h,i)];if(e.modifiers.length&&1===t.tagType){let t,n=e.modifiers.map(e=>e.content).map(e=>(th(e)?e:JSON.stringify(e))+": true").join(", "),i=s?ta(s)?(t=s.content,`${"modelValue"===t||"model-value"===t?"model":t}Modifiers${"model"===t?"$":""}`):eA([s,' + "Modifiers"']):"modelModifiers";p.push(eI(i,ey(`{ ${n} }`,!1,e.loc,2)))}return ia(p)};function ia(e=[]){return{props:e}}let il=/[\w).+\-_$\]]/,ic=(e,t)=>{eK("COMPILER_FILTERS",t)&&(5===e.type?ih(e.content,t):1===e.type&&e.props.forEach(e=>{7===e.type&&"for"!==e.name&&e.exp&&ih(e.exp,t)}))};function ih(e,t){if(4===e.type)id(e,t);else for(let n=0;n<e.children.length;n++){let i=e.children[n];"object"==typeof i&&(4===i.type?id(i,t):8===i.type?ih(e,t):5===i.type&&ih(i.content,t))}}function id(e,t){let n=e.content,i=!1,r=!1,s=!1,o=!1,a=0,l=0,c=0,h=0,d,p,u,f,E=[];for(u=0;u<n.length;u++)if(p=d,d=n.charCodeAt(u),i)39===d&&92!==p&&(i=!1);else if(r)34===d&&92!==p&&(r=!1);else if(s)96===d&&92!==p&&(s=!1);else if(o)47===d&&92!==p&&(o=!1);else if(124!==d||124===n.charCodeAt(u+1)||124===n.charCodeAt(u-1)||a||l||c){switch(d){case 34:r=!0;break;case 39:i=!0;break;case 96:s=!0;break;case 40:c++;break;case 41:c--;break;case 91:l++;break;case 93:l--;break;case 123:a++;break;case 125:a--}if(47===d){let e,t=u-1;for(;t>=0&&" "===(e=n.charAt(t));t--);e&&il.test(e)||(o=!0)}}else void 0===f?(h=u+1,f=n.slice(0,u).trim()):m();function m(){E.push(n.slice(h,u).trim()),h=u+1}if(void 0===f?f=n.slice(0,u).trim():0!==h&&m(),E.length){for(u=0;u<E.length;u++)f=function(e,t,n){n.helper(H);let i=t.indexOf("(");if(i<0)return n.filters.add(t),`${tw(t,"filter")}(${e})`;{let r=t.slice(0,i),s=t.slice(i+1);return n.filters.add(r),`${tw(r,"filter")}(${e}${")"!==s?","+s:s}`}}(f,E[u],t);e.content=f,e.ast=void 0}}let ip=new WeakSet,iu=(e,t)=>{if(1===e.type){let n=tA(e,"memo");if(!(!n||ip.has(e))&&!t.inSSR)return ip.add(e),()=>{let i=e.codegenNode||t.currentNode.codegenNode;i&&13===i.type&&(1!==e.tagType&&eX(i,t),e.codegenNode=eb(t.helper(eh),[n.exp,eC(void 0,i),"_cache",String(t.cached.length)]),t.cached.push(null))}}},iE=(e,t)=>{if(1===e.type){for(let n of e.props)if(7===n.type&&"bind"===n.name&&(!n.exp||4===n.exp.type&&!n.exp.content.trim())&&n.arg){let e=n.arg;if(4===e.type&&e.isStatic){let t=m(e.content);(td.test(t[0])||"-"===t[0])&&(n.exp=ey(t,!1,e.loc))}else t.onError(e1(52,e.loc)),n.exp=ey("",!0,e.loc)}}};function im(e){return[[iE,is,nU,iu,nG,ic,n9,n0,nK,ii],{on:n8,bind:ie,model:io}]}function i_(e,t={}){let n=t.onError||ez,i="module"===t.mode;!0===t.prefixIdentifiers?n(e1(47)):i&&n(e1(48)),t.cacheHandlers&&n(e1(49)),t.scopeId&&!i&&n(e1(50));let r=o({},t,{prefixIdentifiers:!1}),s=l(e)?nf(e,r):e,[a,c]=im();return nI(s,o({},r,{nodeTransforms:[...a,...t.nodeTransforms||[]],directiveTransforms:o({},c,t.directiveTransforms||{})})),nv(s,r)}let iS={DATA:"data",PROPS:"props",PROPS_ALIASED:"props-aliased",SETUP_LET:"setup-let",SETUP_CONST:"setup-const",SETUP_REACTIVE_CONST:"setup-reactive-const",SETUP_MAYBE_REF:"setup-maybe-ref",SETUP_REF:"setup-ref",OPTIONS:"options",LITERAL_CONST:"literal-const"},ig=()=>({props:[]}),iT=Symbol(""),iN=Symbol(""),iI=Symbol(""),iy=Symbol(""),iO=Symbol(""),iA=Symbol(""),ib=Symbol(""),iC=Symbol(""),iv=Symbol(""),iR=Symbol("");eu({[iT]:"vModelRadio",[iN]:"vModelCheckbox",[iI]:"vModelText",[iy]:"vModelSelect",[iO]:"vModelDynamic",[iA]:"withModifiers",[ib]:"withKeys",[iC]:"vShow",[iv]:"Transition",[iR]:"TransitionGroup"});let ix={parseMode:"html",isVoidTag:b,isNativeTag:e=>y(e)||O(e)||A(e),isPreTag:e=>"pre"===e,isIgnoreNewlineTag:e=>"pre"===e||"textarea"===e,decodeEntities:function(t,n=!1){return(e||(e=document.createElement("div")),n)?(e.innerHTML=`<div foo="${t.replace(/"/g,""")}">`,e.children[0].getAttribute("foo")):(e.innerHTML=t,e.textContent)},isBuiltInComponent:e=>"Transition"===e||"transition"===e?iv:"TransitionGroup"===e||"transition-group"===e?iR:void 0,getNamespace(e,t,n){let i=t?t.ns:n;if(t&&2===i)if("annotation-xml"===t.tag){if(O(e))return 1;t.props.some(e=>6===e.type&&"encoding"===e.name&&null!=e.value&&("text/html"===e.value.content||"application/xhtml+xml"===e.value.content))&&(i=0)}else/^m(?:[ions]|text)$/.test(t.tag)&&"mglyph"!==e&&"malignmark"!==e&&(i=0);else t&&1===i&&("foreignObject"===t.tag||"desc"===t.tag||"title"===t.tag)&&(i=0);if(0===i){if(O(e))return 1;if(A(e))return 2}return i}},iL=e=>{1===e.type&&e.props.forEach((t,n)=>{6===t.type&&"style"===t.name&&t.value&&(e.props[n]={type:7,name:"bind",arg:ey("style",!0,t.loc),exp:iM(t.value.content,t.loc),modifiers:[],loc:t.loc})})},iM=(e,t)=>{let n;return ey(JSON.stringify((n={},e.replace(I,"").split(T).forEach(e=>{if(e){let t=e.split(N);t.length>1&&(n[t[0].trim()]=t[1].trim())}}),n)),!1,t,3)};function iP(e,t){return e1(e,t)}let iD={X_V_HTML_NO_EXPRESSION:53,53:"X_V_HTML_NO_EXPRESSION",X_V_HTML_WITH_CHILDREN:54,54:"X_V_HTML_WITH_CHILDREN",X_V_TEXT_NO_EXPRESSION:55,55:"X_V_TEXT_NO_EXPRESSION",X_V_TEXT_WITH_CHILDREN:56,56:"X_V_TEXT_WITH_CHILDREN",X_V_MODEL_ON_INVALID_ELEMENT:57,57:"X_V_MODEL_ON_INVALID_ELEMENT",X_V_MODEL_ARG_ON_ELEMENT:58,58:"X_V_MODEL_ARG_ON_ELEMENT",X_V_MODEL_ON_FILE_INPUT_ELEMENT:59,59:"X_V_MODEL_ON_FILE_INPUT_ELEMENT",X_V_MODEL_UNNECESSARY_VALUE:60,60:"X_V_MODEL_UNNECESSARY_VALUE",X_V_SHOW_NO_EXPRESSION:61,61:"X_V_SHOW_NO_EXPRESSION",X_TRANSITION_INVALID_CHILDREN:62,62:"X_TRANSITION_INVALID_CHILDREN",X_IGNORED_SIDE_EFFECT_TAG:63,63:"X_IGNORED_SIDE_EFFECT_TAG",__EXTEND_POINT__:64,64:"__EXTEND_POINT__"},ik={53:"v-html is missing expression.",54:"v-html will override element children.",55:"v-text is missing expression.",56:"v-text will override element children.",57:"v-model can only be used on <input>, <textarea> and <select> elements.",58:"v-model argument is not supported on plain elements.",59:"v-model cannot be used on file inputs since they are read-only. Use a v-on:change listener instead.",60:"Unnecessary value binding used alongside v-model. It will interfere with v-model's behavior.",61:"v-show is missing expression.",62:"<Transition> expects exactly one child element or component.",63:"Tags with side effect (<script> and <style>) are ignored in client component templates.",64:""},iV=t("passive,once,capture"),iw=t("stop,prevent,self,ctrl,shift,alt,meta,exact,middle"),iX=t("left,right"),iU=t("onkeyup,onkeydown,onkeypress"),iF=(e,t,n,i)=>{let r=[],s=[],o=[];for(let i=0;i<t.length;i++){let a=t[i].content;if("native"===a&&n&&eY("COMPILER_V_ON_NATIVE",n))o.push(a);else if(iV(a))o.push(a);else{let t=l(e)?e:ta(e)?e.content:null;iX(a)?t?iU(t.toLowerCase())?r.push(a):s.push(a):(r.push(a),s.push(a)):iw(a)?s.push(a):r.push(a)}}return{keyModifiers:r,nonKeyModifiers:s,eventOptionModifiers:o}},iB=(e,t)=>ta(e)&&"onclick"===e.content.toLowerCase()?ey(t,!0):4!==e.type?eA(["(",e,`) === "onClick" ? "${t}" : (`,e,")"]):e;function i$(e,t,n=iH){return()=>{if(!e.children.length)return;n(e)&&t(iP(62,{start:e.children[0].loc.start,end:e.children[e.children.length-1].loc.end,source:""}));let i=e.children[0];if(1===i.type)for(let t of i.props)7===t.type&&"show"===t.name&&e.props.push({type:6,name:"persisted",nameLoc:e.loc,value:void 0,loc:e.loc})}}function iH(e){let t=e.children=e.children.filter(e=>!tJ(e)),n=t[0];return 1!==t.length||11===n.type||9===n.type&&n.branches.some(iH)}let iG=(e,t)=>{1===e.type&&0===e.tagType&&("script"===e.tag||"style"===e.tag)&&t.removeNode()};function iq(e,t){return"template"===e||(e in iW?iW[e].has(t):t in iK?iK[t].has(e):!(e in iY&&iY[e].has(t)||t in iQ&&iQ[t].has(e)))}let iJ=new Set(["h1","h2","h3","h4","h5","h6"]),ij=new Set([]),iW={head:new Set(["base","basefront","bgsound","link","meta","title","noscript","noframes","style","script","template"]),optgroup:new Set(["option"]),select:new Set(["optgroup","option","hr"]),table:new Set(["caption","colgroup","tbody","tfoot","thead"]),tr:new Set(["td","th"]),colgroup:new Set(["col"]),tbody:new Set(["tr"]),thead:new Set(["tr"]),tfoot:new Set(["tr"]),script:ij,iframe:ij,option:ij,textarea:ij,style:ij,title:ij},iK={html:ij,body:new Set(["html"]),head:new Set(["html"]),td:new Set(["tr"]),colgroup:new Set(["table"]),caption:new Set(["table"]),tbody:new Set(["table"]),tfoot:new Set(["table"]),col:new Set(["colgroup"]),th:new Set(["tr"]),thead:new Set(["table"]),tr:new Set(["tbody","thead","tfoot"]),dd:new Set(["dl","div"]),dt:new Set(["dl","div"]),figcaption:new Set(["figure"]),summary:new Set(["details"]),area:new Set(["map"])},iY={p:new Set(["address","article","aside","blockquote","center","details","dialog","dir","div","dl","fieldset","figure","footer","form","h1","h2","h3","h4","h5","h6","header","hgroup","hr","li","main","nav","menu","ol","p","pre","section","table","ul"]),svg:new Set(["b","blockquote","br","code","dd","div","dl","dt","em","embed","h1","h2","h3","h4","h5","h6","hr","i","img","li","menu","meta","ol","p","pre","ruby","s","small","span","strong","sub","sup","table","u","ul","var"])},iQ={a:new Set(["a"]),button:new Set(["button"]),dd:new Set(["dd","dt"]),dt:new Set(["dd","dt"]),form:new Set(["form"]),li:new Set(["li"]),h1:iJ,h2:iJ,h3:iJ,h4:iJ,h5:iJ,h6:iJ},iz=[iL],iZ={cloak:ig,html:(e,t,n)=>{let{exp:i,loc:r}=e;return i||n.onError(iP(53,r)),t.children.length&&(n.onError(iP(54,r)),t.children.length=0),{props:[eI(ey("innerHTML",!0,r),i||ey("",!0))]}},text:(e,t,n)=>{let{exp:i,loc:r}=e;return i||n.onError(iP(55,r)),t.children.length&&(n.onError(iP(56,r)),t.children.length=0),{props:[eI(ey("textContent",!0),i?nm(i,n)>0?i:eb(n.helperString(W),[i],r):ey("",!0))]}},model:(e,t,n)=>{let i=io(e,t,n);if(!i.props.length||1===t.tagType)return i;e.arg&&n.onError(iP(58,e.arg.loc));let{tag:r}=t,s=n.isCustomElement(r);if("input"===r||"textarea"===r||"select"===r||s){let o=iI,a=!1;if("input"===r||s){let i=tb(t,"type");if(i){if(7===i.type)o=iO;else if(i.value)switch(i.value.content){case"radio":o=iT;break;case"checkbox":o=iN;break;case"file":a=!0,n.onError(iP(59,e.loc))}}else tv(t)&&(o=iO)}else"select"===r&&(o=iy);a||(i.needRuntime=n.helper(o))}else n.onError(iP(57,e.loc));return i.props=i.props.filter(e=>4!==e.key.type||"modelValue"!==e.key.content),i},on:(e,t,n)=>n8(e,t,n,t=>{let{modifiers:i}=e;if(!i.length)return t;let{key:r,value:s}=t.props[0],{keyModifiers:o,nonKeyModifiers:a,eventOptionModifiers:l}=iF(r,i,n,e.loc);if(a.includes("right")&&(r=iB(r,"onContextmenu")),a.includes("middle")&&(r=iB(r,"onMouseup")),a.length&&(s=eb(n.helper(iA),[s,JSON.stringify(a)])),o.length&&(!ta(r)||iU(r.content.toLowerCase()))&&(s=eb(n.helper(ib),[s,JSON.stringify(o)])),l.length){let e=l.map(_).join("");r=ta(r)?ey(`${r.content}${e}`,!0):eA(["(",r,`) + "${e}"`])}return{props:[eI(r,s)]}}),show:(e,t,n)=>{let{exp:i,loc:r}=e;return i||n.onError(iP(61,r)),{props:[],needRuntime:n.helper(iC)}}};function i1(e,t={}){return i_(e,o({},ix,t,{nodeTransforms:[iG,...iz,...t.nodeTransforms||[]],directiveTransforms:o({},iZ,t.directiveTransforms||{}),transformHoist:null}))}function i0(e,t={}){return nf(e,o({},ix,t))}export{L as BASE_TRANSITION,iS as BindingTypes,et as CAMELIZE,en as CAPITALIZE,P as CREATE_BLOCK,w as CREATE_COMMENT,D as CREATE_ELEMENT_BLOCK,V as CREATE_ELEMENT_VNODE,j as CREATE_SLOTS,U as CREATE_STATIC,X as CREATE_TEXT,k as CREATE_VNODE,eJ as CompilerDeprecationTypes,em as ConstantTypes,iZ as DOMDirectiveTransforms,iD as DOMErrorCodes,ik as DOMErrorMessages,iz as DOMNodeTransforms,eE as ElementTypes,e0 as ErrorCodes,C as FRAGMENT,Z as GUARD_REACTIVE_PROPS,ed as IS_MEMO_SAME,ec as IS_REF,x as KEEP_ALIVE,K as MERGE_PROPS,Y as NORMALIZE_CLASS,z as NORMALIZE_PROPS,Q as NORMALIZE_STYLE,nC as NewlineType,ef as NodeTypes,M as OPEN_BLOCK,eo as POP_SCOPE_ID,es as PUSH_SCOPE_ID,q as RENDER_LIST,J as RENDER_SLOT,F as RESOLVE_COMPONENT,$ as RESOLVE_DIRECTIVE,B as RESOLVE_DYNAMIC_COMPONENT,H as RESOLVE_FILTER,er as SET_BLOCK_TRACKING,R as SUSPENSE,v as TELEPORT,W as TO_DISPLAY_STRING,ee as TO_HANDLERS,ei as TO_HANDLER_KEY,iv as TRANSITION,iR as TRANSITION_GROUP,ti as TS_NODE_TYPES,el as UNREF,iN as V_MODEL_CHECKBOX,iO as V_MODEL_DYNAMIC,iT as V_MODEL_RADIO,iy as V_MODEL_SELECT,iI as V_MODEL_TEXT,ib as V_ON_WITH_KEYS,iA as V_ON_WITH_MODIFIERS,iC as V_SHOW,ea as WITH_CTX,G as WITH_DIRECTIVES,eh as WITH_MEMO,tI as advancePositionWithClone,ty as advancePositionWithMutation,tO as assert,i_ as baseCompile,nf as baseParse,n6 as buildDirectiveArgs,n3 as buildProps,nz as buildSlots,eY as checkCompatEnabled,i1 as compile,eX as convertToBlock,eT as createArrayExpression,eP as createAssignmentExpression,ex as createBlockStatement,eR as createCacheExpression,eb as createCallExpression,e1 as createCompilerError,eA as createCompoundExpression,ev as createConditionalExpression,iP as createDOMCompilerError,nj as createForLoopParams,eC as createFunctionExpression,eM as createIfStatement,eO as createInterpolation,eN as createObjectExpression,eI as createObjectProperty,ek as createReturnStatement,eS as createRoot,eD as createSequenceExpression,ey as createSimpleExpression,nO as createStructuralDirectiveTransform,eL as createTemplateLiteral,nN as createTransformContext,eg as createVNodeCall,ez as defaultOnError,eZ as defaultOnWarn,e2 as errorMessages,e8 as extractIdentifiers,tF as filterNonCommentChildren,tA as findDir,tb as findProp,tH as forAliasRE,nv as generate,g as generateCodeFrame,im as getBaseTransformPreset,nm as getConstantType,tU as getMemoedVNodeCall,nT as getSelfName,ew as getVNodeBlockHelper,eV as getVNodeHelper,tv as hasDynamicKeyVBind,tX as hasScopeRef,tB as hasSingleChild,ep as helperNameMap,tk as injectProp,tG as isAllWhitespace,tJ as isCommentOrWhitespace,to as isConstantNode,tl as isCoreComponent,tN as isFnExpression,tg as isFnExpressionBrowser,tT as isFnExpressionNode,te as isFunctionType,e6 as isInDestructureAssignment,e5 as isInNewExpression,iU as isKeyboardEvent,nk as isLiteralWhitelisted,t_ as isMemberExpression,tE as isMemberExpressionBrowser,tm as isMemberExpressionNode,e4 as isReferencedIdentifier,th as isSimpleIdentifier,t$ as isSingleIfBlock,tP as isSlotOutlet,tC as isStaticArgOf,ta as isStaticExp,ts as isStaticNode,tt as isStaticProperty,tn as isStaticPropertyKey,tM as isTemplateNode,tR as isText,tx as isVPre,tL as isVSlot,iq as isValidHTMLNesting,tq as isWhitespaceText,e_ as locStub,ig as noopDirectiveTransform,i0 as parse,ix as parserOptions,i$ as postTransformTransition,nw as processExpression,nq as processFor,nF as processIf,n7 as processSlotOutlet,eu as registerRuntimeHelpers,n2 as resolveComponentType,iF as resolveModifiers,nX as stringifyExpression,tw as toValidAssetId,nK as trackSlotScopes,nY as trackVForSlotScopes,nI as transform,ie as transformBind,n0 as transformElement,nV as transformExpression,io as transformModel,n8 as transformOn,iL as transformStyle,iE as transformVBindShorthand,ny as traverseNode,tr as unwrapTSNode,td as validFirstIdentCharRE,e7 as walkBlockDeclarations,e9 as walkFunctionParams,e3 as walkIdentifiers,eQ as warnDeprecation};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @vue/compiler-dom v3.6.0-alpha.
|
|
2
|
+
* @vue/compiler-dom v3.6.0-alpha.6
|
|
3
3
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
4
4
|
* @license MIT
|
|
5
5
|
**/
|
|
@@ -317,7 +317,9 @@ const isNonKeyModifier = /* @__PURE__ */ makeMap(
|
|
|
317
317
|
`stop,prevent,self,ctrl,shift,alt,meta,exact,middle`
|
|
318
318
|
);
|
|
319
319
|
const maybeKeyModifier = /* @__PURE__ */ makeMap("left,right");
|
|
320
|
-
const isKeyboardEvent = /* @__PURE__ */ makeMap(
|
|
320
|
+
const isKeyboardEvent = /* @__PURE__ */ makeMap(
|
|
321
|
+
`onkeyup,onkeydown,onkeypress`
|
|
322
|
+
);
|
|
321
323
|
const resolveModifiers = (key, modifiers, context, loc) => {
|
|
322
324
|
const keyModifiers = [];
|
|
323
325
|
const nonKeyModifiers = [];
|
|
@@ -690,4 +692,4 @@ function parse(template, options = {}) {
|
|
|
690
692
|
return baseParse(template, extend({}, parserOptions, options));
|
|
691
693
|
}
|
|
692
694
|
|
|
693
|
-
export { DOMDirectiveTransforms, DOMErrorCodes, DOMErrorMessages, DOMNodeTransforms, TRANSITION, TRANSITION_GROUP, V_MODEL_CHECKBOX, V_MODEL_DYNAMIC, V_MODEL_RADIO, V_MODEL_SELECT, V_MODEL_TEXT, V_ON_WITH_KEYS, V_ON_WITH_MODIFIERS, V_SHOW, compile, createDOMCompilerError, isValidHTMLNesting, parse, parserOptions, postTransformTransition, resolveModifiers, transformStyle };
|
|
695
|
+
export { DOMDirectiveTransforms, DOMErrorCodes, DOMErrorMessages, DOMNodeTransforms, TRANSITION, TRANSITION_GROUP, V_MODEL_CHECKBOX, V_MODEL_DYNAMIC, V_MODEL_RADIO, V_MODEL_SELECT, V_MODEL_TEXT, V_ON_WITH_KEYS, V_ON_WITH_MODIFIERS, V_SHOW, compile, createDOMCompilerError, isKeyboardEvent, isValidHTMLNesting, parse, parserOptions, postTransformTransition, resolveModifiers, transformStyle };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @vue/compiler-dom v3.6.0-alpha.
|
|
2
|
+
* @vue/compiler-dom v3.6.0-alpha.6
|
|
3
3
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
4
4
|
* @license MIT
|
|
5
5
|
**/
|
|
@@ -6337,7 +6337,9 @@ Use a v-bind binding combined with a v-on listener that emits update:x event ins
|
|
|
6337
6337
|
`stop,prevent,self,ctrl,shift,alt,meta,exact,middle`
|
|
6338
6338
|
);
|
|
6339
6339
|
const maybeKeyModifier = /* @__PURE__ */ makeMap("left,right");
|
|
6340
|
-
const isKeyboardEvent = /* @__PURE__ */ makeMap(
|
|
6340
|
+
const isKeyboardEvent = /* @__PURE__ */ makeMap(
|
|
6341
|
+
`onkeyup,onkeydown,onkeypress`
|
|
6342
|
+
);
|
|
6341
6343
|
const resolveModifiers = (key, modifiers, context, loc) => {
|
|
6342
6344
|
const keyModifiers = [];
|
|
6343
6345
|
const nonKeyModifiers = [];
|
|
@@ -6836,6 +6838,7 @@ Use a v-bind binding combined with a v-on listener that emits update:x event ins
|
|
|
6836
6838
|
exports.isFunctionType = isFunctionType;
|
|
6837
6839
|
exports.isInDestructureAssignment = isInDestructureAssignment;
|
|
6838
6840
|
exports.isInNewExpression = isInNewExpression;
|
|
6841
|
+
exports.isKeyboardEvent = isKeyboardEvent;
|
|
6839
6842
|
exports.isLiteralWhitelisted = isLiteralWhitelisted;
|
|
6840
6843
|
exports.isMemberExpression = isMemberExpression;
|
|
6841
6844
|
exports.isMemberExpressionBrowser = isMemberExpressionBrowser;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @vue/compiler-dom v3.6.0-alpha.
|
|
2
|
+
* @vue/compiler-dom v3.6.0-alpha.6
|
|
3
3
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
4
4
|
* @license MIT
|
|
5
5
|
**/var VueCompilerDOM=function(e){"use strict";let t;function n(e){let t=Object.create(null);for(let n of e.split(","))t[n]=1;return e=>e in t}let i={},r=()=>{},s=()=>!1,o=e=>111===e.charCodeAt(0)&&110===e.charCodeAt(1)&&(e.charCodeAt(2)>122||97>e.charCodeAt(2)),a=Object.assign,l=Array.isArray,c=e=>"string"==typeof e,h=e=>"symbol"==typeof e,d=e=>null!==e&&"object"==typeof e,p=n(",key,ref,ref_for,ref_key,onVnodeBeforeMount,onVnodeMounted,onVnodeBeforeUpdate,onVnodeUpdated,onVnodeBeforeUnmount,onVnodeUnmounted"),u=n("bind,cloak,else-if,else,for,html,if,model,on,once,pre,show,slot,text,memo"),f=e=>{let t=Object.create(null);return n=>t[n]||(t[n]=e(n))},E=/-(\w)/g,m=(e,t)=>t?t.toUpperCase():"",_=f(e=>e.replace(E,m)),S=f(e=>e.charAt(0).toUpperCase()+e.slice(1)),g=f(e=>e?`on${S(e)}`:""),T=/;(?![^(]*\))/g,N=/:([^]+)/,I=/\/\*[^]*?\*\//g,y=n("html,body,base,head,link,meta,style,title,address,article,aside,footer,header,hgroup,h1,h2,h3,h4,h5,h6,nav,section,div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol,p,pre,ul,a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,ruby,s,samp,small,span,strong,sub,sup,time,u,var,wbr,area,audio,map,track,video,embed,object,param,source,canvas,script,noscript,del,ins,caption,col,colgroup,table,thead,tbody,td,th,tr,button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,output,progress,select,textarea,details,dialog,menu,summary,template,blockquote,iframe,tfoot"),O=n("svg,animate,animateMotion,animateTransform,circle,clipPath,color-profile,defs,desc,discard,ellipse,feBlend,feColorMatrix,feComponentTransfer,feComposite,feConvolveMatrix,feDiffuseLighting,feDisplacementMap,feDistantLight,feDropShadow,feFlood,feFuncA,feFuncB,feFuncG,feFuncR,feGaussianBlur,feImage,feMerge,feMergeNode,feMorphology,feOffset,fePointLight,feSpecularLighting,feSpotLight,feTile,feTurbulence,filter,foreignObject,g,hatch,hatchpath,image,line,linearGradient,marker,mask,mesh,meshgradient,meshpatch,meshrow,metadata,mpath,path,pattern,polygon,polyline,radialGradient,rect,set,solidcolor,stop,switch,symbol,text,textPath,title,tspan,unknown,use,view"),A=n("annotation,annotation-xml,maction,maligngroup,malignmark,math,menclose,merror,mfenced,mfrac,mfraction,mglyph,mi,mlabeledtr,mlongdiv,mmultiscripts,mn,mo,mover,mpadded,mphantom,mprescripts,mroot,mrow,ms,mscarries,mscarry,msgroup,msline,mspace,msqrt,msrow,mstack,mstyle,msub,msubsup,msup,mtable,mtd,mtext,mtr,munder,munderover,none,semantics"),b=n("area,base,br,col,embed,hr,img,input,link,meta,param,source,track,wbr"),C=Symbol(""),v=Symbol(""),R=Symbol(""),x=Symbol(""),L=Symbol(""),M=Symbol(""),P=Symbol(""),D=Symbol(""),k=Symbol(""),V=Symbol(""),w=Symbol(""),X=Symbol(""),U=Symbol(""),F=Symbol(""),B=Symbol(""),$=Symbol(""),H=Symbol(""),G=Symbol(""),q=Symbol(""),J=Symbol(""),j=Symbol(""),W=Symbol(""),K=Symbol(""),Y=Symbol(""),Q=Symbol(""),z=Symbol(""),Z=Symbol(""),ee=Symbol(""),et=Symbol(""),en=Symbol(""),ei=Symbol(""),er=Symbol(""),es=Symbol(""),eo=Symbol(""),ea=Symbol(""),el=Symbol(""),ec=Symbol(""),eh=Symbol(""),ed=Symbol(""),ep={[C]:"Fragment",[v]:"Teleport",[R]:"Suspense",[x]:"KeepAlive",[L]:"BaseTransition",[M]:"openBlock",[P]:"createBlock",[D]:"createElementBlock",[k]:"createVNode",[V]:"createElementVNode",[w]:"createCommentVNode",[X]:"createTextVNode",[U]:"createStaticVNode",[F]:"resolveComponent",[B]:"resolveDynamicComponent",[$]:"resolveDirective",[H]:"resolveFilter",[G]:"withDirectives",[q]:"renderList",[J]:"renderSlot",[j]:"createSlots",[W]:"toDisplayString",[K]:"mergeProps",[Y]:"normalizeClass",[Q]:"normalizeStyle",[z]:"normalizeProps",[Z]:"guardReactiveProps",[ee]:"toHandlers",[et]:"camelize",[en]:"capitalize",[ei]:"toHandlerKey",[er]:"setBlockTracking",[es]:"pushScopeId",[eo]:"popScopeId",[ea]:"withCtx",[el]:"unref",[ec]:"isRef",[eh]:"withMemo",[ed]:"isMemoSame"};function eu(e){Object.getOwnPropertySymbols(e).forEach(t=>{ep[t]=e[t]})}let ef={start:{line:1,column:1,offset:0},end:{line:1,column:1,offset:0},source:""};function eE(e,t=""){return{type:0,source:t,children:e,helpers:new Set,components:[],directives:[],hoists:[],imports:[],cached:[],temps:0,codegenNode:void 0,loc:ef}}function em(e,t,n,i,r,s,o,a=!1,l=!1,c=!1,h=ef){return e&&(a?(e.helper(M),e.helper(ev(e.inSSR,c))):e.helper(eC(e.inSSR,c)),o&&e.helper(G)),{type:13,tag:t,props:n,children:i,patchFlag:r,dynamicProps:s,directives:o,isBlock:a,disableTracking:l,isComponent:c,loc:h}}function e_(e,t=ef){return{type:17,loc:t,elements:e}}function eS(e,t=ef){return{type:15,loc:t,properties:e}}function eg(e,t){return{type:16,loc:ef,key:c(e)?eT(e,!0):e,value:t}}function eT(e,t=!1,n=ef,i=0){return{type:4,loc:n,content:e,isStatic:t,constType:t?3:i}}function eN(e,t=ef){return{type:8,loc:t,children:e}}function eI(e,t=[],n=ef){return{type:14,loc:n,callee:e,arguments:t}}function ey(e,t,n=!1,i=!1,r=ef){return{type:18,params:e,returns:t,newline:n,isSlot:i,loc:r}}function eO(e,t,n,i=!0){return{type:19,test:e,consequent:t,alternate:n,newline:i,loc:ef}}function eA(e,t,n=!1,i=!1){return{type:20,index:e,value:t,needPauseTracking:n,inVOnce:i,needArraySpread:!1,loc:ef}}function eb(e){return{type:21,body:e,loc:ef}}function eC(e,t){return e||t?k:V}function ev(e,t){return e||t?P:D}function eR(e,{helper:t,removeHelper:n,inSSR:i}){e.isBlock||(e.isBlock=!0,n(eC(i,e.isComponent)),t(M),t(ev(i,e.isComponent)))}let ex=new Uint8Array([123,123]),eL=new Uint8Array([125,125]);function eM(e){return e>=97&&e<=122||e>=65&&e<=90}function eP(e){return 32===e||10===e||9===e||12===e||13===e}function eD(e){return 47===e||62===e||eP(e)}function ek(e){let t=new Uint8Array(e.length);for(let n=0;n<e.length;n++)t[n]=e.charCodeAt(n);return t}let eV={Cdata:new Uint8Array([67,68,65,84,65,91]),CdataEnd:new Uint8Array([93,93,62]),CommentEnd:new Uint8Array([45,45,62]),ScriptEnd:new Uint8Array([60,47,115,99,114,105,112,116]),StyleEnd:new Uint8Array([60,47,115,116,121,108,101]),TitleEnd:new Uint8Array([60,47,116,105,116,108,101]),TextareaEnd:new Uint8Array([60,47,116,101,120,116,97,114,101,97])},ew={COMPILER_IS_ON_ELEMENT:{message:'Platform-native elements with "is" prop will no longer be treated as components in Vue 3 unless the "is" value is explicitly prefixed with "vue:".',link:"https://v3-migration.vuejs.org/breaking-changes/custom-elements-interop.html"},COMPILER_V_BIND_SYNC:{message:e=>`.sync modifier for v-bind has been removed. Use v-model with argument instead. \`v-bind:${e}.sync\` should be changed to \`v-model:${e}\`.`,link:"https://v3-migration.vuejs.org/breaking-changes/v-model.html"},COMPILER_V_BIND_OBJECT_ORDER:{message:'v-bind="obj" usage is now order sensitive and behaves like JavaScript object spread: it will now overwrite an existing non-mergeable attribute that appears before v-bind in the case of conflict. To retain 2.x behavior, move v-bind to make it the first attribute. You can also suppress this warning if the usage is intended.',link:"https://v3-migration.vuejs.org/breaking-changes/v-bind.html"},COMPILER_V_ON_NATIVE:{message:".native modifier for v-on has been removed as is no longer necessary.",link:"https://v3-migration.vuejs.org/breaking-changes/v-on-native-modifier-removed.html"},COMPILER_V_IF_V_FOR_PRECEDENCE:{message:"v-if / v-for precedence when used on the same element has changed in Vue 3: v-if now takes higher precedence and will no longer have access to v-for scope variables. It is best to avoid the ambiguity with <template> tags or use a computed property that filters v-for data source.",link:"https://v3-migration.vuejs.org/breaking-changes/v-if-v-for.html"},COMPILER_NATIVE_TEMPLATE:{message:"<template> with no special directives will render as a native template element instead of its inner content in Vue 3."},COMPILER_INLINE_TEMPLATE:{message:'"inline-template" has been removed in Vue 3.',link:"https://v3-migration.vuejs.org/breaking-changes/inline-template-attribute.html"},COMPILER_FILTERS:{message:'filters have been removed in Vue 3. The "|" symbol will be treated as native JavaScript bitwise OR operator. Use method calls or computed properties instead.',link:"https://v3-migration.vuejs.org/breaking-changes/filters.html"}};function eX(e,{compatConfig:t}){let n=t&&t[e];return"MODE"===e?n||3:n}function eU(e,t){let n=eX("MODE",t),i=eX(e,t);return 3===n?!0===i:!1!==i}function eF(e){throw e}function eB(e){}function e$(e,t,n,i){let r=SyntaxError(String(`https://vuejs.org/error-reference/#compiler-${e}`));return r.code=e,r.loc=t,r}let eH={0:"Illegal comment.",1:"CDATA section is allowed only in XML context.",2:"Duplicate attribute.",3:"End tag cannot have attributes.",4:"Illegal '/' in tags.",5:"Unexpected EOF in tag.",6:"Unexpected EOF in CDATA section.",7:"Unexpected EOF in comment.",8:"Unexpected EOF in script.",9:"Unexpected EOF in tag.",10:"Incorrectly closed comment.",11:"Incorrectly opened comment.",12:"Illegal tag name. Use '<' to print '<'.",13:"Attribute value was expected.",14:"End tag name was expected.",15:"Whitespace was expected.",16:"Unexpected '\x3c!--' in comment.",17:"Attribute name cannot contain U+0022 (\"), U+0027 ('), and U+003C (<).",18:"Unquoted attribute value cannot contain U+0022 (\"), U+0027 ('), U+003C (<), U+003D (=), and U+0060 (`).",19:"Attribute name cannot start with '='.",21:"'<?' is allowed only in XML context.",20:"Unexpected null character.",22:"Illegal '/' in tags.",23:"Invalid end tag.",24:"Element is missing end tag.",25:"Interpolation end sign was not found.",27:"End bracket for dynamic directive argument was not found. Note that dynamic directive argument cannot contain spaces.",26:"Legal directive name was expected.",28:"v-if/v-else-if is missing expression.",29:"v-if/else branches must use unique keys.",30:"v-else/v-else-if has no adjacent v-if or v-else-if.",31:"v-for is missing expression.",32:"v-for has invalid expression.",33:"<template v-for> key should be placed on the <template> tag.",34:"v-bind is missing expression.",52:"v-bind with same-name shorthand only allows static argument.",35:"v-on is missing expression.",36:"Unexpected custom directive on <slot> outlet.",37:"Mixed v-slot usage on both the component and nested <template>. When there are multiple named slots, all slots should use <template> syntax to avoid scope ambiguity.",38:"Duplicate slot names found. ",39:"Extraneous children found when component already has explicitly named default slot. These children will be ignored.",40:"v-slot can only be used on components or <template> tags.",41:"v-model is missing expression.",42:"v-model value must be a valid JavaScript member expression.",43:"v-model cannot be used on v-for or v-slot scope variables because they are not writable.",44:`v-model cannot be used on a prop, because local prop bindings are not writable.
|
|
@@ -10,5 +10,5 @@ Use a v-bind binding combined with a v-on listener that emits update:x event ins
|
|
|
10
10
|
`,-1)}(function(e,t){if(!e.length)return;t.pure=!0;let{push:n,newline:i}=t;i();for(let r=0;r<e.length;r++){let s=e[r];s&&(n(`const _hoisted_${r+1} = `),ne(s,t),i())}t.pure=!1})(e.hoists,t),i(),n("return ")}(e,n);let u=(c?["_ctx","_push","_parent","_attrs"]:["_ctx","_cache"]).join(", ");if(r(`function ${c?"ssrRender":"render"}(${u}) {`),o(),p&&(r("with (_ctx) {"),o(),d&&(r(`const { ${h.map(t6).join(", ")} } = _Vue
|
|
11
11
|
`,-1),l())),e.components.length&&(t9(e.components,"component",n),(e.directives.length||e.temps>0)&&l()),e.directives.length&&(t9(e.directives,"directive",n),e.temps>0&&l()),e.filters&&e.filters.length&&(l(),t9(e.filters,"filter",n),l()),e.temps>0){r("let ");for(let t=0;t<e.temps;t++)r(`${t>0?", ":""}_temp${t}`)}return(e.components.length||e.directives.length||e.temps)&&(r(`
|
|
12
12
|
`,0),l()),c||r("return "),e.codegenNode?ne(e.codegenNode,n):r("null"),p&&(a(),r("}")),a(),r("}"),{ast:e,code:n.code,preamble:"",map:n.map?n.map.toJSON():void 0,helpers:e.helpers}}function t9(e,t,{helper:n,push:i,newline:r,isTS:s}){let o=n("filter"===t?H:"component"===t?F:$);for(let n=0;n<e.length;n++){let a=e[n],l=a.endsWith("__self");l&&(a=a.slice(0,-6)),i(`const ${tc(a,t)} = ${o}(${JSON.stringify(a)}${l?", true":""})${s?"!":""}`),n<e.length-1&&r()}}function t7(e,t){let n=e.length>3;t.push("["),n&&t.indent(),t8(e,t,n),n&&t.deindent(),t.push("]")}function t8(e,t,n=!1,i=!0){let{push:r,newline:s}=t;for(let o=0;o<e.length;o++){let a=e[o];c(a)?r(a,-3):l(a)?t7(a,t):ne(a,t),o<e.length-1&&(n?(i&&r(","),s()):i&&r(", "))}}function ne(e,t){var n,i,r;if(c(e))return void t.push(e,-3);if(h(e))return void t.push(t.helper(e));switch(e.type){case 1:case 9:case 11:case 12:ne(e.codegenNode,t);break;case 2:n=e,t.push(JSON.stringify(n.content),-3,n);break;case 4:nt(e,t);break;case 5:!function(e,t){let{push:n,helper:i,pure:r}=t;r&&n(t4),n(`${i(W)}(`),ne(e.content,t),n(")")}(e,t);break;case 8:nn(e,t);break;case 3:!function(e,t){let{push:n,helper:i,pure:r}=t;r&&n(t4),n(`${i(w)}(${JSON.stringify(e.content)})`,-3,e)}(e,t);break;case 13:!function(e,t){let n,{push:i,helper:r,pure:s}=t,{tag:o,props:a,children:l,patchFlag:c,dynamicProps:h,directives:d,isBlock:p,disableTracking:u,isComponent:f}=e;c&&(n=String(c)),d&&i(r(G)+"("),p&&i(`(${r(M)}(${u?"true":""}), `),s&&i(t4),i(r(p?ev(t.inSSR,f):eC(t.inSSR,f))+"(",-2,e),t8(function(e){let t=e.length;for(;t--&&null==e[t];);return e.slice(0,t+1).map(e=>e||"null")}([o,a,l,n,h]),t),i(")"),p&&i(")"),d&&(i(", "),ne(d,t),i(")"))}(e,t);break;case 14:!function(e,t){let{push:n,helper:i,pure:r}=t,s=c(e.callee)?e.callee:i(e.callee);r&&n(t4),n(s+"(",-2,e),t8(e.arguments,t),n(")")}(e,t);break;case 15:!function(e,t){let{push:n,indent:i,deindent:r,newline:s}=t,{properties:o}=e;if(!o.length)return n("{}",-2,e);let a=o.length>1;n(a?"{":"{ "),a&&i();for(let e=0;e<o.length;e++){let{key:i,value:r}=o[e];!function(e,t){let{push:n}=t;8===e.type?(n("["),nn(e,t),n("]")):e.isStatic?n(ez(e.content)?e.content:JSON.stringify(e.content),-2,e):n(`[${e.content}]`,-3,e)}(i,t),n(": "),ne(r,t),e<o.length-1&&(n(","),s())}a&&r(),n(a?"}":" }")}(e,t);break;case 17:i=e,r=t,t7(i.elements,r);break;case 18:!function(e,t){let{push:n,indent:i,deindent:r}=t,{params:s,returns:o,body:a,newline:c,isSlot:h}=e;h&&n(`_${ep[ea]}(`),n("(",-2,e),l(s)?t8(s,t):s&&ne(s,t),n(") => "),(c||a)&&(n("{"),i()),o?(c&&n("return "),l(o)?t7(o,t):ne(o,t)):a&&ne(a,t),(c||a)&&(r(),n("}")),h&&(e.isNonScopedSlot&&n(", undefined, true"),n(")"))}(e,t);break;case 19:!function(e,t){let{test:n,consequent:i,alternate:r,newline:s}=e,{push:o,indent:a,deindent:l,newline:c}=t;if(4===n.type){let e=!ez(n.content);e&&o("("),nt(n,t),e&&o(")")}else o("("),ne(n,t),o(")");s&&a(),t.indentLevel++,s||o(" "),o("? "),ne(i,t),t.indentLevel--,s&&c(),s||o(" "),o(": ");let h=19===r.type;!h&&t.indentLevel++,ne(r,t),!h&&t.indentLevel--,s&&l(!0)}(e,t);break;case 20:!function(e,t){let{push:n,helper:i,indent:r,deindent:s,newline:o}=t,{needPauseTracking:a,needArraySpread:l}=e;l&&n("[...("),n(`_cache[${e.index}] || (`),a&&(r(),n(`${i(er)}(-1`),e.inVOnce&&n(", true"),n("),"),o(),n("(")),n(`_cache[${e.index}] = `),ne(e.value,t),a&&(n(`).cacheIndex = ${e.index},`),o(),n(`${i(er)}(1),`),o(),n(`_cache[${e.index}]`),s()),n(")"),l&&n(")]")}(e,t);break;case 21:t8(e.body,t,!0,!1)}}function nt(e,t){let{content:n,isStatic:i}=e;t.push(i?JSON.stringify(n):n,-3,e)}function nn(e,t){for(let n=0;n<e.children.length;n++){let i=e.children[n];c(i)?t.push(i,-3):ne(i,t)}}let ni=n("true,false,null,this");function nr(e,t,n=!1,i=!1,r=Object.create(t.identifiers)){return e}let ns=t3(/^(?:if|else|else-if)$/,(e,t,n)=>no(e,t,n,(e,t,i)=>{let r=n.parent.children,s=r.indexOf(e),o=0;for(;s-- >=0;){let e=r[s];e&&9===e.type&&(o+=e.branches.length)}return()=>{i?e.codegenNode=nl(t,o,n):function(e){for(;;)if(19===e.type)if(19!==e.alternate.type)return e;else e=e.alternate;else 20===e.type&&(e=e.value)}(e.codegenNode).alternate=nl(t,o+e.branches.length-1,n)}}));function no(e,t,n,i){if("else"!==t.name&&(!t.exp||!t.exp.content.trim())){let i=t.exp?t.exp.loc:e.loc;n.onError(e$(28,t.loc)),t.exp=eT("true",!1,i)}if("if"===t.name){var r;let s=na(e,t),o={type:9,loc:tH((r=e.loc).start.offset,r.end.offset),branches:[s]};if(n.replaceNode(o),i)return i(o,s,!0)}else{let r=n.parent.children,s=r.indexOf(e);for(;s-- >=-1;){let o=r[s];if(o&&tE(o)){n.removeNode(o);continue}if(o&&9===o.type){("else-if"===t.name||"else"===t.name)&&void 0===o.branches[o.branches.length-1].condition&&n.onError(e$(30,e.loc)),n.removeNode();let r=na(e,t);o.branches.push(r);let s=i&&i(o,r,!1);t2(r,n),s&&s(),n.currentNode=null}else n.onError(e$(30,e.loc));break}}}function na(e,t){let n=3===e.tagType;return{type:10,loc:e.loc,condition:"else"===t.name?void 0:t.exp,children:n&&!e9(e,"for")?e.children:[e],userKey:e7(e,"key"),isTemplateIf:n}}function nl(e,t,n){return e.condition?eO(e.condition,nc(e,t,n),eI(n.helper(w),['""',"true"])):nc(e,t,n)}function nc(e,t,n){let{helper:i}=n,r=eg("key",eT(`${t}`,!1,ef,2)),{children:s}=e,o=s[0];if(1!==s.length||1!==o.type)if(1!==s.length||11!==o.type)return em(n,i(C),eS([r]),s,64,void 0,void 0,!0,!1,!1,e.loc);else{let e=o.codegenNode;return ta(e,r,n),e}{let e=o.codegenNode,t=th(e);return 13===t.type&&eR(t,n),ta(t,r,n),e}}let nh=t3("for",(e,t,n)=>{let{helper:i,removeHelper:r}=n;return nd(e,t,n,t=>{let s=eI(i(q),[t.source]),o=tr(e),a=e9(e,"memo"),l=e7(e,"key",!1,!0);l&&l.type;let c=l&&(6===l.type?l.value?eT(l.value.content,!0):void 0:l.exp),h=l&&c?eg("key",c):null,d=4===t.source.type&&t.source.constType>0,p=d?64:l?128:256;return t.codegenNode=em(n,i(C),void 0,s,p,void 0,void 0,!0,!d,!1,e.loc),()=>{let l,{children:p}=t,u=1!==p.length||1!==p[0].type,f=ts(e)?e:o&&1===e.children.length&&ts(e.children[0])?e.children[0]:null;if(f?(l=f.codegenNode,o&&h&&ta(l,h,n)):u?l=em(n,i(C),h?eS([h]):void 0,e.children,64,void 0,void 0,!0,void 0,!1):(l=p[0].codegenNode,o&&h&&ta(l,h,n),!d!==l.isBlock&&(l.isBlock?(r(M),r(ev(n.inSSR,l.isComponent))):r(eC(n.inSSR,l.isComponent))),l.isBlock=!d,l.isBlock?(i(M),i(ev(n.inSSR,l.isComponent))):i(eC(n.inSSR,l.isComponent))),a){let e=ey(nu(t.parseResult,[eT("_cached")]));e.body=eb([eN(["const _memo = (",a.exp,")"]),eN(["if (_cached",...c?[" && _cached.key === ",c]:[],` && ${n.helperString(ed)}(_cached, _memo)) return _cached`]),eN(["const _item = ",l]),eT("_item.memo = _memo"),eT("return _item")]),s.arguments.push(e,eT("_cache"),eT(String(n.cached.length))),n.cached.push(null)}else s.arguments.push(ey(nu(t.parseResult),l,!0))}})});function nd(e,t,n,i){if(!t.exp)return void n.onError(e$(31,t.loc));let r=t.forParseResult;if(!r)return void n.onError(e$(32,t.loc));np(r);let{scopes:s}=n,{source:o,value:a,key:l,index:c}=r,h={type:11,loc:t.loc,source:o,valueAlias:a,keyAlias:l,objectIndexAlias:c,parseResult:r,children:tr(e)?e.children:[e]};n.replaceNode(h),s.vFor++;let d=i&&i(h);return()=>{s.vFor--,d&&d()}}function np(e,t){e.finalized||(e.finalized=!0)}function nu({value:e,key:t,index:n},i=[]){var r=[e,t,n,...i];let s=r.length;for(;s--&&!r[s];);return r.slice(0,s+1).map((e,t)=>e||eT("_".repeat(t+1),!1))}let nf=eT("undefined",!1),nE=(e,t)=>{if(1===e.type&&(1===e.tagType||3===e.tagType)){let n=e9(e,"slot");if(n)return n.exp,t.scopes.vSlot++,()=>{t.scopes.vSlot--}}},nm=(e,t,n,i)=>ey(e,n,!1,!0,n.length?n[0].loc:i);function n_(e,t,n=nm){t.helper(ea);let{children:i,loc:r}=e,s=[],o=[],a=t.scopes.vSlot>0||t.scopes.vFor>0,l=e9(e,"slot",!0);if(l){let{arg:e,exp:t}=l;e&&!eK(e)&&(a=!0),s.push(eg(e||eT("default",!0),n(t,void 0,i,r)))}let c=!1,h=!1,d=[],p=new Set,u=0;for(let e=0;e<i.length;e++){let r,f,E,m,_=i[e];if(!tr(_)||!(r=e9(_,"slot",!0))){3!==_.type&&d.push(_);continue}if(l){t.onError(e$(37,r.loc));break}c=!0;let{children:S,loc:g}=_,{arg:T=eT("default",!0),exp:N,loc:I}=r;eK(T)?f=T?T.content:"default":a=!0;let y=e9(_,"for"),O=n(N,y,S,g);if(E=e9(_,"if"))a=!0,o.push(eO(E.exp,nS(T,O,u++),nf));else if(m=e9(_,/^else(?:-if)?$/,!0)){let n,r=e;for(;r--&&tE(n=i[r]););if(n&&tr(n)&&e9(n,/^(?:else-)?if$/)){let e=o[o.length-1];for(;19===e.alternate.type;)e=e.alternate;e.alternate=m.exp?eO(m.exp,nS(T,O,u++),nf):nS(T,O,u++)}else t.onError(e$(30,m.loc))}else if(y){a=!0;let e=y.forParseResult;e?(np(e),o.push(eI(t.helper(q),[e.source,ey(nu(e),nS(T,O),!0)]))):t.onError(e$(32,y.loc))}else{if(f){if(p.has(f)){t.onError(e$(38,I));continue}p.add(f),"default"===f&&(h=!0)}s.push(eg(T,O))}}if(!l){let e=(e,i)=>{let s=n(e,void 0,i,r);return t.compatConfig&&(s.isNonScopedSlot=!0),eg("default",s)};c?d.length&&!d.every(tf)&&(h?t.onError(e$(39,d[0].loc)):s.push(e(void 0,d))):s.push(e(void 0,i))}let f=a?2:!function e(t){for(let n=0;n<t.length;n++){let i=t[n];switch(i.type){case 1:if(2===i.tagType||e(i.children))return!0;break;case 9:if(e(i.branches))return!0;break;case 10:case 11:if(e(i.children))return!0}}return!1}(e.children)?1:3,E=eS(s.concat(eg("_",eT(f+"",!1))),r);return o.length&&(E=eI(t.helper(j),[E,e_(o)])),{slots:E,hasDynamicSlots:a}}function nS(e,t,n){let i=[eg("name",e),eg("fn",t)];return null!=n&&i.push(eg("key",eT(String(n),!0))),eS(i)}let ng=new WeakMap,nT=(e,t)=>function(){let n,i,r,s,o;if(1!==(e=t.currentNode).type||0!==e.tagType&&1!==e.tagType)return;let{tag:a,props:l}=e,c=1===e.tagType,h=c?nN(e,t):`"${a}"`,p=d(h)&&h.callee===B,u=0,f=p||h===v||h===R||!c&&("svg"===a||"foreignObject"===a||"math"===a);if(l.length>0){let i=nI(e,t,void 0,c,p);n=i.props,u=i.patchFlag,s=i.dynamicPropNames;let r=i.directives;o=r&&r.length?e_(r.map(e=>nO(e,t))):void 0,i.shouldUseBlock&&(f=!0)}if(e.children.length>0)if(h===x&&(f=!0,u|=1024),c&&h!==v&&h!==x){let{slots:n,hasDynamicSlots:r}=n_(e,t);i=n,r&&(u|=1024)}else if(1===e.children.length&&h!==v){let n=e.children[0],r=n.type,s=5===r||8===r;s&&0===tK(n,t)&&(u|=1),i=s||2===r?n:e.children}else i=e.children;s&&s.length&&(r=function(e){let t="[";for(let n=0,i=e.length;n<i;n++)t+=JSON.stringify(e[n]),n<i-1&&(t+=", ");return t+"]"}(s)),e.codegenNode=em(t,h,n,i,0===u?void 0:u,r,o,!!f,!1,c,e.loc)};function nN(e,t,n=!1){let{tag:i}=e,r=nA(i),s=e7(e,"is",!1,!0);if(s)if(r||eU("COMPILER_IS_ON_ELEMENT",t)){let e;if(6===s.type?e=s.value&&eT(s.value.content,!0):(e=s.exp)||(e=eT("is",!1,s.arg.loc)),e)return eI(t.helper(B),[e])}else 6===s.type&&s.value.content.startsWith("vue:")&&(i=s.value.content.slice(4));let o=eY(i)||t.isBuiltInComponent(i);return o?(n||t.helper(o),o):(t.helper(F),t.components.add(i),tc(i,"component"))}function nI(e,t,n=e.props,i,r,s=!1){let a,{tag:l,loc:c,children:d}=e,f=[],E=[],m=[],_=d.length>0,S=!1,g=0,T=!1,N=!1,I=!1,y=!1,O=!1,A=!1,b=[],C=e=>{f.length&&(E.push(eS(ny(f),c)),f=[]),e&&E.push(e)},v=()=>{t.scopes.vFor>0&&f.push(eg(eT("ref_for",!0),eT("true")))},R=({key:e,value:n})=>{if(eK(e)){let s=e.content,a=o(s);a&&(!i||r)&&"onclick"!==s.toLowerCase()&&"onUpdate:modelValue"!==s&&!p(s)&&(y=!0),a&&p(s)&&(A=!0),a&&14===n.type&&(n=n.arguments[0]),20===n.type||(4===n.type||8===n.type)&&tK(n,t)>0||("ref"===s?T=!0:"class"===s?N=!0:"style"===s?I=!0:"key"===s||b.includes(s)||b.push(s),i&&("class"===s||"style"===s)&&!b.includes(s)&&b.push(s))}else O=!0};for(let r=0;r<n.length;r++){let o=n[r];if(6===o.type){let{loc:e,name:n,nameLoc:i,value:r}=o;if("ref"===n&&(T=!0,v()),"is"===n&&(nA(l)||r&&r.content.startsWith("vue:")||eU("COMPILER_IS_ON_ELEMENT",t)))continue;f.push(eg(eT(n,!0,i),eT(r?r.content:"",!0,r?r.loc:e)))}else{let{name:n,arg:r,exp:a,loc:d,modifiers:p}=o,T="bind"===n,N="on"===n;if("slot"===n){i||t.onError(e$(40,d));continue}if("once"===n||"memo"===n||"is"===n||T&&e8(r,"is")&&(nA(l)||eU("COMPILER_IS_ON_ELEMENT",t))||N&&s)continue;if((T&&e8(r,"key")||N&&_&&e8(r,"vue:before-update"))&&(S=!0),T&&e8(r,"ref")&&v(),!r&&(T||N)){if(O=!0,a)if(T){if(C(),eU("COMPILER_V_BIND_OBJECT_ORDER",t)){E.unshift(a);continue}v(),C(),E.push(a)}else C({type:14,loc:d,callee:t.helper(ee),arguments:i?[a]:[a,"true"]});else t.onError(e$(T?34:35,d));continue}T&&p.some(e=>"prop"===e.content)&&(g|=32);let I=t.directiveTransforms[n];if(I){let{props:n,needRuntime:i}=I(o,e,t);s||n.forEach(R),N&&r&&!eK(r)?C(eS(n,c)):f.push(...n),i&&(m.push(o),h(i)&&ng.set(o,i))}else!u(n)&&(m.push(o),_&&(S=!0))}}if(E.length?(C(),a=E.length>1?eI(t.helper(K),E,c):E[0]):f.length&&(a=eS(ny(f),c)),O?g|=16:(N&&!i&&(g|=2),I&&!i&&(g|=4),b.length&&(g|=8),y&&(g|=32)),!S&&(0===g||32===g)&&(T||A||m.length>0)&&(g|=512),!t.inSSR&&a)switch(a.type){case 15:let x=-1,L=-1,M=!1;for(let e=0;e<a.properties.length;e++){let t=a.properties[e].key;eK(t)?"class"===t.content?x=e:"style"===t.content&&(L=e):t.isHandlerKey||(M=!0)}let P=a.properties[x],D=a.properties[L];M?a=eI(t.helper(z),[a]):(P&&!eK(P.value)&&(P.value=eI(t.helper(Y),[P.value])),D&&(I||4===D.value.type&&"["===D.value.content.trim()[0]||17===D.value.type)&&(D.value=eI(t.helper(Q),[D.value])));break;case 14:break;default:a=eI(t.helper(z),[eI(t.helper(Z),[a])])}return{props:a,directives:m,patchFlag:g,dynamicPropNames:b,shouldUseBlock:S}}function ny(e){let t=new Map,n=[];for(let s=0;s<e.length;s++){var i,r;let a=e[s];if(8===a.key.type||!a.key.isStatic){n.push(a);continue}let l=a.key.content,c=t.get(l);c?("style"===l||"class"===l||o(l))&&(i=c,r=a,17===i.value.type?i.value.elements.push(r.value):i.value=e_([i.value,r.value],i.loc)):(t.set(l,a),n.push(a))}return n}function nO(e,t){let n=[],i=ng.get(e);i?n.push(t.helperString(i)):(t.helper($),t.directives.add(e.name),n.push(tc(e.name,"directive")));let{loc:r}=e;if(e.exp&&n.push(e.exp),e.arg&&(e.exp||n.push("void 0"),n.push(e.arg)),Object.keys(e.modifiers).length){e.arg||(e.exp||n.push("void 0"),n.push("void 0"));let t=eT("true",!1,r);n.push(eS(e.modifiers.map(e=>eg(e,t)),r))}return e_(n,e.loc)}function nA(e){return"component"===e||"Component"===e}let nb=(e,t)=>{if(ts(e)){let{children:n,loc:i}=e,{slotName:r,slotProps:s}=nC(e,t),o=[t.prefixIdentifiers?"_ctx.$slots":"$slots",r,"{}","undefined","true"],a=2;s&&(o[2]=s,a=3),n.length&&(o[3]=ey([],n,!1,!1,i),a=4),t.scopeId&&!t.slotted&&(a=5),o.splice(a),e.codegenNode=eI(t.helper(J),o,i)}};function nC(e,t){let n,i='"default"',r=[];for(let t=0;t<e.props.length;t++){let n=e.props[t];if(6===n.type)n.value&&("name"===n.name?i=JSON.stringify(n.value.content):(n.name=_(n.name),r.push(n)));else if("bind"===n.name&&e8(n.arg,"name")){if(n.exp)i=n.exp;else if(n.arg&&4===n.arg.type){let e=_(n.arg.content);i=n.exp=eT(e,!1,n.arg.loc)}}else"bind"===n.name&&n.arg&&eK(n.arg)&&(n.arg.content=_(n.arg.content)),r.push(n)}if(r.length>0){let{props:i,directives:s}=nI(e,t,r,!1,!1);n=i,s.length&&t.onError(e$(36,s[0].loc))}return{slotName:i,slotProps:n}}let nv=(e,t,n,i)=>{let r,{loc:s,modifiers:o,arg:a}=e;if(!e.exp&&!o.length,4===a.type)if(a.isStatic){let e=a.content;e.startsWith("vue:")&&(e=`vnode-${e.slice(4)}`),r=eT(0!==t.tagType||e.startsWith("vnode")||!/[A-Z]/.test(e)?g(_(e)):`on:${e}`,!0,a.loc)}else r=eN([`${n.helperString(ei)}(`,a,")"]);else(r=a).children.unshift(`${n.helperString(ei)}(`),r.children.push(")");let l=e.exp;l&&!l.content.trim()&&(l=void 0);let c=n.cacheHandlers&&!l&&!n.inVOnce;if(l){let e=e3(l),t=!(e||e6(l)),n=l.content.includes(";");(t||c&&e)&&(l=eN([`${t?"$event":"(...args)"} => ${n?"{":"("}`,l,n?"}":")"]))}let h={props:[eg(r,l||eT("() => {}",!1,s))]};return i&&(h=i(h)),c&&(h.props[0].value=n.cache(h.props[0].value)),h.props.forEach(e=>e.key.isHandlerKey=!0),h},nR=(e,t,n)=>{let{modifiers:i}=e,r=e.arg,{exp:s}=e;return s&&4===s.type&&!s.content.trim()&&(s=void 0),4!==r.type?(r.children.unshift("("),r.children.push(') || ""')):r.isStatic||(r.content=r.content?`${r.content} || ""`:'""'),i.some(e=>"camel"===e.content)&&(4===r.type?r.isStatic?r.content=_(r.content):r.content=`${n.helperString(et)}(${r.content})`:(r.children.unshift(`${n.helperString(et)}(`),r.children.push(")"))),!n.inSSR&&(i.some(e=>"prop"===e.content)&&nx(r,"."),i.some(e=>"attr"===e.content)&&nx(r,"^")),{props:[eg(r,s)]}},nx=(e,t)=>{4===e.type?e.isStatic?e.content=t+e.content:e.content=`\`${t}\${${e.content}}\``:(e.children.unshift(`'${t}' + (`),e.children.push(")"))},nL=(e,t)=>{if(0===e.type||1===e.type||11===e.type||10===e.type)return()=>{let n,i=e.children,r=!1;for(let e=0;e<i.length;e++){let t=i[e];if(tt(t)){r=!0;for(let r=e+1;r<i.length;r++){let s=i[r];if(tt(s))n||(n=i[e]=eN([t],t.loc)),n.children.push(" + ",s),i.splice(r,1),r--;else{n=void 0;break}}}}if(r&&(1!==i.length||0!==e.type&&(1!==e.type||0!==e.tagType||e.props.find(e=>7===e.type&&!t.directiveTransforms[e.name])||"template"===e.tag)))for(let e=0;e<i.length;e++){let n=i[e];if(tt(n)||8===n.type){let r=[];(2!==n.type||" "!==n.content)&&r.push(n),t.ssr||0!==tK(n,t)||r.push("1"),i[e]={type:12,content:n,loc:n.loc,codegenNode:eI(t.helper(X),r)}}}}},nM=new WeakSet,nP=(e,t)=>{if(1===e.type&&e9(e,"once",!0)&&!nM.has(e)&&!t.inVOnce&&!t.inSSR)return nM.add(e),t.inVOnce=!0,t.helper(er),()=>{t.inVOnce=!1;let e=t.currentNode;e.codegenNode&&(e.codegenNode=t.cache(e.codegenNode,!0,!0))}},nD=(e,t,n)=>{let i,{exp:r,arg:s}=e;if(!r)return n.onError(e$(41,e.loc)),nk();let o=r.loc.source.trim(),a=4===r.type?r.content:o,l=n.bindingMetadata[o];if("props"===l||"props-aliased"===l)return r.loc,nk();if(!a.trim()||!e3(r))return n.onError(e$(42,r.loc)),nk();let c=s||eT("modelValue",!0),h=s?eK(s)?`onUpdate:${_(s.content)}`:eN(['"onUpdate:" + ',s]):"onUpdate:modelValue",d=n.isTS?"($event: any)":"$event";i=eN([`${d} => ((`,r,") = $event)"]);let p=[eg(c,e.exp),eg(h,i)];if(e.modifiers.length&&1===t.tagType){let t,n=e.modifiers.map(e=>e.content).map(e=>(ez(e)?e:JSON.stringify(e))+": true").join(", "),i=s?eK(s)?(t=s.content,`${"modelValue"===t||"model-value"===t?"model":t}Modifiers${"model"===t?"$":""}`):eN([s,' + "Modifiers"']):"modelModifiers";p.push(eg(i,eT(`{ ${n} }`,!1,e.loc,2)))}return nk(p)};function nk(e=[]){return{props:e}}let nV=/[\w).+\-_$\]]/,nw=(e,t)=>{eU("COMPILER_FILTERS",t)&&(5===e.type?nX(e.content,t):1===e.type&&e.props.forEach(e=>{7===e.type&&"for"!==e.name&&e.exp&&nX(e.exp,t)}))};function nX(e,t){if(4===e.type)nU(e,t);else for(let n=0;n<e.children.length;n++){let i=e.children[n];"object"==typeof i&&(4===i.type?nU(i,t):8===i.type?nX(e,t):5===i.type&&nX(i.content,t))}}function nU(e,t){let n=e.content,i=!1,r=!1,s=!1,o=!1,a=0,l=0,c=0,h=0,d,p,u,f,E=[];for(u=0;u<n.length;u++)if(p=d,d=n.charCodeAt(u),i)39===d&&92!==p&&(i=!1);else if(r)34===d&&92!==p&&(r=!1);else if(s)96===d&&92!==p&&(s=!1);else if(o)47===d&&92!==p&&(o=!1);else if(124!==d||124===n.charCodeAt(u+1)||124===n.charCodeAt(u-1)||a||l||c){switch(d){case 34:r=!0;break;case 39:i=!0;break;case 96:s=!0;break;case 40:c++;break;case 41:c--;break;case 91:l++;break;case 93:l--;break;case 123:a++;break;case 125:a--}if(47===d){let e,t=u-1;for(;t>=0&&" "===(e=n.charAt(t));t--);e&&nV.test(e)||(o=!0)}}else void 0===f?(h=u+1,f=n.slice(0,u).trim()):m();function m(){E.push(n.slice(h,u).trim()),h=u+1}if(void 0===f?f=n.slice(0,u).trim():0!==h&&m(),E.length){for(u=0;u<E.length;u++)f=function(e,t,n){n.helper(H);let i=t.indexOf("(");if(i<0)return n.filters.add(t),`${tc(t,"filter")}(${e})`;{let r=t.slice(0,i),s=t.slice(i+1);return n.filters.add(r),`${tc(r,"filter")}(${e}${")"!==s?","+s:s}`}}(f,E[u],t);e.content=f,e.ast=void 0}}let nF=new WeakSet,nB=(e,t)=>{if(1===e.type){let n=e9(e,"memo");if(!(!n||nF.has(e))&&!t.inSSR)return nF.add(e),()=>{let i=e.codegenNode||t.currentNode.codegenNode;i&&13===i.type&&(1!==e.tagType&&eR(i,t),e.codegenNode=eI(t.helper(eh),[n.exp,ey(void 0,i),"_cache",String(t.cached.length)]),t.cached.push(null))}}},n$=(e,t)=>{if(1===e.type){for(let n of e.props)if(7===n.type&&"bind"===n.name&&(!n.exp||4===n.exp.type&&!n.exp.content.trim())&&n.arg){let e=n.arg;if(4===e.type&&e.isStatic){let t=_(e.content);(eZ.test(t[0])||"-"===t[0])&&(n.exp=eT(t,!1,e.loc))}else t.onError(e$(52,e.loc)),n.exp=eT("",!0,e.loc)}}};function nH(e){return[[n$,nP,ns,nB,nh,nw,nb,nT,nE,nL],{on:nv,bind:nR,model:nD}]}function nG(e,t={}){let n=t.onError||eF,i="module"===t.mode;!0===t.prefixIdentifiers?n(e$(47)):i&&n(e$(48)),t.cacheHandlers&&n(e$(49)),t.scopeId&&!i&&n(e$(50));let r=a({},t,{prefixIdentifiers:!1}),s=c(e)?tj(e,r):e,[o,l]=nH();return t0(s,a({},r,{nodeTransforms:[...o,...t.nodeTransforms||[]],directiveTransforms:a({},l,t.directiveTransforms||{})})),t5(s,r)}let nq=()=>({props:[]}),nJ=Symbol(""),nj=Symbol(""),nW=Symbol(""),nK=Symbol(""),nY=Symbol(""),nQ=Symbol(""),nz=Symbol(""),nZ=Symbol(""),n1=Symbol(""),n0=Symbol("");eu({[nJ]:"vModelRadio",[nj]:"vModelCheckbox",[nW]:"vModelText",[nK]:"vModelSelect",[nY]:"vModelDynamic",[nQ]:"withModifiers",[nz]:"withKeys",[nZ]:"vShow",[n1]:"Transition",[n0]:"TransitionGroup"});let n2={parseMode:"html",isVoidTag:b,isNativeTag:e=>y(e)||O(e)||A(e),isPreTag:e=>"pre"===e,isIgnoreNewlineTag:e=>"pre"===e||"textarea"===e,decodeEntities:function(e,n=!1){return(t||(t=document.createElement("div")),n)?(t.innerHTML=`<div foo="${e.replace(/"/g,""")}">`,t.children[0].getAttribute("foo")):(t.innerHTML=e,t.textContent)},isBuiltInComponent:e=>"Transition"===e||"transition"===e?n1:"TransitionGroup"===e||"transition-group"===e?n0:void 0,getNamespace(e,t,n){let i=t?t.ns:n;if(t&&2===i)if("annotation-xml"===t.tag){if(O(e))return 1;t.props.some(e=>6===e.type&&"encoding"===e.name&&null!=e.value&&("text/html"===e.value.content||"application/xhtml+xml"===e.value.content))&&(i=0)}else/^m(?:[ions]|text)$/.test(t.tag)&&"mglyph"!==e&&"malignmark"!==e&&(i=0);else t&&1===i&&("foreignObject"===t.tag||"desc"===t.tag||"title"===t.tag)&&(i=0);if(0===i){if(O(e))return 1;if(A(e))return 2}return i}},n3=e=>{1===e.type&&e.props.forEach((t,n)=>{6===t.type&&"style"===t.name&&t.value&&(e.props[n]={type:7,name:"bind",arg:eT("style",!0,t.loc),exp:n4(t.value.content,t.loc),modifiers:[],loc:t.loc})})},n4=(e,t)=>{let n;return eT(JSON.stringify((n={},e.replace(I,"").split(T).forEach(e=>{if(e){let t=e.split(N);t.length>1&&(n[t[0].trim()]=t[1].trim())}}),n)),!1,t,3)},n6=n("passive,once,capture"),n5=n("stop,prevent,self,ctrl,shift,alt,meta,exact,middle"),n9=n("left,right"),n7=n("onkeyup,onkeydown,onkeypress"),n8=(e,t,n,i)=>{let r=[],s=[],o=[];for(let i=0;i<t.length;i++){let a=t[i].content;if("native"===a&&n&&eU("COMPILER_V_ON_NATIVE",n))o.push(a);else if(n6(a))o.push(a);else{let t=c(e)?e:eK(e)?e.content:null;n9(a)?t?n7(t.toLowerCase())?r.push(a):s.push(a):(r.push(a),s.push(a)):n5(a)?s.push(a):r.push(a)}}return{keyModifiers:r,nonKeyModifiers:s,eventOptionModifiers:o}},ie=(e,t)=>eK(e)&&"onclick"===e.content.toLowerCase()?eT(t,!0):4!==e.type?eN(["(",e,`) === "onClick" ? "${t}" : (`,e,")"]):e;function it(e){let t=e.children=e.children.filter(e=>!tE(e)),n=t[0];return 1!==t.length||11===n.type||9===n.type&&n.branches.some(it)}let ii=(e,t)=>{1===e.type&&0===e.tagType&&("script"===e.tag||"style"===e.tag)&&t.removeNode()},ir=new Set(["h1","h2","h3","h4","h5","h6"]),is=new Set([]),io={head:new Set(["base","basefront","bgsound","link","meta","title","noscript","noframes","style","script","template"]),optgroup:new Set(["option"]),select:new Set(["optgroup","option","hr"]),table:new Set(["caption","colgroup","tbody","tfoot","thead"]),tr:new Set(["td","th"]),colgroup:new Set(["col"]),tbody:new Set(["tr"]),thead:new Set(["tr"]),tfoot:new Set(["tr"]),script:is,iframe:is,option:is,textarea:is,style:is,title:is},ia={html:is,body:new Set(["html"]),head:new Set(["html"]),td:new Set(["tr"]),colgroup:new Set(["table"]),caption:new Set(["table"]),tbody:new Set(["table"]),tfoot:new Set(["table"]),col:new Set(["colgroup"]),th:new Set(["tr"]),thead:new Set(["table"]),tr:new Set(["tbody","thead","tfoot"]),dd:new Set(["dl","div"]),dt:new Set(["dl","div"]),figcaption:new Set(["figure"]),summary:new Set(["details"]),area:new Set(["map"])},il={p:new Set(["address","article","aside","blockquote","center","details","dialog","dir","div","dl","fieldset","figure","footer","form","h1","h2","h3","h4","h5","h6","header","hgroup","hr","li","main","nav","menu","ol","p","pre","section","table","ul"]),svg:new Set(["b","blockquote","br","code","dd","div","dl","dt","em","embed","h1","h2","h3","h4","h5","h6","hr","i","img","li","menu","meta","ol","p","pre","ruby","s","small","span","strong","sub","sup","table","u","ul","var"])},ic={a:new Set(["a"]),button:new Set(["button"]),dd:new Set(["dd","dt"]),dt:new Set(["dd","dt"]),form:new Set(["form"]),li:new Set(["li"]),h1:ir,h2:ir,h3:ir,h4:ir,h5:ir,h6:ir},ih=[n3],id={cloak:nq,html:(e,t,n)=>{let{exp:i,loc:r}=e;return i||n.onError(e$(53,r)),t.children.length&&(n.onError(e$(54,r)),t.children.length=0),{props:[eg(eT("innerHTML",!0,r),i||eT("",!0))]}},text:(e,t,n)=>{let{exp:i,loc:r}=e;return i||n.onError(e$(55,r)),t.children.length&&(n.onError(e$(56,r)),t.children.length=0),{props:[eg(eT("textContent",!0),i?tK(i,n)>0?i:eI(n.helperString(W),[i],r):eT("",!0))]}},model:(e,t,n)=>{let i=nD(e,t,n);if(!i.props.length||1===t.tagType)return i;e.arg&&n.onError(e$(58,e.arg.loc));let{tag:r}=t,s=n.isCustomElement(r);if("input"===r||"textarea"===r||"select"===r||s){let o=nW,a=!1;if("input"===r||s){let i=e7(t,"type");if(i){if(7===i.type)o=nY;else if(i.value)switch(i.value.content){case"radio":o=nJ;break;case"checkbox":o=nj;break;case"file":a=!0,n.onError(e$(59,e.loc))}}else te(t)&&(o=nY)}else"select"===r&&(o=nK);a||(i.needRuntime=n.helper(o))}else n.onError(e$(57,e.loc));return i.props=i.props.filter(e=>4!==e.key.type||"modelValue"!==e.key.content),i},on:(e,t,n)=>nv(e,t,n,t=>{let{modifiers:i}=e;if(!i.length)return t;let{key:r,value:s}=t.props[0],{keyModifiers:o,nonKeyModifiers:a,eventOptionModifiers:l}=n8(r,i,n,e.loc);if(a.includes("right")&&(r=ie(r,"onContextmenu")),a.includes("middle")&&(r=ie(r,"onMouseup")),a.length&&(s=eI(n.helper(nQ),[s,JSON.stringify(a)])),o.length&&(!eK(r)||n7(r.content.toLowerCase()))&&(s=eI(n.helper(nz),[s,JSON.stringify(o)])),l.length){let e=l.map(S).join("");r=eK(r)?eT(`${r.content}${e}`,!0):eN(["(",r,`) + "${e}"`])}return{props:[eg(r,s)]}}),show:(e,t,n)=>{let{exp:i,loc:r}=e;return i||n.onError(e$(61,r)),{props:[],needRuntime:n.helper(nZ)}}};return e.BASE_TRANSITION=L,e.BindingTypes={DATA:"data",PROPS:"props",PROPS_ALIASED:"props-aliased",SETUP_LET:"setup-let",SETUP_CONST:"setup-const",SETUP_REACTIVE_CONST:"setup-reactive-const",SETUP_MAYBE_REF:"setup-maybe-ref",SETUP_REF:"setup-ref",OPTIONS:"options",LITERAL_CONST:"literal-const"},e.CAMELIZE=et,e.CAPITALIZE=en,e.CREATE_BLOCK=P,e.CREATE_COMMENT=w,e.CREATE_ELEMENT_BLOCK=D,e.CREATE_ELEMENT_VNODE=V,e.CREATE_SLOTS=j,e.CREATE_STATIC=U,e.CREATE_TEXT=X,e.CREATE_VNODE=k,e.CompilerDeprecationTypes={COMPILER_IS_ON_ELEMENT:"COMPILER_IS_ON_ELEMENT",COMPILER_V_BIND_SYNC:"COMPILER_V_BIND_SYNC",COMPILER_V_BIND_OBJECT_ORDER:"COMPILER_V_BIND_OBJECT_ORDER",COMPILER_V_ON_NATIVE:"COMPILER_V_ON_NATIVE",COMPILER_V_IF_V_FOR_PRECEDENCE:"COMPILER_V_IF_V_FOR_PRECEDENCE",COMPILER_NATIVE_TEMPLATE:"COMPILER_NATIVE_TEMPLATE",COMPILER_INLINE_TEMPLATE:"COMPILER_INLINE_TEMPLATE",COMPILER_FILTERS:"COMPILER_FILTERS"},e.ConstantTypes={NOT_CONSTANT:0,0:"NOT_CONSTANT",CAN_SKIP_PATCH:1,1:"CAN_SKIP_PATCH",CAN_CACHE:2,2:"CAN_CACHE",CAN_STRINGIFY:3,3:"CAN_STRINGIFY"},e.DOMDirectiveTransforms=id,e.DOMErrorCodes={X_V_HTML_NO_EXPRESSION:53,53:"X_V_HTML_NO_EXPRESSION",X_V_HTML_WITH_CHILDREN:54,54:"X_V_HTML_WITH_CHILDREN",X_V_TEXT_NO_EXPRESSION:55,55:"X_V_TEXT_NO_EXPRESSION",X_V_TEXT_WITH_CHILDREN:56,56:"X_V_TEXT_WITH_CHILDREN",X_V_MODEL_ON_INVALID_ELEMENT:57,57:"X_V_MODEL_ON_INVALID_ELEMENT",X_V_MODEL_ARG_ON_ELEMENT:58,58:"X_V_MODEL_ARG_ON_ELEMENT",X_V_MODEL_ON_FILE_INPUT_ELEMENT:59,59:"X_V_MODEL_ON_FILE_INPUT_ELEMENT",X_V_MODEL_UNNECESSARY_VALUE:60,60:"X_V_MODEL_UNNECESSARY_VALUE",X_V_SHOW_NO_EXPRESSION:61,61:"X_V_SHOW_NO_EXPRESSION",X_TRANSITION_INVALID_CHILDREN:62,62:"X_TRANSITION_INVALID_CHILDREN",X_IGNORED_SIDE_EFFECT_TAG:63,63:"X_IGNORED_SIDE_EFFECT_TAG",__EXTEND_POINT__:64,64:"__EXTEND_POINT__"},e.DOMErrorMessages={53:"v-html is missing expression.",54:"v-html will override element children.",55:"v-text is missing expression.",56:"v-text will override element children.",57:"v-model can only be used on <input>, <textarea> and <select> elements.",58:"v-model argument is not supported on plain elements.",59:"v-model cannot be used on file inputs since they are read-only. Use a v-on:change listener instead.",60:"Unnecessary value binding used alongside v-model. It will interfere with v-model's behavior.",61:"v-show is missing expression.",62:"<Transition> expects exactly one child element or component.",63:"Tags with side effect (<script> and <style>) are ignored in client component templates.",64:""},e.DOMNodeTransforms=ih,e.ElementTypes={ELEMENT:0,0:"ELEMENT",COMPONENT:1,1:"COMPONENT",SLOT:2,2:"SLOT",TEMPLATE:3,3:"TEMPLATE"},e.ErrorCodes={ABRUPT_CLOSING_OF_EMPTY_COMMENT:0,0:"ABRUPT_CLOSING_OF_EMPTY_COMMENT",CDATA_IN_HTML_CONTENT:1,1:"CDATA_IN_HTML_CONTENT",DUPLICATE_ATTRIBUTE:2,2:"DUPLICATE_ATTRIBUTE",END_TAG_WITH_ATTRIBUTES:3,3:"END_TAG_WITH_ATTRIBUTES",END_TAG_WITH_TRAILING_SOLIDUS:4,4:"END_TAG_WITH_TRAILING_SOLIDUS",EOF_BEFORE_TAG_NAME:5,5:"EOF_BEFORE_TAG_NAME",EOF_IN_CDATA:6,6:"EOF_IN_CDATA",EOF_IN_COMMENT:7,7:"EOF_IN_COMMENT",EOF_IN_SCRIPT_HTML_COMMENT_LIKE_TEXT:8,8:"EOF_IN_SCRIPT_HTML_COMMENT_LIKE_TEXT",EOF_IN_TAG:9,9:"EOF_IN_TAG",INCORRECTLY_CLOSED_COMMENT:10,10:"INCORRECTLY_CLOSED_COMMENT",INCORRECTLY_OPENED_COMMENT:11,11:"INCORRECTLY_OPENED_COMMENT",INVALID_FIRST_CHARACTER_OF_TAG_NAME:12,12:"INVALID_FIRST_CHARACTER_OF_TAG_NAME",MISSING_ATTRIBUTE_VALUE:13,13:"MISSING_ATTRIBUTE_VALUE",MISSING_END_TAG_NAME:14,14:"MISSING_END_TAG_NAME",MISSING_WHITESPACE_BETWEEN_ATTRIBUTES:15,15:"MISSING_WHITESPACE_BETWEEN_ATTRIBUTES",NESTED_COMMENT:16,16:"NESTED_COMMENT",UNEXPECTED_CHARACTER_IN_ATTRIBUTE_NAME:17,17:"UNEXPECTED_CHARACTER_IN_ATTRIBUTE_NAME",UNEXPECTED_CHARACTER_IN_UNQUOTED_ATTRIBUTE_VALUE:18,18:"UNEXPECTED_CHARACTER_IN_UNQUOTED_ATTRIBUTE_VALUE",UNEXPECTED_EQUALS_SIGN_BEFORE_ATTRIBUTE_NAME:19,19:"UNEXPECTED_EQUALS_SIGN_BEFORE_ATTRIBUTE_NAME",UNEXPECTED_NULL_CHARACTER:20,20:"UNEXPECTED_NULL_CHARACTER",UNEXPECTED_QUESTION_MARK_INSTEAD_OF_TAG_NAME:21,21:"UNEXPECTED_QUESTION_MARK_INSTEAD_OF_TAG_NAME",UNEXPECTED_SOLIDUS_IN_TAG:22,22:"UNEXPECTED_SOLIDUS_IN_TAG",X_INVALID_END_TAG:23,23:"X_INVALID_END_TAG",X_MISSING_END_TAG:24,24:"X_MISSING_END_TAG",X_MISSING_INTERPOLATION_END:25,25:"X_MISSING_INTERPOLATION_END",X_MISSING_DIRECTIVE_NAME:26,26:"X_MISSING_DIRECTIVE_NAME",X_MISSING_DYNAMIC_DIRECTIVE_ARGUMENT_END:27,27:"X_MISSING_DYNAMIC_DIRECTIVE_ARGUMENT_END",X_V_IF_NO_EXPRESSION:28,28:"X_V_IF_NO_EXPRESSION",X_V_IF_SAME_KEY:29,29:"X_V_IF_SAME_KEY",X_V_ELSE_NO_ADJACENT_IF:30,30:"X_V_ELSE_NO_ADJACENT_IF",X_V_FOR_NO_EXPRESSION:31,31:"X_V_FOR_NO_EXPRESSION",X_V_FOR_MALFORMED_EXPRESSION:32,32:"X_V_FOR_MALFORMED_EXPRESSION",X_V_FOR_TEMPLATE_KEY_PLACEMENT:33,33:"X_V_FOR_TEMPLATE_KEY_PLACEMENT",X_V_BIND_NO_EXPRESSION:34,34:"X_V_BIND_NO_EXPRESSION",X_V_ON_NO_EXPRESSION:35,35:"X_V_ON_NO_EXPRESSION",X_V_SLOT_UNEXPECTED_DIRECTIVE_ON_SLOT_OUTLET:36,36:"X_V_SLOT_UNEXPECTED_DIRECTIVE_ON_SLOT_OUTLET",X_V_SLOT_MIXED_SLOT_USAGE:37,37:"X_V_SLOT_MIXED_SLOT_USAGE",X_V_SLOT_DUPLICATE_SLOT_NAMES:38,38:"X_V_SLOT_DUPLICATE_SLOT_NAMES",X_V_SLOT_EXTRANEOUS_DEFAULT_SLOT_CHILDREN:39,39:"X_V_SLOT_EXTRANEOUS_DEFAULT_SLOT_CHILDREN",X_V_SLOT_MISPLACED:40,40:"X_V_SLOT_MISPLACED",X_V_MODEL_NO_EXPRESSION:41,41:"X_V_MODEL_NO_EXPRESSION",X_V_MODEL_MALFORMED_EXPRESSION:42,42:"X_V_MODEL_MALFORMED_EXPRESSION",X_V_MODEL_ON_SCOPE_VARIABLE:43,43:"X_V_MODEL_ON_SCOPE_VARIABLE",X_V_MODEL_ON_PROPS:44,44:"X_V_MODEL_ON_PROPS",X_INVALID_EXPRESSION:45,45:"X_INVALID_EXPRESSION",X_KEEP_ALIVE_INVALID_CHILDREN:46,46:"X_KEEP_ALIVE_INVALID_CHILDREN",X_PREFIX_ID_NOT_SUPPORTED:47,47:"X_PREFIX_ID_NOT_SUPPORTED",X_MODULE_MODE_NOT_SUPPORTED:48,48:"X_MODULE_MODE_NOT_SUPPORTED",X_CACHE_HANDLER_NOT_SUPPORTED:49,49:"X_CACHE_HANDLER_NOT_SUPPORTED",X_SCOPE_ID_NOT_SUPPORTED:50,50:"X_SCOPE_ID_NOT_SUPPORTED",X_VNODE_HOOKS:51,51:"X_VNODE_HOOKS",X_V_BIND_INVALID_SAME_NAME_ARGUMENT:52,52:"X_V_BIND_INVALID_SAME_NAME_ARGUMENT",__EXTEND_POINT__:53,53:"__EXTEND_POINT__"},e.FRAGMENT=C,e.GUARD_REACTIVE_PROPS=Z,e.IS_MEMO_SAME=ed,e.IS_REF=ec,e.KEEP_ALIVE=x,e.MERGE_PROPS=K,e.NORMALIZE_CLASS=Y,e.NORMALIZE_PROPS=z,e.NORMALIZE_STYLE=Q,e.NewlineType={Start:0,0:"Start",End:-1,"-1":"End",None:-2,"-2":"None",Unknown:-3,"-3":"Unknown"},e.NodeTypes={ROOT:0,0:"ROOT",ELEMENT:1,1:"ELEMENT",TEXT:2,2:"TEXT",COMMENT:3,3:"COMMENT",SIMPLE_EXPRESSION:4,4:"SIMPLE_EXPRESSION",INTERPOLATION:5,5:"INTERPOLATION",ATTRIBUTE:6,6:"ATTRIBUTE",DIRECTIVE:7,7:"DIRECTIVE",COMPOUND_EXPRESSION:8,8:"COMPOUND_EXPRESSION",IF:9,9:"IF",IF_BRANCH:10,10:"IF_BRANCH",FOR:11,11:"FOR",TEXT_CALL:12,12:"TEXT_CALL",VNODE_CALL:13,13:"VNODE_CALL",JS_CALL_EXPRESSION:14,14:"JS_CALL_EXPRESSION",JS_OBJECT_EXPRESSION:15,15:"JS_OBJECT_EXPRESSION",JS_PROPERTY:16,16:"JS_PROPERTY",JS_ARRAY_EXPRESSION:17,17:"JS_ARRAY_EXPRESSION",JS_FUNCTION_EXPRESSION:18,18:"JS_FUNCTION_EXPRESSION",JS_CONDITIONAL_EXPRESSION:19,19:"JS_CONDITIONAL_EXPRESSION",JS_CACHE_EXPRESSION:20,20:"JS_CACHE_EXPRESSION",JS_BLOCK_STATEMENT:21,21:"JS_BLOCK_STATEMENT",JS_TEMPLATE_LITERAL:22,22:"JS_TEMPLATE_LITERAL",JS_IF_STATEMENT:23,23:"JS_IF_STATEMENT",JS_ASSIGNMENT_EXPRESSION:24,24:"JS_ASSIGNMENT_EXPRESSION",JS_SEQUENCE_EXPRESSION:25,25:"JS_SEQUENCE_EXPRESSION",JS_RETURN_STATEMENT:26,26:"JS_RETURN_STATEMENT"},e.OPEN_BLOCK=M,e.POP_SCOPE_ID=eo,e.PUSH_SCOPE_ID=es,e.RENDER_LIST=q,e.RENDER_SLOT=J,e.RESOLVE_COMPONENT=F,e.RESOLVE_DIRECTIVE=$,e.RESOLVE_DYNAMIC_COMPONENT=B,e.RESOLVE_FILTER=H,e.SET_BLOCK_TRACKING=er,e.SUSPENSE=R,e.TELEPORT=v,e.TO_DISPLAY_STRING=W,e.TO_HANDLERS=ee,e.TO_HANDLER_KEY=ei,e.TRANSITION=n1,e.TRANSITION_GROUP=n0,e.TS_NODE_TYPES=eJ,e.UNREF=el,e.V_MODEL_CHECKBOX=nj,e.V_MODEL_DYNAMIC=nY,e.V_MODEL_RADIO=nJ,e.V_MODEL_SELECT=nK,e.V_MODEL_TEXT=nW,e.V_ON_WITH_KEYS=nz,e.V_ON_WITH_MODIFIERS=nQ,e.V_SHOW=nZ,e.WITH_CTX=ea,e.WITH_DIRECTIVES=G,e.WITH_MEMO=eh,e.advancePositionWithClone=function(e,t,n=t.length){return e5({offset:e.offset,line:e.line,column:e.column},t,n)},e.advancePositionWithMutation=e5,e.assert=function(e,t){if(!e)throw Error(t||"unexpected compiler condition")},e.baseCompile=nG,e.baseParse=tj,e.buildDirectiveArgs=nO,e.buildProps=nI,e.buildSlots=n_,e.checkCompatEnabled=function(e,t,n){return eU(e,t)},e.compile=function(e,t={}){return nG(e,a({},n2,t,{nodeTransforms:[ii,...ih,...t.nodeTransforms||[]],directiveTransforms:a({},id,t.directiveTransforms||{}),transformHoist:null}))},e.convertToBlock=eR,e.createArrayExpression=e_,e.createAssignmentExpression=function(e,t){return{type:24,left:e,right:t,loc:ef}},e.createBlockStatement=eb,e.createCacheExpression=eA,e.createCallExpression=eI,e.createCompilerError=e$,e.createCompoundExpression=eN,e.createConditionalExpression=eO,e.createDOMCompilerError=function(e,t){return e$(e,t)},e.createForLoopParams=nu,e.createFunctionExpression=ey,e.createIfStatement=function(e,t,n){return{type:23,test:e,consequent:t,alternate:n,loc:ef}},e.createInterpolation=function(e,t){return{type:5,loc:t,content:c(e)?eT(e,!1,t):e}},e.createObjectExpression=eS,e.createObjectProperty=eg,e.createReturnStatement=function(e){return{type:26,returns:e,loc:ef}},e.createRoot=eE,e.createSequenceExpression=function(e){return{type:25,expressions:e,loc:ef}},e.createSimpleExpression=eT,e.createStructuralDirectiveTransform=t3,e.createTemplateLiteral=function(e){return{type:22,elements:e,loc:ef}},e.createTransformContext=t1,e.createVNodeCall=em,e.defaultOnError=eF,e.defaultOnWarn=eB,e.errorMessages=eH,e.extractIdentifiers=eG,e.filterNonCommentChildren=td,e.findDir=e9,e.findProp=e7,e.forAliasRE=tp,e.generate=t5,e.generateCodeFrame=function(e,t=0,n=e.length){if((t=Math.max(0,Math.min(t,e.length)))>(n=Math.max(0,Math.min(n,e.length))))return"";let i=e.split(/(\r?\n)/),r=i.filter((e,t)=>t%2==1);i=i.filter((e,t)=>t%2==0);let s=0,o=[];for(let e=0;e<i.length;e++)if((s+=i[e].length+(r[e]&&r[e].length||0))>=t){for(let a=e-2;a<=e+2||n>s;a++){if(a<0||a>=i.length)continue;let l=a+1;o.push(`${l}${" ".repeat(Math.max(3-String(l).length,0))}| ${i[a]}`);let c=i[a].length,h=r[a]&&r[a].length||0;if(a===e){let e=t-(s-(c+h)),i=Math.max(1,n>s?c-e:n-t);o.push(" | "+" ".repeat(e)+"^".repeat(i))}else if(a>e){if(n>s){let e=Math.max(Math.min(n-s,c),1);o.push(" | "+"^".repeat(e))}s+=c+h}}break}return o.join(`
|
|
13
|
-
`)},e.getBaseTransformPreset=nH,e.getConstantType=tK,e.getMemoedVNodeCall=th,e.getSelfName=tZ,e.getVNodeBlockHelper=ev,e.getVNodeHelper=eC,e.hasDynamicKeyVBind=te,e.hasScopeRef=function e(t,n){if(!t||0===Object.keys(n).length)return!1;switch(t.type){case 1:for(let i=0;i<t.props.length;i++){let r=t.props[i];if(7===r.type&&(e(r.arg,n)||e(r.exp,n)))return!0}return t.children.some(t=>e(t,n));case 11:if(e(t.source,n))return!0;return t.children.some(t=>e(t,n));case 9:return t.branches.some(t=>e(t,n));case 10:if(e(t.condition,n))return!0;return t.children.some(t=>e(t,n));case 4:return!t.isStatic&&ez(t.content)&&!!n[t.content];case 8:return t.children.some(t=>d(t)&&e(t,n));case 5:case 12:return e(t.content,n);default:return!1}},e.hasSingleChild=function(e){return 1===td(e).length},e.helperNameMap=ep,e.injectProp=ta,e.isAllWhitespace=tu,e.isCommentOrWhitespace=tE,e.isConstantNode=function e(t,n){if(eW(t))return!0;switch((t=ej(t)).type){case"Identifier":return"literal-const"===n[t.name];case"RegExpLiteral":return!0;case"ObjectExpression":return t.properties.every(t=>"ObjectMethod"!==t.type&&("SpreadElement"===t.type?e(t.argument,n):(!t.computed||e(t.key,n))&&e(t.value,n)));case"ArrayExpression":return t.elements.every(t=>null===t||("SpreadElement"===t.type?e(t.argument,n):e(t,n)))}return!1},e.isCoreComponent=eY,e.isFnExpression=e6,e.isFnExpressionBrowser=e6,e.isFnExpressionNode=r,e.isFunctionType=e=>/Function(?:Expression|Declaration)$|Method$/.test(e.type),e.isInDestructureAssignment=function(e,t){if(e&&("ObjectProperty"===e.type||"ArrayPattern"===e.type)){let e=t.length;for(;e--;){let n=t[e];if("AssignmentExpression"===n.type)return!0;if("ObjectProperty"!==n.type&&!n.type.endsWith("Pattern"))break}}return!1},e.isInNewExpression=function(e){let t=e.length;for(;t--;){let n=e[t];if("NewExpression"===n.type)return!0;if("MemberExpression"!==n.type)break}return!1},e.isLiteralWhitelisted=ni,e.isMemberExpression=e3,e.isMemberExpressionBrowser=e3,e.isMemberExpressionNode=r,e.isReferencedIdentifier=function(e,t,n){return!1},e.isSimpleIdentifier=ez,e.isSingleIfBlock=function(e){let t=!1;for(let n of td(e))if(9===n.type||1===n.type&&e9(n,"if")){if(t)return!1;t=!0}else if(!t||!(1===n.type&&e9(n,/^else(-if)?$/,!0)))return!1;return!0},e.isSlotOutlet=ts,e.isStaticArgOf=e8,e.isStaticExp=eK,e.isStaticNode=eW,e.isStaticProperty=eq,e.isStaticPropertyKey=(e,t)=>eq(t)&&t.key===e,e.isTemplateNode=tr,e.isText=tt,e.isVPre=tn,e.isVSlot=ti,e.isValidHTMLNesting=function(e,t){return"template"===e||(e in io?io[e].has(t):t in ia?ia[t].has(e):!(e in il&&il[e].has(t)||t in ic&&ic[t].has(e)))},e.isWhitespaceText=tf,e.locStub=ef,e.noopDirectiveTransform=nq,e.parse=function(e,t={}){return tj(e,a({},n2,t))},e.parserOptions=n2,e.postTransformTransition=function(e,t,n=it){return()=>{if(!e.children.length)return;n(e)&&t(e$(62,{start:e.children[0].loc.start,end:e.children[e.children.length-1].loc.end,source:""}));let i=e.children[0];if(1===i.type)for(let t of i.props)7===t.type&&"show"===t.name&&e.props.push({type:6,name:"persisted",nameLoc:e.loc,value:void 0,loc:e.loc})}},e.processExpression=nr,e.processFor=nd,e.processIf=no,e.processSlotOutlet=nC,e.registerRuntimeHelpers=eu,e.resolveComponentType=nN,e.resolveModifiers=n8,e.stringifyExpression=function e(t){return c(t)?t:4===t.type?t.content:t.children.map(e).join("")},e.toValidAssetId=tc,e.trackSlotScopes=nE,e.trackVForSlotScopes=(e,t)=>{let n;if(tr(e)&&e.props.some(ti)&&(n=e9(e,"for"))){let e=n.forParseResult;if(e){np(e);let{value:n,key:i,index:r}=e,{addIdentifiers:s,removeIdentifiers:o}=t;return n&&s(n),i&&s(i),r&&s(r),()=>{n&&o(n),i&&o(i),r&&o(r)}}}},e.transform=t0,e.transformBind=nR,e.transformElement=nT,e.transformExpression=(e,t)=>{if(5===e.type)e.content=nr(e.content,t);else if(1===e.type){let n=e9(e,"memo");for(let i=0;i<e.props.length;i++){let r=e.props[i];if(7===r.type&&"for"!==r.name){let e=r.exp,i=r.arg;!e||4!==e.type||"on"===r.name&&i||n&&i&&4===i.type&&"key"===i.content||(r.exp=nr(e,t,"slot"===r.name)),i&&4===i.type&&!i.isStatic&&(r.arg=nr(i,t))}}}},e.transformModel=nD,e.transformOn=nv,e.transformStyle=n3,e.transformVBindShorthand=n$,e.traverseNode=t2,e.unwrapTSNode=ej,e.validFirstIdentCharRE=eZ,e.walkBlockDeclarations=function e(t,n){for(let r of"SwitchCase"===t.type?t.consequent:t.body)if("VariableDeclaration"===r.type){if(r.declare)continue;for(let e of r.declarations)for(let t of eG(e.id))n(t)}else if("FunctionDeclaration"===r.type||"ClassDeclaration"===r.type){if(r.declare||!r.id)continue;n(r.id)}else{var i;"ForOfStatement"===(i=r).type||"ForInStatement"===i.type||"ForStatement"===i.type?function(e,t,n){let i="ForStatement"===e.type?e.init:e.left;if(i&&"VariableDeclaration"===i.type&&("var"===i.kind?t:!t))for(let e of i.declarations)for(let t of eG(e.id))n(t)}(r,!0,n):"SwitchStatement"===r.type&&function(t,n,i){for(let r of t.cases){for(let e of r.consequent)if("VariableDeclaration"===e.type&&("var"===e.kind?n:!n))for(let t of e.declarations)for(let e of eG(t.id))i(e);e(r,i)}}(r,!0,n)}},e.walkFunctionParams=function(e,t){for(let n of e.params)for(let e of eG(n))t(e)},e.walkIdentifiers=function(e,t,n=!1,i=[],r=Object.create(null)){},e.warnDeprecation=function(e,t,n,...i){if("suppress-warning"===eX(e,t))return;let{message:r,link:s}=ew[e],o=SyntaxError(`(deprecation ${e}) ${"function"==typeof r?r(...i):r}${s?`
|
|
13
|
+
`)},e.getBaseTransformPreset=nH,e.getConstantType=tK,e.getMemoedVNodeCall=th,e.getSelfName=tZ,e.getVNodeBlockHelper=ev,e.getVNodeHelper=eC,e.hasDynamicKeyVBind=te,e.hasScopeRef=function e(t,n){if(!t||0===Object.keys(n).length)return!1;switch(t.type){case 1:for(let i=0;i<t.props.length;i++){let r=t.props[i];if(7===r.type&&(e(r.arg,n)||e(r.exp,n)))return!0}return t.children.some(t=>e(t,n));case 11:if(e(t.source,n))return!0;return t.children.some(t=>e(t,n));case 9:return t.branches.some(t=>e(t,n));case 10:if(e(t.condition,n))return!0;return t.children.some(t=>e(t,n));case 4:return!t.isStatic&&ez(t.content)&&!!n[t.content];case 8:return t.children.some(t=>d(t)&&e(t,n));case 5:case 12:return e(t.content,n);default:return!1}},e.hasSingleChild=function(e){return 1===td(e).length},e.helperNameMap=ep,e.injectProp=ta,e.isAllWhitespace=tu,e.isCommentOrWhitespace=tE,e.isConstantNode=function e(t,n){if(eW(t))return!0;switch((t=ej(t)).type){case"Identifier":return"literal-const"===n[t.name];case"RegExpLiteral":return!0;case"ObjectExpression":return t.properties.every(t=>"ObjectMethod"!==t.type&&("SpreadElement"===t.type?e(t.argument,n):(!t.computed||e(t.key,n))&&e(t.value,n)));case"ArrayExpression":return t.elements.every(t=>null===t||("SpreadElement"===t.type?e(t.argument,n):e(t,n)))}return!1},e.isCoreComponent=eY,e.isFnExpression=e6,e.isFnExpressionBrowser=e6,e.isFnExpressionNode=r,e.isFunctionType=e=>/Function(?:Expression|Declaration)$|Method$/.test(e.type),e.isInDestructureAssignment=function(e,t){if(e&&("ObjectProperty"===e.type||"ArrayPattern"===e.type)){let e=t.length;for(;e--;){let n=t[e];if("AssignmentExpression"===n.type)return!0;if("ObjectProperty"!==n.type&&!n.type.endsWith("Pattern"))break}}return!1},e.isInNewExpression=function(e){let t=e.length;for(;t--;){let n=e[t];if("NewExpression"===n.type)return!0;if("MemberExpression"!==n.type)break}return!1},e.isKeyboardEvent=n7,e.isLiteralWhitelisted=ni,e.isMemberExpression=e3,e.isMemberExpressionBrowser=e3,e.isMemberExpressionNode=r,e.isReferencedIdentifier=function(e,t,n){return!1},e.isSimpleIdentifier=ez,e.isSingleIfBlock=function(e){let t=!1;for(let n of td(e))if(9===n.type||1===n.type&&e9(n,"if")){if(t)return!1;t=!0}else if(!t||!(1===n.type&&e9(n,/^else(-if)?$/,!0)))return!1;return!0},e.isSlotOutlet=ts,e.isStaticArgOf=e8,e.isStaticExp=eK,e.isStaticNode=eW,e.isStaticProperty=eq,e.isStaticPropertyKey=(e,t)=>eq(t)&&t.key===e,e.isTemplateNode=tr,e.isText=tt,e.isVPre=tn,e.isVSlot=ti,e.isValidHTMLNesting=function(e,t){return"template"===e||(e in io?io[e].has(t):t in ia?ia[t].has(e):!(e in il&&il[e].has(t)||t in ic&&ic[t].has(e)))},e.isWhitespaceText=tf,e.locStub=ef,e.noopDirectiveTransform=nq,e.parse=function(e,t={}){return tj(e,a({},n2,t))},e.parserOptions=n2,e.postTransformTransition=function(e,t,n=it){return()=>{if(!e.children.length)return;n(e)&&t(e$(62,{start:e.children[0].loc.start,end:e.children[e.children.length-1].loc.end,source:""}));let i=e.children[0];if(1===i.type)for(let t of i.props)7===t.type&&"show"===t.name&&e.props.push({type:6,name:"persisted",nameLoc:e.loc,value:void 0,loc:e.loc})}},e.processExpression=nr,e.processFor=nd,e.processIf=no,e.processSlotOutlet=nC,e.registerRuntimeHelpers=eu,e.resolveComponentType=nN,e.resolveModifiers=n8,e.stringifyExpression=function e(t){return c(t)?t:4===t.type?t.content:t.children.map(e).join("")},e.toValidAssetId=tc,e.trackSlotScopes=nE,e.trackVForSlotScopes=(e,t)=>{let n;if(tr(e)&&e.props.some(ti)&&(n=e9(e,"for"))){let e=n.forParseResult;if(e){np(e);let{value:n,key:i,index:r}=e,{addIdentifiers:s,removeIdentifiers:o}=t;return n&&s(n),i&&s(i),r&&s(r),()=>{n&&o(n),i&&o(i),r&&o(r)}}}},e.transform=t0,e.transformBind=nR,e.transformElement=nT,e.transformExpression=(e,t)=>{if(5===e.type)e.content=nr(e.content,t);else if(1===e.type){let n=e9(e,"memo");for(let i=0;i<e.props.length;i++){let r=e.props[i];if(7===r.type&&"for"!==r.name){let e=r.exp,i=r.arg;!e||4!==e.type||"on"===r.name&&i||n&&i&&4===i.type&&"key"===i.content||(r.exp=nr(e,t,"slot"===r.name)),i&&4===i.type&&!i.isStatic&&(r.arg=nr(i,t))}}}},e.transformModel=nD,e.transformOn=nv,e.transformStyle=n3,e.transformVBindShorthand=n$,e.traverseNode=t2,e.unwrapTSNode=ej,e.validFirstIdentCharRE=eZ,e.walkBlockDeclarations=function e(t,n){for(let r of"SwitchCase"===t.type?t.consequent:t.body)if("VariableDeclaration"===r.type){if(r.declare)continue;for(let e of r.declarations)for(let t of eG(e.id))n(t)}else if("FunctionDeclaration"===r.type||"ClassDeclaration"===r.type){if(r.declare||!r.id)continue;n(r.id)}else{var i;"ForOfStatement"===(i=r).type||"ForInStatement"===i.type||"ForStatement"===i.type?function(e,t,n){let i="ForStatement"===e.type?e.init:e.left;if(i&&"VariableDeclaration"===i.type&&("var"===i.kind?t:!t))for(let e of i.declarations)for(let t of eG(e.id))n(t)}(r,!0,n):"SwitchStatement"===r.type&&function(t,n,i){for(let r of t.cases){for(let e of r.consequent)if("VariableDeclaration"===e.type&&("var"===e.kind?n:!n))for(let t of e.declarations)for(let e of eG(t.id))i(e);e(r,i)}}(r,!0,n)}},e.walkFunctionParams=function(e,t){for(let n of e.params)for(let e of eG(n))t(e)},e.walkIdentifiers=function(e,t,n=!1,i=[],r=Object.create(null)){},e.warnDeprecation=function(e,t,n,...i){if("suppress-warning"===eX(e,t))return;let{message:r,link:s}=ew[e],o=SyntaxError(`(deprecation ${e}) ${"function"==typeof r?r(...i):r}${s?`
|
|
14
14
|
Details: ${s}`:""}`);o.code=e,n&&(o.loc=n),t.onWarn(o)},e}({});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vue/compiler-dom",
|
|
3
|
-
"version": "3.6.0-alpha.
|
|
3
|
+
"version": "3.6.0-alpha.6",
|
|
4
4
|
"description": "@vue/compiler-dom",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"module": "dist/compiler-dom.esm-bundler.js",
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
},
|
|
52
52
|
"homepage": "https://github.com/vuejs/core/tree/main/packages/compiler-dom#readme",
|
|
53
53
|
"dependencies": {
|
|
54
|
-
"@vue/shared": "3.6.0-alpha.
|
|
55
|
-
"@vue/compiler-core": "3.6.0-alpha.
|
|
54
|
+
"@vue/shared": "3.6.0-alpha.6",
|
|
55
|
+
"@vue/compiler-core": "3.6.0-alpha.6"
|
|
56
56
|
}
|
|
57
57
|
}
|