@vue/compiler-dom 3.5.0-alpha.5 → 3.5.0-beta.2
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/README.md +1 -1
- package/dist/compiler-dom.cjs.js +19 -7
- package/dist/compiler-dom.cjs.prod.js +19 -7
- package/dist/compiler-dom.esm-browser.js +107 -47
- package/dist/compiler-dom.esm-browser.prod.js +7 -7
- package/dist/compiler-dom.esm-bundler.js +19 -7
- package/dist/compiler-dom.global.js +109 -46
- package/dist/compiler-dom.global.prod.js +7 -7
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
# @vue/compiler-dom
|
|
1
|
+
# @vue/compiler-dom
|
package/dist/compiler-dom.cjs.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @vue/compiler-dom v3.5.0-
|
|
2
|
+
* @vue/compiler-dom v3.5.0-beta.2
|
|
3
3
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
4
4
|
* @license MIT
|
|
5
5
|
**/
|
|
@@ -11,15 +11,27 @@ var compilerCore = require('@vue/compiler-core');
|
|
|
11
11
|
var shared = require('@vue/shared');
|
|
12
12
|
|
|
13
13
|
const V_MODEL_RADIO = Symbol(`vModelRadio` );
|
|
14
|
-
const V_MODEL_CHECKBOX = Symbol(
|
|
14
|
+
const V_MODEL_CHECKBOX = Symbol(
|
|
15
|
+
`vModelCheckbox`
|
|
16
|
+
);
|
|
15
17
|
const V_MODEL_TEXT = Symbol(`vModelText` );
|
|
16
|
-
const V_MODEL_SELECT = Symbol(
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
const
|
|
18
|
+
const V_MODEL_SELECT = Symbol(
|
|
19
|
+
`vModelSelect`
|
|
20
|
+
);
|
|
21
|
+
const V_MODEL_DYNAMIC = Symbol(
|
|
22
|
+
`vModelDynamic`
|
|
23
|
+
);
|
|
24
|
+
const V_ON_WITH_MODIFIERS = Symbol(
|
|
25
|
+
`vOnModifiersGuard`
|
|
26
|
+
);
|
|
27
|
+
const V_ON_WITH_KEYS = Symbol(
|
|
28
|
+
`vOnKeysGuard`
|
|
29
|
+
);
|
|
20
30
|
const V_SHOW = Symbol(`vShow` );
|
|
21
31
|
const TRANSITION = Symbol(`Transition` );
|
|
22
|
-
const TRANSITION_GROUP = Symbol(
|
|
32
|
+
const TRANSITION_GROUP = Symbol(
|
|
33
|
+
`TransitionGroup`
|
|
34
|
+
);
|
|
23
35
|
compilerCore.registerRuntimeHelpers({
|
|
24
36
|
[V_MODEL_RADIO]: `vModelRadio`,
|
|
25
37
|
[V_MODEL_CHECKBOX]: `vModelCheckbox`,
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @vue/compiler-dom v3.5.0-
|
|
2
|
+
* @vue/compiler-dom v3.5.0-beta.2
|
|
3
3
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
4
4
|
* @license MIT
|
|
5
5
|
**/
|
|
@@ -11,15 +11,27 @@ var compilerCore = require('@vue/compiler-core');
|
|
|
11
11
|
var shared = require('@vue/shared');
|
|
12
12
|
|
|
13
13
|
const V_MODEL_RADIO = Symbol(``);
|
|
14
|
-
const V_MODEL_CHECKBOX = Symbol(
|
|
14
|
+
const V_MODEL_CHECKBOX = Symbol(
|
|
15
|
+
``
|
|
16
|
+
);
|
|
15
17
|
const V_MODEL_TEXT = Symbol(``);
|
|
16
|
-
const V_MODEL_SELECT = Symbol(
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
const
|
|
18
|
+
const V_MODEL_SELECT = Symbol(
|
|
19
|
+
``
|
|
20
|
+
);
|
|
21
|
+
const V_MODEL_DYNAMIC = Symbol(
|
|
22
|
+
``
|
|
23
|
+
);
|
|
24
|
+
const V_ON_WITH_MODIFIERS = Symbol(
|
|
25
|
+
``
|
|
26
|
+
);
|
|
27
|
+
const V_ON_WITH_KEYS = Symbol(
|
|
28
|
+
``
|
|
29
|
+
);
|
|
20
30
|
const V_SHOW = Symbol(``);
|
|
21
31
|
const TRANSITION = Symbol(``);
|
|
22
|
-
const TRANSITION_GROUP = Symbol(
|
|
32
|
+
const TRANSITION_GROUP = Symbol(
|
|
33
|
+
``
|
|
34
|
+
);
|
|
23
35
|
compilerCore.registerRuntimeHelpers({
|
|
24
36
|
[V_MODEL_RADIO]: `vModelRadio`,
|
|
25
37
|
[V_MODEL_CHECKBOX]: `vModelCheckbox`,
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @vue/compiler-dom v3.5.0-
|
|
2
|
+
* @vue/compiler-dom v3.5.0-beta.2
|
|
3
3
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
4
4
|
* @license MIT
|
|
5
5
|
**/
|
|
@@ -36,16 +36,20 @@ const cacheStringFunction = (fn) => {
|
|
|
36
36
|
};
|
|
37
37
|
};
|
|
38
38
|
const camelizeRE = /-(\w)/g;
|
|
39
|
-
const camelize = cacheStringFunction(
|
|
40
|
-
|
|
41
|
-
|
|
39
|
+
const camelize = cacheStringFunction(
|
|
40
|
+
(str) => {
|
|
41
|
+
return str.replace(camelizeRE, (_, c) => c ? c.toUpperCase() : "");
|
|
42
|
+
}
|
|
43
|
+
);
|
|
42
44
|
const capitalize = cacheStringFunction((str) => {
|
|
43
45
|
return str.charAt(0).toUpperCase() + str.slice(1);
|
|
44
46
|
});
|
|
45
|
-
const toHandlerKey = cacheStringFunction(
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
47
|
+
const toHandlerKey = cacheStringFunction(
|
|
48
|
+
(str) => {
|
|
49
|
+
const s = str ? `on${capitalize(str)}` : ``;
|
|
50
|
+
return s;
|
|
51
|
+
}
|
|
52
|
+
);
|
|
49
53
|
|
|
50
54
|
const PatchFlagNames = {
|
|
51
55
|
[1]: `TEXT`,
|
|
@@ -139,36 +143,70 @@ const FRAGMENT = Symbol(`Fragment` );
|
|
|
139
143
|
const TELEPORT = Symbol(`Teleport` );
|
|
140
144
|
const SUSPENSE = Symbol(`Suspense` );
|
|
141
145
|
const KEEP_ALIVE = Symbol(`KeepAlive` );
|
|
142
|
-
const BASE_TRANSITION = Symbol(
|
|
146
|
+
const BASE_TRANSITION = Symbol(
|
|
147
|
+
`BaseTransition`
|
|
148
|
+
);
|
|
143
149
|
const OPEN_BLOCK = Symbol(`openBlock` );
|
|
144
150
|
const CREATE_BLOCK = Symbol(`createBlock` );
|
|
145
|
-
const CREATE_ELEMENT_BLOCK = Symbol(
|
|
151
|
+
const CREATE_ELEMENT_BLOCK = Symbol(
|
|
152
|
+
`createElementBlock`
|
|
153
|
+
);
|
|
146
154
|
const CREATE_VNODE = Symbol(`createVNode` );
|
|
147
|
-
const CREATE_ELEMENT_VNODE = Symbol(
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
const
|
|
151
|
-
|
|
155
|
+
const CREATE_ELEMENT_VNODE = Symbol(
|
|
156
|
+
`createElementVNode`
|
|
157
|
+
);
|
|
158
|
+
const CREATE_COMMENT = Symbol(
|
|
159
|
+
`createCommentVNode`
|
|
160
|
+
);
|
|
161
|
+
const CREATE_TEXT = Symbol(
|
|
162
|
+
`createTextVNode`
|
|
163
|
+
);
|
|
164
|
+
const CREATE_STATIC = Symbol(
|
|
165
|
+
`createStaticVNode`
|
|
166
|
+
);
|
|
167
|
+
const RESOLVE_COMPONENT = Symbol(
|
|
168
|
+
`resolveComponent`
|
|
169
|
+
);
|
|
152
170
|
const RESOLVE_DYNAMIC_COMPONENT = Symbol(
|
|
153
171
|
`resolveDynamicComponent`
|
|
154
172
|
);
|
|
155
|
-
const RESOLVE_DIRECTIVE = Symbol(
|
|
156
|
-
|
|
157
|
-
|
|
173
|
+
const RESOLVE_DIRECTIVE = Symbol(
|
|
174
|
+
`resolveDirective`
|
|
175
|
+
);
|
|
176
|
+
const RESOLVE_FILTER = Symbol(
|
|
177
|
+
`resolveFilter`
|
|
178
|
+
);
|
|
179
|
+
const WITH_DIRECTIVES = Symbol(
|
|
180
|
+
`withDirectives`
|
|
181
|
+
);
|
|
158
182
|
const RENDER_LIST = Symbol(`renderList` );
|
|
159
183
|
const RENDER_SLOT = Symbol(`renderSlot` );
|
|
160
184
|
const CREATE_SLOTS = Symbol(`createSlots` );
|
|
161
|
-
const TO_DISPLAY_STRING = Symbol(
|
|
185
|
+
const TO_DISPLAY_STRING = Symbol(
|
|
186
|
+
`toDisplayString`
|
|
187
|
+
);
|
|
162
188
|
const MERGE_PROPS = Symbol(`mergeProps` );
|
|
163
|
-
const NORMALIZE_CLASS = Symbol(
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
const
|
|
189
|
+
const NORMALIZE_CLASS = Symbol(
|
|
190
|
+
`normalizeClass`
|
|
191
|
+
);
|
|
192
|
+
const NORMALIZE_STYLE = Symbol(
|
|
193
|
+
`normalizeStyle`
|
|
194
|
+
);
|
|
195
|
+
const NORMALIZE_PROPS = Symbol(
|
|
196
|
+
`normalizeProps`
|
|
197
|
+
);
|
|
198
|
+
const GUARD_REACTIVE_PROPS = Symbol(
|
|
199
|
+
`guardReactiveProps`
|
|
200
|
+
);
|
|
167
201
|
const TO_HANDLERS = Symbol(`toHandlers` );
|
|
168
202
|
const CAMELIZE = Symbol(`camelize` );
|
|
169
203
|
const CAPITALIZE = Symbol(`capitalize` );
|
|
170
|
-
const TO_HANDLER_KEY = Symbol(
|
|
171
|
-
|
|
204
|
+
const TO_HANDLER_KEY = Symbol(
|
|
205
|
+
`toHandlerKey`
|
|
206
|
+
);
|
|
207
|
+
const SET_BLOCK_TRACKING = Symbol(
|
|
208
|
+
`setBlockTracking`
|
|
209
|
+
);
|
|
172
210
|
const PUSH_SCOPE_ID = Symbol(`pushScopeId` );
|
|
173
211
|
const POP_SCOPE_ID = Symbol(`popScopeId` );
|
|
174
212
|
const WITH_CTX = Symbol(`withCtx` );
|
|
@@ -1619,14 +1657,20 @@ function walkBlockDeclarations(block, onIdent) {
|
|
|
1619
1657
|
} else if (stmt.type === "FunctionDeclaration" || stmt.type === "ClassDeclaration") {
|
|
1620
1658
|
if (stmt.declare || !stmt.id) continue;
|
|
1621
1659
|
onIdent(stmt.id);
|
|
1622
|
-
} else if (stmt
|
|
1623
|
-
|
|
1624
|
-
|
|
1625
|
-
|
|
1626
|
-
|
|
1627
|
-
|
|
1628
|
-
|
|
1629
|
-
|
|
1660
|
+
} else if (isForStatement(stmt)) {
|
|
1661
|
+
walkForStatement(stmt, true, onIdent);
|
|
1662
|
+
}
|
|
1663
|
+
}
|
|
1664
|
+
}
|
|
1665
|
+
function isForStatement(stmt) {
|
|
1666
|
+
return stmt.type === "ForOfStatement" || stmt.type === "ForInStatement" || stmt.type === "ForStatement";
|
|
1667
|
+
}
|
|
1668
|
+
function walkForStatement(stmt, isVar, onIdent) {
|
|
1669
|
+
const variable = stmt.type === "ForStatement" ? stmt.init : stmt.left;
|
|
1670
|
+
if (variable && variable.type === "VariableDeclaration" && (variable.kind === "var" ? isVar : !isVar)) {
|
|
1671
|
+
for (const decl of variable.declarations) {
|
|
1672
|
+
for (const id of extractIdentifiers(decl.id)) {
|
|
1673
|
+
onIdent(id);
|
|
1630
1674
|
}
|
|
1631
1675
|
}
|
|
1632
1676
|
}
|
|
@@ -1713,8 +1757,9 @@ const isSimpleIdentifier = (name) => !nonIdentifierRE.test(name);
|
|
|
1713
1757
|
const validFirstIdentCharRE = /[A-Za-z_$\xA0-\uFFFF]/;
|
|
1714
1758
|
const validIdentCharRE = /[\.\?\w$\xA0-\uFFFF]/;
|
|
1715
1759
|
const whitespaceRE = /\s+[.[]\s*|\s*[.[]\s+/g;
|
|
1716
|
-
const
|
|
1717
|
-
|
|
1760
|
+
const getExpSource = (exp) => exp.type === 4 ? exp.content : exp.loc.source;
|
|
1761
|
+
const isMemberExpressionBrowser = (exp) => {
|
|
1762
|
+
const path = getExpSource(exp).trim().replace(whitespaceRE, (s) => s.trim());
|
|
1718
1763
|
let state = 0 /* inMemberExp */;
|
|
1719
1764
|
let stateStack = [];
|
|
1720
1765
|
let currentOpenBracketCount = 0;
|
|
@@ -1777,6 +1822,10 @@ const isMemberExpressionBrowser = (path) => {
|
|
|
1777
1822
|
};
|
|
1778
1823
|
const isMemberExpressionNode = NOOP ;
|
|
1779
1824
|
const isMemberExpression = isMemberExpressionBrowser ;
|
|
1825
|
+
const fnExpRE = /^\s*(async\s*)?(\([^)]*?\)|[\w$_]+)\s*(:[^=]+)?=>|^\s*(async\s+)?function(?:\s+[\w$]+)?\s*\(/;
|
|
1826
|
+
const isFnExpressionBrowser = (exp) => fnExpRE.test(getExpSource(exp));
|
|
1827
|
+
const isFnExpressionNode = NOOP ;
|
|
1828
|
+
const isFnExpression = isFnExpressionBrowser ;
|
|
1780
1829
|
function advancePositionWithClone(pos, source, numberOfCharacters = source.length) {
|
|
1781
1830
|
return advancePositionWithMutation(
|
|
1782
1831
|
{
|
|
@@ -4860,7 +4909,7 @@ function resolveComponentType(node, context, ssr = false) {
|
|
|
4860
4909
|
} else {
|
|
4861
4910
|
exp = isProp.exp;
|
|
4862
4911
|
if (!exp) {
|
|
4863
|
-
exp = createSimpleExpression(`is`, false, isProp.loc);
|
|
4912
|
+
exp = createSimpleExpression(`is`, false, isProp.arg.loc);
|
|
4864
4913
|
}
|
|
4865
4914
|
}
|
|
4866
4915
|
if (exp) {
|
|
@@ -5364,7 +5413,6 @@ function processSlotOutlet(node, context) {
|
|
|
5364
5413
|
};
|
|
5365
5414
|
}
|
|
5366
5415
|
|
|
5367
|
-
const fnExpRE = /^\s*(async\s*)?(\([^)]*?\)|[\w$_]+)\s*(:[^=]+)?=>|^\s*(async\s+)?function(?:\s+[\w$]+)?\s*\(/;
|
|
5368
5416
|
const transformOn$1 = (dir, node, context, augmentor) => {
|
|
5369
5417
|
const { loc, modifiers, arg } = dir;
|
|
5370
5418
|
if (!dir.exp && !modifiers.length) {
|
|
@@ -5408,8 +5456,8 @@ const transformOn$1 = (dir, node, context, augmentor) => {
|
|
|
5408
5456
|
}
|
|
5409
5457
|
let shouldCache = context.cacheHandlers && !exp && !context.inVOnce;
|
|
5410
5458
|
if (exp) {
|
|
5411
|
-
const isMemberExp = isMemberExpression(exp
|
|
5412
|
-
const isInlineStatement = !(isMemberExp ||
|
|
5459
|
+
const isMemberExp = isMemberExpression(exp);
|
|
5460
|
+
const isInlineStatement = !(isMemberExp || isFnExpression(exp));
|
|
5413
5461
|
const hasMultipleStatements = exp.content.includes(`;`);
|
|
5414
5462
|
{
|
|
5415
5463
|
validateBrowserExpression(
|
|
@@ -5557,7 +5605,7 @@ const transformModel$1 = (dir, node, context) => {
|
|
|
5557
5605
|
return createTransformProps();
|
|
5558
5606
|
}
|
|
5559
5607
|
const maybeRef = false;
|
|
5560
|
-
if (!expString.trim() || !isMemberExpression(
|
|
5608
|
+
if (!expString.trim() || !isMemberExpression(exp) && !maybeRef) {
|
|
5561
5609
|
context.onError(
|
|
5562
5610
|
createCompilerError(42, exp.loc)
|
|
5563
5611
|
);
|
|
@@ -5846,15 +5894,27 @@ const BindingTypes = {
|
|
|
5846
5894
|
const noopDirectiveTransform = () => ({ props: [] });
|
|
5847
5895
|
|
|
5848
5896
|
const V_MODEL_RADIO = Symbol(`vModelRadio` );
|
|
5849
|
-
const V_MODEL_CHECKBOX = Symbol(
|
|
5897
|
+
const V_MODEL_CHECKBOX = Symbol(
|
|
5898
|
+
`vModelCheckbox`
|
|
5899
|
+
);
|
|
5850
5900
|
const V_MODEL_TEXT = Symbol(`vModelText` );
|
|
5851
|
-
const V_MODEL_SELECT = Symbol(
|
|
5852
|
-
|
|
5853
|
-
|
|
5854
|
-
const
|
|
5901
|
+
const V_MODEL_SELECT = Symbol(
|
|
5902
|
+
`vModelSelect`
|
|
5903
|
+
);
|
|
5904
|
+
const V_MODEL_DYNAMIC = Symbol(
|
|
5905
|
+
`vModelDynamic`
|
|
5906
|
+
);
|
|
5907
|
+
const V_ON_WITH_MODIFIERS = Symbol(
|
|
5908
|
+
`vOnModifiersGuard`
|
|
5909
|
+
);
|
|
5910
|
+
const V_ON_WITH_KEYS = Symbol(
|
|
5911
|
+
`vOnKeysGuard`
|
|
5912
|
+
);
|
|
5855
5913
|
const V_SHOW = Symbol(`vShow` );
|
|
5856
5914
|
const TRANSITION = Symbol(`Transition` );
|
|
5857
|
-
const TRANSITION_GROUP = Symbol(
|
|
5915
|
+
const TRANSITION_GROUP = Symbol(
|
|
5916
|
+
`TransitionGroup`
|
|
5917
|
+
);
|
|
5858
5918
|
registerRuntimeHelpers({
|
|
5859
5919
|
[V_MODEL_RADIO]: `vModelRadio`,
|
|
5860
5920
|
[V_MODEL_CHECKBOX]: `vModelCheckbox`,
|
|
@@ -6512,4 +6572,4 @@ function parse(template, options = {}) {
|
|
|
6512
6572
|
return baseParse(template, extend({}, parserOptions, options));
|
|
6513
6573
|
}
|
|
6514
6574
|
|
|
6515
|
-
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, Namespaces, 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, errorMessages, extractIdentifiers, findDir, findProp, forAliasRE, generate, generateCodeFrame, getBaseTransformPreset, getConstantType, getMemoedVNodeCall, getVNodeBlockHelper, getVNodeHelper, hasDynamicKeyVBind, hasScopeRef, helperNameMap, injectProp, isCoreComponent, isFunctionType, isInDestructureAssignment, isInNewExpression, isMemberExpression, isMemberExpressionBrowser, isMemberExpressionNode, isReferencedIdentifier, isSimpleIdentifier, isSlotOutlet, isStaticArgOf, isStaticExp, isStaticProperty, isStaticPropertyKey, isTemplateNode, isText$1 as isText, isVSlot, locStub, noopDirectiveTransform, parse, parserOptions, processExpression, processFor, processIf, processSlotOutlet, registerRuntimeHelpers, resolveComponentType, stringifyExpression, toValidAssetId, trackSlotScopes, trackVForSlotScopes, transform, transformBind, transformElement, transformExpression, transformModel$1 as transformModel, transformOn$1 as transformOn, transformStyle, traverseNode, unwrapTSNode, walkBlockDeclarations, walkFunctionParams, walkIdentifiers, warnDeprecation };
|
|
6575
|
+
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, Namespaces, 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, errorMessages, extractIdentifiers, findDir, findProp, forAliasRE, generate, generateCodeFrame, getBaseTransformPreset, getConstantType, getMemoedVNodeCall, getVNodeBlockHelper, getVNodeHelper, hasDynamicKeyVBind, hasScopeRef, helperNameMap, injectProp, isCoreComponent, isFnExpression, isFnExpressionBrowser, isFnExpressionNode, isFunctionType, isInDestructureAssignment, isInNewExpression, isMemberExpression, isMemberExpressionBrowser, isMemberExpressionNode, isReferencedIdentifier, isSimpleIdentifier, isSlotOutlet, isStaticArgOf, isStaticExp, isStaticProperty, isStaticPropertyKey, isTemplateNode, isText$1 as isText, isVSlot, locStub, noopDirectiveTransform, parse, parserOptions, processExpression, processFor, processIf, processSlotOutlet, registerRuntimeHelpers, resolveComponentType, stringifyExpression, toValidAssetId, trackSlotScopes, trackVForSlotScopes, transform, transformBind, transformElement, transformExpression, transformModel$1 as transformModel, transformOn$1 as transformOn, transformStyle, traverseNode, unwrapTSNode, walkBlockDeclarations, walkFunctionParams, walkIdentifiers, warnDeprecation };
|