Skip to content

Commit 2e30438

Browse files
committed
Update js libs
1 parent 7d46919 commit 2e30438

File tree

11 files changed

+9473
-697
lines changed

11 files changed

+9473
-697
lines changed

MyApp/wwwroot/lib/mjs/servicestack-vue.min.mjs

Lines changed: 3 additions & 3 deletions
Large diffs are not rendered by default.

MyApp/wwwroot/lib/mjs/servicestack-vue.mjs

Lines changed: 699 additions & 694 deletions
Large diffs are not rendered by default.

MyApp/wwwroot/lib/typings/@servicestack/client/index.d.ts

Lines changed: 824 additions & 0 deletions
Large diffs are not rendered by default.

MyApp/wwwroot/lib/typings/@servicestack/vue/index.d.ts

Lines changed: 2440 additions & 0 deletions
Large diffs are not rendered by default.

MyApp/wwwroot/lib/typings/@vue/compiler-core.d.ts

Lines changed: 1099 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
import { ParserOptions, NodeTransform, SourceLocation, CompilerError, DirectiveTransform, RootNode, CompilerOptions, CodegenResult } from '@vue/compiler-core';
2+
export * from '@vue/compiler-core';
3+
4+
export declare const parserOptions: ParserOptions;
5+
6+
export declare const V_MODEL_RADIO: unique symbol;
7+
export declare const V_MODEL_CHECKBOX: unique symbol;
8+
export declare const V_MODEL_TEXT: unique symbol;
9+
export declare const V_MODEL_SELECT: unique symbol;
10+
export declare const V_MODEL_DYNAMIC: unique symbol;
11+
export declare const V_ON_WITH_MODIFIERS: unique symbol;
12+
export declare const V_ON_WITH_KEYS: unique symbol;
13+
export declare const V_SHOW: unique symbol;
14+
export declare const TRANSITION: unique symbol;
15+
export declare const TRANSITION_GROUP: unique symbol;
16+
17+
export declare const transformStyle: NodeTransform;
18+
19+
interface DOMCompilerError extends CompilerError {
20+
code: DOMErrorCodes;
21+
}
22+
export declare function createDOMCompilerError(code: DOMErrorCodes, loc?: SourceLocation): DOMCompilerError;
23+
export declare enum DOMErrorCodes {
24+
X_V_HTML_NO_EXPRESSION = 53,
25+
X_V_HTML_WITH_CHILDREN = 54,
26+
X_V_TEXT_NO_EXPRESSION = 55,
27+
X_V_TEXT_WITH_CHILDREN = 56,
28+
X_V_MODEL_ON_INVALID_ELEMENT = 57,
29+
X_V_MODEL_ARG_ON_ELEMENT = 58,
30+
X_V_MODEL_ON_FILE_INPUT_ELEMENT = 59,
31+
X_V_MODEL_UNNECESSARY_VALUE = 60,
32+
X_V_SHOW_NO_EXPRESSION = 61,
33+
X_TRANSITION_INVALID_CHILDREN = 62,
34+
X_IGNORED_SIDE_EFFECT_TAG = 63,
35+
__EXTEND_POINT__ = 64
36+
}
37+
export declare const DOMErrorMessages: {
38+
[code: number]: string;
39+
};
40+
41+
export declare const DOMNodeTransforms: NodeTransform[];
42+
export declare const DOMDirectiveTransforms: Record<string, DirectiveTransform>;
43+
export declare function compile(src: string | RootNode, options?: CompilerOptions): CodegenResult;
44+
export declare function parse(template: string, options?: ParserOptions): RootNode;
45+

0 commit comments

Comments
 (0)