xmlui 0.9.30 → 0.9.32
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/lib/{apiInterceptorWorker-D8UVXhKa.mjs → apiInterceptorWorker-Dw62WlhP.mjs} +1 -1
- package/dist/lib/{index-BF7GNHsi.mjs → index-DgDH41u4.mjs} +5541 -3001
- package/dist/lib/index.css +2 -2
- package/dist/lib/language-server-web-worker.d.ts +0 -633
- package/dist/lib/language-server-web-worker.mjs +1 -1
- package/dist/lib/language-server.d.ts +0 -633
- package/dist/lib/language-server.mjs +1 -1
- package/dist/lib/lint-B5OU130e.mjs +659 -0
- package/dist/lib/{metadata-utils-CCIMqe69.mjs → metadata-utils-DyYovNew.mjs} +42 -15
- package/dist/lib/{server-common-B0FCNpIT.mjs → server-common-1aXZ-B7H.mjs} +3 -28
- package/dist/lib/{transform-DC0Gy6qw.mjs → transform-B-MhfH46.mjs} +78 -78
- package/dist/lib/xmlui-parser.d.ts +0 -633
- package/dist/lib/xmlui-parser.mjs +47 -538
- package/dist/lib/xmlui.d.ts +221 -634
- package/dist/lib/xmlui.mjs +12 -2
- package/dist/metadata/xmlui-metadata.mjs +3 -3
- package/dist/metadata/xmlui-metadata.umd.js +3 -3
- package/dist/scripts/package.json +3 -2
- package/dist/scripts/src/components/CodeBlock/CodeBlock.js +1 -0
- package/dist/scripts/src/components/NestedApp/NestedAppNative.js +35 -1
- package/dist/scripts/src/components/NestedApp/utils.js +544 -0
- package/dist/scripts/src/components/Pages/Pages.js +2 -2
- package/dist/scripts/src/components/Select/SelectNative.js +2 -2
- package/dist/scripts/src/parsers/xmlui-parser/xmlui-serializer.js +582 -0
- package/dist/scripts/src/parsers/xmlui-parser/xmlui-tree.js +2 -0
- package/dist/standalone/xmlui-standalone.es.d.ts +0 -2790
- package/dist/standalone/xmlui-standalone.umd.js +4088 -921
- package/package.json +3 -2
- package/dist/lib/lint-CYAUfk0_.mjs +0 -168
- package/dist/scripts/src/components/Markdown/highlight-code.js +0 -160
package/dist/lib/xmlui.d.ts
CHANGED
|
@@ -12,6 +12,7 @@ import { RefAttributes } from 'react';
|
|
|
12
12
|
import { RefObject } from 'react';
|
|
13
13
|
import { Renderable } from 'react-hot-toast';
|
|
14
14
|
import { Root } from 'react-dom/client';
|
|
15
|
+
import { SetupWorker } from 'msw/browser';
|
|
15
16
|
import { To } from 'react-router-dom';
|
|
16
17
|
import { Toast } from 'react-hot-toast';
|
|
17
18
|
import { ToastOptions } from 'react-hot-toast';
|
|
@@ -64,6 +65,13 @@ export declare type ApiInterceptorDefinition = {
|
|
|
64
65
|
auth?: AuthDefinition;
|
|
65
66
|
};
|
|
66
67
|
|
|
68
|
+
export declare function ApiInterceptorProvider({ interceptor, children, apiWorker, useHashBasedRouting, }: {
|
|
69
|
+
interceptor?: ApiInterceptorDefinition;
|
|
70
|
+
children: ReactNode;
|
|
71
|
+
apiWorker?: SetupWorker;
|
|
72
|
+
useHashBasedRouting?: boolean;
|
|
73
|
+
}): JSX_2.Element;
|
|
74
|
+
|
|
67
75
|
/**
|
|
68
76
|
* This interface defines the properties and services of an app context that the application components can use when
|
|
69
77
|
* implementing their behavior.
|
|
@@ -812,6 +820,13 @@ declare interface DestructureBase extends ExpressionBase {
|
|
|
812
820
|
oDestr?: ObjectDestructure[];
|
|
813
821
|
}
|
|
814
822
|
|
|
823
|
+
declare enum DiagnosticCategory {
|
|
824
|
+
Warning = 0,
|
|
825
|
+
Error = 1,
|
|
826
|
+
Suggestion = 2,
|
|
827
|
+
Message = 3
|
|
828
|
+
}
|
|
829
|
+
|
|
815
830
|
declare type DO_WHILE_STATEMENT = typeof T_DO_WHILE_STATEMENT;
|
|
816
831
|
|
|
817
832
|
declare interface DoWhileStatement extends ScripNodeBase {
|
|
@@ -851,6 +866,34 @@ declare type EntrypointCompilation = CompilationUnit & {
|
|
|
851
866
|
definition: ComponentDef;
|
|
852
867
|
};
|
|
853
868
|
|
|
869
|
+
declare enum ErrCodes {
|
|
870
|
+
onlyOneElem = "U002",
|
|
871
|
+
expTagOpen = "U003",
|
|
872
|
+
expTagIdent = "U004",
|
|
873
|
+
expCloseStart = "U005",
|
|
874
|
+
expEndOrClose = "U006",
|
|
875
|
+
tagNameMismatch = "U007",
|
|
876
|
+
expEnd = "U008",
|
|
877
|
+
expAttrIdent = "U009",
|
|
878
|
+
expEq = "U010",
|
|
879
|
+
expAttrValue = "U011",
|
|
880
|
+
duplAttr = "U012",
|
|
881
|
+
uppercaseAttr = "U013",
|
|
882
|
+
invalidChar = "W001",
|
|
883
|
+
untermStr = "W002",
|
|
884
|
+
untermComment = "W007",
|
|
885
|
+
untermCData = "W008",
|
|
886
|
+
untermScript = "W009"
|
|
887
|
+
}
|
|
888
|
+
|
|
889
|
+
declare interface Error_2 {
|
|
890
|
+
readonly category: DiagnosticCategory;
|
|
891
|
+
readonly code: ErrCodes;
|
|
892
|
+
readonly message: string;
|
|
893
|
+
readonly pos: number;
|
|
894
|
+
readonly end: number;
|
|
895
|
+
}
|
|
896
|
+
|
|
854
897
|
/**
|
|
855
898
|
* This React component serves as an error boundary; it catches any errors within
|
|
856
899
|
* the nested components
|
|
@@ -886,6 +929,16 @@ export declare class ErrorBoundary extends default_2.Component<Props, State> {
|
|
|
886
929
|
render(): string | number | boolean | Iterable<default_2.ReactNode> | JSX_2.Element;
|
|
887
930
|
}
|
|
888
931
|
|
|
932
|
+
declare interface ErrorWithLineColInfo extends Error_2 {
|
|
933
|
+
line: number;
|
|
934
|
+
col: number;
|
|
935
|
+
}
|
|
936
|
+
|
|
937
|
+
/** returns a component definition containing the errors.
|
|
938
|
+
* It is a component and a compound component definition at the same time,
|
|
939
|
+
* so that it can be used to render the errors for a compound component as well*/
|
|
940
|
+
export declare function errReportComponent(errors: ErrorWithLineColInfo[], fileName: number | string, compoundCompName: string | undefined): any;
|
|
941
|
+
|
|
889
942
|
declare type Expression = UnaryExpression | BinaryExpression | SequenceExpression | ConditionalExpression | FunctionInvocationExpression | MemberAccessExpression | CalculatedMemberAccessExpression | Identifier | TemplateLiteralExpression | Literal | ArrayLiteral | ObjectLiteral | SpreadExpression | AssignmentExpression | NoArgExpression | ArrowExpression | PrefixOpExpression | PostfixOpExpression | ReactiveVarDeclaration | VarDeclaration | Destructure | ObjectDestructure | ArrayDestructure | SwitchCase;
|
|
890
943
|
|
|
891
944
|
declare type EXPRESSION_STATEMENT = typeof T_EXPRESSION_STATEMENT;
|
|
@@ -1425,6 +1478,16 @@ declare interface SequenceExpression extends ExpressionBase {
|
|
|
1425
1478
|
|
|
1426
1479
|
declare const sizeValues: string[];
|
|
1427
1480
|
|
|
1481
|
+
export declare const SolidThemeDefinition: ThemeDefinition;
|
|
1482
|
+
|
|
1483
|
+
export declare const Spinner: ForwardRefExoticComponent<SpinnerProps & RefAttributes<HTMLDivElement>>;
|
|
1484
|
+
|
|
1485
|
+
declare interface SpinnerProps {
|
|
1486
|
+
delay?: number;
|
|
1487
|
+
fullScreen?: boolean;
|
|
1488
|
+
style?: CSSProperties;
|
|
1489
|
+
}
|
|
1490
|
+
|
|
1428
1491
|
export declare const Splitter: ({ initialPrimarySize, minPrimarySize, maxPrimarySize, orientation, children, style, swapped, floating, splitterTemplate, resize, }: SplitterProps) => JSX_2.Element;
|
|
1429
1492
|
|
|
1430
1493
|
declare type SplitterProps = {
|
|
@@ -1672,6 +1735,24 @@ declare interface TemplateLiteralExpression extends ExpressionBase {
|
|
|
1672
1735
|
segments: (Literal | Expression)[];
|
|
1673
1736
|
}
|
|
1674
1737
|
|
|
1738
|
+
declare const Text_2: default_2.ForwardRefExoticComponent<Omit<TextProps, "ref"> & default_2.RefAttributes<unknown>>;
|
|
1739
|
+
export { Text_2 as Text }
|
|
1740
|
+
|
|
1741
|
+
declare type TextProps = {
|
|
1742
|
+
uid?: string;
|
|
1743
|
+
children?: default_2.ReactNode;
|
|
1744
|
+
variant?: TextVariant;
|
|
1745
|
+
maxLines?: number;
|
|
1746
|
+
preserveLinebreaks?: boolean;
|
|
1747
|
+
ellipses?: boolean;
|
|
1748
|
+
style?: CSSProperties;
|
|
1749
|
+
[variantSpecificProps: string]: any;
|
|
1750
|
+
};
|
|
1751
|
+
|
|
1752
|
+
declare type TextVariant = (typeof TextVariantKeys)[number];
|
|
1753
|
+
|
|
1754
|
+
declare const TextVariantKeys: readonly ["abbr", "cite", "code", "codefence", "deleted", "inserted", "keyboard", "marked", "sample", "sub", "sup", "var", "strong", "em", "mono", "title", "subtitle", "small", "caption", "placeholder", "paragraph", "subheading", "tableheading", "secondary"];
|
|
1755
|
+
|
|
1675
1756
|
/**
|
|
1676
1757
|
* This type represents a theme definition object. Theme files can use this object's JSON-serialized
|
|
1677
1758
|
* format to define an app theme; an app can have multiple theme files.
|
|
@@ -1759,7 +1840,7 @@ declare type ThemeScope = {
|
|
|
1759
1840
|
/**
|
|
1760
1841
|
* This type describes one the available theme tones.
|
|
1761
1842
|
*/
|
|
1762
|
-
declare type ThemeTone = (typeof ThemeToneKeys)[number];
|
|
1843
|
+
export declare type ThemeTone = (typeof ThemeToneKeys)[number];
|
|
1763
1844
|
|
|
1764
1845
|
/**
|
|
1765
1846
|
* Each theme can have a light or a dark tone.
|
|
@@ -1927,6 +2008,8 @@ declare type UnaryOpSymbols = "+" | "-" | "~" | "!" | "typeof" | "delete";
|
|
|
1927
2008
|
*/
|
|
1928
2009
|
declare type UpdateStateFn = (componentState: any, options?: any) => void;
|
|
1929
2010
|
|
|
2011
|
+
export declare function useApiWorkerContext(): SetupWorker;
|
|
2012
|
+
|
|
1930
2013
|
export declare function useColors(...colorNames: (string | ColorDef)[]): Record<string, string>;
|
|
1931
2014
|
|
|
1932
2015
|
export declare function useDevTools(): {
|
|
@@ -2031,6 +2114,143 @@ declare interface WhileStatement extends ScripNodeBase {
|
|
|
2031
2114
|
body: Statement;
|
|
2032
2115
|
}
|
|
2033
2116
|
|
|
2117
|
+
declare interface XmlUiAttribute extends XmlUiNodeBase {
|
|
2118
|
+
type: "XmlUiAttribute";
|
|
2119
|
+
name: string;
|
|
2120
|
+
namespace?: string;
|
|
2121
|
+
value?: string;
|
|
2122
|
+
preserveQuotes?: boolean;
|
|
2123
|
+
preserveSpaces?: boolean;
|
|
2124
|
+
}
|
|
2125
|
+
|
|
2126
|
+
declare interface XmlUiComment extends XmlUiNodeBase {
|
|
2127
|
+
type: "XmlUiComment";
|
|
2128
|
+
text?: string;
|
|
2129
|
+
}
|
|
2130
|
+
|
|
2131
|
+
declare interface XmlUiElement extends XmlUiNodeBase {
|
|
2132
|
+
type: "XmlUiElement";
|
|
2133
|
+
name: string;
|
|
2134
|
+
namespace?: string;
|
|
2135
|
+
attributes?: XmlUiAttribute[];
|
|
2136
|
+
text?: string;
|
|
2137
|
+
preserveSpaces?: boolean;
|
|
2138
|
+
childNodes?: XmlUiNode[];
|
|
2139
|
+
}
|
|
2140
|
+
|
|
2141
|
+
declare type XmlUiFragment = XmlUiNode | XmlUiNode[];
|
|
2142
|
+
|
|
2143
|
+
/**
|
|
2144
|
+
* Helper class for XMLUI serialization and parsing
|
|
2145
|
+
*/
|
|
2146
|
+
export declare class XmlUiHelper {
|
|
2147
|
+
/**
|
|
2148
|
+
* Serialize the specified XML fragment into a string
|
|
2149
|
+
* @param xml XML fragment to serialize
|
|
2150
|
+
* @param options Formatting options to use
|
|
2151
|
+
*/
|
|
2152
|
+
serialize(xml: XmlUiFragment, options?: XmluiSerializationOptions): string;
|
|
2153
|
+
/**
|
|
2154
|
+
* Transform the specified component definition into an XMLUI node
|
|
2155
|
+
* @param def Component definitions
|
|
2156
|
+
* @param options Transformation options
|
|
2157
|
+
*/
|
|
2158
|
+
transformComponentDefinition(def: ComponentDef | CompoundComponentDef, options?: XmlUiTransformOptions): XmlUiFragment;
|
|
2159
|
+
/**
|
|
2160
|
+
* Transform the specified object into an XMLUI nodes
|
|
2161
|
+
* @param def Object definition
|
|
2162
|
+
* @param options Transformation options
|
|
2163
|
+
*/
|
|
2164
|
+
transformObject(def: Record<string, any>, options?: XmlUiTransformOptions): XmlUiNode[] | null;
|
|
2165
|
+
/**
|
|
2166
|
+
* Transforms the specified simple component definition into an XMLUI node
|
|
2167
|
+
* @param def Component definition
|
|
2168
|
+
* @param options Transformation options
|
|
2169
|
+
*/
|
|
2170
|
+
private transformSimpleComponentDefinition;
|
|
2171
|
+
/**
|
|
2172
|
+
* Transforms the specified simple component definition into an Xml node
|
|
2173
|
+
* @param def Compound component definition
|
|
2174
|
+
* @param options Transformation options
|
|
2175
|
+
*/
|
|
2176
|
+
private transformCompoundComponentDefinition;
|
|
2177
|
+
/**
|
|
2178
|
+
* Transforms a value into an XMLUI element
|
|
2179
|
+
* @param nodeName Name of the value node
|
|
2180
|
+
* @param name Optional (property) name
|
|
2181
|
+
* @param value Value to transform
|
|
2182
|
+
* @param options Transformation options
|
|
2183
|
+
*/
|
|
2184
|
+
private transformValue;
|
|
2185
|
+
/**
|
|
2186
|
+
* Transforms the specified simple component definition into an Xml node
|
|
2187
|
+
* @param name Element name
|
|
2188
|
+
* @param value Value to transform
|
|
2189
|
+
* @param options Transformation options
|
|
2190
|
+
*/
|
|
2191
|
+
private transformObjectValue;
|
|
2192
|
+
/**
|
|
2193
|
+
* Add a property to the specified XMLUI element
|
|
2194
|
+
* @param element XML element
|
|
2195
|
+
* @param name Element name
|
|
2196
|
+
* @param value Element value
|
|
2197
|
+
* @param options Transformation options
|
|
2198
|
+
*/
|
|
2199
|
+
private addProperty;
|
|
2200
|
+
private addComponentElement;
|
|
2201
|
+
/**
|
|
2202
|
+
* Adds a list to the specified XML element
|
|
2203
|
+
* @param element XML element
|
|
2204
|
+
* @param name Name of the list (child in `element`)
|
|
2205
|
+
* @param prefix Prefix to use for the list
|
|
2206
|
+
* @param list List with items
|
|
2207
|
+
* @param options Transformation options
|
|
2208
|
+
*/
|
|
2209
|
+
private addList;
|
|
2210
|
+
/**
|
|
2211
|
+
* Adds a component list to the specified element
|
|
2212
|
+
* @param element XML element
|
|
2213
|
+
* @param name Name to use for the wrapper element
|
|
2214
|
+
* @param list List with component items
|
|
2215
|
+
* @private
|
|
2216
|
+
*/
|
|
2217
|
+
private addComponentList;
|
|
2218
|
+
}
|
|
2219
|
+
|
|
2220
|
+
export declare function xmlUiMarkupToComponent(source: string, fileId?: string | number): {
|
|
2221
|
+
component: null | ComponentDef | CompoundComponentDef;
|
|
2222
|
+
errors: ErrorWithLineColInfo[];
|
|
2223
|
+
erroneousCompoundComponentName?: string;
|
|
2224
|
+
};
|
|
2225
|
+
|
|
2226
|
+
export declare type XmlUiNode = XmlUiComment | XmlUiAttribute | XmlUiElement;
|
|
2227
|
+
|
|
2228
|
+
declare interface XmlUiNodeBase {
|
|
2229
|
+
type: XmlUiNode["type"];
|
|
2230
|
+
}
|
|
2231
|
+
|
|
2232
|
+
declare type XmluiSerializationOptions = {
|
|
2233
|
+
prettify?: boolean;
|
|
2234
|
+
indents?: number;
|
|
2235
|
+
lineLength?: number;
|
|
2236
|
+
useQuotes?: boolean;
|
|
2237
|
+
useSpaceBeforeClose?: boolean;
|
|
2238
|
+
breakClosingTag?: boolean;
|
|
2239
|
+
};
|
|
2240
|
+
|
|
2241
|
+
export declare const XmlUiThemeDefinition: ThemeDefinition;
|
|
2242
|
+
|
|
2243
|
+
/**
|
|
2244
|
+
* Options to use with markup transformation from memory format to XMLUI structure
|
|
2245
|
+
*/
|
|
2246
|
+
declare type XmlUiTransformOptions = {
|
|
2247
|
+
preserveLineBreaks?: boolean;
|
|
2248
|
+
preserveSpecialChars?: boolean;
|
|
2249
|
+
removeQuotes?: boolean;
|
|
2250
|
+
extractProps?: boolean;
|
|
2251
|
+
preferTextToValue?: boolean;
|
|
2252
|
+
};
|
|
2253
|
+
|
|
2034
2254
|
export { }
|
|
2035
2255
|
|
|
2036
2256
|
|
|
@@ -2053,636 +2273,3 @@ declare global {
|
|
|
2053
2273
|
TEST_ENV: StandaloneAppDescription | undefined;
|
|
2054
2274
|
}
|
|
2055
2275
|
}
|
|
2056
|
-
|
|
2057
|
-
|
|
2058
|
-
declare namespace m {
|
|
2059
|
-
function from(e: any, t: any, n: any, r: any, s: any, o: any): any;
|
|
2060
|
-
}
|
|
2061
|
-
|
|
2062
|
-
|
|
2063
|
-
declare namespace ae {
|
|
2064
|
-
let Continue: number;
|
|
2065
|
-
let SwitchingProtocols: number;
|
|
2066
|
-
let Processing: number;
|
|
2067
|
-
let EarlyHints: number;
|
|
2068
|
-
let Ok: number;
|
|
2069
|
-
let Created: number;
|
|
2070
|
-
let Accepted: number;
|
|
2071
|
-
let NonAuthoritativeInformation: number;
|
|
2072
|
-
let NoContent: number;
|
|
2073
|
-
let ResetContent: number;
|
|
2074
|
-
let PartialContent: number;
|
|
2075
|
-
let MultiStatus: number;
|
|
2076
|
-
let AlreadyReported: number;
|
|
2077
|
-
let ImUsed: number;
|
|
2078
|
-
let MultipleChoices: number;
|
|
2079
|
-
let MovedPermanently: number;
|
|
2080
|
-
let Found: number;
|
|
2081
|
-
let SeeOther: number;
|
|
2082
|
-
let NotModified: number;
|
|
2083
|
-
let UseProxy: number;
|
|
2084
|
-
let Unused: number;
|
|
2085
|
-
let TemporaryRedirect: number;
|
|
2086
|
-
let PermanentRedirect: number;
|
|
2087
|
-
let BadRequest: number;
|
|
2088
|
-
let Unauthorized: number;
|
|
2089
|
-
let PaymentRequired: number;
|
|
2090
|
-
let Forbidden: number;
|
|
2091
|
-
let NotFound: number;
|
|
2092
|
-
let MethodNotAllowed: number;
|
|
2093
|
-
let NotAcceptable: number;
|
|
2094
|
-
let ProxyAuthenticationRequired: number;
|
|
2095
|
-
let RequestTimeout: number;
|
|
2096
|
-
let Conflict: number;
|
|
2097
|
-
let Gone: number;
|
|
2098
|
-
let LengthRequired: number;
|
|
2099
|
-
let PreconditionFailed: number;
|
|
2100
|
-
let PayloadTooLarge: number;
|
|
2101
|
-
let UriTooLong: number;
|
|
2102
|
-
let UnsupportedMediaType: number;
|
|
2103
|
-
let RangeNotSatisfiable: number;
|
|
2104
|
-
let ExpectationFailed: number;
|
|
2105
|
-
let ImATeapot: number;
|
|
2106
|
-
let MisdirectedRequest: number;
|
|
2107
|
-
let UnprocessableEntity: number;
|
|
2108
|
-
let Locked: number;
|
|
2109
|
-
let FailedDependency: number;
|
|
2110
|
-
let TooEarly: number;
|
|
2111
|
-
let UpgradeRequired: number;
|
|
2112
|
-
let PreconditionRequired: number;
|
|
2113
|
-
let TooManyRequests: number;
|
|
2114
|
-
let RequestHeaderFieldsTooLarge: number;
|
|
2115
|
-
let UnavailableForLegalReasons: number;
|
|
2116
|
-
let InternalServerError: number;
|
|
2117
|
-
let NotImplemented: number;
|
|
2118
|
-
let BadGateway: number;
|
|
2119
|
-
let ServiceUnavailable: number;
|
|
2120
|
-
let GatewayTimeout: number;
|
|
2121
|
-
let HttpVersionNotSupported: number;
|
|
2122
|
-
let VariantAlsoNegotiates: number;
|
|
2123
|
-
let InsufficientStorage: number;
|
|
2124
|
-
let LoopDetected: number;
|
|
2125
|
-
let NotExtended: number;
|
|
2126
|
-
let NetworkAuthenticationRequired: number;
|
|
2127
|
-
}
|
|
2128
|
-
|
|
2129
|
-
|
|
2130
|
-
declare namespace a {
|
|
2131
|
-
namespace root {
|
|
2132
|
-
let patterns: ({
|
|
2133
|
-
include: string;
|
|
2134
|
-
begin?: undefined;
|
|
2135
|
-
beginCaptures?: undefined;
|
|
2136
|
-
end?: undefined;
|
|
2137
|
-
endCaptures?: undefined;
|
|
2138
|
-
contentName?: undefined;
|
|
2139
|
-
} | {
|
|
2140
|
-
begin: string;
|
|
2141
|
-
beginCaptures: {
|
|
2142
|
-
1: {
|
|
2143
|
-
name: string;
|
|
2144
|
-
};
|
|
2145
|
-
2: {
|
|
2146
|
-
name: string;
|
|
2147
|
-
};
|
|
2148
|
-
3: {
|
|
2149
|
-
name: string;
|
|
2150
|
-
};
|
|
2151
|
-
};
|
|
2152
|
-
end: string;
|
|
2153
|
-
endCaptures: {
|
|
2154
|
-
0: {
|
|
2155
|
-
name: string;
|
|
2156
|
-
};
|
|
2157
|
-
};
|
|
2158
|
-
contentName: string;
|
|
2159
|
-
include?: undefined;
|
|
2160
|
-
})[];
|
|
2161
|
-
}
|
|
2162
|
-
namespace methodTag {
|
|
2163
|
-
export let begin: string;
|
|
2164
|
-
export let beginCaptures: {
|
|
2165
|
-
1: {
|
|
2166
|
-
name: string;
|
|
2167
|
-
};
|
|
2168
|
-
2: {
|
|
2169
|
-
name: string;
|
|
2170
|
-
};
|
|
2171
|
-
3: {
|
|
2172
|
-
name: string;
|
|
2173
|
-
};
|
|
2174
|
-
};
|
|
2175
|
-
export let endCaptures: {
|
|
2176
|
-
0: {
|
|
2177
|
-
name: string;
|
|
2178
|
-
};
|
|
2179
|
-
};
|
|
2180
|
-
export let applyEndPatternLast: string;
|
|
2181
|
-
let patterns_1: ({
|
|
2182
|
-
include: string;
|
|
2183
|
-
begin?: undefined;
|
|
2184
|
-
beginCaptures?: undefined;
|
|
2185
|
-
endCaptures?: undefined;
|
|
2186
|
-
contentName?: undefined;
|
|
2187
|
-
patterns?: undefined;
|
|
2188
|
-
end?: undefined;
|
|
2189
|
-
} | {
|
|
2190
|
-
begin: string;
|
|
2191
|
-
beginCaptures: {
|
|
2192
|
-
0: {
|
|
2193
|
-
name: string;
|
|
2194
|
-
};
|
|
2195
|
-
};
|
|
2196
|
-
endCaptures: {
|
|
2197
|
-
1: {
|
|
2198
|
-
name: string;
|
|
2199
|
-
};
|
|
2200
|
-
2: {
|
|
2201
|
-
name: string;
|
|
2202
|
-
};
|
|
2203
|
-
3: {
|
|
2204
|
-
name: string;
|
|
2205
|
-
};
|
|
2206
|
-
};
|
|
2207
|
-
contentName: string;
|
|
2208
|
-
patterns: {
|
|
2209
|
-
include: string;
|
|
2210
|
-
}[];
|
|
2211
|
-
end: string;
|
|
2212
|
-
include?: undefined;
|
|
2213
|
-
})[];
|
|
2214
|
-
export { patterns_1 as patterns };
|
|
2215
|
-
export let end: string;
|
|
2216
|
-
}
|
|
2217
|
-
namespace eventTag {
|
|
2218
|
-
let begin_1: string;
|
|
2219
|
-
export { begin_1 as begin };
|
|
2220
|
-
let beginCaptures_1: {
|
|
2221
|
-
1: {
|
|
2222
|
-
name: string;
|
|
2223
|
-
};
|
|
2224
|
-
2: {
|
|
2225
|
-
name: string;
|
|
2226
|
-
};
|
|
2227
|
-
3: {
|
|
2228
|
-
name: string;
|
|
2229
|
-
};
|
|
2230
|
-
};
|
|
2231
|
-
export { beginCaptures_1 as beginCaptures };
|
|
2232
|
-
let endCaptures_1: {
|
|
2233
|
-
0: {
|
|
2234
|
-
name: string;
|
|
2235
|
-
};
|
|
2236
|
-
};
|
|
2237
|
-
export { endCaptures_1 as endCaptures };
|
|
2238
|
-
let applyEndPatternLast_1: string;
|
|
2239
|
-
export { applyEndPatternLast_1 as applyEndPatternLast };
|
|
2240
|
-
let patterns_2: ({
|
|
2241
|
-
include: string;
|
|
2242
|
-
begin?: undefined;
|
|
2243
|
-
beginCaptures?: undefined;
|
|
2244
|
-
endCaptures?: undefined;
|
|
2245
|
-
patterns?: undefined;
|
|
2246
|
-
end?: undefined;
|
|
2247
|
-
} | {
|
|
2248
|
-
begin: string;
|
|
2249
|
-
beginCaptures: {
|
|
2250
|
-
0: {
|
|
2251
|
-
name: string;
|
|
2252
|
-
};
|
|
2253
|
-
};
|
|
2254
|
-
endCaptures: {
|
|
2255
|
-
1: {
|
|
2256
|
-
name: string;
|
|
2257
|
-
};
|
|
2258
|
-
2: {
|
|
2259
|
-
name: string;
|
|
2260
|
-
};
|
|
2261
|
-
3: {
|
|
2262
|
-
name: string;
|
|
2263
|
-
};
|
|
2264
|
-
};
|
|
2265
|
-
patterns: {
|
|
2266
|
-
include: string;
|
|
2267
|
-
}[];
|
|
2268
|
-
end: string;
|
|
2269
|
-
include?: undefined;
|
|
2270
|
-
})[];
|
|
2271
|
-
export { patterns_2 as patterns };
|
|
2272
|
-
let end_1: string;
|
|
2273
|
-
export { end_1 as end };
|
|
2274
|
-
}
|
|
2275
|
-
namespace fieldTag {
|
|
2276
|
-
let begin_2: string;
|
|
2277
|
-
export { begin_2 as begin };
|
|
2278
|
-
let beginCaptures_2: {
|
|
2279
|
-
1: {
|
|
2280
|
-
name: string;
|
|
2281
|
-
};
|
|
2282
|
-
2: {
|
|
2283
|
-
name: string;
|
|
2284
|
-
};
|
|
2285
|
-
3: {
|
|
2286
|
-
name: string;
|
|
2287
|
-
};
|
|
2288
|
-
};
|
|
2289
|
-
export { beginCaptures_2 as beginCaptures };
|
|
2290
|
-
let endCaptures_2: {
|
|
2291
|
-
0: {
|
|
2292
|
-
name: string;
|
|
2293
|
-
};
|
|
2294
|
-
};
|
|
2295
|
-
export { endCaptures_2 as endCaptures };
|
|
2296
|
-
let applyEndPatternLast_2: string;
|
|
2297
|
-
export { applyEndPatternLast_2 as applyEndPatternLast };
|
|
2298
|
-
let patterns_3: ({
|
|
2299
|
-
include: string;
|
|
2300
|
-
begin?: undefined;
|
|
2301
|
-
beginCaptures?: undefined;
|
|
2302
|
-
endCaptures?: undefined;
|
|
2303
|
-
patterns?: undefined;
|
|
2304
|
-
end?: undefined;
|
|
2305
|
-
} | {
|
|
2306
|
-
begin: string;
|
|
2307
|
-
beginCaptures: {
|
|
2308
|
-
0: {
|
|
2309
|
-
name: string;
|
|
2310
|
-
};
|
|
2311
|
-
};
|
|
2312
|
-
endCaptures: {
|
|
2313
|
-
1: {
|
|
2314
|
-
name: string;
|
|
2315
|
-
};
|
|
2316
|
-
2: {
|
|
2317
|
-
name: string;
|
|
2318
|
-
};
|
|
2319
|
-
3: {
|
|
2320
|
-
name: string;
|
|
2321
|
-
};
|
|
2322
|
-
};
|
|
2323
|
-
patterns: {
|
|
2324
|
-
include: string;
|
|
2325
|
-
}[];
|
|
2326
|
-
end: string;
|
|
2327
|
-
include?: undefined;
|
|
2328
|
-
})[];
|
|
2329
|
-
export { patterns_3 as patterns };
|
|
2330
|
-
let end_2: string;
|
|
2331
|
-
export { end_2 as end };
|
|
2332
|
-
}
|
|
2333
|
-
namespace itemTag {
|
|
2334
|
-
let begin_3: string;
|
|
2335
|
-
export { begin_3 as begin };
|
|
2336
|
-
let beginCaptures_3: {
|
|
2337
|
-
1: {
|
|
2338
|
-
name: string;
|
|
2339
|
-
};
|
|
2340
|
-
2: {
|
|
2341
|
-
name: string;
|
|
2342
|
-
};
|
|
2343
|
-
3: {
|
|
2344
|
-
name: string;
|
|
2345
|
-
};
|
|
2346
|
-
};
|
|
2347
|
-
export { beginCaptures_3 as beginCaptures };
|
|
2348
|
-
let endCaptures_3: {
|
|
2349
|
-
0: {
|
|
2350
|
-
name: string;
|
|
2351
|
-
};
|
|
2352
|
-
};
|
|
2353
|
-
export { endCaptures_3 as endCaptures };
|
|
2354
|
-
let applyEndPatternLast_3: string;
|
|
2355
|
-
export { applyEndPatternLast_3 as applyEndPatternLast };
|
|
2356
|
-
let patterns_4: ({
|
|
2357
|
-
include: string;
|
|
2358
|
-
begin?: undefined;
|
|
2359
|
-
beginCaptures?: undefined;
|
|
2360
|
-
endCaptures?: undefined;
|
|
2361
|
-
patterns?: undefined;
|
|
2362
|
-
end?: undefined;
|
|
2363
|
-
} | {
|
|
2364
|
-
begin: string;
|
|
2365
|
-
beginCaptures: {
|
|
2366
|
-
0: {
|
|
2367
|
-
name: string;
|
|
2368
|
-
};
|
|
2369
|
-
};
|
|
2370
|
-
endCaptures: {
|
|
2371
|
-
1: {
|
|
2372
|
-
name: string;
|
|
2373
|
-
};
|
|
2374
|
-
2: {
|
|
2375
|
-
name: string;
|
|
2376
|
-
};
|
|
2377
|
-
3: {
|
|
2378
|
-
name: string;
|
|
2379
|
-
};
|
|
2380
|
-
};
|
|
2381
|
-
patterns: {
|
|
2382
|
-
include: string;
|
|
2383
|
-
}[];
|
|
2384
|
-
end: string;
|
|
2385
|
-
include?: undefined;
|
|
2386
|
-
})[];
|
|
2387
|
-
export { patterns_4 as patterns };
|
|
2388
|
-
let end_3: string;
|
|
2389
|
-
export { end_3 as end };
|
|
2390
|
-
}
|
|
2391
|
-
namespace bindingExpr {
|
|
2392
|
-
export let contentName: string;
|
|
2393
|
-
let begin_4: string;
|
|
2394
|
-
export { begin_4 as begin };
|
|
2395
|
-
let end_4: string;
|
|
2396
|
-
export { end_4 as end };
|
|
2397
|
-
let beginCaptures_4: {
|
|
2398
|
-
0: {
|
|
2399
|
-
name: string;
|
|
2400
|
-
};
|
|
2401
|
-
};
|
|
2402
|
-
export { beginCaptures_4 as beginCaptures };
|
|
2403
|
-
let endCaptures_4: {
|
|
2404
|
-
0: {
|
|
2405
|
-
name: string;
|
|
2406
|
-
};
|
|
2407
|
-
};
|
|
2408
|
-
export { endCaptures_4 as endCaptures };
|
|
2409
|
-
let patterns_5: {
|
|
2410
|
-
include: string;
|
|
2411
|
-
}[];
|
|
2412
|
-
export { patterns_5 as patterns };
|
|
2413
|
-
}
|
|
2414
|
-
namespace helperTag {
|
|
2415
|
-
let patterns_6: {
|
|
2416
|
-
include: string;
|
|
2417
|
-
}[];
|
|
2418
|
-
export { patterns_6 as patterns };
|
|
2419
|
-
}
|
|
2420
|
-
namespace valueAttributeScriptInside {
|
|
2421
|
-
let patterns_7: ({
|
|
2422
|
-
captures: {
|
|
2423
|
-
1: {
|
|
2424
|
-
name: string;
|
|
2425
|
-
};
|
|
2426
|
-
2: {
|
|
2427
|
-
name: string;
|
|
2428
|
-
};
|
|
2429
|
-
};
|
|
2430
|
-
match: string;
|
|
2431
|
-
include?: undefined;
|
|
2432
|
-
} | {
|
|
2433
|
-
include: string;
|
|
2434
|
-
captures?: undefined;
|
|
2435
|
-
match?: undefined;
|
|
2436
|
-
})[];
|
|
2437
|
-
export { patterns_7 as patterns };
|
|
2438
|
-
}
|
|
2439
|
-
namespace scriptTag {
|
|
2440
|
-
let begin_5: string;
|
|
2441
|
-
export { begin_5 as begin };
|
|
2442
|
-
let end_5: string;
|
|
2443
|
-
export { end_5 as end };
|
|
2444
|
-
let contentName_1: string;
|
|
2445
|
-
export { contentName_1 as contentName };
|
|
2446
|
-
let beginCaptures_5: {
|
|
2447
|
-
1: {
|
|
2448
|
-
name: string;
|
|
2449
|
-
};
|
|
2450
|
-
2: {
|
|
2451
|
-
name: string;
|
|
2452
|
-
};
|
|
2453
|
-
3: {
|
|
2454
|
-
name: string;
|
|
2455
|
-
};
|
|
2456
|
-
4: {
|
|
2457
|
-
name: string;
|
|
2458
|
-
};
|
|
2459
|
-
};
|
|
2460
|
-
export { beginCaptures_5 as beginCaptures };
|
|
2461
|
-
let endCaptures_5: {
|
|
2462
|
-
1: {
|
|
2463
|
-
name: string;
|
|
2464
|
-
};
|
|
2465
|
-
2: {
|
|
2466
|
-
name: string;
|
|
2467
|
-
};
|
|
2468
|
-
3: {
|
|
2469
|
-
name: string;
|
|
2470
|
-
};
|
|
2471
|
-
4: {
|
|
2472
|
-
name: string;
|
|
2473
|
-
};
|
|
2474
|
-
};
|
|
2475
|
-
export { endCaptures_5 as endCaptures };
|
|
2476
|
-
let patterns_8: {
|
|
2477
|
-
include: string;
|
|
2478
|
-
}[];
|
|
2479
|
-
export { patterns_8 as patterns };
|
|
2480
|
-
}
|
|
2481
|
-
namespace textWithBindingExpr {
|
|
2482
|
-
let patterns_9: {
|
|
2483
|
-
include: string;
|
|
2484
|
-
}[];
|
|
2485
|
-
export { patterns_9 as patterns };
|
|
2486
|
-
}
|
|
2487
|
-
namespace propOrVarTag {
|
|
2488
|
-
let begin_6: string;
|
|
2489
|
-
export { begin_6 as begin };
|
|
2490
|
-
let beginCaptures_6: {
|
|
2491
|
-
1: {
|
|
2492
|
-
name: string;
|
|
2493
|
-
};
|
|
2494
|
-
2: {
|
|
2495
|
-
name: string;
|
|
2496
|
-
};
|
|
2497
|
-
3: {
|
|
2498
|
-
name: string;
|
|
2499
|
-
};
|
|
2500
|
-
};
|
|
2501
|
-
export { beginCaptures_6 as beginCaptures };
|
|
2502
|
-
let end_6: string;
|
|
2503
|
-
export { end_6 as end };
|
|
2504
|
-
let endCaptures_6: {
|
|
2505
|
-
1: {
|
|
2506
|
-
name: string;
|
|
2507
|
-
};
|
|
2508
|
-
};
|
|
2509
|
-
export { endCaptures_6 as endCaptures };
|
|
2510
|
-
let patterns_10: {
|
|
2511
|
-
include: string;
|
|
2512
|
-
}[];
|
|
2513
|
-
export { patterns_10 as patterns };
|
|
2514
|
-
}
|
|
2515
|
-
namespace componentTag {
|
|
2516
|
-
let begin_7: string;
|
|
2517
|
-
export { begin_7 as begin };
|
|
2518
|
-
let beginCaptures_7: {
|
|
2519
|
-
1: {
|
|
2520
|
-
name: string;
|
|
2521
|
-
};
|
|
2522
|
-
2: {
|
|
2523
|
-
name: string;
|
|
2524
|
-
};
|
|
2525
|
-
3: {
|
|
2526
|
-
name: string;
|
|
2527
|
-
};
|
|
2528
|
-
};
|
|
2529
|
-
export { beginCaptures_7 as beginCaptures };
|
|
2530
|
-
let end_7: string;
|
|
2531
|
-
export { end_7 as end };
|
|
2532
|
-
let endCaptures_7: {
|
|
2533
|
-
1: {
|
|
2534
|
-
name: string;
|
|
2535
|
-
};
|
|
2536
|
-
};
|
|
2537
|
-
export { endCaptures_7 as endCaptures };
|
|
2538
|
-
let patterns_11: {
|
|
2539
|
-
include: string;
|
|
2540
|
-
}[];
|
|
2541
|
-
export { patterns_11 as patterns };
|
|
2542
|
-
}
|
|
2543
|
-
namespace quotedStringJsInside {
|
|
2544
|
-
let begin_8: string;
|
|
2545
|
-
export { begin_8 as begin };
|
|
2546
|
-
let beginCaptures_8: {
|
|
2547
|
-
0: {
|
|
2548
|
-
name: string;
|
|
2549
|
-
};
|
|
2550
|
-
};
|
|
2551
|
-
export { beginCaptures_8 as beginCaptures };
|
|
2552
|
-
let end_8: string;
|
|
2553
|
-
export { end_8 as end };
|
|
2554
|
-
let endCaptures_8: {
|
|
2555
|
-
0: {
|
|
2556
|
-
name: string;
|
|
2557
|
-
};
|
|
2558
|
-
};
|
|
2559
|
-
export { endCaptures_8 as endCaptures };
|
|
2560
|
-
let contentName_2: string;
|
|
2561
|
-
export { contentName_2 as contentName };
|
|
2562
|
-
let patterns_12: {
|
|
2563
|
-
include: string;
|
|
2564
|
-
}[];
|
|
2565
|
-
export { patterns_12 as patterns };
|
|
2566
|
-
}
|
|
2567
|
-
namespace entity {
|
|
2568
|
-
let captures: {
|
|
2569
|
-
1: {
|
|
2570
|
-
name: string;
|
|
2571
|
-
};
|
|
2572
|
-
2: {
|
|
2573
|
-
name: string;
|
|
2574
|
-
};
|
|
2575
|
-
3: {
|
|
2576
|
-
name: string;
|
|
2577
|
-
};
|
|
2578
|
-
};
|
|
2579
|
-
let match: string;
|
|
2580
|
-
}
|
|
2581
|
-
namespace eventHandler {
|
|
2582
|
-
let patterns_13: ({
|
|
2583
|
-
captures: {
|
|
2584
|
-
1: {
|
|
2585
|
-
name: string;
|
|
2586
|
-
};
|
|
2587
|
-
2: {
|
|
2588
|
-
name: string;
|
|
2589
|
-
};
|
|
2590
|
-
};
|
|
2591
|
-
match: string;
|
|
2592
|
-
include?: undefined;
|
|
2593
|
-
} | {
|
|
2594
|
-
include: string;
|
|
2595
|
-
captures?: undefined;
|
|
2596
|
-
match?: undefined;
|
|
2597
|
-
})[];
|
|
2598
|
-
export { patterns_13 as patterns };
|
|
2599
|
-
}
|
|
2600
|
-
namespace attribute {
|
|
2601
|
-
let patterns_14: ({
|
|
2602
|
-
begin: string;
|
|
2603
|
-
end: string;
|
|
2604
|
-
beginCaptures: {
|
|
2605
|
-
1: {
|
|
2606
|
-
name: string;
|
|
2607
|
-
};
|
|
2608
|
-
2: {
|
|
2609
|
-
name: string;
|
|
2610
|
-
};
|
|
2611
|
-
3: {
|
|
2612
|
-
name: string;
|
|
2613
|
-
};
|
|
2614
|
-
4: {
|
|
2615
|
-
name: string;
|
|
2616
|
-
};
|
|
2617
|
-
};
|
|
2618
|
-
endCaptures: {
|
|
2619
|
-
0: {
|
|
2620
|
-
name: string;
|
|
2621
|
-
};
|
|
2622
|
-
};
|
|
2623
|
-
contentName: string;
|
|
2624
|
-
patterns: {
|
|
2625
|
-
include: string;
|
|
2626
|
-
}[];
|
|
2627
|
-
match?: undefined;
|
|
2628
|
-
captures?: undefined;
|
|
2629
|
-
name?: undefined;
|
|
2630
|
-
} | {
|
|
2631
|
-
match: string;
|
|
2632
|
-
captures: {
|
|
2633
|
-
1: {
|
|
2634
|
-
name: string;
|
|
2635
|
-
};
|
|
2636
|
-
2: {
|
|
2637
|
-
name: string;
|
|
2638
|
-
};
|
|
2639
|
-
3: {
|
|
2640
|
-
name: string;
|
|
2641
|
-
};
|
|
2642
|
-
4: {
|
|
2643
|
-
name: string;
|
|
2644
|
-
};
|
|
2645
|
-
};
|
|
2646
|
-
begin?: undefined;
|
|
2647
|
-
end?: undefined;
|
|
2648
|
-
beginCaptures?: undefined;
|
|
2649
|
-
endCaptures?: undefined;
|
|
2650
|
-
contentName?: undefined;
|
|
2651
|
-
patterns?: undefined;
|
|
2652
|
-
name?: undefined;
|
|
2653
|
-
} | {
|
|
2654
|
-
match: string;
|
|
2655
|
-
name: string;
|
|
2656
|
-
captures: {
|
|
2657
|
-
1: {
|
|
2658
|
-
name: string;
|
|
2659
|
-
};
|
|
2660
|
-
2: {
|
|
2661
|
-
name: string;
|
|
2662
|
-
};
|
|
2663
|
-
"3"?: undefined;
|
|
2664
|
-
"4"?: undefined;
|
|
2665
|
-
};
|
|
2666
|
-
begin?: undefined;
|
|
2667
|
-
end?: undefined;
|
|
2668
|
-
beginCaptures?: undefined;
|
|
2669
|
-
endCaptures?: undefined;
|
|
2670
|
-
contentName?: undefined;
|
|
2671
|
-
patterns?: undefined;
|
|
2672
|
-
})[];
|
|
2673
|
-
export { patterns_14 as patterns };
|
|
2674
|
-
}
|
|
2675
|
-
namespace comments {
|
|
2676
|
-
let patterns_15: {
|
|
2677
|
-
begin: string;
|
|
2678
|
-
captures: {
|
|
2679
|
-
0: {
|
|
2680
|
-
name: string;
|
|
2681
|
-
};
|
|
2682
|
-
};
|
|
2683
|
-
end: string;
|
|
2684
|
-
name: string;
|
|
2685
|
-
}[];
|
|
2686
|
-
export { patterns_15 as patterns };
|
|
2687
|
-
}
|
|
2688
|
-
}
|