@vue/compiler-dom 3.6.0-alpha.3 → 3.6.0-alpha.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/compiler-dom.cjs.js +4 -4
- package/dist/compiler-dom.cjs.prod.js +4 -4
- package/dist/compiler-dom.esm-browser.js +9 -14
- package/dist/compiler-dom.esm-browser.prod.js +9 -9
- package/dist/compiler-dom.esm-bundler.js +4 -4
- package/dist/compiler-dom.global.js +8 -14
- 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.4
|
|
3
3
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
4
4
|
* @license MIT
|
|
5
5
|
**/
|
|
@@ -64,7 +64,7 @@ const parserOptions = {
|
|
|
64
64
|
let ns = parent ? parent.ns : rootNamespace;
|
|
65
65
|
if (parent && ns === 2) {
|
|
66
66
|
if (parent.tag === "annotation-xml") {
|
|
67
|
-
if (tag
|
|
67
|
+
if (shared.isSVGTag(tag)) {
|
|
68
68
|
return 1;
|
|
69
69
|
}
|
|
70
70
|
if (parent.props.some(
|
|
@@ -81,10 +81,10 @@ const parserOptions = {
|
|
|
81
81
|
}
|
|
82
82
|
}
|
|
83
83
|
if (ns === 0) {
|
|
84
|
-
if (tag
|
|
84
|
+
if (shared.isSVGTag(tag)) {
|
|
85
85
|
return 1;
|
|
86
86
|
}
|
|
87
|
-
if (tag
|
|
87
|
+
if (shared.isMathMLTag(tag)) {
|
|
88
88
|
return 2;
|
|
89
89
|
}
|
|
90
90
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @vue/compiler-dom v3.6.0-alpha.
|
|
2
|
+
* @vue/compiler-dom v3.6.0-alpha.4
|
|
3
3
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
4
4
|
* @license MIT
|
|
5
5
|
**/
|
|
@@ -64,7 +64,7 @@ const parserOptions = {
|
|
|
64
64
|
let ns = parent ? parent.ns : rootNamespace;
|
|
65
65
|
if (parent && ns === 2) {
|
|
66
66
|
if (parent.tag === "annotation-xml") {
|
|
67
|
-
if (tag
|
|
67
|
+
if (shared.isSVGTag(tag)) {
|
|
68
68
|
return 1;
|
|
69
69
|
}
|
|
70
70
|
if (parent.props.some(
|
|
@@ -81,10 +81,10 @@ const parserOptions = {
|
|
|
81
81
|
}
|
|
82
82
|
}
|
|
83
83
|
if (ns === 0) {
|
|
84
|
-
if (tag
|
|
84
|
+
if (shared.isSVGTag(tag)) {
|
|
85
85
|
return 1;
|
|
86
86
|
}
|
|
87
|
-
if (tag
|
|
87
|
+
if (shared.isMathMLTag(tag)) {
|
|
88
88
|
return 2;
|
|
89
89
|
}
|
|
90
90
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @vue/compiler-dom v3.6.0-alpha.
|
|
2
|
+
* @vue/compiler-dom v3.6.0-alpha.4
|
|
3
3
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
4
4
|
* @license MIT
|
|
5
5
|
**/
|
|
@@ -49,6 +49,9 @@ const toHandlerKey = cacheStringFunction(
|
|
|
49
49
|
return s;
|
|
50
50
|
}
|
|
51
51
|
);
|
|
52
|
+
const getModifierPropName = (name) => {
|
|
53
|
+
return `${name === "modelValue" || name === "model-value" ? "model" : name}Modifiers${name === "model" ? "$" : ""}`;
|
|
54
|
+
};
|
|
52
55
|
|
|
53
56
|
const PatchFlagNames = {
|
|
54
57
|
[1]: `TEXT`,
|
|
@@ -260,14 +263,6 @@ function registerRuntimeHelpers(helpers) {
|
|
|
260
263
|
});
|
|
261
264
|
}
|
|
262
265
|
|
|
263
|
-
const Namespaces = {
|
|
264
|
-
"HTML": 0,
|
|
265
|
-
"0": "HTML",
|
|
266
|
-
"SVG": 1,
|
|
267
|
-
"1": "SVG",
|
|
268
|
-
"MATH_ML": 2,
|
|
269
|
-
"2": "MATH_ML"
|
|
270
|
-
};
|
|
271
266
|
const NodeTypes = {
|
|
272
267
|
"ROOT": 0,
|
|
273
268
|
"0": "ROOT",
|
|
@@ -5710,7 +5705,7 @@ const transformModel$1 = (dir, node, context) => {
|
|
|
5710
5705
|
];
|
|
5711
5706
|
if (dir.modifiers.length && node.tagType === 1) {
|
|
5712
5707
|
const modifiers = dir.modifiers.map((m) => m.content).map((m) => (isSimpleIdentifier(m) ? m : JSON.stringify(m)) + `: true`).join(`, `);
|
|
5713
|
-
const modifiersKey = arg ? isStaticExp(arg) ?
|
|
5708
|
+
const modifiersKey = arg ? isStaticExp(arg) ? getModifierPropName(arg.content) : createCompoundExpression([arg, ' + "Modifiers"']) : `modelModifiers`;
|
|
5714
5709
|
props.push(
|
|
5715
5710
|
createObjectProperty(
|
|
5716
5711
|
modifiersKey,
|
|
@@ -6076,7 +6071,7 @@ const parserOptions = {
|
|
|
6076
6071
|
let ns = parent ? parent.ns : rootNamespace;
|
|
6077
6072
|
if (parent && ns === 2) {
|
|
6078
6073
|
if (parent.tag === "annotation-xml") {
|
|
6079
|
-
if (tag
|
|
6074
|
+
if (isSVGTag(tag)) {
|
|
6080
6075
|
return 1;
|
|
6081
6076
|
}
|
|
6082
6077
|
if (parent.props.some(
|
|
@@ -6093,10 +6088,10 @@ const parserOptions = {
|
|
|
6093
6088
|
}
|
|
6094
6089
|
}
|
|
6095
6090
|
if (ns === 0) {
|
|
6096
|
-
if (tag
|
|
6091
|
+
if (isSVGTag(tag)) {
|
|
6097
6092
|
return 1;
|
|
6098
6093
|
}
|
|
6099
|
-
if (tag
|
|
6094
|
+
if (isMathMLTag(tag)) {
|
|
6100
6095
|
return 2;
|
|
6101
6096
|
}
|
|
6102
6097
|
}
|
|
@@ -6691,4 +6686,4 @@ function parse(template, options = {}) {
|
|
|
6691
6686
|
return baseParse(template, extend({}, parserOptions, options));
|
|
6692
6687
|
}
|
|
6693
6688
|
|
|
6694
|
-
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,
|
|
6689
|
+
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, findDir, findProp, forAliasRE, generate, generateCodeFrame, getBaseTransformPreset, getConstantType, getMemoedVNodeCall, getSelfName, getVNodeBlockHelper, getVNodeHelper, hasDynamicKeyVBind, hasScopeRef, helperNameMap, injectProp, isConstantNode, isCoreComponent, isFnExpression, isFnExpressionBrowser, isFnExpressionNode, isFunctionType, isInDestructureAssignment, isInNewExpression, isLiteralWhitelisted, isMemberExpression, isMemberExpressionBrowser, isMemberExpressionNode, isReferencedIdentifier, isSimpleIdentifier, isSlotOutlet, isStaticArgOf, isStaticExp, isStaticNode, isStaticProperty, isStaticPropertyKey, isTemplateNode, isText$1 as isText, isVPre, isVSlot, isValidHTMLNesting, 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,14 +1,14 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @vue/compiler-dom v3.6.0-alpha.
|
|
2
|
+
* @vue/compiler-dom v3.6.0-alpha.4
|
|
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(`
|
|
6
|
-
`)}let T=/;(?![^(]*\))/g,N=/:([^]+)/,I=/\/\*[^]*?\*\//g,y=t("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=t("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=t("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=t("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={
|
|
7
|
-
Details: ${s}`:""}`);o.code=e,n&&(o.loc=n),t.onWarn(o)}function
|
|
8
|
-
Use a v-bind binding combined with a v-on listener that emits update:x event instead.`,45:"Error parsing JavaScript expression: ",46:"<KeepAlive> expects exactly one child component.",51:"@vnode-* hooks in templates are no longer supported. Use the vue: prefix instead. For example, @vnode-mounted should be changed to @vue:mounted. @vnode-* hooks support has been removed in 3.4.",47:'"prefixIdentifiers" option is not supported in this build of compiler.',48:"ES module mode is not supported in this build of compiler.",49:'"cacheHandlers" option is only supported when the "prefixIdentifiers" option is enabled.',50:'"scopeId" option is only supported in module mode.',53:""};function e4(e,t,n=!1,i=[],r=Object.create(null)){}function e6(e,t,n){return!1}function e5(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}function e9(e){let t=e.length;for(;t--;){let n=e[t];if("NewExpression"===n.type)return!0;if("MemberExpression"!==n.type)break}return!1}function e7(e,t){for(let n of e.params)for(let e of te(n))t(e)}function e8(e,t){for(let i of"SwitchCase"===e.type?e.consequent:e.body)if("VariableDeclaration"===i.type){if(i.declare)continue;for(let e of i.declarations)for(let n of te(e.id))t(n)}else if("FunctionDeclaration"===i.type||"ClassDeclaration"===i.type){if(i.declare||!i.id)continue;t(i.id)}else{var n;"ForOfStatement"===(n=i).type||"ForInStatement"===n.type||"ForStatement"===n.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 te(e.id))n(t)}(i,!0,t):"SwitchStatement"===i.type&&function(e,t,n){for(let i of e.cases){for(let e of i.consequent)if("VariableDeclaration"===e.type&&("var"===e.kind?t:!t))for(let t of e.declarations)for(let e of te(t.id))n(e);e8(i,n)}}(i,!0,t)}}function te(e,t=[]){switch(e.type){case"Identifier":t.push(e);break;case"MemberExpression":let n=e;for(;"MemberExpression"===n.type;)n=n.object;t.push(n);break;case"ObjectPattern":for(let n of e.properties)"RestElement"===n.type?te(n.argument,t):te(n.value,t);break;case"ArrayPattern":e.elements.forEach(e=>{e&&te(e,t)});break;case"RestElement":te(e.argument,t);break;case"AssignmentPattern":te(e.left,t)}return t}let tt=e=>/Function(?:Expression|Declaration)$|Method$/.test(e.type),tn=e=>!!e&&("ObjectProperty"===e.type||"ObjectMethod"===e.type)&&!e.computed,ti=(e,t)=>tn(t)&&t.key===e,tr=["TSAsExpression","TSTypeAssertion","TSNonNullExpression","TSInstantiationExpression","TSSatisfiesExpression"];function ts(e){return tr.includes(e.type)?ts(e.expression):e}function to(e){switch((e=ts(e)).type){case"UnaryExpression":return to(e.argument);case"LogicalExpression":case"BinaryExpression":return to(e.left)&&to(e.right);case"ConditionalExpression":return to(e.test)&&to(e.consequent)&&to(e.alternate);case"SequenceExpression":case"TemplateLiteral":return e.expressions.every(e=>to(e));case"ParenthesizedExpression":return to(e.expression);case"StringLiteral":case"NumericLiteral":case"BooleanLiteral":case"NullLiteral":case"BigIntLiteral":return!0}return!1}function ta(e,t){if(to(e))return!0;switch((e=ts(e)).type){case"Identifier":return"literal-const"===t[e.name];case"RegExpLiteral":return!0;case"ObjectExpression":return e.properties.every(e=>"ObjectMethod"!==e.type&&("SpreadElement"===e.type?ta(e.argument,t):(!e.computed||ta(e.key,t))&&ta(e.value,t)));case"ArrayExpression":return e.elements.every(e=>null===e||("SpreadElement"===e.type?ta(e.argument,t):ta(e,t)))}return!1}let tl=e=>4===e.type&&e.isStatic;function tc(e){switch(e){case"Teleport":case"teleport":return v;case"Suspense":case"suspense":return R;case"KeepAlive":case"keep-alive":return x;case"BaseTransition":case"base-transition":return L}}let th=/^$|^\d|[^\$\w\xA0-\uFFFF]/,td=e=>!th.test(e),tp=/[A-Za-z_$\xA0-\uFFFF]/,tu=/[\.\?\w$\xA0-\uFFFF]/,tf=/\s+[.[]\s*|\s*[.[]\s+/g,tE=e=>4===e.type?e.content:e.loc.source,tm=e=>{let t=tE(e).trim().replace(tf,e=>e.trim()),n=0,i=[],r=0,s=0,o=null;for(let e=0;e<t.length;e++){let a=t.charAt(e);switch(n){case 0:if("["===a)i.push(n),n=1,r++;else if("("===a)i.push(n),n=2,s++;else if(!(0===e?tp:tu).test(a))return!1;break;case 1:"'"===a||'"'===a||"`"===a?(i.push(n),n=3,o=a):"["===a?r++:"]"!==a||--r||(n=i.pop());break;case 2:if("'"===a||'"'===a||"`"===a)i.push(n),n=3,o=a;else if("("===a)s++;else if(")"===a){if(e===t.length-1)return!1;--s||(n=i.pop())}break;case 3:a===o&&(n=i.pop(),o=null)}}return!r&&!s},t_=i,tS=tm,tg=/^\s*(?:async\s*)?(?:\([^)]*?\)|[\w$_]+)\s*(?::[^=]+)?=>|^\s*(?:async\s+)?function(?:\s+[\w$]+)?\s*\(/,tT=e=>tg.test(tE(e)),tN=i,tI=tT;function ty(e,t,n=t.length){return tO({offset:e.offset,line:e.line,column:e.column},t,n)}function tO(e,t,n=t.length){let i=0,r=-1;for(let e=0;e<n;e++)10===t.charCodeAt(e)&&(i++,r=e);return e.offset+=n,e.line+=i,e.column=-1===r?e.column+n:n-r,e}function tA(e,t){if(!e)throw Error(t||"unexpected compiler condition")}function tb(e,t,n=!1){for(let i=0;i<e.props.length;i++){let r=e.props[i];if(7===r.type&&(n||r.exp)&&(l(t)?r.name===t:t.test(r.name)))return r}}function tC(e,t,n=!1,i=!1){for(let r=0;r<e.props.length;r++){let s=e.props[r];if(6===s.type){if(n)continue;if(s.name===t&&(s.value||i))return s}else if("bind"===s.name&&(s.exp||i)&&tv(s.arg,t))return s}}function tv(e,t){return!!(e&&tl(e)&&e.content===t)}function tR(e){return e.props.some(e=>7===e.type&&"bind"===e.name&&(!e.arg||4!==e.arg.type||!e.arg.isStatic))}function tx(e){return 5===e.type||2===e.type}function tL(e){return 7===e.type&&"pre"===e.name}function tM(e){return 7===e.type&&"slot"===e.name}function tP(e){return 1===e.type&&3===e.tagType}function tD(e){return 1===e.type&&2===e.tagType}let tk=new Set([z,Z]);function tV(e,t,n){let i,r,s=13===e.type?e.props:e.arguments[2],o=[];if(s&&!l(s)&&14===s.type){let e=function e(t,n=[]){if(t&&!l(t)&&14===t.type){let i=t.callee;if(!l(i)&&tk.has(i))return e(t.arguments[0],n.concat(t))}return[t,n]}(s);s=e[0],r=(o=e[1])[o.length-1]}if(null==s||l(s))i=eI([t]);else if(14===s.type){let e=s.arguments[0];l(e)||15!==e.type?s.callee===ee?i=eC(n.helper(K),[eI([t]),s]):s.arguments.unshift(eI([t])):tw(t,e)||e.properties.unshift(t),i||(i=s)}else 15===s.type?(tw(t,s)||s.properties.unshift(t),i=s):(i=eC(n.helper(K),[eI([t]),s]),r&&r.callee===Z&&(r=o[o.length-2]));13===e.type?r?r.arguments[0]=i:e.props=i:r?r.arguments[0]=i:e.arguments[2]=i}function tw(e,t){let n=!1;if(4===e.key.type){let i=e.key.content;n=t.properties.some(e=>4===e.key.type&&e.key.content===i)}return n}function tX(e,t){return`_${t}_${e.replace(/[^\w]/g,(t,n)=>"-"===t?"_":e.charCodeAt(n).toString())}`}function tU(e,t){if(!e||0===Object.keys(t).length)return!1;switch(e.type){case 1:for(let n=0;n<e.props.length;n++){let i=e.props[n];if(7===i.type&&(tU(i.arg,t)||tU(i.exp,t)))return!0}return e.children.some(e=>tU(e,t));case 11:if(tU(e.source,t))return!0;return e.children.some(e=>tU(e,t));case 9:return e.branches.some(e=>tU(e,t));case 10:if(tU(e.condition,t))return!0;return e.children.some(e=>tU(e,t));case 4:return!e.isStatic&&td(e.content)&&!!t[e.content];case 8:return e.children.some(e=>h(e)&&tU(e,t));case 5:case 12:return tU(e.content,t);default:return!1}}function tF(e){return 14===e.type&&e.callee===eh?e.arguments[1].returns:e}let tB=/([\s\S]*?)\s+(?:in|of)\s+(\S[\s\S]*)/,t$={parseMode:"base",ns:0,delimiters:["{{","}}"],getNamespace:()=>0,isVoidTag:r,isPreTag:r,isIgnoreNewlineTag:r,isCustomElement:r,onError:eZ,onWarn:e1,comments:!1,prefixIdentifiers:!1},tH=t$,tG=null,tq="",tJ=null,tj=null,tW="",tK=-1,tY=-1,tQ=0,tz=!1,tZ=null,t1=[],t0=new class{constructor(e,t){this.stack=e,this.cbs=t,this.state=1,this.buffer="",this.sectionStart=0,this.index=0,this.entityStart=0,this.baseState=1,this.inRCDATA=!1,this.inXML=!1,this.inVPre=!1,this.newlines=[],this.mode=0,this.delimiterOpen=eF,this.delimiterClose=eB,this.delimiterIndex=-1,this.currentSequence=void 0,this.sequenceIndex=0}get inSFCRoot(){return 2===this.mode&&0===this.stack.length}reset(){this.state=1,this.mode=0,this.buffer="",this.sectionStart=0,this.index=0,this.baseState=1,this.inRCDATA=!1,this.currentSequence=void 0,this.newlines.length=0,this.delimiterOpen=eF,this.delimiterClose=eB}getPos(e){let t=1,n=e+1;for(let i=this.newlines.length-1;i>=0;i--){let r=this.newlines[i];if(e>r){t=i+2,n=e-r;break}}return{column:n,line:t,offset:e}}peek(){return this.buffer.charCodeAt(this.index+1)}stateText(e){60===e?(this.index>this.sectionStart&&this.cbs.ontext(this.sectionStart,this.index),this.state=5,this.sectionStart=this.index):this.inVPre||e!==this.delimiterOpen[0]||(this.state=2,this.delimiterIndex=0,this.stateInterpolationOpen(e))}stateInterpolationOpen(e){if(e===this.delimiterOpen[this.delimiterIndex])if(this.delimiterIndex===this.delimiterOpen.length-1){let e=this.index+1-this.delimiterOpen.length;e>this.sectionStart&&this.cbs.ontext(this.sectionStart,e),this.state=3,this.sectionStart=e}else this.delimiterIndex++;else this.inRCDATA?(this.state=32,this.stateInRCDATA(e)):(this.state=1,this.stateText(e))}stateInterpolation(e){e===this.delimiterClose[0]&&(this.state=4,this.delimiterIndex=0,this.stateInterpolationClose(e))}stateInterpolationClose(e){e===this.delimiterClose[this.delimiterIndex]?this.delimiterIndex===this.delimiterClose.length-1?(this.cbs.oninterpolation(this.sectionStart,this.index+1),this.inRCDATA?this.state=32:this.state=1,this.sectionStart=this.index+1):this.delimiterIndex++:(this.state=3,this.stateInterpolation(e))}stateSpecialStartSequence(e){let t=this.sequenceIndex===this.currentSequence.length;if(t?eG(e):(32|e)===this.currentSequence[this.sequenceIndex]){if(!t)return void this.sequenceIndex++}else this.inRCDATA=!1;this.sequenceIndex=0,this.state=6,this.stateInTagName(e)}stateInRCDATA(e){if(this.sequenceIndex===this.currentSequence.length){if(62===e||eH(e)){let t=this.index-this.currentSequence.length;if(this.sectionStart<t){let e=this.index;this.index=t,this.cbs.ontext(this.sectionStart,t),this.index=e}this.sectionStart=t+2,this.stateInClosingTagName(e),this.inRCDATA=!1;return}this.sequenceIndex=0}(32|e)===this.currentSequence[this.sequenceIndex]?this.sequenceIndex+=1:0===this.sequenceIndex?this.currentSequence!==eJ.TitleEnd&&(this.currentSequence!==eJ.TextareaEnd||this.inSFCRoot)?this.fastForwardTo(60)&&(this.sequenceIndex=1):this.inVPre||e!==this.delimiterOpen[0]||(this.state=2,this.delimiterIndex=0,this.stateInterpolationOpen(e)):this.sequenceIndex=Number(60===e)}stateCDATASequence(e){e===eJ.Cdata[this.sequenceIndex]?++this.sequenceIndex===eJ.Cdata.length&&(this.state=28,this.currentSequence=eJ.CdataEnd,this.sequenceIndex=0,this.sectionStart=this.index+1):(this.sequenceIndex=0,this.state=23,this.stateInDeclaration(e))}fastForwardTo(e){for(;++this.index<this.buffer.length;){let t=this.buffer.charCodeAt(this.index);if(10===t&&this.newlines.push(this.index),t===e)return!0}return this.index=this.buffer.length-1,!1}stateInCommentLike(e){e===this.currentSequence[this.sequenceIndex]?++this.sequenceIndex===this.currentSequence.length&&(this.currentSequence===eJ.CdataEnd?this.cbs.oncdata(this.sectionStart,this.index-2):this.cbs.oncomment(this.sectionStart,this.index-2),this.sequenceIndex=0,this.sectionStart=this.index+1,this.state=1):0===this.sequenceIndex?this.fastForwardTo(this.currentSequence[0])&&(this.sequenceIndex=1):e!==this.currentSequence[this.sequenceIndex-1]&&(this.sequenceIndex=0)}startSpecial(e,t){this.enterRCDATA(e,t),this.state=31}enterRCDATA(e,t){this.inRCDATA=!0,this.currentSequence=e,this.sequenceIndex=t}stateBeforeTagName(e){33===e?(this.state=22,this.sectionStart=this.index+1):63===e?(this.state=24,this.sectionStart=this.index+1):e$(e)?(this.sectionStart=this.index,0===this.mode?this.state=6:this.inSFCRoot?this.state=34:this.inXML?this.state=6:116===e?this.state=30:this.state=115===e?29:6):47===e?this.state=8:(this.state=1,this.stateText(e))}stateInTagName(e){eG(e)&&this.handleTagName(e)}stateInSFCRootTagName(e){if(eG(e)){let t=this.buffer.slice(this.sectionStart,this.index);"template"!==t&&this.enterRCDATA(eq("</"+t),0),this.handleTagName(e)}}handleTagName(e){this.cbs.onopentagname(this.sectionStart,this.index),this.sectionStart=-1,this.state=11,this.stateBeforeAttrName(e)}stateBeforeClosingTagName(e){eH(e)||(62===e?(this.state=1,this.sectionStart=this.index+1):(this.state=e$(e)?9:27,this.sectionStart=this.index))}stateInClosingTagName(e){(62===e||eH(e))&&(this.cbs.onclosetag(this.sectionStart,this.index),this.sectionStart=-1,this.state=10,this.stateAfterClosingTagName(e))}stateAfterClosingTagName(e){62===e&&(this.state=1,this.sectionStart=this.index+1)}stateBeforeAttrName(e){62===e?(this.cbs.onopentagend(this.index),this.inRCDATA?this.state=32:this.state=1,this.sectionStart=this.index+1):47===e?this.state=7:60===e&&47===this.peek()?(this.cbs.onopentagend(this.index),this.state=5,this.sectionStart=this.index):eH(e)||this.handleAttrStart(e)}handleAttrStart(e){118===e&&45===this.peek()?(this.state=13,this.sectionStart=this.index):46===e||58===e||64===e||35===e?(this.cbs.ondirname(this.index,this.index+1),this.state=14,this.sectionStart=this.index+1):(this.state=12,this.sectionStart=this.index)}stateInSelfClosingTag(e){62===e?(this.cbs.onselfclosingtag(this.index),this.state=1,this.sectionStart=this.index+1,this.inRCDATA=!1):eH(e)||(this.state=11,this.stateBeforeAttrName(e))}stateInAttrName(e){(61===e||eG(e))&&(this.cbs.onattribname(this.sectionStart,this.index),this.handleAttrNameEnd(e))}stateInDirName(e){61===e||eG(e)?(this.cbs.ondirname(this.sectionStart,this.index),this.handleAttrNameEnd(e)):58===e?(this.cbs.ondirname(this.sectionStart,this.index),this.state=14,this.sectionStart=this.index+1):46===e&&(this.cbs.ondirname(this.sectionStart,this.index),this.state=16,this.sectionStart=this.index+1)}stateInDirArg(e){61===e||eG(e)?(this.cbs.ondirarg(this.sectionStart,this.index),this.handleAttrNameEnd(e)):91===e?this.state=15:46===e&&(this.cbs.ondirarg(this.sectionStart,this.index),this.state=16,this.sectionStart=this.index+1)}stateInDynamicDirArg(e){93===e?this.state=14:(61===e||eG(e))&&(this.cbs.ondirarg(this.sectionStart,this.index+1),this.handleAttrNameEnd(e))}stateInDirModifier(e){61===e||eG(e)?(this.cbs.ondirmodifier(this.sectionStart,this.index),this.handleAttrNameEnd(e)):46===e&&(this.cbs.ondirmodifier(this.sectionStart,this.index),this.sectionStart=this.index+1)}handleAttrNameEnd(e){this.sectionStart=this.index,this.state=17,this.cbs.onattribnameend(this.index),this.stateAfterAttrName(e)}stateAfterAttrName(e){61===e?this.state=18:47===e||62===e?(this.cbs.onattribend(0,this.sectionStart),this.sectionStart=-1,this.state=11,this.stateBeforeAttrName(e)):eH(e)||(this.cbs.onattribend(0,this.sectionStart),this.handleAttrStart(e))}stateBeforeAttrValue(e){34===e?(this.state=19,this.sectionStart=this.index+1):39===e?(this.state=20,this.sectionStart=this.index+1):eH(e)||(this.sectionStart=this.index,this.state=21,this.stateInAttrValueNoQuotes(e))}handleInAttrValue(e,t){(e===t||this.fastForwardTo(t))&&(this.cbs.onattribdata(this.sectionStart,this.index),this.sectionStart=-1,this.cbs.onattribend(34===t?3:2,this.index+1),this.state=11)}stateInAttrValueDoubleQuotes(e){this.handleInAttrValue(e,34)}stateInAttrValueSingleQuotes(e){this.handleInAttrValue(e,39)}stateInAttrValueNoQuotes(e){eH(e)||62===e?(this.cbs.onattribdata(this.sectionStart,this.index),this.sectionStart=-1,this.cbs.onattribend(1,this.index),this.state=11,this.stateBeforeAttrName(e)):(39===e||60===e||61===e||96===e)&&this.cbs.onerr(18,this.index)}stateBeforeDeclaration(e){91===e?(this.state=26,this.sequenceIndex=0):this.state=45===e?25:23}stateInDeclaration(e){(62===e||this.fastForwardTo(62))&&(this.state=1,this.sectionStart=this.index+1)}stateInProcessingInstruction(e){(62===e||this.fastForwardTo(62))&&(this.cbs.onprocessinginstruction(this.sectionStart,this.index),this.state=1,this.sectionStart=this.index+1)}stateBeforeComment(e){45===e?(this.state=28,this.currentSequence=eJ.CommentEnd,this.sequenceIndex=2,this.sectionStart=this.index+1):this.state=23}stateInSpecialComment(e){(62===e||this.fastForwardTo(62))&&(this.cbs.oncomment(this.sectionStart,this.index),this.state=1,this.sectionStart=this.index+1)}stateBeforeSpecialS(e){e===eJ.ScriptEnd[3]?this.startSpecial(eJ.ScriptEnd,4):e===eJ.StyleEnd[3]?this.startSpecial(eJ.StyleEnd,4):(this.state=6,this.stateInTagName(e))}stateBeforeSpecialT(e){e===eJ.TitleEnd[3]?this.startSpecial(eJ.TitleEnd,4):e===eJ.TextareaEnd[3]?this.startSpecial(eJ.TextareaEnd,4):(this.state=6,this.stateInTagName(e))}startEntity(){}stateInEntity(){}parse(e){for(this.buffer=e;this.index<this.buffer.length;){let e=this.buffer.charCodeAt(this.index);switch(10===e&&33!==this.state&&this.newlines.push(this.index),this.state){case 1:this.stateText(e);break;case 2:this.stateInterpolationOpen(e);break;case 3:this.stateInterpolation(e);break;case 4:this.stateInterpolationClose(e);break;case 31:this.stateSpecialStartSequence(e);break;case 32:this.stateInRCDATA(e);break;case 26:this.stateCDATASequence(e);break;case 19:this.stateInAttrValueDoubleQuotes(e);break;case 12:this.stateInAttrName(e);break;case 13:this.stateInDirName(e);break;case 14:this.stateInDirArg(e);break;case 15:this.stateInDynamicDirArg(e);break;case 16:this.stateInDirModifier(e);break;case 28:this.stateInCommentLike(e);break;case 27:this.stateInSpecialComment(e);break;case 11:this.stateBeforeAttrName(e);break;case 6:this.stateInTagName(e);break;case 34:this.stateInSFCRootTagName(e);break;case 9:this.stateInClosingTagName(e);break;case 5:this.stateBeforeTagName(e);break;case 17:this.stateAfterAttrName(e);break;case 20:this.stateInAttrValueSingleQuotes(e);break;case 18:this.stateBeforeAttrValue(e);break;case 8:this.stateBeforeClosingTagName(e);break;case 10:this.stateAfterClosingTagName(e);break;case 29:this.stateBeforeSpecialS(e);break;case 30:this.stateBeforeSpecialT(e);break;case 21:this.stateInAttrValueNoQuotes(e);break;case 7:this.stateInSelfClosingTag(e);break;case 23:this.stateInDeclaration(e);break;case 22:this.stateBeforeDeclaration(e);break;case 25:this.stateBeforeComment(e);break;case 24:this.stateInProcessingInstruction(e);break;case 33:this.stateInEntity()}this.index++}this.cleanup(),this.finish()}cleanup(){this.sectionStart!==this.index&&(1===this.state||32===this.state&&0===this.sequenceIndex?(this.cbs.ontext(this.sectionStart,this.index),this.sectionStart=this.index):(19===this.state||20===this.state||21===this.state)&&(this.cbs.onattribdata(this.sectionStart,this.index),this.sectionStart=this.index))}finish(){this.handleTrailingData(),this.cbs.onend()}handleTrailingData(){let e=this.buffer.length;this.sectionStart>=e||(28===this.state?this.currentSequence===eJ.CdataEnd?this.cbs.oncdata(this.sectionStart,e):this.cbs.oncomment(this.sectionStart,e):6===this.state||11===this.state||18===this.state||17===this.state||12===this.state||13===this.state||14===this.state||15===this.state||16===this.state||20===this.state||19===this.state||21===this.state||9===this.state||this.cbs.ontext(this.sectionStart,e))}emitCodePoint(e,t){}}(t1,{onerr:nl,ontext(e,t){t5(t4(e,t),e,t)},ontextentity(e,t,n){t5(e,t,n)},oninterpolation(e,t){if(tz)return t5(t4(e,t),e,t);let n=e+t0.delimiterOpen.length,i=t-t0.delimiterClose.length;for(;eH(tq.charCodeAt(n));)n++;for(;eH(tq.charCodeAt(i-1));)i--;let r=t4(n,i);r.includes("&")&&(r=tH.decodeEntities(r,!1)),nr({type:5,content:na(r,!1,ns(n,i)),loc:ns(e,t)})},onopentagname(e,t){let n=t4(e,t);tJ={type:1,tag:n,ns:tH.getNamespace(n,t1[0],tH.ns),tagType:0,props:[],children:[],loc:ns(e-1,t),codegenNode:void 0}},onopentagend(e){t6(e)},onclosetag(e,t){let n=t4(e,t);if(!tH.isVoidTag(n)){let i=!1;for(let e=0;e<t1.length;e++)if(t1[e].tag.toLowerCase()===n.toLowerCase()){i=!0,e>0&&t1[0].loc.start.offset;for(let n=0;n<=e;n++)t9(t1.shift(),t,n<e);break}i||t7(e,60)}},onselfclosingtag(e){let t=tJ.tag;tJ.isSelfClosing=!0,t6(e),t1[0]&&t1[0].tag===t&&t9(t1.shift(),e)},onattribname(e,t){tj={type:6,name:t4(e,t),nameLoc:ns(e,t),value:void 0,loc:ns(e)}},ondirname(e,t){let n=t4(e,t),i="."===n||":"===n?"bind":"@"===n?"on":"#"===n?"slot":n.slice(2);if(tz||""===i)tj={type:6,name:n,nameLoc:ns(e,t),value:void 0,loc:ns(e)};else if(tj={type:7,name:i,rawName:n,exp:void 0,arg:void 0,modifiers:"."===n?[eO("prop")]:[],loc:ns(e)},"pre"===i){tz=t0.inVPre=!0,tZ=tJ;let e=tJ.props;for(let t=0;t<e.length;t++)7===e[t].type&&(e[t]=function(e){let t={type:6,name:e.rawName,nameLoc:ns(e.loc.start.offset,e.loc.start.offset+e.rawName.length),value:void 0,loc:e.loc};if(e.exp){let n=e.exp.loc;n.end.offset<e.loc.end.offset&&(n.start.offset--,n.start.column--,n.end.offset++,n.end.column++),t.value={type:2,content:e.exp.content,loc:n}}return t}(e[t]))}},ondirarg(e,t){if(e===t)return;let n=t4(e,t);if(tz&&!tL(tj))tj.name+=n,no(tj.nameLoc,t);else{let i="["!==n[0];tj.arg=na(i?n:n.slice(1,-1),i,ns(e,t),3*!!i)}},ondirmodifier(e,t){let n=t4(e,t);if(tz&&!tL(tj))tj.name+="."+n,no(tj.nameLoc,t);else if("slot"===tj.name){let e=tj.arg;e&&(e.content+="."+n,no(e.loc,t))}else{let i=eO(n,!0,ns(e,t));tj.modifiers.push(i)}},onattribdata(e,t){tW+=t4(e,t),tK<0&&(tK=e),tY=t},onattribentity(e,t,n){tW+=e,tK<0&&(tK=t),tY=n},onattribnameend(e){let t=t4(tj.loc.start.offset,e);7===tj.type&&(tj.rawName=t),tJ.props.some(e=>(7===e.type?e.rawName:e.name)===t)},onattribend(e,t){if(tJ&&tj){if(no(tj.loc,t),0!==e)if(tW.includes("&")&&(tW=tH.decodeEntities(tW,!0)),6===tj.type)"class"===tj.name&&(tW=ni(tW).trim()),tj.value={type:2,content:tW,loc:1===e?ns(tK,tY):ns(tK-1,tY+1)},t0.inSFCRoot&&"template"===tJ.tag&&"lang"===tj.name&&tW&&"html"!==tW&&t0.enterRCDATA(eq("</template"),0);else{tj.exp=na(tW,!1,ns(tK,tY),0,0),"for"===tj.name&&(tj.forParseResult=function(e){let t=e.loc,n=e.content,i=n.match(tB);if(!i)return;let[,r,s]=i,o=(e,n,i=!1)=>{let r=t.start.offset+n,s=r+e.length;return na(e,!1,ns(r,s),0,+!!i)},a={source:o(s.trim(),n.indexOf(s,r.length)),value:void 0,key:void 0,index:void 0,finalized:!1},l=r.trim().replace(t3,"").trim(),c=r.indexOf(l),h=l.match(t2);if(h){let e;l=l.replace(t2,"").trim();let t=h[1].trim();if(t&&(e=n.indexOf(t,c+l.length),a.key=o(t,e,!0)),h[2]){let i=h[2].trim();i&&(a.index=o(i,n.indexOf(i,a.key?e+t.length:c+l.length),!0))}}return l&&(a.value=o(l,c,!0)),a}(tj.exp));let e=-1;"bind"===tj.name&&(e=tj.modifiers.findIndex(e=>"sync"===e.content))>-1&&eQ("COMPILER_V_BIND_SYNC",tH,tj.loc,tj.arg.loc.source)&&(tj.name="model",tj.modifiers.splice(e,1))}(7!==tj.type||"pre"!==tj.name)&&tJ.props.push(tj)}tW="",tK=tY=-1},oncomment(e,t){tH.comments&&nr({type:3,content:t4(e,t),loc:ns(e-4,t+3)})},onend(){let e=tq.length;for(let t=0;t<t1.length;t++)t9(t1[t],e-1),t1[t].loc.start.offset},oncdata(e,t){0!==t1[0].ns&&t5(t4(e,t),e,t)},onprocessinginstruction(e){(t1[0]?t1[0].ns:tH.ns)===0&&nl(21,e-1)}}),t2=/,([^,\}\]]*)(?:,([^,\}\]]*))?$/,t3=/^\(|\)$/g;function t4(e,t){return tq.slice(e,t)}function t6(e){t0.inSFCRoot&&(tJ.innerLoc=ns(e+1,e+1)),nr(tJ);let{tag:t,ns:n}=tJ;0===n&&tH.isPreTag(t)&&tQ++,tH.isVoidTag(t)?t9(tJ,e):(t1.unshift(tJ),(1===n||2===n)&&(t0.inXML=!0)),tJ=null}function t5(e,t,n){{let t=t1[0]&&t1[0].tag;"script"!==t&&"style"!==t&&e.includes("&")&&(e=tH.decodeEntities(e,!1))}let i=t1[0]||tG,r=i.children[i.children.length-1];r&&2===r.type?(r.content+=e,no(r.loc,n)):i.children.push({type:2,content:e,loc:ns(t,n)})}function t9(e,t,n=!1){n?no(e.loc,t7(t,60)):no(e.loc,function(e,t){let n=e;for(;62!==tq.charCodeAt(n)&&n<tq.length-1;)n++;return n}(t,62)+1),t0.inSFCRoot&&(e.children.length?e.innerLoc.end=o({},e.children[e.children.length-1].loc.end):e.innerLoc.end=o({},e.innerLoc.start),e.innerLoc.source=t4(e.innerLoc.start.offset,e.innerLoc.end.offset));let{tag:i,ns:r,children:s}=e;if(!tz&&("slot"===i?e.tagType=2:ne(e)?e.tagType=3:function({tag:e,props:t}){var n;if(tH.isCustomElement(e))return!1;if("component"===e||(n=e.charCodeAt(0))>64&&n<91||tc(e)||tH.isBuiltInComponent&&tH.isBuiltInComponent(e)||tH.isNativeTag&&!tH.isNativeTag(e))return!0;for(let e=0;e<t.length;e++){let n=t[e];if(6===n.type){if("is"===n.name&&n.value){if(n.value.content.startsWith("vue:"))return!0;else if(eQ("COMPILER_IS_ON_ELEMENT",tH,n.loc))return!0}}else if("bind"===n.name&&tv(n.arg,"is")&&eQ("COMPILER_IS_ON_ELEMENT",tH,n.loc))return!0}return!1}(e)&&(e.tagType=1)),t0.inRCDATA||(e.children=nn(s)),0===r&&tH.isIgnoreNewlineTag(i)){let e=s[0];e&&2===e.type&&(e.content=e.content.replace(/^\r?\n/,""))}0===r&&tH.isPreTag(i)&&tQ--,tZ===e&&(tz=t0.inVPre=!1,tZ=null),t0.inXML&&(t1[0]?t1[0].ns:tH.ns)===0&&(t0.inXML=!1);{let t=e.props;if(!t0.inSFCRoot&&eY("COMPILER_NATIVE_TEMPLATE",tH)&&"template"===e.tag&&!ne(e)){let t=t1[0]||tG,n=t.children.indexOf(e);t.children.splice(n,1,...e.children)}let n=t.find(e=>6===e.type&&"inline-template"===e.name);n&&eQ("COMPILER_INLINE_TEMPLATE",tH,n.loc)&&e.children.length&&(n.value={type:2,content:t4(e.children[0].loc.start.offset,e.children[e.children.length-1].loc.end.offset),loc:n.loc})}}function t7(e,t){let n=e;for(;tq.charCodeAt(n)!==t&&n>=0;)n--;return n}let t8=new Set(["if","else","else-if","for","slot"]);function ne({tag:e,props:t}){if("template"===e){for(let e=0;e<t.length;e++)if(7===t[e].type&&t8.has(t[e].name))return!0}return!1}let nt=/\r\n/g;function nn(e){let t="preserve"!==tH.whitespace,n=!1;for(let i=0;i<e.length;i++){let r=e[i];if(2===r.type)if(tQ)r.content=r.content.replace(nt,`
|
|
9
|
-
`);else if(function(e){for(let t=0;t<e.length;t++)if(!
|
|
6
|
+
`)}let T=/;(?![^(]*\))/g,N=/:([^]+)/,I=/\/\*[^]*?\*\//g,y=t("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=t("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=t("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=t("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={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"},eE={ELEMENT:0,0:"ELEMENT",COMPONENT:1,1:"COMPONENT",SLOT:2,2:"SLOT",TEMPLATE:3,3:"TEMPLATE"},em={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_={start:{line:1,column:1,offset:0},end:{line:1,column:1,offset:0},source:""};function eS(e,t=""){return{type:0,source:t,children:e,helpers:new Set,components:[],directives:[],hoists:[],imports:[],cached:[],temps:0,codegenNode:void 0,loc:e_}}function eg(e,t,n,i,r,s,o,a=!1,l=!1,c=!1,h=e_){return e&&(a?(e.helper(M),e.helper(ew(e.inSSR,c))):e.helper(eV(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 eT(e,t=e_){return{type:17,loc:t,elements:e}}function eN(e,t=e_){return{type:15,loc:t,properties:e}}function eI(e,t){return{type:16,loc:e_,key:l(e)?ey(e,!0):e,value:t}}function ey(e,t=!1,n=e_,i=0){return{type:4,loc:n,content:e,isStatic:t,constType:t?3:i}}function eO(e,t){return{type:5,loc:t,content:l(e)?ey(e,!1,t):e}}function eA(e,t=e_){return{type:8,loc:t,children:e}}function eb(e,t=[],n=e_){return{type:14,loc:n,callee:e,arguments:t}}function eC(e,t,n=!1,i=!1,r=e_){return{type:18,params:e,returns:t,newline:n,isSlot:i,loc:r}}function ev(e,t,n,i=!0){return{type:19,test:e,consequent:t,alternate:n,newline:i,loc:e_}}function eR(e,t,n=!1,i=!1){return{type:20,index:e,value:t,needPauseTracking:n,inVOnce:i,needArraySpread:!1,loc:e_}}function ex(e){return{type:21,body:e,loc:e_}}function eL(e){return{type:22,elements:e,loc:e_}}function eM(e,t,n){return{type:23,test:e,consequent:t,alternate:n,loc:e_}}function eP(e,t){return{type:24,left:e,right:t,loc:e_}}function eD(e){return{type:25,expressions:e,loc:e_}}function ek(e){return{type:26,returns:e,loc:e_}}function eV(e,t){return e||t?k:V}function ew(e,t){return e||t?P:D}function eX(e,{helper:t,removeHelper:n,inSSR:i}){e.isBlock||(e.isBlock=!0,n(eV(i,e.isComponent)),t(M),t(ew(i,e.isComponent)))}let eU=new Uint8Array([123,123]),eF=new Uint8Array([125,125]);function eB(e){return e>=97&&e<=122||e>=65&&e<=90}function e$(e){return 32===e||10===e||9===e||12===e||13===e}function eH(e){return 47===e||62===e||e$(e)}function eG(e){let t=new Uint8Array(e.length);for(let n=0;n<e.length;n++)t[n]=e.charCodeAt(n);return t}let eq={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])},eJ={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"},ej={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 eW(e,{compatConfig:t}){let n=t&&t[e];return"MODE"===e?n||3:n}function eK(e,t){let n=eW("MODE",t),i=eW(e,t);return 3===n?!0===i:!1!==i}function eY(e,t,n){return eK(e,t)}function eQ(e,t,n,...i){if("suppress-warning"===eW(e,t))return;let{message:r,link:s}=ej[e],o=SyntaxError(`(deprecation ${e}) ${"function"==typeof r?r(...i):r}${s?`
|
|
7
|
+
Details: ${s}`:""}`);o.code=e,n&&(o.loc=n),t.onWarn(o)}function ez(e){throw e}function eZ(e){}function e1(e,t,n,i){let r=SyntaxError(String(`https://vuejs.org/error-reference/#compiler-${e}`));return r.code=e,r.loc=t,r}let e0={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__"},e2={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.
|
|
8
|
+
Use a v-bind binding combined with a v-on listener that emits update:x event instead.`,45:"Error parsing JavaScript expression: ",46:"<KeepAlive> expects exactly one child component.",51:"@vnode-* hooks in templates are no longer supported. Use the vue: prefix instead. For example, @vnode-mounted should be changed to @vue:mounted. @vnode-* hooks support has been removed in 3.4.",47:'"prefixIdentifiers" option is not supported in this build of compiler.',48:"ES module mode is not supported in this build of compiler.",49:'"cacheHandlers" option is only supported when the "prefixIdentifiers" option is enabled.',50:'"scopeId" option is only supported in module mode.',53:""};function e3(e,t,n=!1,i=[],r=Object.create(null)){}function e4(e,t,n){return!1}function e6(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}function e5(e){let t=e.length;for(;t--;){let n=e[t];if("NewExpression"===n.type)return!0;if("MemberExpression"!==n.type)break}return!1}function e9(e,t){for(let n of e.params)for(let e of e8(n))t(e)}function e7(e,t){for(let i of"SwitchCase"===e.type?e.consequent:e.body)if("VariableDeclaration"===i.type){if(i.declare)continue;for(let e of i.declarations)for(let n of e8(e.id))t(n)}else if("FunctionDeclaration"===i.type||"ClassDeclaration"===i.type){if(i.declare||!i.id)continue;t(i.id)}else{var n;"ForOfStatement"===(n=i).type||"ForInStatement"===n.type||"ForStatement"===n.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 e8(e.id))n(t)}(i,!0,t):"SwitchStatement"===i.type&&function(e,t,n){for(let i of e.cases){for(let e of i.consequent)if("VariableDeclaration"===e.type&&("var"===e.kind?t:!t))for(let t of e.declarations)for(let e of e8(t.id))n(e);e7(i,n)}}(i,!0,t)}}function e8(e,t=[]){switch(e.type){case"Identifier":t.push(e);break;case"MemberExpression":let n=e;for(;"MemberExpression"===n.type;)n=n.object;t.push(n);break;case"ObjectPattern":for(let n of e.properties)"RestElement"===n.type?e8(n.argument,t):e8(n.value,t);break;case"ArrayPattern":e.elements.forEach(e=>{e&&e8(e,t)});break;case"RestElement":e8(e.argument,t);break;case"AssignmentPattern":e8(e.left,t)}return t}let te=e=>/Function(?:Expression|Declaration)$|Method$/.test(e.type),tt=e=>!!e&&("ObjectProperty"===e.type||"ObjectMethod"===e.type)&&!e.computed,tn=(e,t)=>tt(t)&&t.key===e,ti=["TSAsExpression","TSTypeAssertion","TSNonNullExpression","TSInstantiationExpression","TSSatisfiesExpression"];function tr(e){return ti.includes(e.type)?tr(e.expression):e}function ts(e){switch((e=tr(e)).type){case"UnaryExpression":return ts(e.argument);case"LogicalExpression":case"BinaryExpression":return ts(e.left)&&ts(e.right);case"ConditionalExpression":return ts(e.test)&&ts(e.consequent)&&ts(e.alternate);case"SequenceExpression":case"TemplateLiteral":return e.expressions.every(e=>ts(e));case"ParenthesizedExpression":return ts(e.expression);case"StringLiteral":case"NumericLiteral":case"BooleanLiteral":case"NullLiteral":case"BigIntLiteral":return!0}return!1}function to(e,t){if(ts(e))return!0;switch((e=tr(e)).type){case"Identifier":return"literal-const"===t[e.name];case"RegExpLiteral":return!0;case"ObjectExpression":return e.properties.every(e=>"ObjectMethod"!==e.type&&("SpreadElement"===e.type?to(e.argument,t):(!e.computed||to(e.key,t))&&to(e.value,t)));case"ArrayExpression":return e.elements.every(e=>null===e||("SpreadElement"===e.type?to(e.argument,t):to(e,t)))}return!1}let ta=e=>4===e.type&&e.isStatic;function tl(e){switch(e){case"Teleport":case"teleport":return v;case"Suspense":case"suspense":return R;case"KeepAlive":case"keep-alive":return x;case"BaseTransition":case"base-transition":return L}}let tc=/^$|^\d|[^\$\w\xA0-\uFFFF]/,th=e=>!tc.test(e),td=/[A-Za-z_$\xA0-\uFFFF]/,tp=/[\.\?\w$\xA0-\uFFFF]/,tu=/\s+[.[]\s*|\s*[.[]\s+/g,tf=e=>4===e.type?e.content:e.loc.source,tE=e=>{let t=tf(e).trim().replace(tu,e=>e.trim()),n=0,i=[],r=0,s=0,o=null;for(let e=0;e<t.length;e++){let a=t.charAt(e);switch(n){case 0:if("["===a)i.push(n),n=1,r++;else if("("===a)i.push(n),n=2,s++;else if(!(0===e?td:tp).test(a))return!1;break;case 1:"'"===a||'"'===a||"`"===a?(i.push(n),n=3,o=a):"["===a?r++:"]"!==a||--r||(n=i.pop());break;case 2:if("'"===a||'"'===a||"`"===a)i.push(n),n=3,o=a;else if("("===a)s++;else if(")"===a){if(e===t.length-1)return!1;--s||(n=i.pop())}break;case 3:a===o&&(n=i.pop(),o=null)}}return!r&&!s},tm=i,t_=tE,tS=/^\s*(?:async\s*)?(?:\([^)]*?\)|[\w$_]+)\s*(?::[^=]+)?=>|^\s*(?:async\s+)?function(?:\s+[\w$]+)?\s*\(/,tg=e=>tS.test(tf(e)),tT=i,tN=tg;function tI(e,t,n=t.length){return ty({offset:e.offset,line:e.line,column:e.column},t,n)}function ty(e,t,n=t.length){let i=0,r=-1;for(let e=0;e<n;e++)10===t.charCodeAt(e)&&(i++,r=e);return e.offset+=n,e.line+=i,e.column=-1===r?e.column+n:n-r,e}function tO(e,t){if(!e)throw Error(t||"unexpected compiler condition")}function tA(e,t,n=!1){for(let i=0;i<e.props.length;i++){let r=e.props[i];if(7===r.type&&(n||r.exp)&&(l(t)?r.name===t:t.test(r.name)))return r}}function tb(e,t,n=!1,i=!1){for(let r=0;r<e.props.length;r++){let s=e.props[r];if(6===s.type){if(n)continue;if(s.name===t&&(s.value||i))return s}else if("bind"===s.name&&(s.exp||i)&&tC(s.arg,t))return s}}function tC(e,t){return!!(e&&ta(e)&&e.content===t)}function tv(e){return e.props.some(e=>7===e.type&&"bind"===e.name&&(!e.arg||4!==e.arg.type||!e.arg.isStatic))}function tR(e){return 5===e.type||2===e.type}function tx(e){return 7===e.type&&"pre"===e.name}function tL(e){return 7===e.type&&"slot"===e.name}function tM(e){return 1===e.type&&3===e.tagType}function tP(e){return 1===e.type&&2===e.tagType}let tD=new Set([z,Z]);function tk(e,t,n){let i,r,s=13===e.type?e.props:e.arguments[2],o=[];if(s&&!l(s)&&14===s.type){let e=function e(t,n=[]){if(t&&!l(t)&&14===t.type){let i=t.callee;if(!l(i)&&tD.has(i))return e(t.arguments[0],n.concat(t))}return[t,n]}(s);s=e[0],r=(o=e[1])[o.length-1]}if(null==s||l(s))i=eN([t]);else if(14===s.type){let e=s.arguments[0];l(e)||15!==e.type?s.callee===ee?i=eb(n.helper(K),[eN([t]),s]):s.arguments.unshift(eN([t])):tV(t,e)||e.properties.unshift(t),i||(i=s)}else 15===s.type?(tV(t,s)||s.properties.unshift(t),i=s):(i=eb(n.helper(K),[eN([t]),s]),r&&r.callee===Z&&(r=o[o.length-2]));13===e.type?r?r.arguments[0]=i:e.props=i:r?r.arguments[0]=i:e.arguments[2]=i}function tV(e,t){let n=!1;if(4===e.key.type){let i=e.key.content;n=t.properties.some(e=>4===e.key.type&&e.key.content===i)}return n}function tw(e,t){return`_${t}_${e.replace(/[^\w]/g,(t,n)=>"-"===t?"_":e.charCodeAt(n).toString())}`}function tX(e,t){if(!e||0===Object.keys(t).length)return!1;switch(e.type){case 1:for(let n=0;n<e.props.length;n++){let i=e.props[n];if(7===i.type&&(tX(i.arg,t)||tX(i.exp,t)))return!0}return e.children.some(e=>tX(e,t));case 11:if(tX(e.source,t))return!0;return e.children.some(e=>tX(e,t));case 9:return e.branches.some(e=>tX(e,t));case 10:if(tX(e.condition,t))return!0;return e.children.some(e=>tX(e,t));case 4:return!e.isStatic&&th(e.content)&&!!t[e.content];case 8:return e.children.some(e=>h(e)&&tX(e,t));case 5:case 12:return tX(e.content,t);default:return!1}}function tU(e){return 14===e.type&&e.callee===eh?e.arguments[1].returns:e}let tF=/([\s\S]*?)\s+(?:in|of)\s+(\S[\s\S]*)/,tB={parseMode:"base",ns:0,delimiters:["{{","}}"],getNamespace:()=>0,isVoidTag:r,isPreTag:r,isIgnoreNewlineTag:r,isCustomElement:r,onError:ez,onWarn:eZ,comments:!1,prefixIdentifiers:!1},t$=tB,tH=null,tG="",tq=null,tJ=null,tj="",tW=-1,tK=-1,tY=0,tQ=!1,tz=null,tZ=[],t1=new class{constructor(e,t){this.stack=e,this.cbs=t,this.state=1,this.buffer="",this.sectionStart=0,this.index=0,this.entityStart=0,this.baseState=1,this.inRCDATA=!1,this.inXML=!1,this.inVPre=!1,this.newlines=[],this.mode=0,this.delimiterOpen=eU,this.delimiterClose=eF,this.delimiterIndex=-1,this.currentSequence=void 0,this.sequenceIndex=0}get inSFCRoot(){return 2===this.mode&&0===this.stack.length}reset(){this.state=1,this.mode=0,this.buffer="",this.sectionStart=0,this.index=0,this.baseState=1,this.inRCDATA=!1,this.currentSequence=void 0,this.newlines.length=0,this.delimiterOpen=eU,this.delimiterClose=eF}getPos(e){let t=1,n=e+1;for(let i=this.newlines.length-1;i>=0;i--){let r=this.newlines[i];if(e>r){t=i+2,n=e-r;break}}return{column:n,line:t,offset:e}}peek(){return this.buffer.charCodeAt(this.index+1)}stateText(e){60===e?(this.index>this.sectionStart&&this.cbs.ontext(this.sectionStart,this.index),this.state=5,this.sectionStart=this.index):this.inVPre||e!==this.delimiterOpen[0]||(this.state=2,this.delimiterIndex=0,this.stateInterpolationOpen(e))}stateInterpolationOpen(e){if(e===this.delimiterOpen[this.delimiterIndex])if(this.delimiterIndex===this.delimiterOpen.length-1){let e=this.index+1-this.delimiterOpen.length;e>this.sectionStart&&this.cbs.ontext(this.sectionStart,e),this.state=3,this.sectionStart=e}else this.delimiterIndex++;else this.inRCDATA?(this.state=32,this.stateInRCDATA(e)):(this.state=1,this.stateText(e))}stateInterpolation(e){e===this.delimiterClose[0]&&(this.state=4,this.delimiterIndex=0,this.stateInterpolationClose(e))}stateInterpolationClose(e){e===this.delimiterClose[this.delimiterIndex]?this.delimiterIndex===this.delimiterClose.length-1?(this.cbs.oninterpolation(this.sectionStart,this.index+1),this.inRCDATA?this.state=32:this.state=1,this.sectionStart=this.index+1):this.delimiterIndex++:(this.state=3,this.stateInterpolation(e))}stateSpecialStartSequence(e){let t=this.sequenceIndex===this.currentSequence.length;if(t?eH(e):(32|e)===this.currentSequence[this.sequenceIndex]){if(!t)return void this.sequenceIndex++}else this.inRCDATA=!1;this.sequenceIndex=0,this.state=6,this.stateInTagName(e)}stateInRCDATA(e){if(this.sequenceIndex===this.currentSequence.length){if(62===e||e$(e)){let t=this.index-this.currentSequence.length;if(this.sectionStart<t){let e=this.index;this.index=t,this.cbs.ontext(this.sectionStart,t),this.index=e}this.sectionStart=t+2,this.stateInClosingTagName(e),this.inRCDATA=!1;return}this.sequenceIndex=0}(32|e)===this.currentSequence[this.sequenceIndex]?this.sequenceIndex+=1:0===this.sequenceIndex?this.currentSequence!==eq.TitleEnd&&(this.currentSequence!==eq.TextareaEnd||this.inSFCRoot)?this.fastForwardTo(60)&&(this.sequenceIndex=1):this.inVPre||e!==this.delimiterOpen[0]||(this.state=2,this.delimiterIndex=0,this.stateInterpolationOpen(e)):this.sequenceIndex=Number(60===e)}stateCDATASequence(e){e===eq.Cdata[this.sequenceIndex]?++this.sequenceIndex===eq.Cdata.length&&(this.state=28,this.currentSequence=eq.CdataEnd,this.sequenceIndex=0,this.sectionStart=this.index+1):(this.sequenceIndex=0,this.state=23,this.stateInDeclaration(e))}fastForwardTo(e){for(;++this.index<this.buffer.length;){let t=this.buffer.charCodeAt(this.index);if(10===t&&this.newlines.push(this.index),t===e)return!0}return this.index=this.buffer.length-1,!1}stateInCommentLike(e){e===this.currentSequence[this.sequenceIndex]?++this.sequenceIndex===this.currentSequence.length&&(this.currentSequence===eq.CdataEnd?this.cbs.oncdata(this.sectionStart,this.index-2):this.cbs.oncomment(this.sectionStart,this.index-2),this.sequenceIndex=0,this.sectionStart=this.index+1,this.state=1):0===this.sequenceIndex?this.fastForwardTo(this.currentSequence[0])&&(this.sequenceIndex=1):e!==this.currentSequence[this.sequenceIndex-1]&&(this.sequenceIndex=0)}startSpecial(e,t){this.enterRCDATA(e,t),this.state=31}enterRCDATA(e,t){this.inRCDATA=!0,this.currentSequence=e,this.sequenceIndex=t}stateBeforeTagName(e){33===e?(this.state=22,this.sectionStart=this.index+1):63===e?(this.state=24,this.sectionStart=this.index+1):eB(e)?(this.sectionStart=this.index,0===this.mode?this.state=6:this.inSFCRoot?this.state=34:this.inXML?this.state=6:116===e?this.state=30:this.state=115===e?29:6):47===e?this.state=8:(this.state=1,this.stateText(e))}stateInTagName(e){eH(e)&&this.handleTagName(e)}stateInSFCRootTagName(e){if(eH(e)){let t=this.buffer.slice(this.sectionStart,this.index);"template"!==t&&this.enterRCDATA(eG("</"+t),0),this.handleTagName(e)}}handleTagName(e){this.cbs.onopentagname(this.sectionStart,this.index),this.sectionStart=-1,this.state=11,this.stateBeforeAttrName(e)}stateBeforeClosingTagName(e){e$(e)||(62===e?(this.state=1,this.sectionStart=this.index+1):(this.state=eB(e)?9:27,this.sectionStart=this.index))}stateInClosingTagName(e){(62===e||e$(e))&&(this.cbs.onclosetag(this.sectionStart,this.index),this.sectionStart=-1,this.state=10,this.stateAfterClosingTagName(e))}stateAfterClosingTagName(e){62===e&&(this.state=1,this.sectionStart=this.index+1)}stateBeforeAttrName(e){62===e?(this.cbs.onopentagend(this.index),this.inRCDATA?this.state=32:this.state=1,this.sectionStart=this.index+1):47===e?this.state=7:60===e&&47===this.peek()?(this.cbs.onopentagend(this.index),this.state=5,this.sectionStart=this.index):e$(e)||this.handleAttrStart(e)}handleAttrStart(e){118===e&&45===this.peek()?(this.state=13,this.sectionStart=this.index):46===e||58===e||64===e||35===e?(this.cbs.ondirname(this.index,this.index+1),this.state=14,this.sectionStart=this.index+1):(this.state=12,this.sectionStart=this.index)}stateInSelfClosingTag(e){62===e?(this.cbs.onselfclosingtag(this.index),this.state=1,this.sectionStart=this.index+1,this.inRCDATA=!1):e$(e)||(this.state=11,this.stateBeforeAttrName(e))}stateInAttrName(e){(61===e||eH(e))&&(this.cbs.onattribname(this.sectionStart,this.index),this.handleAttrNameEnd(e))}stateInDirName(e){61===e||eH(e)?(this.cbs.ondirname(this.sectionStart,this.index),this.handleAttrNameEnd(e)):58===e?(this.cbs.ondirname(this.sectionStart,this.index),this.state=14,this.sectionStart=this.index+1):46===e&&(this.cbs.ondirname(this.sectionStart,this.index),this.state=16,this.sectionStart=this.index+1)}stateInDirArg(e){61===e||eH(e)?(this.cbs.ondirarg(this.sectionStart,this.index),this.handleAttrNameEnd(e)):91===e?this.state=15:46===e&&(this.cbs.ondirarg(this.sectionStart,this.index),this.state=16,this.sectionStart=this.index+1)}stateInDynamicDirArg(e){93===e?this.state=14:(61===e||eH(e))&&(this.cbs.ondirarg(this.sectionStart,this.index+1),this.handleAttrNameEnd(e))}stateInDirModifier(e){61===e||eH(e)?(this.cbs.ondirmodifier(this.sectionStart,this.index),this.handleAttrNameEnd(e)):46===e&&(this.cbs.ondirmodifier(this.sectionStart,this.index),this.sectionStart=this.index+1)}handleAttrNameEnd(e){this.sectionStart=this.index,this.state=17,this.cbs.onattribnameend(this.index),this.stateAfterAttrName(e)}stateAfterAttrName(e){61===e?this.state=18:47===e||62===e?(this.cbs.onattribend(0,this.sectionStart),this.sectionStart=-1,this.state=11,this.stateBeforeAttrName(e)):e$(e)||(this.cbs.onattribend(0,this.sectionStart),this.handleAttrStart(e))}stateBeforeAttrValue(e){34===e?(this.state=19,this.sectionStart=this.index+1):39===e?(this.state=20,this.sectionStart=this.index+1):e$(e)||(this.sectionStart=this.index,this.state=21,this.stateInAttrValueNoQuotes(e))}handleInAttrValue(e,t){(e===t||this.fastForwardTo(t))&&(this.cbs.onattribdata(this.sectionStart,this.index),this.sectionStart=-1,this.cbs.onattribend(34===t?3:2,this.index+1),this.state=11)}stateInAttrValueDoubleQuotes(e){this.handleInAttrValue(e,34)}stateInAttrValueSingleQuotes(e){this.handleInAttrValue(e,39)}stateInAttrValueNoQuotes(e){e$(e)||62===e?(this.cbs.onattribdata(this.sectionStart,this.index),this.sectionStart=-1,this.cbs.onattribend(1,this.index),this.state=11,this.stateBeforeAttrName(e)):(39===e||60===e||61===e||96===e)&&this.cbs.onerr(18,this.index)}stateBeforeDeclaration(e){91===e?(this.state=26,this.sequenceIndex=0):this.state=45===e?25:23}stateInDeclaration(e){(62===e||this.fastForwardTo(62))&&(this.state=1,this.sectionStart=this.index+1)}stateInProcessingInstruction(e){(62===e||this.fastForwardTo(62))&&(this.cbs.onprocessinginstruction(this.sectionStart,this.index),this.state=1,this.sectionStart=this.index+1)}stateBeforeComment(e){45===e?(this.state=28,this.currentSequence=eq.CommentEnd,this.sequenceIndex=2,this.sectionStart=this.index+1):this.state=23}stateInSpecialComment(e){(62===e||this.fastForwardTo(62))&&(this.cbs.oncomment(this.sectionStart,this.index),this.state=1,this.sectionStart=this.index+1)}stateBeforeSpecialS(e){e===eq.ScriptEnd[3]?this.startSpecial(eq.ScriptEnd,4):e===eq.StyleEnd[3]?this.startSpecial(eq.StyleEnd,4):(this.state=6,this.stateInTagName(e))}stateBeforeSpecialT(e){e===eq.TitleEnd[3]?this.startSpecial(eq.TitleEnd,4):e===eq.TextareaEnd[3]?this.startSpecial(eq.TextareaEnd,4):(this.state=6,this.stateInTagName(e))}startEntity(){}stateInEntity(){}parse(e){for(this.buffer=e;this.index<this.buffer.length;){let e=this.buffer.charCodeAt(this.index);switch(10===e&&33!==this.state&&this.newlines.push(this.index),this.state){case 1:this.stateText(e);break;case 2:this.stateInterpolationOpen(e);break;case 3:this.stateInterpolation(e);break;case 4:this.stateInterpolationClose(e);break;case 31:this.stateSpecialStartSequence(e);break;case 32:this.stateInRCDATA(e);break;case 26:this.stateCDATASequence(e);break;case 19:this.stateInAttrValueDoubleQuotes(e);break;case 12:this.stateInAttrName(e);break;case 13:this.stateInDirName(e);break;case 14:this.stateInDirArg(e);break;case 15:this.stateInDynamicDirArg(e);break;case 16:this.stateInDirModifier(e);break;case 28:this.stateInCommentLike(e);break;case 27:this.stateInSpecialComment(e);break;case 11:this.stateBeforeAttrName(e);break;case 6:this.stateInTagName(e);break;case 34:this.stateInSFCRootTagName(e);break;case 9:this.stateInClosingTagName(e);break;case 5:this.stateBeforeTagName(e);break;case 17:this.stateAfterAttrName(e);break;case 20:this.stateInAttrValueSingleQuotes(e);break;case 18:this.stateBeforeAttrValue(e);break;case 8:this.stateBeforeClosingTagName(e);break;case 10:this.stateAfterClosingTagName(e);break;case 29:this.stateBeforeSpecialS(e);break;case 30:this.stateBeforeSpecialT(e);break;case 21:this.stateInAttrValueNoQuotes(e);break;case 7:this.stateInSelfClosingTag(e);break;case 23:this.stateInDeclaration(e);break;case 22:this.stateBeforeDeclaration(e);break;case 25:this.stateBeforeComment(e);break;case 24:this.stateInProcessingInstruction(e);break;case 33:this.stateInEntity()}this.index++}this.cleanup(),this.finish()}cleanup(){this.sectionStart!==this.index&&(1===this.state||32===this.state&&0===this.sequenceIndex?(this.cbs.ontext(this.sectionStart,this.index),this.sectionStart=this.index):(19===this.state||20===this.state||21===this.state)&&(this.cbs.onattribdata(this.sectionStart,this.index),this.sectionStart=this.index))}finish(){this.handleTrailingData(),this.cbs.onend()}handleTrailingData(){let e=this.buffer.length;this.sectionStart>=e||(28===this.state?this.currentSequence===eq.CdataEnd?this.cbs.oncdata(this.sectionStart,e):this.cbs.oncomment(this.sectionStart,e):6===this.state||11===this.state||18===this.state||17===this.state||12===this.state||13===this.state||14===this.state||15===this.state||16===this.state||20===this.state||19===this.state||21===this.state||9===this.state||this.cbs.ontext(this.sectionStart,e))}emitCodePoint(e,t){}}(tZ,{onerr:na,ontext(e,t){t6(t3(e,t),e,t)},ontextentity(e,t,n){t6(e,t,n)},oninterpolation(e,t){if(tQ)return t6(t3(e,t),e,t);let n=e+t1.delimiterOpen.length,i=t-t1.delimiterClose.length;for(;e$(tG.charCodeAt(n));)n++;for(;e$(tG.charCodeAt(i-1));)i--;let r=t3(n,i);r.includes("&")&&(r=t$.decodeEntities(r,!1)),ni({type:5,content:no(r,!1,nr(n,i)),loc:nr(e,t)})},onopentagname(e,t){let n=t3(e,t);tq={type:1,tag:n,ns:t$.getNamespace(n,tZ[0],t$.ns),tagType:0,props:[],children:[],loc:nr(e-1,t),codegenNode:void 0}},onopentagend(e){t4(e)},onclosetag(e,t){let n=t3(e,t);if(!t$.isVoidTag(n)){let i=!1;for(let e=0;e<tZ.length;e++)if(tZ[e].tag.toLowerCase()===n.toLowerCase()){i=!0,e>0&&tZ[0].loc.start.offset;for(let n=0;n<=e;n++)t5(tZ.shift(),t,n<e);break}i||t9(e,60)}},onselfclosingtag(e){let t=tq.tag;tq.isSelfClosing=!0,t4(e),tZ[0]&&tZ[0].tag===t&&t5(tZ.shift(),e)},onattribname(e,t){tJ={type:6,name:t3(e,t),nameLoc:nr(e,t),value:void 0,loc:nr(e)}},ondirname(e,t){let n=t3(e,t),i="."===n||":"===n?"bind":"@"===n?"on":"#"===n?"slot":n.slice(2);if(tQ||""===i)tJ={type:6,name:n,nameLoc:nr(e,t),value:void 0,loc:nr(e)};else if(tJ={type:7,name:i,rawName:n,exp:void 0,arg:void 0,modifiers:"."===n?[ey("prop")]:[],loc:nr(e)},"pre"===i){tQ=t1.inVPre=!0,tz=tq;let e=tq.props;for(let t=0;t<e.length;t++)7===e[t].type&&(e[t]=function(e){let t={type:6,name:e.rawName,nameLoc:nr(e.loc.start.offset,e.loc.start.offset+e.rawName.length),value:void 0,loc:e.loc};if(e.exp){let n=e.exp.loc;n.end.offset<e.loc.end.offset&&(n.start.offset--,n.start.column--,n.end.offset++,n.end.column++),t.value={type:2,content:e.exp.content,loc:n}}return t}(e[t]))}},ondirarg(e,t){if(e===t)return;let n=t3(e,t);if(tQ&&!tx(tJ))tJ.name+=n,ns(tJ.nameLoc,t);else{let i="["!==n[0];tJ.arg=no(i?n:n.slice(1,-1),i,nr(e,t),3*!!i)}},ondirmodifier(e,t){let n=t3(e,t);if(tQ&&!tx(tJ))tJ.name+="."+n,ns(tJ.nameLoc,t);else if("slot"===tJ.name){let e=tJ.arg;e&&(e.content+="."+n,ns(e.loc,t))}else{let i=ey(n,!0,nr(e,t));tJ.modifiers.push(i)}},onattribdata(e,t){tj+=t3(e,t),tW<0&&(tW=e),tK=t},onattribentity(e,t,n){tj+=e,tW<0&&(tW=t),tK=n},onattribnameend(e){let t=t3(tJ.loc.start.offset,e);7===tJ.type&&(tJ.rawName=t),tq.props.some(e=>(7===e.type?e.rawName:e.name)===t)},onattribend(e,t){if(tq&&tJ){if(ns(tJ.loc,t),0!==e)if(tj.includes("&")&&(tj=t$.decodeEntities(tj,!0)),6===tJ.type)"class"===tJ.name&&(tj=nn(tj).trim()),tJ.value={type:2,content:tj,loc:1===e?nr(tW,tK):nr(tW-1,tK+1)},t1.inSFCRoot&&"template"===tq.tag&&"lang"===tJ.name&&tj&&"html"!==tj&&t1.enterRCDATA(eG("</template"),0);else{tJ.exp=no(tj,!1,nr(tW,tK),0,0),"for"===tJ.name&&(tJ.forParseResult=function(e){let t=e.loc,n=e.content,i=n.match(tF);if(!i)return;let[,r,s]=i,o=(e,n,i=!1)=>{let r=t.start.offset+n,s=r+e.length;return no(e,!1,nr(r,s),0,+!!i)},a={source:o(s.trim(),n.indexOf(s,r.length)),value:void 0,key:void 0,index:void 0,finalized:!1},l=r.trim().replace(t2,"").trim(),c=r.indexOf(l),h=l.match(t0);if(h){let e;l=l.replace(t0,"").trim();let t=h[1].trim();if(t&&(e=n.indexOf(t,c+l.length),a.key=o(t,e,!0)),h[2]){let i=h[2].trim();i&&(a.index=o(i,n.indexOf(i,a.key?e+t.length:c+l.length),!0))}}return l&&(a.value=o(l,c,!0)),a}(tJ.exp));let e=-1;"bind"===tJ.name&&(e=tJ.modifiers.findIndex(e=>"sync"===e.content))>-1&&eY("COMPILER_V_BIND_SYNC",t$,tJ.loc,tJ.arg.loc.source)&&(tJ.name="model",tJ.modifiers.splice(e,1))}(7!==tJ.type||"pre"!==tJ.name)&&tq.props.push(tJ)}tj="",tW=tK=-1},oncomment(e,t){t$.comments&&ni({type:3,content:t3(e,t),loc:nr(e-4,t+3)})},onend(){let e=tG.length;for(let t=0;t<tZ.length;t++)t5(tZ[t],e-1),tZ[t].loc.start.offset},oncdata(e,t){0!==tZ[0].ns&&t6(t3(e,t),e,t)},onprocessinginstruction(e){(tZ[0]?tZ[0].ns:t$.ns)===0&&na(21,e-1)}}),t0=/,([^,\}\]]*)(?:,([^,\}\]]*))?$/,t2=/^\(|\)$/g;function t3(e,t){return tG.slice(e,t)}function t4(e){t1.inSFCRoot&&(tq.innerLoc=nr(e+1,e+1)),ni(tq);let{tag:t,ns:n}=tq;0===n&&t$.isPreTag(t)&&tY++,t$.isVoidTag(t)?t5(tq,e):(tZ.unshift(tq),(1===n||2===n)&&(t1.inXML=!0)),tq=null}function t6(e,t,n){{let t=tZ[0]&&tZ[0].tag;"script"!==t&&"style"!==t&&e.includes("&")&&(e=t$.decodeEntities(e,!1))}let i=tZ[0]||tH,r=i.children[i.children.length-1];r&&2===r.type?(r.content+=e,ns(r.loc,n)):i.children.push({type:2,content:e,loc:nr(t,n)})}function t5(e,t,n=!1){n?ns(e.loc,t9(t,60)):ns(e.loc,function(e,t){let n=e;for(;62!==tG.charCodeAt(n)&&n<tG.length-1;)n++;return n}(t,62)+1),t1.inSFCRoot&&(e.children.length?e.innerLoc.end=o({},e.children[e.children.length-1].loc.end):e.innerLoc.end=o({},e.innerLoc.start),e.innerLoc.source=t3(e.innerLoc.start.offset,e.innerLoc.end.offset));let{tag:i,ns:r,children:s}=e;if(!tQ&&("slot"===i?e.tagType=2:t8(e)?e.tagType=3:function({tag:e,props:t}){var n;if(t$.isCustomElement(e))return!1;if("component"===e||(n=e.charCodeAt(0))>64&&n<91||tl(e)||t$.isBuiltInComponent&&t$.isBuiltInComponent(e)||t$.isNativeTag&&!t$.isNativeTag(e))return!0;for(let e=0;e<t.length;e++){let n=t[e];if(6===n.type){if("is"===n.name&&n.value){if(n.value.content.startsWith("vue:"))return!0;else if(eY("COMPILER_IS_ON_ELEMENT",t$,n.loc))return!0}}else if("bind"===n.name&&tC(n.arg,"is")&&eY("COMPILER_IS_ON_ELEMENT",t$,n.loc))return!0}return!1}(e)&&(e.tagType=1)),t1.inRCDATA||(e.children=nt(s)),0===r&&t$.isIgnoreNewlineTag(i)){let e=s[0];e&&2===e.type&&(e.content=e.content.replace(/^\r?\n/,""))}0===r&&t$.isPreTag(i)&&tY--,tz===e&&(tQ=t1.inVPre=!1,tz=null),t1.inXML&&(tZ[0]?tZ[0].ns:t$.ns)===0&&(t1.inXML=!1);{let t=e.props;if(!t1.inSFCRoot&&eK("COMPILER_NATIVE_TEMPLATE",t$)&&"template"===e.tag&&!t8(e)){let t=tZ[0]||tH,n=t.children.indexOf(e);t.children.splice(n,1,...e.children)}let n=t.find(e=>6===e.type&&"inline-template"===e.name);n&&eY("COMPILER_INLINE_TEMPLATE",t$,n.loc)&&e.children.length&&(n.value={type:2,content:t3(e.children[0].loc.start.offset,e.children[e.children.length-1].loc.end.offset),loc:n.loc})}}function t9(e,t){let n=e;for(;tG.charCodeAt(n)!==t&&n>=0;)n--;return n}let t7=new Set(["if","else","else-if","for","slot"]);function t8({tag:e,props:t}){if("template"===e){for(let e=0;e<t.length;e++)if(7===t[e].type&&t7.has(t[e].name))return!0}return!1}let ne=/\r\n/g;function nt(e){let t="preserve"!==t$.whitespace,n=!1;for(let i=0;i<e.length;i++){let r=e[i];if(2===r.type)if(tY)r.content=r.content.replace(ne,`
|
|
9
|
+
`);else if(function(e){for(let t=0;t<e.length;t++)if(!e$(e.charCodeAt(t)))return!1;return!0}(r.content)){let s=e[i-1]&&e[i-1].type,o=e[i+1]&&e[i+1].type;!s||!o||t&&(3===s&&(3===o||1===o)||1===s&&(3===o||1===o&&function(e){for(let t=0;t<e.length;t++){let n=e.charCodeAt(t);if(10===n||13===n)return!0}return!1}(r.content)))?(n=!0,e[i]=null):r.content=" "}else t&&(r.content=nn(r.content))}return n?e.filter(Boolean):e}function nn(e){let t="",n=!1;for(let i=0;i<e.length;i++)e$(e.charCodeAt(i))?n||(t+=" ",n=!0):(t+=e[i],n=!1);return t}function ni(e){(tZ[0]||tH).children.push(e)}function nr(e,t){return{start:t1.getPos(e),end:null==t?t:t1.getPos(t),source:null==t?t:t3(e,t)}}function ns(e,t){e.end=t1.getPos(t),e.source=t3(e.start.offset,t)}function no(e,t=!1,n,i=0,r=0){return ey(e,t,n,i)}function na(e,t,n){t$.onError(e1(e,nr(t,t)))}function nl(e,t){if(t1.reset(),tq=null,tJ=null,tj="",tW=-1,tK=-1,tZ.length=0,tG=e,t$=o({},tB),t){let e;for(e in t)null!=t[e]&&(t$[e]=t[e])}t1.mode="html"===t$.parseMode?1:2*("sfc"===t$.parseMode),t1.inXML=1===t$.ns||2===t$.ns;let n=t&&t.delimiters;n&&(t1.delimiterOpen=eG(n[0]),t1.delimiterClose=eG(n[1]));let i=tH=eS([],e);return t1.parse(tG),i.loc=nr(0,e.length),i.children=nt(i.children),tH=null,i}function nc(e){let t=e.children.filter(e=>3!==e.type);return 1!==t.length||1!==t[0].type||tP(t[0])?null:t[0]}function nh(e,t){let{constantCache:n}=t;switch(e.type){case 1:if(0!==e.tagType)return 0;let i=n.get(e);if(void 0!==i)return i;let r=e.codegenNode;if(13!==r.type||r.isBlock&&"svg"!==e.tag&&"foreignObject"!==e.tag&&"math"!==e.tag)return 0;if(void 0!==r.patchFlag)return n.set(e,0),0;{let i=3,s=np(e,t);if(0===s)return n.set(e,0),0;s<i&&(i=s);for(let r=0;r<e.children.length;r++){let s=nh(e.children[r],t);if(0===s)return n.set(e,0),0;s<i&&(i=s)}if(i>1)for(let r=0;r<e.props.length;r++){let s=e.props[r];if(7===s.type&&"bind"===s.name&&s.exp){let r=nh(s.exp,t);if(0===r)return n.set(e,0),0;r<i&&(i=r)}}if(r.isBlock){for(let t=0;t<e.props.length;t++)if(7===e.props[t].type)return n.set(e,0),0;t.removeHelper(M),t.removeHelper(ew(t.inSSR,r.isComponent)),r.isBlock=!1,t.helper(eV(t.inSSR,r.isComponent))}return n.set(e,i),i}case 2:case 3:return 3;case 9:case 11:case 10:default:return 0;case 5:case 12:return nh(e.content,t);case 4:return e.constType;case 8:let s=3;for(let n=0;n<e.children.length;n++){let i=e.children[n];if(l(i)||c(i))continue;let r=nh(i,t);if(0===r)return 0;r<s&&(s=r)}return s;case 20:return 2}}let nd=new Set([Y,Q,z,Z]);function np(e,t){let n=3,i=nu(e);if(i&&15===i.type){let{properties:e}=i;for(let i=0;i<e.length;i++){let r,{key:s,value:o}=e[i],a=nh(s,t);if(0===a)return a;if(a<n&&(n=a),0===(r=4===o.type?nh(o,t):14===o.type?function e(t,n){if(14===t.type&&!l(t.callee)&&nd.has(t.callee)){let i=t.arguments[0];if(4===i.type)return nh(i,n);if(14===i.type)return e(i,n)}return 0}(o,t):0))return r;r<n&&(n=r)}}return n}function nu(e){let t=e.codegenNode;if(13===t.type)return t.props}function nf(e){let t=e.replace(/\?.*$/,"").match(/([^/\\]+)\.\w+$/);return t?_(m(t[1])):null}function nE(e,{filename:t="",prefixIdentifiers:r=!1,hoistStatic:s=!1,hmr:o=!1,cacheHandlers:a=!1,nodeTransforms:c=[],directiveTransforms:h={},transformHoist:d=null,isBuiltInComponent:p=i,isCustomElement:u=i,expressionPlugins:f=[],scopeId:E=null,slotted:m=!0,ssr:_=!1,inSSR:S=!1,ssrCssVars:g="",bindingMetadata:T=n,inline:N=!1,isTS:I=!1,onError:y=ez,onWarn:O=eZ,compatConfig:A}){let b={filename:t,selfName:nf(t),prefixIdentifiers:r,hoistStatic:s,hmr:o,cacheHandlers:a,nodeTransforms:c,directiveTransforms:h,transformHoist:d,isBuiltInComponent:p,isCustomElement:u,expressionPlugins:f,scopeId:E,slotted:m,ssr:_,inSSR:S,ssrCssVars:g,bindingMetadata:T,inline:N,isTS:I,onError:y,onWarn:O,compatConfig:A,root:e,helpers:new Map,components:new Set,directives:new Set,hoists:[],imports:[],cached:[],constantCache:new WeakMap,temps:0,identifiers:Object.create(null),scopes:{vFor:0,vSlot:0,vPre:0,vOnce:0},parent:null,grandParent:null,currentNode:e,childIndex:0,inVOnce:!1,helper(e){let t=b.helpers.get(e)||0;return b.helpers.set(e,t+1),e},removeHelper(e){let t=b.helpers.get(e);if(t){let n=t-1;n?b.helpers.set(e,n):b.helpers.delete(e)}},helperString:e=>`_${ep[b.helper(e)]}`,replaceNode(e){b.parent.children[b.childIndex]=b.currentNode=e},removeNode(e){let t=b.parent.children,n=e?t.indexOf(e):b.currentNode?b.childIndex:-1;e&&e!==b.currentNode?b.childIndex>n&&(b.childIndex--,b.onNodeRemoved()):(b.currentNode=null,b.onNodeRemoved()),b.parent.children.splice(n,1)},onNodeRemoved:i,addIdentifiers(e){},removeIdentifiers(e){},hoist(e){l(e)&&(e=ey(e)),b.hoists.push(e);let t=ey(`_hoisted_${b.hoists.length}`,!1,e.loc,2);return t.hoisted=e,t},cache(e,t=!1,n=!1){let i=eR(b.cached.length,e,t,n);return b.cached.push(i),i}};return b.filters=new Set,b}function nm(e,t){let n=nE(e,t);n_(e,n),t.hoistStatic&&function e(t,n,i,r=!1,s=!1){let{children:o}=t,l=[];for(let n=0;n<o.length;n++){let a=o[n];if(1===a.type&&0===a.tagType){let e=r?0:nh(a,i);if(e>0){if(e>=2){a.codegenNode.patchFlag=-1,l.push(a);continue}}else{let e=a.codegenNode;if(13===e.type){let t=e.patchFlag;if((void 0===t||512===t||1===t)&&np(a,i)>=2){let t=nu(a);t&&(e.props=i.hoist(t))}e.dynamicProps&&(e.dynamicProps=i.hoist(e.dynamicProps))}}}else if(12===a.type&&(r?0:nh(a,i))>=2){14===a.codegenNode.type&&a.codegenNode.arguments.length>0&&a.codegenNode.arguments.push("-1"),l.push(a);continue}if(1===a.type){let n=1===a.tagType;n&&i.scopes.vSlot++,e(a,t,i,!1,s),n&&i.scopes.vSlot--}else if(11===a.type)e(a,t,i,1===a.children.length,!0);else if(9===a.type)for(let n=0;n<a.branches.length;n++)e(a.branches[n],t,i,1===a.branches[n].children.length,s)}let c=!1;if(l.length===o.length&&1===t.type){if(0===t.tagType&&t.codegenNode&&13===t.codegenNode.type&&a(t.codegenNode.children))t.codegenNode.children=h(eT(t.codegenNode.children)),c=!0;else if(1===t.tagType&&t.codegenNode&&13===t.codegenNode.type&&t.codegenNode.children&&!a(t.codegenNode.children)&&15===t.codegenNode.children.type){let e=d(t.codegenNode,"default");e&&(e.returns=h(eT(e.returns)),c=!0)}else if(3===t.tagType&&n&&1===n.type&&1===n.tagType&&n.codegenNode&&13===n.codegenNode.type&&n.codegenNode.children&&!a(n.codegenNode.children)&&15===n.codegenNode.children.type){let e=tA(t,"slot",!0),i=e&&e.arg&&d(n.codegenNode,e.arg);i&&(i.returns=h(eT(i.returns)),c=!0)}}if(!c)for(let e of l)e.codegenNode=i.cache(e.codegenNode);function h(e){let t=i.cache(e);return t.needArraySpread=!0,t}function d(e,t){if(e.children&&!a(e.children)&&15===e.children.type){let n=e.children.properties.find(e=>e.key===t||e.key.content===t);return n&&n.value}}l.length&&i.transformHoist&&i.transformHoist(o,i,t)}(e,void 0,n,!!nc(e)),t.ssr||function(e,t){let{helper:n}=t,{children:i}=e;if(1===i.length){let n=nc(e);if(n&&n.codegenNode){let i=n.codegenNode;13===i.type&&eX(i,t),e.codegenNode=i}else e.codegenNode=i[0]}else i.length>1&&(e.codegenNode=eg(t,n(C),void 0,e.children,64,void 0,void 0,!0,void 0,!1))}(e,n),e.helpers=new Set([...n.helpers.keys()]),e.components=[...n.components],e.directives=[...n.directives],e.imports=n.imports,e.hoists=n.hoists,e.temps=n.temps,e.cached=n.cached,e.transformed=!0,e.filters=[...n.filters]}function n_(e,t){t.currentNode=e;let{nodeTransforms:n}=t,i=[];for(let r=0;r<n.length;r++){let s=n[r](e,t);if(s&&(a(s)?i.push(...s):i.push(s)),!t.currentNode)return;e=t.currentNode}switch(e.type){case 3:t.ssr||t.helper(w);break;case 5:t.ssr||t.helper(W);break;case 9:for(let n=0;n<e.branches.length;n++)n_(e.branches[n],t);break;case 10:case 11:case 1:case 0:var r=e;let s=0,o=()=>{s--};for(;s<r.children.length;s++){let e=r.children[s];l(e)||(t.grandParent=t.parent,t.parent=r,t.childIndex=s,t.onNodeRemoved=o,n_(e,t))}}t.currentNode=e;let c=i.length;for(;c--;)i[c]()}function nS(e,t){let n=l(e)?t=>t===e:t=>e.test(t);return(e,i)=>{if(1===e.type){let{props:r}=e;if(3===e.tagType&&r.some(tL))return;let s=[];for(let o=0;o<r.length;o++){let a=r[o];if(7===a.type&&n(a.name)){r.splice(o,1),o--;let n=t(e,a,i);n&&s.push(n)}}return s}}}let ng="/*@__PURE__*/",nT=e=>`${ep[e]}: _${ep[e]}`,nN={Start:0,0:"Start",End:-1,"-1":"End",None:-2,"-2":"None",Unknown:-3,"-3":"Unknown"};function nI(e,t={}){let n=function(e,{mode:t="function",prefixIdentifiers:n="module"===t,sourceMap:i=!1,filename:r="template.vue.html",scopeId:s=null,optimizeImports:o=!1,runtimeGlobalName:a="Vue",runtimeModuleName:l="vue",ssrRuntimeModuleName:c="vue/server-renderer",ssr:h=!1,isTS:d=!1,inSSR:p=!1}){let u={mode:t,prefixIdentifiers:n,sourceMap:i,filename:r,scopeId:s,optimizeImports:o,runtimeGlobalName:a,runtimeModuleName:l,ssrRuntimeModuleName:c,ssr:h,isTS:d,inSSR:p,source:e.source,code:"",column:1,line:1,offset:0,indentLevel:0,pure:!1,map:void 0,helper:e=>`_${ep[e]}`,push(e,t=-2,n){u.code+=e},indent(){f(++u.indentLevel)},deindent(e=!1){e?--u.indentLevel:f(--u.indentLevel)},newline(){f(u.indentLevel)}};function f(e){u.push(`
|
|
10
10
|
`+" ".repeat(e),0)}return u}(e,t);t.onContextCreated&&t.onContextCreated(n);let{mode:i,push:r,prefixIdentifiers:s,indent:o,deindent:a,newline:l,ssr:c}=n,h=Array.from(e.helpers),d=h.length>0,p=!s&&"module"!==i;!function(e,t){let{push:n,newline:i,runtimeGlobalName:r}=t,s=Array.from(e.helpers);if(s.length>0&&(n(`const _Vue = ${r}
|
|
11
|
-
`,-1),e.hoists.length)){let e=[k,V,w,X,U].filter(e=>s.includes(e)).map(
|
|
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} = `),
|
|
13
|
-
`,-1),l())),e.components.length&&(
|
|
14
|
-
`,0),l()),c||r("return "),e.codegenNode?nC(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 nO(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 ${tX(a,t)} = ${o}(${JSON.stringify(a)}${l?", true":""})${s?"!":""}`),n<e.length-1&&r()}}function nA(e,t){let n=e.length>3;t.push("["),n&&t.indent(),nb(e,t,n),n&&t.deindent(),t.push("]")}function nb(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)?nA(c,t):nC(c,t),o<e.length-1&&(n?(i&&r(","),s()):i&&r(", "))}}function nC(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:nC(e.codegenNode,t);break;case 2:n=e,t.push(JSON.stringify(n.content),-3,n);break;case 4:nv(e,t);break;case 5:!function(e,t){let{push:n,helper:i,pure:r}=t;r&&n(nT),n(`${i(W)}(`),nC(e.content,t),n(")")}(e,t);break;case 8:nR(e,t);break;case 3:!function(e,t){let{push:n,helper:i,pure:r}=t;r&&n(nT),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(nT),i(r(p?eX(t.inSSR,f):ew(t.inSSR,f))+"(",-2,e),nb(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(", "),nC(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(nT),n(s+"(",-2,e),nb(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("["),nR(e,t),n("]")):e.isStatic?n(td(e.content)?e.content:JSON.stringify(e.content),-2,e):n(`[${e.content}]`,-3,e)}(i,t),n(": "),nC(r,t),e<o.length-1&&(n(","),s())}a&&r(),n(a?"}":" }")}(e,t);break;case 17:i=e,r=t,nA(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)?nb(s,t):s&&nC(s,t),n(") => "),(c||l)&&(n("{"),i()),o?(c&&n("return "),a(o)?nA(o,t):nC(o,t)):l&&nC(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=!td(n.content);e&&o("("),nv(n,t),e&&o(")")}else o("("),nC(n,t),o(")");s&&a(),t.indentLevel++,s||o(" "),o("? "),nC(i,t),t.indentLevel--,s&&c(),s||o(" "),o(": ");let h=19===r.type;!h&&t.indentLevel++,nC(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}] = `),nC(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:nb(e.body,t,!0,!1)}}function nv(e,t){let{content:n,isStatic:i}=e;t.push(i?JSON.stringify(n):n,-3,e)}function nR(e,t){for(let n=0;n<e.children.length;n++){let i=e.children[n];l(i)?t.push(i,-3):nC(i,t)}}let nx=t("true,false,null,this"),nL=(e,t)=>{if(5===e.type)e.content=nM(e.content,t);else if(1===e.type){let n=tb(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=nM(e,t,"slot"===r.name)),i&&4===i.type&&!i.isStatic&&(r.arg=nM(i,t))}}}};function nM(e,t,n=!1,i=!1,r=Object.create(t.identifiers)){return e}function nP(e){return l(e)?e:4===e.type?e.content:e.children.map(nP).join("")}let nD=ng(/^(?:if|else|else-if)$/,(e,t,n)=>nk(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=nw(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=nw(t,o+e.branches.length-1,n)}}));function nk(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(e0(28,t.loc)),t.exp=eO("true",!1,i)}if("if"===t.name){var r;let s=nV(e,t),o={type:9,loc:ns((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&&3===o.type||o&&2===o.type&&!o.content.trim().length){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(e0(30,e.loc)),n.removeNode();let r=nV(e,t);o.branches.push(r);let s=i&&i(o,r,!1);nS(r,n),s&&s(),n.currentNode=null}else n.onError(e0(30,e.loc));break}}}function nV(e,t){let n=3===e.tagType;return{type:10,loc:e.loc,condition:"else"===t.name?void 0:t.exp,children:n&&!tb(e,"for")?e.children:[e],userKey:tC(e,"key"),isTemplateIf:n}}function nw(e,t,n){return e.condition?eR(e.condition,nX(e,t,n),eC(n.helper(w),['""',"true"])):nX(e,t,n)}function nX(e,t,n){let{helper:i}=n,r=ey("key",eO(`${t}`,!1,eS,2)),{children:s}=e,o=s[0];if(1!==s.length||1!==o.type)if(1!==s.length||11!==o.type)return eT(n,i(C),eI([r]),s,64,void 0,void 0,!0,!1,!1,e.loc);else{let e=o.codegenNode;return tV(e,r,n),e}{let e=o.codegenNode,t=tF(e);return 13===t.type&&eU(t,n),tV(t,r,n),e}}let nU=ng("for",(e,t,n)=>{let{helper:i,removeHelper:r}=n;return nF(e,t,n,t=>{let s=eC(i(q),[t.source]),o=tP(e),a=tb(e,"memo"),l=tC(e,"key",!1,!0);l&&l.type;let c=l&&(6===l.type?l.value?eO(l.value.content,!0):void 0:l.exp),h=l&&c?ey("key",c):null,d=4===t.source.type&&t.source.constType>0,p=d?64:l?128:256;return t.codegenNode=eT(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=tD(e)?e:o&&1===e.children.length&&tD(e.children[0])?e.children[0]:null;if(f?(l=f.codegenNode,o&&h&&tV(l,h,n)):u?l=eT(n,i(C),h?eI([h]):void 0,e.children,64,void 0,void 0,!0,void 0,!1):(l=p[0].codegenNode,o&&h&&tV(l,h,n),!d!==l.isBlock&&(l.isBlock?(r(M),r(eX(n.inSSR,l.isComponent))):r(ew(n.inSSR,l.isComponent))),l.isBlock=!d,l.isBlock?(i(M),i(eX(n.inSSR,l.isComponent))):i(ew(n.inSSR,l.isComponent))),a){let e=ev(n$(t.parseResult,[eO("_cached")]));e.body=eL([eb(["const _memo = (",a.exp,")"]),eb(["if (_cached",...c?[" && _cached.key === ",c]:[],` && ${n.helperString(ed)}(_cached, _memo)) return _cached`]),eb(["const _item = ",l]),eO("_item.memo = _memo"),eO("return _item")]),s.arguments.push(e,eO("_cache"),eO(String(n.cached.length))),n.cached.push(null)}else s.arguments.push(ev(n$(t.parseResult),l,!0))}})});function nF(e,t,n,i){if(!t.exp)return void n.onError(e0(31,t.loc));let r=t.forParseResult;if(!r)return void n.onError(e0(32,t.loc));nB(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:tP(e)?e.children:[e]};n.replaceNode(h),s.vFor++;let d=i&&i(h);return()=>{s.vFor--,d&&d()}}function nB(e,t){e.finalized||(e.finalized=!0)}function n$({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||eO("_".repeat(t+1),!1))}let nH=eO("undefined",!1),nG=(e,t)=>{if(1===e.type&&(1===e.tagType||3===e.tagType)){let n=tb(e,"slot");if(n)return n.exp,t.scopes.vSlot++,()=>{t.scopes.vSlot--}}},nq=(e,t)=>{let n;if(tP(e)&&e.props.some(tM)&&(n=tb(e,"for"))){let e=n.forParseResult;if(e){nB(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)}}}},nJ=(e,t,n,i)=>ev(e,n,!1,!0,n.length?n[0].loc:i);function nj(e,t,n=nJ){t.helper(ea);let{children:i,loc:r}=e,s=[],o=[],a=t.scopes.vSlot>0||t.scopes.vFor>0,l=tb(e,"slot",!0);if(l){let{arg:e,exp:t}=l;e&&!tl(e)&&(a=!0),s.push(ey(e||eO("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(!tP(_)||!(r=tb(_,"slot",!0))){3!==_.type&&d.push(_);continue}if(l){t.onError(e0(37,r.loc));break}c=!0;let{children:S,loc:g}=_,{arg:T=eO("default",!0),exp:N,loc:I}=r;tl(T)?f=T?T.content:"default":a=!0;let y=tb(_,"for"),O=n(N,y,S,g);if(E=tb(_,"if"))a=!0,o.push(eR(E.exp,nW(T,O,u++),nH));else if(m=tb(_,/^else(?:-if)?$/,!0)){let n,r=e;for(;r--&&!(3!==(n=i[r]).type&&nK(n)););if(n&&tP(n)&&tb(n,/^(?:else-)?if$/)){let e=o[o.length-1];for(;19===e.alternate.type;)e=e.alternate;e.alternate=m.exp?eR(m.exp,nW(T,O,u++),nH):nW(T,O,u++)}else t.onError(e0(30,m.loc))}else if(y){a=!0;let e=y.forParseResult;e?(nB(e),o.push(eC(t.helper(q),[e.source,ev(n$(e),nW(T,O),!0)]))):t.onError(e0(32,y.loc))}else{if(f){if(p.has(f)){t.onError(e0(38,I));continue}p.add(f),"default"===f&&(h=!0)}s.push(ey(T,O))}}if(!l){let e=(e,i)=>{let s=n(e,void 0,i,r);return t.compatConfig&&(s.isNonScopedSlot=!0),ey("default",s)};c?d.length&&d.some(e=>nK(e))&&(h?t.onError(e0(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=eI(s.concat(ey("_",eO(f+"",!1))),r);return o.length&&(E=eC(t.helper(j),[E,eN(o)])),{slots:E,hasDynamicSlots:a}}function nW(e,t,n){let i=[ey("name",e),ey("fn",t)];return null!=n&&i.push(ey("key",eO(String(n),!0))),eI(i)}function nK(e){return 2!==e.type&&12!==e.type||(2===e.type?!!e.content.trim():nK(e.content))}let nY=new WeakMap,nQ=(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?nz(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=nZ(e,t,void 0,c,p);n=i.props,u=i.patchFlag,s=i.dynamicPropNames;let r=i.directives;o=r&&r.length?eN(r.map(e=>n0(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}=nj(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===nd(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=eT(t,d,n,i,0===u?void 0:u,r,o,!!f,!1,c,e.loc)};function nz(e,t,n=!1){let{tag:i}=e,r=n2(i),s=tC(e,"is",!1,!0);if(s)if(r||eY("COMPILER_IS_ON_ELEMENT",t)){let e;if(6===s.type?e=s.value&&eO(s.value.content,!0):(e=s.exp)||(e=eO("is",!1,s.arg.loc)),e)return eC(t.helper(B),[e])}else 6===s.type&&s.value.content.startsWith("vue:")&&(i=s.value.content.slice(4));let o=tc(i)||t.isBuiltInComponent(i);return o?(n||t.helper(o),o):(t.helper(F),t.components.add(i),tX(i,"component"))}function nZ(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(eI(n1(f),h)),f=[]),e&&E.push(e)},v=()=>{t.scopes.vFor>0&&f.push(ey(eO("ref_for",!0),eO("true")))},R=({key:e,value:n})=>{if(tl(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)&&nd(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&&(n2(l)||r&&r.content.startsWith("vue:")||eY("COMPILER_IS_ON_ELEMENT",t)))continue;f.push(ey(eO(n,!0,i),eO(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(e0(40,d));continue}if("once"===n||"memo"===n||"is"===n||T&&tv(r,"is")&&(n2(l)||eY("COMPILER_IS_ON_ELEMENT",t))||N&&o)continue;if((T&&tv(r,"key")||N&&_&&tv(r,"vue:before-update"))&&(S=!0),T&&tv(r,"ref")&&v(),!r&&(T||N)){if(O=!0,a)if(T){if(C(),eY("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(e0(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&&!tl(r)?C(eI(n,h)):f.push(...n),i&&(m.push(s),c(i)&&nY.set(s,i))}else!p(n)&&(m.push(s),_&&(S=!0))}}if(E.length?(C(),a=E.length>1?eC(t.helper(K),E,h):E[0]):f.length&&(a=eI(n1(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;tl(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=eC(t.helper(z),[a]):(P&&!tl(P.value)&&(P.value=eC(t.helper(Y),[P.value])),D&&(I||4===D.value.type&&"["===D.value.content.trim()[0]||17===D.value.type)&&(D.value=eC(t.helper(Q),[D.value])));break;case 14:break;default:a=eC(t.helper(z),[eC(t.helper(Z),[a])])}return{props:a,directives:m,patchFlag:g,dynamicPropNames:b,shouldUseBlock:S}}function n1(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=eN([i.value,r.value],i.loc)):(t.set(l,a),n.push(a))}return n}function n0(e,t){let n=[],i=nY.get(e);i?n.push(t.helperString(i)):(t.helper($),t.directives.add(e.name),n.push(tX(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=eO("true",!1,r);n.push(eI(e.modifiers.map(e=>ey(e,t)),r))}return eN(n,e.loc)}function n2(e){return"component"===e||"Component"===e}let n3=(e,t)=>{if(tD(e)){let{children:n,loc:i}=e,{slotName:r,slotProps:s}=n4(e,t),o=[t.prefixIdentifiers?"_ctx.$slots":"$slots",r,"{}","undefined","true"],a=2;s&&(o[2]=s,a=3),n.length&&(o[3]=ev([],n,!1,!1,i),a=4),t.scopeId&&!t.slotted&&(a=5),o.splice(a),e.codegenNode=eC(t.helper(J),o,i)}};function n4(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&&tv(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=eO(e,!1,n.arg.loc)}}else"bind"===n.name&&n.arg&&tl(n.arg)&&(n.arg.content=m(n.arg.content)),r.push(n)}if(r.length>0){let{props:i,directives:s}=nZ(e,t,r,!1,!1);n=i,s.length&&t.onError(e0(36,s[0].loc))}return{slotName:i,slotProps:n}}let n6=(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=eO(0!==t.tagType||e.startsWith("vnode")||!/[A-Z]/.test(e)?S(m(e)):`on:${e}`,!0,a.loc)}else r=eb([`${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=tS(l),t=!(e||tI(l)),n=l.content.includes(";");(t||c&&e)&&(l=eb([`${t?"$event":"(...args)"} => ${n?"{":"("}`,l,n?"}":")"]))}let h={props:[ey(r,l||eO("() => {}",!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},n5=(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)&&n9(r,"."),i.some(e=>"attr"===e.content)&&n9(r,"^")),{props:[ey(r,s)]}},n9=(e,t)=>{4===e.type?e.isStatic?e.content=t+e.content:e.content=`\`${t}\${${e.content}}\``:(e.children.unshift(`'${t}' + (`),e.children.push(")"))},n7=(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(tx(t)){r=!0;for(let r=e+1;r<i.length;r++){let s=i[r];if(tx(s))n||(n=i[e]=eb([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(tx(n)||8===n.type){let r=[];(2!==n.type||" "!==n.content)&&r.push(n),t.ssr||0!==nd(n,t)||r.push("1"),i[e]={type:12,content:n,loc:n.loc,codegenNode:eC(t.helper(X),r)}}}}},n8=new WeakSet,ie=(e,t)=>{if(1===e.type&&tb(e,"once",!0)&&!n8.has(e)&&!t.inVOnce&&!t.inSSR)return n8.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))}},it=(e,t,n)=>{let i,{exp:r,arg:s}=e;if(!r)return n.onError(e0(41,e.loc)),ii();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,ii();if(!a.trim()||!tS(r))return n.onError(e0(42,r.loc)),ii();let c=s||eO("modelValue",!0),h=s?tl(s)?`onUpdate:${m(s.content)}`:eb(['"onUpdate:" + ',s]):"onUpdate:modelValue",d=n.isTS?"($event: any)":"$event";i=eb([`${d} => ((`,r,") = $event)"]);let p=[ey(c,e.exp),ey(h,i)];if(e.modifiers.length&&1===t.tagType){let t=e.modifiers.map(e=>e.content).map(e=>(td(e)?e:JSON.stringify(e))+": true").join(", "),n=s?tl(s)?`${s.content}Modifiers`:eb([s,' + "Modifiers"']):"modelModifiers";p.push(ey(n,eO(`{ ${t} }`,!1,e.loc,2)))}return ii(p)};function ii(e=[]){return{props:e}}let ir=/[\w).+\-_$\]]/,is=(e,t)=>{eY("COMPILER_FILTERS",t)&&(5===e.type?io(e.content,t):1===e.type&&e.props.forEach(e=>{7===e.type&&"for"!==e.name&&e.exp&&io(e.exp,t)}))};function io(e,t){if(4===e.type)ia(e,t);else for(let n=0;n<e.children.length;n++){let i=e.children[n];"object"==typeof i&&(4===i.type?ia(i,t):8===i.type?io(e,t):5===i.type&&io(i.content,t))}}function ia(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&&ir.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),`${tX(t,"filter")}(${e})`;{let r=t.slice(0,i),s=t.slice(i+1);return n.filters.add(r),`${tX(r,"filter")}(${e}${")"!==s?","+s:s}`}}(f,E[u],t);e.content=f,e.ast=void 0}}let il=new WeakSet,ic=(e,t)=>{if(1===e.type){let n=tb(e,"memo");if(!(!n||il.has(e))&&!t.inSSR)return il.add(e),()=>{let i=e.codegenNode||t.currentNode.codegenNode;i&&13===i.type&&(1!==e.tagType&&eU(i,t),e.codegenNode=eC(t.helper(eh),[n.exp,ev(void 0,i),"_cache",String(t.cached.length)]),t.cached.push(null))}}},ih=(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);(tp.test(t[0])||"-"===t[0])&&(n.exp=eO(t,!1,e.loc))}else t.onError(e0(52,e.loc)),n.exp=eO("",!0,e.loc)}}};function id(e){return[[ih,ie,nD,ic,nU,is,n3,nQ,nG,n7],{on:n6,bind:n5,model:it}]}function ip(e,t={}){let n=t.onError||eZ,i="module"===t.mode;!0===t.prefixIdentifiers?n(e0(47)):i&&n(e0(48)),t.cacheHandlers&&n(e0(49)),t.scopeId&&!i&&n(e0(50));let r=o({},t,{prefixIdentifiers:!1}),s=l(e)?nc(e,r):e,[a,c]=id();return n_(s,o({},r,{nodeTransforms:[...a,...t.nodeTransforms||[]],directiveTransforms:o({},c,t.directiveTransforms||{})})),ny(s,r)}let iu={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"},iE=()=>({props:[]}),im=Symbol(""),i_=Symbol(""),iS=Symbol(""),ig=Symbol(""),iT=Symbol(""),iN=Symbol(""),iI=Symbol(""),iy=Symbol(""),iO=Symbol(""),iA=Symbol("");eu({[im]:"vModelRadio",[i_]:"vModelCheckbox",[iS]:"vModelText",[ig]:"vModelSelect",[iT]:"vModelDynamic",[iN]:"withModifiers",[iI]:"withKeys",[iy]:"vShow",[iO]:"Transition",[iA]:"TransitionGroup"});let ib={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?iO:"TransitionGroup"===e||"transition-group"===e?iA:void 0,getNamespace(e,t,n){let i=t?t.ns:n;if(t&&2===i)if("annotation-xml"===t.tag){if("svg"===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("svg"===e)return 1;if("math"===e)return 2}return i}},iC=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:eO("style",!0,t.loc),exp:iv(t.value.content,t.loc),modifiers:[],loc:t.loc})})},iv=(e,t)=>{let n;return eO(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 iR(e,t){return e0(e,t)}let ix={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__"},iL={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:""},iM=t("passive,once,capture"),iP=t("stop,prevent,self,ctrl,shift,alt,meta,exact,middle"),iD=t("left,right"),ik=t("onkeyup,onkeydown,onkeypress"),iV=(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&&eQ("COMPILER_V_ON_NATIVE",n))o.push(a);else if(iM(a))o.push(a);else{let t=l(e)?e:tl(e)?e.content:null;iD(a)?t?ik(t.toLowerCase())?r.push(a):s.push(a):(r.push(a),s.push(a)):iP(a)?s.push(a):r.push(a)}}return{keyModifiers:r,nonKeyModifiers:s,eventOptionModifiers:o}},iw=(e,t)=>tl(e)&&"onclick"===e.content.toLowerCase()?eO(t,!0):4!==e.type?eb(["(",e,`) === "onClick" ? "${t}" : (`,e,")"]):e;function iX(e,t,n=iU){return()=>{if(!e.children.length)return;n(e)&&t(iR(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 iU(e){let t=e.children=e.children.filter(e=>3!==e.type&&!(2===e.type&&!e.content.trim())),n=t[0];return 1!==t.length||11===n.type||9===n.type&&n.branches.some(iU)}let iF=(e,t)=>{1===e.type&&0===e.tagType&&("script"===e.tag||"style"===e.tag)&&t.removeNode()};function iB(e,t){return"template"===e||(e in iG?iG[e].has(t):t in iq?iq[t].has(e):!(e in iJ&&iJ[e].has(t)||t in ij&&ij[t].has(e)))}let i$=new Set(["h1","h2","h3","h4","h5","h6"]),iH=new Set([]),iG={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:iH,iframe:iH,option:iH,textarea:iH,style:iH,title:iH},iq={html:iH,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"])},iJ={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"])},ij={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:i$,h2:i$,h3:i$,h4:i$,h5:i$,h6:i$},iW=[iC],iK={cloak:iE,html:(e,t,n)=>{let{exp:i,loc:r}=e;return i||n.onError(iR(53,r)),t.children.length&&(n.onError(iR(54,r)),t.children.length=0),{props:[ey(eO("innerHTML",!0,r),i||eO("",!0))]}},text:(e,t,n)=>{let{exp:i,loc:r}=e;return i||n.onError(iR(55,r)),t.children.length&&(n.onError(iR(56,r)),t.children.length=0),{props:[ey(eO("textContent",!0),i?nd(i,n)>0?i:eC(n.helperString(W),[i],r):eO("",!0))]}},model:(e,t,n)=>{let i=it(e,t,n);if(!i.props.length||1===t.tagType)return i;e.arg&&n.onError(iR(58,e.arg.loc));let{tag:r}=t,s=n.isCustomElement(r);if("input"===r||"textarea"===r||"select"===r||s){let o=iS,a=!1;if("input"===r||s){let i=tC(t,"type");if(i){if(7===i.type)o=iT;else if(i.value)switch(i.value.content){case"radio":o=im;break;case"checkbox":o=i_;break;case"file":a=!0,n.onError(iR(59,e.loc))}}else tR(t)&&(o=iT)}else"select"===r&&(o=ig);a||(i.needRuntime=n.helper(o))}else n.onError(iR(57,e.loc));return i.props=i.props.filter(e=>4!==e.key.type||"modelValue"!==e.key.content),i},on:(e,t,n)=>n6(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}=iV(r,i,n,e.loc);if(a.includes("right")&&(r=iw(r,"onContextmenu")),a.includes("middle")&&(r=iw(r,"onMouseup")),a.length&&(s=eC(n.helper(iN),[s,JSON.stringify(a)])),o.length&&(!tl(r)||ik(r.content.toLowerCase()))&&(s=eC(n.helper(iI),[s,JSON.stringify(o)])),l.length){let e=l.map(_).join("");r=tl(r)?eO(`${r.content}${e}`,!0):eb(["(",r,`) + "${e}"`])}return{props:[ey(r,s)]}}),show:(e,t,n)=>{let{exp:i,loc:r}=e;return i||n.onError(iR(61,r)),{props:[],needRuntime:n.helper(iy)}}};function iY(e,t={}){return ip(e,o({},ib,t,{nodeTransforms:[iF,...iW,...t.nodeTransforms||[]],directiveTransforms:o({},iK,t.directiveTransforms||{}),transformHoist:null}))}function iQ(e,t={}){return nc(e,o({},ib,t))}export{L as BASE_TRANSITION,iu 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,e_ as ConstantTypes,iK as DOMDirectiveTransforms,ix as DOMErrorCodes,iL as DOMErrorMessages,iW as DOMNodeTransforms,em as ElementTypes,e2 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,ef as Namespaces,nI as NewlineType,eE 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,iO as TRANSITION,iA as TRANSITION_GROUP,tr as TS_NODE_TYPES,el as UNREF,i_ as V_MODEL_CHECKBOX,iT as V_MODEL_DYNAMIC,im as V_MODEL_RADIO,ig as V_MODEL_SELECT,iS as V_MODEL_TEXT,iI as V_ON_WITH_KEYS,iN as V_ON_WITH_MODIFIERS,iy as V_SHOW,ea as WITH_CTX,G as WITH_DIRECTIVES,eh as WITH_MEMO,ty as advancePositionWithClone,tO as advancePositionWithMutation,tA as assert,ip as baseCompile,nc as baseParse,n0 as buildDirectiveArgs,nZ as buildProps,nj as buildSlots,eQ as checkCompatEnabled,iY as compile,eU as convertToBlock,eN as createArrayExpression,eD as createAssignmentExpression,eL as createBlockStatement,ex as createCacheExpression,eC as createCallExpression,e0 as createCompilerError,eb as createCompoundExpression,eR as createConditionalExpression,iR as createDOMCompilerError,n$ as createForLoopParams,ev as createFunctionExpression,eP as createIfStatement,eA as createInterpolation,eI as createObjectExpression,ey as createObjectProperty,eV as createReturnStatement,eg as createRoot,ek as createSequenceExpression,eO as createSimpleExpression,ng as createStructuralDirectiveTransform,eM as createTemplateLiteral,nm as createTransformContext,eT as createVNodeCall,eZ as defaultOnError,e1 as defaultOnWarn,e3 as errorMessages,te as extractIdentifiers,tb as findDir,tC as findProp,tB as forAliasRE,ny as generate,g as generateCodeFrame,id as getBaseTransformPreset,nd as getConstantType,tF as getMemoedVNodeCall,nE as getSelfName,eX as getVNodeBlockHelper,ew as getVNodeHelper,tR as hasDynamicKeyVBind,tU as hasScopeRef,ep as helperNameMap,tV as injectProp,ta as isConstantNode,tc as isCoreComponent,tI as isFnExpression,tT as isFnExpressionBrowser,tN as isFnExpressionNode,tt as isFunctionType,e5 as isInDestructureAssignment,e9 as isInNewExpression,nx as isLiteralWhitelisted,tS as isMemberExpression,tm as isMemberExpressionBrowser,t_ as isMemberExpressionNode,e6 as isReferencedIdentifier,td as isSimpleIdentifier,tD as isSlotOutlet,tv as isStaticArgOf,tl as isStaticExp,to as isStaticNode,tn as isStaticProperty,ti as isStaticPropertyKey,tP as isTemplateNode,tx as isText,tL as isVPre,tM as isVSlot,iB as isValidHTMLNesting,eS as locStub,iE as noopDirectiveTransform,iQ as parse,ib as parserOptions,iX as postTransformTransition,nM as processExpression,nF as processFor,nk as processIf,n4 as processSlotOutlet,eu as registerRuntimeHelpers,nz as resolveComponentType,iV as resolveModifiers,nP as stringifyExpression,tX as toValidAssetId,nG as trackSlotScopes,nq as trackVForSlotScopes,n_ as transform,n5 as transformBind,nQ as transformElement,nL as transformExpression,it as transformModel,n6 as transformOn,iC as transformStyle,ih as transformVBindShorthand,nS as traverseNode,ts as unwrapTSNode,tp as validFirstIdentCharRE,e8 as walkBlockDeclarations,e7 as walkFunctionParams,e4 as walkIdentifiers,ez as warnDeprecation};
|
|
11
|
+
`,-1),e.hoists.length)){let e=[k,V,w,X,U].filter(e=>s.includes(e)).map(nT).join(", ");n(`const { ${e} } = _Vue
|
|
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} = `),nb(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(nT).join(", ")} } = _Vue
|
|
13
|
+
`,-1),l())),e.components.length&&(ny(e.components,"component",n),(e.directives.length||e.temps>0)&&l()),e.directives.length&&(ny(e.directives,"directive",n),e.temps>0&&l()),e.filters&&e.filters.length&&(l(),ny(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?nb(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 ny(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 nO(e,t){let n=e.length>3;t.push("["),n&&t.indent(),nA(e,t,n),n&&t.deindent(),t.push("]")}function nA(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)?nO(c,t):nb(c,t),o<e.length-1&&(n?(i&&r(","),s()):i&&r(", "))}}function nb(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:nb(e.codegenNode,t);break;case 2:n=e,t.push(JSON.stringify(n.content),-3,n);break;case 4:nC(e,t);break;case 5:!function(e,t){let{push:n,helper:i,pure:r}=t;r&&n(ng),n(`${i(W)}(`),nb(e.content,t),n(")")}(e,t);break;case 8:nv(e,t);break;case 3:!function(e,t){let{push:n,helper:i,pure:r}=t;r&&n(ng),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(ng),i(r(p?ew(t.inSSR,f):eV(t.inSSR,f))+"(",-2,e),nA(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(", "),nb(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(ng),n(s+"(",-2,e),nA(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("["),nv(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(": "),nb(r,t),e<o.length-1&&(n(","),s())}a&&r(),n(a?"}":" }")}(e,t);break;case 17:i=e,r=t,nO(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)?nA(s,t):s&&nb(s,t),n(") => "),(c||l)&&(n("{"),i()),o?(c&&n("return "),a(o)?nO(o,t):nb(o,t)):l&&nb(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("("),nC(n,t),e&&o(")")}else o("("),nb(n,t),o(")");s&&a(),t.indentLevel++,s||o(" "),o("? "),nb(i,t),t.indentLevel--,s&&c(),s||o(" "),o(": ");let h=19===r.type;!h&&t.indentLevel++,nb(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}] = `),nb(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:nA(e.body,t,!0,!1)}}function nC(e,t){let{content:n,isStatic:i}=e;t.push(i?JSON.stringify(n):n,-3,e)}function nv(e,t){for(let n=0;n<e.children.length;n++){let i=e.children[n];l(i)?t.push(i,-3):nb(i,t)}}let nR=t("true,false,null,this"),nx=(e,t)=>{if(5===e.type)e.content=nL(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=nL(e,t,"slot"===r.name)),i&&4===i.type&&!i.isStatic&&(r.arg=nL(i,t))}}}};function nL(e,t,n=!1,i=!1,r=Object.create(t.identifiers)){return e}function nM(e){return l(e)?e:4===e.type?e.content:e.children.map(nM).join("")}let nP=nS(/^(?:if|else|else-if)$/,(e,t,n)=>nD(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=nV(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=nV(t,o+e.branches.length-1,n)}}));function nD(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=nk(e,t),o={type:9,loc:nr((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&&3===o.type||o&&2===o.type&&!o.content.trim().length){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=nk(e,t);o.branches.push(r);let s=i&&i(o,r,!1);n_(r,n),s&&s(),n.currentNode=null}else n.onError(e1(30,e.loc));break}}}function nk(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 nV(e,t,n){return e.condition?ev(e.condition,nw(e,t,n),eb(n.helper(w),['""',"true"])):nw(e,t,n)}function nw(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 nX=nS("for",(e,t,n)=>{let{helper:i,removeHelper:r}=n;return nU(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(nB(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(nB(t.parseResult),l,!0))}})});function nU(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));nF(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 nF(e,t){e.finalized||(e.finalized=!0)}function nB({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 n$=ey("undefined",!1),nH=(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--}}},nG=(e,t)=>{let n;if(tM(e)&&e.props.some(tL)&&(n=tA(e,"for"))){let e=n.forParseResult;if(e){nF(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 nJ(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,nj(T,O,u++),n$));else if(m=tA(_,/^else(?:-if)?$/,!0)){let n,r=e;for(;r--&&!(3!==(n=i[r]).type&&nW(n)););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,nj(T,O,u++),n$):nj(T,O,u++)}else t.onError(e1(30,m.loc))}else if(y){a=!0;let e=y.forParseResult;e?(nF(e),o.push(eb(t.helper(q),[e.source,eC(nB(e),nj(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.some(e=>nW(e))&&(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 nj(e,t,n){let i=[eI("name",e),eI("fn",t)];return null!=n&&i.push(eI("key",ey(String(n),!0))),eN(i)}function nW(e){return 2!==e.type&&12!==e.type||(2===e.type?!!e.content.trim():nW(e.content))}let nK=new WeakMap,nY=(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?nQ(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=nz(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=>n1(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}=nJ(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===nh(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 nQ(e,t,n=!1){let{tag:i}=e,r=n0(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 nz(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(nZ(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)&&nh(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&&(n0(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")&&(n0(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)&&nK.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(nZ(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 nZ(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 n1(e,t){let n=[],i=nK.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 n0(e){return"component"===e||"Component"===e}let n2=(e,t)=>{if(tP(e)){let{children:n,loc:i}=e,{slotName:r,slotProps:s}=n3(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 n3(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}=nz(e,t,r,!1,!1);n=i,s.length&&t.onError(e1(36,s[0].loc))}return{slotName:i,slotProps:n}}let n4=(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},n6=(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)&&n5(r,"."),i.some(e=>"attr"===e.content)&&n5(r,"^")),{props:[eI(r,s)]}},n5=(e,t)=>{4===e.type?e.isStatic?e.content=t+e.content:e.content=`\`${t}\${${e.content}}\``:(e.children.unshift(`'${t}' + (`),e.children.push(")"))},n9=(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!==nh(n,t)||r.push("1"),i[e]={type:12,content:n,loc:n.loc,codegenNode:eb(t.helper(X),r)}}}}},n7=new WeakSet,n8=(e,t)=>{if(1===e.type&&tA(e,"once",!0)&&!n7.has(e)&&!t.inVOnce&&!t.inSSR)return n7.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))}},ie=(e,t,n)=>{let i,{exp:r,arg:s}=e;if(!r)return n.onError(e1(41,e.loc)),it();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,it();if(!a.trim()||!t_(r))return n.onError(e1(42,r.loc)),it();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 it(p)};function it(e=[]){return{props:e}}let ii=/[\w).+\-_$\]]/,ir=(e,t)=>{eK("COMPILER_FILTERS",t)&&(5===e.type?is(e.content,t):1===e.type&&e.props.forEach(e=>{7===e.type&&"for"!==e.name&&e.exp&&is(e.exp,t)}))};function is(e,t){if(4===e.type)io(e,t);else for(let n=0;n<e.children.length;n++){let i=e.children[n];"object"==typeof i&&(4===i.type?io(i,t):8===i.type?is(e,t):5===i.type&&is(i.content,t))}}function io(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&&ii.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 ia=new WeakSet,il=(e,t)=>{if(1===e.type){let n=tA(e,"memo");if(!(!n||ia.has(e))&&!t.inSSR)return ia.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))}}},ic=(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 ih(e){return[[ic,n8,nP,il,nX,ir,n2,nY,nH,n9],{on:n4,bind:n6,model:ie}]}function id(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)?nl(e,r):e,[a,c]=ih();return nm(s,o({},r,{nodeTransforms:[...a,...t.nodeTransforms||[]],directiveTransforms:o({},c,t.directiveTransforms||{})})),nI(s,r)}let ip={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"},iu=()=>({props:[]}),iE=Symbol(""),im=Symbol(""),i_=Symbol(""),iS=Symbol(""),ig=Symbol(""),iT=Symbol(""),iN=Symbol(""),iI=Symbol(""),iy=Symbol(""),iO=Symbol("");eu({[iE]:"vModelRadio",[im]:"vModelCheckbox",[i_]:"vModelText",[iS]:"vModelSelect",[ig]:"vModelDynamic",[iT]:"withModifiers",[iN]:"withKeys",[iI]:"vShow",[iy]:"Transition",[iO]:"TransitionGroup"});let iA={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?iy:"TransitionGroup"===e||"transition-group"===e?iO: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}},ib=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:iC(t.value.content,t.loc),modifiers:[],loc:t.loc})})},iC=(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 iv(e,t){return e1(e,t)}let iR={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__"},ix={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:""},iL=t("passive,once,capture"),iM=t("stop,prevent,self,ctrl,shift,alt,meta,exact,middle"),iP=t("left,right"),iD=t("onkeyup,onkeydown,onkeypress"),ik=(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(iL(a))o.push(a);else{let t=l(e)?e:ta(e)?e.content:null;iP(a)?t?iD(t.toLowerCase())?r.push(a):s.push(a):(r.push(a),s.push(a)):iM(a)?s.push(a):r.push(a)}}return{keyModifiers:r,nonKeyModifiers:s,eventOptionModifiers:o}},iV=(e,t)=>ta(e)&&"onclick"===e.content.toLowerCase()?ey(t,!0):4!==e.type?eA(["(",e,`) === "onClick" ? "${t}" : (`,e,")"]):e;function iw(e,t,n=iX){return()=>{if(!e.children.length)return;n(e)&&t(iv(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 iX(e){let t=e.children=e.children.filter(e=>3!==e.type&&!(2===e.type&&!e.content.trim())),n=t[0];return 1!==t.length||11===n.type||9===n.type&&n.branches.some(iX)}let iU=(e,t)=>{1===e.type&&0===e.tagType&&("script"===e.tag||"style"===e.tag)&&t.removeNode()};function iF(e,t){return"template"===e||(e in iH?iH[e].has(t):t in iG?iG[t].has(e):!(e in iq&&iq[e].has(t)||t in iJ&&iJ[t].has(e)))}let iB=new Set(["h1","h2","h3","h4","h5","h6"]),i$=new Set([]),iH={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:i$,iframe:i$,option:i$,textarea:i$,style:i$,title:i$},iG={html:i$,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"])},iq={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"])},iJ={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:iB,h2:iB,h3:iB,h4:iB,h5:iB,h6:iB},ij=[ib],iW={cloak:iu,html:(e,t,n)=>{let{exp:i,loc:r}=e;return i||n.onError(iv(53,r)),t.children.length&&(n.onError(iv(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(iv(55,r)),t.children.length&&(n.onError(iv(56,r)),t.children.length=0),{props:[eI(ey("textContent",!0),i?nh(i,n)>0?i:eb(n.helperString(W),[i],r):ey("",!0))]}},model:(e,t,n)=>{let i=ie(e,t,n);if(!i.props.length||1===t.tagType)return i;e.arg&&n.onError(iv(58,e.arg.loc));let{tag:r}=t,s=n.isCustomElement(r);if("input"===r||"textarea"===r||"select"===r||s){let o=i_,a=!1;if("input"===r||s){let i=tb(t,"type");if(i){if(7===i.type)o=ig;else if(i.value)switch(i.value.content){case"radio":o=iE;break;case"checkbox":o=im;break;case"file":a=!0,n.onError(iv(59,e.loc))}}else tv(t)&&(o=ig)}else"select"===r&&(o=iS);a||(i.needRuntime=n.helper(o))}else n.onError(iv(57,e.loc));return i.props=i.props.filter(e=>4!==e.key.type||"modelValue"!==e.key.content),i},on:(e,t,n)=>n4(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}=ik(r,i,n,e.loc);if(a.includes("right")&&(r=iV(r,"onContextmenu")),a.includes("middle")&&(r=iV(r,"onMouseup")),a.length&&(s=eb(n.helper(iT),[s,JSON.stringify(a)])),o.length&&(!ta(r)||iD(r.content.toLowerCase()))&&(s=eb(n.helper(iN),[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(iv(61,r)),{props:[],needRuntime:n.helper(iI)}}};function iK(e,t={}){return id(e,o({},iA,t,{nodeTransforms:[iU,...ij,...t.nodeTransforms||[]],directiveTransforms:o({},iW,t.directiveTransforms||{}),transformHoist:null}))}function iY(e,t={}){return nl(e,o({},iA,t))}export{L as BASE_TRANSITION,ip 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,iW as DOMDirectiveTransforms,iR as DOMErrorCodes,ix as DOMErrorMessages,ij 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,nN 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,iy as TRANSITION,iO as TRANSITION_GROUP,ti as TS_NODE_TYPES,el as UNREF,im as V_MODEL_CHECKBOX,ig as V_MODEL_DYNAMIC,iE as V_MODEL_RADIO,iS as V_MODEL_SELECT,i_ as V_MODEL_TEXT,iN as V_ON_WITH_KEYS,iT as V_ON_WITH_MODIFIERS,iI as V_SHOW,ea as WITH_CTX,G as WITH_DIRECTIVES,eh as WITH_MEMO,tI as advancePositionWithClone,ty as advancePositionWithMutation,tO as assert,id as baseCompile,nl as baseParse,n1 as buildDirectiveArgs,nz as buildProps,nJ as buildSlots,eY as checkCompatEnabled,iK 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,iv as createDOMCompilerError,nB 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,nS as createStructuralDirectiveTransform,eL as createTemplateLiteral,nE as createTransformContext,eg as createVNodeCall,ez as defaultOnError,eZ as defaultOnWarn,e2 as errorMessages,e8 as extractIdentifiers,tA as findDir,tb as findProp,tF as forAliasRE,nI as generate,g as generateCodeFrame,ih as getBaseTransformPreset,nh as getConstantType,tU as getMemoedVNodeCall,nf as getSelfName,ew as getVNodeBlockHelper,eV as getVNodeHelper,tv as hasDynamicKeyVBind,tX as hasScopeRef,ep as helperNameMap,tk as injectProp,to as isConstantNode,tl as isCoreComponent,tN as isFnExpression,tg as isFnExpressionBrowser,tT as isFnExpressionNode,te as isFunctionType,e6 as isInDestructureAssignment,e5 as isInNewExpression,nR as isLiteralWhitelisted,t_ as isMemberExpression,tE as isMemberExpressionBrowser,tm as isMemberExpressionNode,e4 as isReferencedIdentifier,th as isSimpleIdentifier,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,iF as isValidHTMLNesting,e_ as locStub,iu as noopDirectiveTransform,iY as parse,iA as parserOptions,iw as postTransformTransition,nL as processExpression,nU as processFor,nD as processIf,n3 as processSlotOutlet,eu as registerRuntimeHelpers,nQ as resolveComponentType,ik as resolveModifiers,nM as stringifyExpression,tw as toValidAssetId,nH as trackSlotScopes,nG as trackVForSlotScopes,nm as transform,n6 as transformBind,nY as transformElement,nx as transformExpression,ie as transformModel,n4 as transformOn,ib as transformStyle,ic as transformVBindShorthand,n_ 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.4
|
|
3
3
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
4
4
|
* @license MIT
|
|
5
5
|
**/
|
|
@@ -75,7 +75,7 @@ const parserOptions = {
|
|
|
75
75
|
let ns = parent ? parent.ns : rootNamespace;
|
|
76
76
|
if (parent && ns === 2) {
|
|
77
77
|
if (parent.tag === "annotation-xml") {
|
|
78
|
-
if (tag
|
|
78
|
+
if (isSVGTag(tag)) {
|
|
79
79
|
return 1;
|
|
80
80
|
}
|
|
81
81
|
if (parent.props.some(
|
|
@@ -92,10 +92,10 @@ const parserOptions = {
|
|
|
92
92
|
}
|
|
93
93
|
}
|
|
94
94
|
if (ns === 0) {
|
|
95
|
-
if (tag
|
|
95
|
+
if (isSVGTag(tag)) {
|
|
96
96
|
return 1;
|
|
97
97
|
}
|
|
98
|
-
if (tag
|
|
98
|
+
if (isMathMLTag(tag)) {
|
|
99
99
|
return 2;
|
|
100
100
|
}
|
|
101
101
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @vue/compiler-dom v3.6.0-alpha.
|
|
2
|
+
* @vue/compiler-dom v3.6.0-alpha.4
|
|
3
3
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
4
4
|
* @license MIT
|
|
5
5
|
**/
|
|
@@ -52,6 +52,9 @@ var VueCompilerDOM = (function (exports) {
|
|
|
52
52
|
return s;
|
|
53
53
|
}
|
|
54
54
|
);
|
|
55
|
+
const getModifierPropName = (name) => {
|
|
56
|
+
return `${name === "modelValue" || name === "model-value" ? "model" : name}Modifiers${name === "model" ? "$" : ""}`;
|
|
57
|
+
};
|
|
55
58
|
|
|
56
59
|
const PatchFlagNames = {
|
|
57
60
|
[1]: `TEXT`,
|
|
@@ -263,14 +266,6 @@ var VueCompilerDOM = (function (exports) {
|
|
|
263
266
|
});
|
|
264
267
|
}
|
|
265
268
|
|
|
266
|
-
const Namespaces = {
|
|
267
|
-
"HTML": 0,
|
|
268
|
-
"0": "HTML",
|
|
269
|
-
"SVG": 1,
|
|
270
|
-
"1": "SVG",
|
|
271
|
-
"MATH_ML": 2,
|
|
272
|
-
"2": "MATH_ML"
|
|
273
|
-
};
|
|
274
269
|
const NodeTypes = {
|
|
275
270
|
"ROOT": 0,
|
|
276
271
|
"0": "ROOT",
|
|
@@ -5713,7 +5708,7 @@ Use a v-bind binding combined with a v-on listener that emits update:x event ins
|
|
|
5713
5708
|
];
|
|
5714
5709
|
if (dir.modifiers.length && node.tagType === 1) {
|
|
5715
5710
|
const modifiers = dir.modifiers.map((m) => m.content).map((m) => (isSimpleIdentifier(m) ? m : JSON.stringify(m)) + `: true`).join(`, `);
|
|
5716
|
-
const modifiersKey = arg ? isStaticExp(arg) ?
|
|
5711
|
+
const modifiersKey = arg ? isStaticExp(arg) ? getModifierPropName(arg.content) : createCompoundExpression([arg, ' + "Modifiers"']) : `modelModifiers`;
|
|
5717
5712
|
props.push(
|
|
5718
5713
|
createObjectProperty(
|
|
5719
5714
|
modifiersKey,
|
|
@@ -6079,7 +6074,7 @@ Use a v-bind binding combined with a v-on listener that emits update:x event ins
|
|
|
6079
6074
|
let ns = parent ? parent.ns : rootNamespace;
|
|
6080
6075
|
if (parent && ns === 2) {
|
|
6081
6076
|
if (parent.tag === "annotation-xml") {
|
|
6082
|
-
if (tag
|
|
6077
|
+
if (isSVGTag(tag)) {
|
|
6083
6078
|
return 1;
|
|
6084
6079
|
}
|
|
6085
6080
|
if (parent.props.some(
|
|
@@ -6096,10 +6091,10 @@ Use a v-bind binding combined with a v-on listener that emits update:x event ins
|
|
|
6096
6091
|
}
|
|
6097
6092
|
}
|
|
6098
6093
|
if (ns === 0) {
|
|
6099
|
-
if (tag
|
|
6094
|
+
if (isSVGTag(tag)) {
|
|
6100
6095
|
return 1;
|
|
6101
6096
|
}
|
|
6102
|
-
if (tag
|
|
6097
|
+
if (isMathMLTag(tag)) {
|
|
6103
6098
|
return 2;
|
|
6104
6099
|
}
|
|
6105
6100
|
}
|
|
@@ -6723,7 +6718,6 @@ Use a v-bind binding combined with a v-on listener that emits update:x event ins
|
|
|
6723
6718
|
exports.NORMALIZE_CLASS = NORMALIZE_CLASS;
|
|
6724
6719
|
exports.NORMALIZE_PROPS = NORMALIZE_PROPS;
|
|
6725
6720
|
exports.NORMALIZE_STYLE = NORMALIZE_STYLE;
|
|
6726
|
-
exports.Namespaces = Namespaces;
|
|
6727
6721
|
exports.NewlineType = NewlineType;
|
|
6728
6722
|
exports.NodeTypes = NodeTypes;
|
|
6729
6723
|
exports.OPEN_BLOCK = OPEN_BLOCK;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @vue/compiler-dom v3.6.0-alpha.
|
|
2
|
+
* @vue/compiler-dom v3.6.0-alpha.4
|
|
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.
|
|
@@ -9,6 +9,6 @@ Use a v-bind binding combined with a v-on listener that emits update:x event ins
|
|
|
9
9
|
`,-1),e.hoists.length)){let e=[k,V,w,X,U].filter(e=>s.includes(e)).map(t0).join(", ");n(`const { ${e} } = _Vue
|
|
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} = `),t5(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(t0).join(", ")} } = _Vue
|
|
11
11
|
`,-1),l())),e.components.length&&(t3(e.components,"component",n),(e.directives.length||e.temps>0)&&l()),e.directives.length&&(t3(e.directives,"directive",n),e.temps>0&&l()),e.filters&&e.filters.length&&(l(),t3(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
|
-
`,0),l()),c||r("return "),e.codegenNode?t5(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 t3(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 t4(e,t){let n=e.length>3;t.push("["),n&&t.indent(),t6(e,t,n),n&&t.deindent(),t.push("]")}function t6(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)?t4(a,t):t5(a,t),o<e.length-1&&(n?(i&&r(","),s()):i&&r(", "))}}function t5(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:t5(e.codegenNode,t);break;case 2:n=e,t.push(JSON.stringify(n.content),-3,n);break;case 4:t9(e,t);break;case 5:!function(e,t){let{push:n,helper:i,pure:r}=t;r&&n(t1),n(`${i(W)}(`),t5(e.content,t),n(")")}(e,t);break;case 8:t7(e,t);break;case 3:!function(e,t){let{push:n,helper:i,pure:r}=t;r&&n(t1),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(t1),i(r(p?ev(t.inSSR,f):eC(t.inSSR,f))+"(",-2,e),t6(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(", "),t5(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(t1),n(s+"(",-2,e),t6(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("["),t7(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(": "),t5(r,t),e<o.length-1&&(n(","),s())}a&&r(),n(a?"}":" }")}(e,t);break;case 17:i=e,r=t,t4(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)?t6(s,t):s&&t5(s,t),n(") => "),(c||a)&&(n("{"),i()),o?(c&&n("return "),l(o)?t4(o,t):t5(o,t)):a&&t5(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("("),t9(n,t),e&&o(")")}else o("("),t5(n,t),o(")");s&&a(),t.indentLevel++,s||o(" "),o("? "),t5(i,t),t.indentLevel--,s&&c(),s||o(" "),o(": ");let h=19===r.type;!h&&t.indentLevel++,t5(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}] = `),t5(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:t6(e.body,t,!0,!1)}}function t9(e,t){let{content:n,isStatic:i}=e;t.push(i?JSON.stringify(n):n,-3,e)}function t7(e,t){for(let n=0;n<e.children.length;n++){let i=e.children[n];c(i)?t.push(i,-3):t5(i,t)}}let t8=n("true,false,null,this");function ne(e,t,n=!1,i=!1,r=Object.create(t.identifiers)){return e}let nt=tZ(/^(?:if|else|else-if)$/,(e,t,n)=>nn(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=nr(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=nr(t,o+e.branches.length-1,n)}}));function nn(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=ni(e,t),o={type:9,loc:tU((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&&3===o.type||o&&2===o.type&&!o.content.trim().length){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=ni(e,t);o.branches.push(r);let s=i&&i(o,r,!1);tz(r,n),s&&s(),n.currentNode=null}else n.onError(e$(30,e.loc));break}}}function ni(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 nr(e,t,n){return e.condition?eO(e.condition,ns(e,t,n),eI(n.helper(w),['""',"true"])):ns(e,t,n)}function ns(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 no=tZ("for",(e,t,n)=>{let{helper:i,removeHelper:r}=n;return na(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(nc(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(nc(t.parseResult),l,!0))}})});function na(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));nl(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 nl(e,t){e.finalized||(e.finalized=!0)}function nc({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 nh=eT("undefined",!1),nd=(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--}}},np=(e,t,n,i)=>ey(e,n,!1,!0,n.length?n[0].loc:i);function nu(e,t,n=np){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,nf(T,O,u++),nh));else if(m=e9(_,/^else(?:-if)?$/,!0)){let n,r=e;for(;r--&&!(3!==(n=i[r]).type&&nE(n)););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,nf(T,O,u++),nh):nf(T,O,u++)}else t.onError(e$(30,m.loc))}else if(y){a=!0;let e=y.forParseResult;e?(nl(e),o.push(eI(t.helper(q),[e.source,ey(nc(e),nf(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.some(e=>nE(e))&&(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 nf(e,t,n){let i=[eg("name",e),eg("fn",t)];return null!=n&&i.push(eg("key",eT(String(n),!0))),eS(i)}function nE(e){return 2!==e.type&&12!==e.type||(2===e.type?!!e.content.trim():nE(e.content))}let nm=new WeakMap,n_=(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?nS(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=ng(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=>nN(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}=nu(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===tq(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 nS(e,t,n=!1){let{tag:i}=e,r=nI(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 ng(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(nT(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)&&tq(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&&(nI(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")&&(nI(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)&&nm.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(nT(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 nT(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 nN(e,t){let n=[],i=nm.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 nI(e){return"component"===e||"Component"===e}let ny=(e,t)=>{if(ts(e)){let{children:n,loc:i}=e,{slotName:r,slotProps:s}=nO(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 nO(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}=ng(e,t,r,!1,!1);n=i,s.length&&t.onError(e$(36,s[0].loc))}return{slotName:i,slotProps:n}}let nA=(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},nb=(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)&&nC(r,"."),i.some(e=>"attr"===e.content)&&nC(r,"^")),{props:[eg(r,s)]}},nC=(e,t)=>{4===e.type?e.isStatic?e.content=t+e.content:e.content=`\`${t}\${${e.content}}\``:(e.children.unshift(`'${t}' + (`),e.children.push(")"))},nv=(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!==tq(n,t)||r.push("1"),i[e]={type:12,content:n,loc:n.loc,codegenNode:eI(t.helper(X),r)}}}}},nR=new WeakSet,nx=(e,t)=>{if(1===e.type&&e9(e,"once",!0)&&!nR.has(e)&&!t.inVOnce&&!t.inSSR)return nR.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))}},nL=(e,t,n)=>{let i,{exp:r,arg:s}=e;if(!r)return n.onError(e$(41,e.loc)),nM();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,nM();if(!a.trim()||!e3(r))return n.onError(e$(42,r.loc)),nM();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=e.modifiers.map(e=>e.content).map(e=>(ez(e)?e:JSON.stringify(e))+": true").join(", "),n=s?eK(s)?`${s.content}Modifiers`:eN([s,' + "Modifiers"']):"modelModifiers";p.push(eg(n,eT(`{ ${t} }`,!1,e.loc,2)))}return nM(p)};function nM(e=[]){return{props:e}}let nP=/[\w).+\-_$\]]/,nD=(e,t)=>{eU("COMPILER_FILTERS",t)&&(5===e.type?nk(e.content,t):1===e.type&&e.props.forEach(e=>{7===e.type&&"for"!==e.name&&e.exp&&nk(e.exp,t)}))};function nk(e,t){if(4===e.type)nV(e,t);else for(let n=0;n<e.children.length;n++){let i=e.children[n];"object"==typeof i&&(4===i.type?nV(i,t):8===i.type?nk(e,t):5===i.type&&nk(i.content,t))}}function nV(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&&nP.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 nw=new WeakSet,nX=(e,t)=>{if(1===e.type){let n=e9(e,"memo");if(!(!n||nw.has(e))&&!t.inSSR)return nw.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))}}},nU=(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 nF(e){return[[nU,nx,nt,nX,no,nD,ny,n_,nd,nv],{on:nA,bind:nb,model:nL}]}function nB(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)?tH(e,r):e,[o,l]=nF();return tQ(s,a({},r,{nodeTransforms:[...o,...t.nodeTransforms||[]],directiveTransforms:a({},l,t.directiveTransforms||{})})),t2(s,r)}let n$=()=>({props:[]}),nH=Symbol(""),nG=Symbol(""),nq=Symbol(""),nJ=Symbol(""),nj=Symbol(""),nW=Symbol(""),nK=Symbol(""),nY=Symbol(""),nQ=Symbol(""),nz=Symbol("");eu({[nH]:"vModelRadio",[nG]:"vModelCheckbox",[nq]:"vModelText",[nJ]:"vModelSelect",[nj]:"vModelDynamic",[nW]:"withModifiers",[nK]:"withKeys",[nY]:"vShow",[nQ]:"Transition",[nz]:"TransitionGroup"});let nZ={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?nQ:"TransitionGroup"===e||"transition-group"===e?nz:void 0,getNamespace(e,t,n){let i=t?t.ns:n;if(t&&2===i)if("annotation-xml"===t.tag){if("svg"===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("svg"===e)return 1;if("math"===e)return 2}return i}},n1=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:n0(t.value.content,t.loc),modifiers:[],loc:t.loc})})},n0=(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)},n2=n("passive,once,capture"),n3=n("stop,prevent,self,ctrl,shift,alt,meta,exact,middle"),n4=n("left,right"),n6=n("onkeyup,onkeydown,onkeypress"),n5=(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(n2(a))o.push(a);else{let t=c(e)?e:eK(e)?e.content:null;n4(a)?t?n6(t.toLowerCase())?r.push(a):s.push(a):(r.push(a),s.push(a)):n3(a)?s.push(a):r.push(a)}}return{keyModifiers:r,nonKeyModifiers:s,eventOptionModifiers:o}},n9=(e,t)=>eK(e)&&"onclick"===e.content.toLowerCase()?eT(t,!0):4!==e.type?eN(["(",e,`) === "onClick" ? "${t}" : (`,e,")"]):e;function n7(e){let t=e.children=e.children.filter(e=>3!==e.type&&!(2===e.type&&!e.content.trim())),n=t[0];return 1!==t.length||11===n.type||9===n.type&&n.branches.some(n7)}let n8=(e,t)=>{1===e.type&&0===e.tagType&&("script"===e.tag||"style"===e.tag)&&t.removeNode()},ie=new Set(["h1","h2","h3","h4","h5","h6"]),it=new Set([]),ii={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:it,iframe:it,option:it,textarea:it,style:it,title:it},ir={html:it,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"])},is={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"])},io={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:ie,h2:ie,h3:ie,h4:ie,h5:ie,h6:ie},ia=[n1],il={cloak:n$,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?tq(i,n)>0?i:eI(n.helperString(W),[i],r):eT("",!0))]}},model:(e,t,n)=>{let i=nL(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=nq,a=!1;if("input"===r||s){let i=e7(t,"type");if(i){if(7===i.type)o=nj;else if(i.value)switch(i.value.content){case"radio":o=nH;break;case"checkbox":o=nG;break;case"file":a=!0,n.onError(e$(59,e.loc))}}else te(t)&&(o=nj)}else"select"===r&&(o=nJ);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)=>nA(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}=n5(r,i,n,e.loc);if(a.includes("right")&&(r=n9(r,"onContextmenu")),a.includes("middle")&&(r=n9(r,"onMouseup")),a.length&&(s=eI(n.helper(nW),[s,JSON.stringify(a)])),o.length&&(!eK(r)||n6(r.content.toLowerCase()))&&(s=eI(n.helper(nK),[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(nY)}}};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=il,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=ia,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.Namespaces={HTML:0,0:"HTML",SVG:1,1:"SVG",MATH_ML:2,2:"MATH_ML"},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=nQ,e.TRANSITION_GROUP=nz,e.TS_NODE_TYPES=eJ,e.UNREF=el,e.V_MODEL_CHECKBOX=nG,e.V_MODEL_DYNAMIC=nj,e.V_MODEL_RADIO=nH,e.V_MODEL_SELECT=nJ,e.V_MODEL_TEXT=nq,e.V_ON_WITH_KEYS=nK,e.V_ON_WITH_MODIFIERS=nW,e.V_SHOW=nY,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=nB,e.baseParse=tH,e.buildDirectiveArgs=nN,e.buildProps=ng,e.buildSlots=nu,e.checkCompatEnabled=function(e,t,n){return eU(e,t)},e.compile=function(e,t={}){return nB(e,a({},nZ,t,{nodeTransforms:[n8,...ia,...t.nodeTransforms||[]],directiveTransforms:a({},il,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=nc,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=tZ,e.createTemplateLiteral=function(e){return{type:22,elements:e,loc:ef}},e.createTransformContext=tY,e.createVNodeCall=em,e.defaultOnError=eF,e.defaultOnWarn=eB,e.errorMessages=eH,e.extractIdentifiers=eG,e.findDir=e9,e.findProp=e7,e.forAliasRE=td,e.generate=t2,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(`
|
|
12
|
+
`,0),l()),c||r("return "),e.codegenNode?t5(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 t3(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 t4(e,t){let n=e.length>3;t.push("["),n&&t.indent(),t6(e,t,n),n&&t.deindent(),t.push("]")}function t6(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)?t4(a,t):t5(a,t),o<e.length-1&&(n?(i&&r(","),s()):i&&r(", "))}}function t5(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:t5(e.codegenNode,t);break;case 2:n=e,t.push(JSON.stringify(n.content),-3,n);break;case 4:t9(e,t);break;case 5:!function(e,t){let{push:n,helper:i,pure:r}=t;r&&n(t1),n(`${i(W)}(`),t5(e.content,t),n(")")}(e,t);break;case 8:t7(e,t);break;case 3:!function(e,t){let{push:n,helper:i,pure:r}=t;r&&n(t1),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(t1),i(r(p?ev(t.inSSR,f):eC(t.inSSR,f))+"(",-2,e),t6(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(", "),t5(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(t1),n(s+"(",-2,e),t6(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("["),t7(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(": "),t5(r,t),e<o.length-1&&(n(","),s())}a&&r(),n(a?"}":" }")}(e,t);break;case 17:i=e,r=t,t4(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)?t6(s,t):s&&t5(s,t),n(") => "),(c||a)&&(n("{"),i()),o?(c&&n("return "),l(o)?t4(o,t):t5(o,t)):a&&t5(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("("),t9(n,t),e&&o(")")}else o("("),t5(n,t),o(")");s&&a(),t.indentLevel++,s||o(" "),o("? "),t5(i,t),t.indentLevel--,s&&c(),s||o(" "),o(": ");let h=19===r.type;!h&&t.indentLevel++,t5(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}] = `),t5(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:t6(e.body,t,!0,!1)}}function t9(e,t){let{content:n,isStatic:i}=e;t.push(i?JSON.stringify(n):n,-3,e)}function t7(e,t){for(let n=0;n<e.children.length;n++){let i=e.children[n];c(i)?t.push(i,-3):t5(i,t)}}let t8=n("true,false,null,this");function ne(e,t,n=!1,i=!1,r=Object.create(t.identifiers)){return e}let nt=tZ(/^(?:if|else|else-if)$/,(e,t,n)=>nn(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=nr(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=nr(t,o+e.branches.length-1,n)}}));function nn(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=ni(e,t),o={type:9,loc:tU((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&&3===o.type||o&&2===o.type&&!o.content.trim().length){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=ni(e,t);o.branches.push(r);let s=i&&i(o,r,!1);tz(r,n),s&&s(),n.currentNode=null}else n.onError(e$(30,e.loc));break}}}function ni(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 nr(e,t,n){return e.condition?eO(e.condition,ns(e,t,n),eI(n.helper(w),['""',"true"])):ns(e,t,n)}function ns(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 no=tZ("for",(e,t,n)=>{let{helper:i,removeHelper:r}=n;return na(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(nc(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(nc(t.parseResult),l,!0))}})});function na(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));nl(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 nl(e,t){e.finalized||(e.finalized=!0)}function nc({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 nh=eT("undefined",!1),nd=(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--}}},np=(e,t,n,i)=>ey(e,n,!1,!0,n.length?n[0].loc:i);function nu(e,t,n=np){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,nf(T,O,u++),nh));else if(m=e9(_,/^else(?:-if)?$/,!0)){let n,r=e;for(;r--&&!(3!==(n=i[r]).type&&nE(n)););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,nf(T,O,u++),nh):nf(T,O,u++)}else t.onError(e$(30,m.loc))}else if(y){a=!0;let e=y.forParseResult;e?(nl(e),o.push(eI(t.helper(q),[e.source,ey(nc(e),nf(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.some(e=>nE(e))&&(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 nf(e,t,n){let i=[eg("name",e),eg("fn",t)];return null!=n&&i.push(eg("key",eT(String(n),!0))),eS(i)}function nE(e){return 2!==e.type&&12!==e.type||(2===e.type?!!e.content.trim():nE(e.content))}let nm=new WeakMap,n_=(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?nS(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=ng(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=>nN(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}=nu(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===tq(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 nS(e,t,n=!1){let{tag:i}=e,r=nI(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 ng(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(nT(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)&&tq(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&&(nI(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")&&(nI(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)&&nm.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(nT(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 nT(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 nN(e,t){let n=[],i=nm.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 nI(e){return"component"===e||"Component"===e}let ny=(e,t)=>{if(ts(e)){let{children:n,loc:i}=e,{slotName:r,slotProps:s}=nO(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 nO(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}=ng(e,t,r,!1,!1);n=i,s.length&&t.onError(e$(36,s[0].loc))}return{slotName:i,slotProps:n}}let nA=(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},nb=(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)&&nC(r,"."),i.some(e=>"attr"===e.content)&&nC(r,"^")),{props:[eg(r,s)]}},nC=(e,t)=>{4===e.type?e.isStatic?e.content=t+e.content:e.content=`\`${t}\${${e.content}}\``:(e.children.unshift(`'${t}' + (`),e.children.push(")"))},nv=(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!==tq(n,t)||r.push("1"),i[e]={type:12,content:n,loc:n.loc,codegenNode:eI(t.helper(X),r)}}}}},nR=new WeakSet,nx=(e,t)=>{if(1===e.type&&e9(e,"once",!0)&&!nR.has(e)&&!t.inVOnce&&!t.inSSR)return nR.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))}},nL=(e,t,n)=>{let i,{exp:r,arg:s}=e;if(!r)return n.onError(e$(41,e.loc)),nM();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,nM();if(!a.trim()||!e3(r))return n.onError(e$(42,r.loc)),nM();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 nM(p)};function nM(e=[]){return{props:e}}let nP=/[\w).+\-_$\]]/,nD=(e,t)=>{eU("COMPILER_FILTERS",t)&&(5===e.type?nk(e.content,t):1===e.type&&e.props.forEach(e=>{7===e.type&&"for"!==e.name&&e.exp&&nk(e.exp,t)}))};function nk(e,t){if(4===e.type)nV(e,t);else for(let n=0;n<e.children.length;n++){let i=e.children[n];"object"==typeof i&&(4===i.type?nV(i,t):8===i.type?nk(e,t):5===i.type&&nk(i.content,t))}}function nV(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&&nP.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 nw=new WeakSet,nX=(e,t)=>{if(1===e.type){let n=e9(e,"memo");if(!(!n||nw.has(e))&&!t.inSSR)return nw.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))}}},nU=(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 nF(e){return[[nU,nx,nt,nX,no,nD,ny,n_,nd,nv],{on:nA,bind:nb,model:nL}]}function nB(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)?tH(e,r):e,[o,l]=nF();return tQ(s,a({},r,{nodeTransforms:[...o,...t.nodeTransforms||[]],directiveTransforms:a({},l,t.directiveTransforms||{})})),t2(s,r)}let n$=()=>({props:[]}),nH=Symbol(""),nG=Symbol(""),nq=Symbol(""),nJ=Symbol(""),nj=Symbol(""),nW=Symbol(""),nK=Symbol(""),nY=Symbol(""),nQ=Symbol(""),nz=Symbol("");eu({[nH]:"vModelRadio",[nG]:"vModelCheckbox",[nq]:"vModelText",[nJ]:"vModelSelect",[nj]:"vModelDynamic",[nW]:"withModifiers",[nK]:"withKeys",[nY]:"vShow",[nQ]:"Transition",[nz]:"TransitionGroup"});let nZ={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?nQ:"TransitionGroup"===e||"transition-group"===e?nz: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}},n1=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:n0(t.value.content,t.loc),modifiers:[],loc:t.loc})})},n0=(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)},n2=n("passive,once,capture"),n3=n("stop,prevent,self,ctrl,shift,alt,meta,exact,middle"),n4=n("left,right"),n6=n("onkeyup,onkeydown,onkeypress"),n5=(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(n2(a))o.push(a);else{let t=c(e)?e:eK(e)?e.content:null;n4(a)?t?n6(t.toLowerCase())?r.push(a):s.push(a):(r.push(a),s.push(a)):n3(a)?s.push(a):r.push(a)}}return{keyModifiers:r,nonKeyModifiers:s,eventOptionModifiers:o}},n9=(e,t)=>eK(e)&&"onclick"===e.content.toLowerCase()?eT(t,!0):4!==e.type?eN(["(",e,`) === "onClick" ? "${t}" : (`,e,")"]):e;function n7(e){let t=e.children=e.children.filter(e=>3!==e.type&&!(2===e.type&&!e.content.trim())),n=t[0];return 1!==t.length||11===n.type||9===n.type&&n.branches.some(n7)}let n8=(e,t)=>{1===e.type&&0===e.tagType&&("script"===e.tag||"style"===e.tag)&&t.removeNode()},ie=new Set(["h1","h2","h3","h4","h5","h6"]),it=new Set([]),ii={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:it,iframe:it,option:it,textarea:it,style:it,title:it},ir={html:it,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"])},is={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"])},io={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:ie,h2:ie,h3:ie,h4:ie,h5:ie,h6:ie},ia=[n1],il={cloak:n$,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?tq(i,n)>0?i:eI(n.helperString(W),[i],r):eT("",!0))]}},model:(e,t,n)=>{let i=nL(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=nq,a=!1;if("input"===r||s){let i=e7(t,"type");if(i){if(7===i.type)o=nj;else if(i.value)switch(i.value.content){case"radio":o=nH;break;case"checkbox":o=nG;break;case"file":a=!0,n.onError(e$(59,e.loc))}}else te(t)&&(o=nj)}else"select"===r&&(o=nJ);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)=>nA(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}=n5(r,i,n,e.loc);if(a.includes("right")&&(r=n9(r,"onContextmenu")),a.includes("middle")&&(r=n9(r,"onMouseup")),a.length&&(s=eI(n.helper(nW),[s,JSON.stringify(a)])),o.length&&(!eK(r)||n6(r.content.toLowerCase()))&&(s=eI(n.helper(nK),[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(nY)}}};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=il,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=ia,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=nQ,e.TRANSITION_GROUP=nz,e.TS_NODE_TYPES=eJ,e.UNREF=el,e.V_MODEL_CHECKBOX=nG,e.V_MODEL_DYNAMIC=nj,e.V_MODEL_RADIO=nH,e.V_MODEL_SELECT=nJ,e.V_MODEL_TEXT=nq,e.V_ON_WITH_KEYS=nK,e.V_ON_WITH_MODIFIERS=nW,e.V_SHOW=nY,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=nB,e.baseParse=tH,e.buildDirectiveArgs=nN,e.buildProps=ng,e.buildSlots=nu,e.checkCompatEnabled=function(e,t,n){return eU(e,t)},e.compile=function(e,t={}){return nB(e,a({},nZ,t,{nodeTransforms:[n8,...ia,...t.nodeTransforms||[]],directiveTransforms:a({},il,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=nc,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=tZ,e.createTemplateLiteral=function(e){return{type:22,elements:e,loc:ef}},e.createTransformContext=tY,e.createVNodeCall=em,e.defaultOnError=eF,e.defaultOnWarn=eB,e.errorMessages=eH,e.extractIdentifiers=eG,e.findDir=e9,e.findProp=e7,e.forAliasRE=td,e.generate=t2,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
13
|
`)},e.getBaseTransformPreset=nF,e.getConstantType=tq,e.getMemoedVNodeCall=th,e.getSelfName=tK,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.helperNameMap=ep,e.injectProp=ta,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=t8,e.isMemberExpression=e3,e.isMemberExpressionBrowser=e3,e.isMemberExpressionNode=r,e.isReferencedIdentifier=function(e,t,n){return!1},e.isSimpleIdentifier=ez,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 ii?ii[e].has(t):t in ir?ir[t].has(e):!(e in is&&is[e].has(t)||t in io&&io[t].has(e)))},e.locStub=ef,e.noopDirectiveTransform=n$,e.parse=function(e,t={}){return tH(e,a({},nZ,t))},e.parserOptions=nZ,e.postTransformTransition=function(e,t,n=n7){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=ne,e.processFor=na,e.processIf=nn,e.processSlotOutlet=nO,e.registerRuntimeHelpers=eu,e.resolveComponentType=nS,e.resolveModifiers=n5,e.stringifyExpression=function e(t){return c(t)?t:4===t.type?t.content:t.children.map(e).join("")},e.toValidAssetId=tc,e.trackSlotScopes=nd,e.trackVForSlotScopes=(e,t)=>{let n;if(tr(e)&&e.props.some(ti)&&(n=e9(e,"for"))){let e=n.forParseResult;if(e){nl(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=tQ,e.transformBind=nb,e.transformElement=n_,e.transformExpression=(e,t)=>{if(5===e.type)e.content=ne(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=ne(e,t,"slot"===r.name)),i&&4===i.type&&!i.isStatic&&(r.arg=ne(i,t))}}}},e.transformModel=nL,e.transformOn=nA,e.transformStyle=n1,e.transformVBindShorthand=nU,e.traverseNode=tz,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.4",
|
|
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/
|
|
55
|
-
"@vue/
|
|
54
|
+
"@vue/shared": "3.6.0-alpha.4",
|
|
55
|
+
"@vue/compiler-core": "3.6.0-alpha.4"
|
|
56
56
|
}
|
|
57
57
|
}
|