defuss 2.0.7 → 2.0.8
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/dom-B1dLisH1.mjs +2076 -0
- package/dist/dom-BAzK3Vx0.cjs +2139 -0
- package/dist/dom-BODEuMW4.mjs +2033 -0
- package/dist/dom-BQCqcLJ_.mjs +2053 -0
- package/dist/dom-BUqSncLm.mjs +2033 -0
- package/dist/dom-B_M0CfLs.mjs +2050 -0
- package/dist/dom-BbgJsup1.cjs +2094 -0
- package/dist/dom-Bdh1oHkL.cjs +2134 -0
- package/dist/dom-Bkn4aKgS.cjs +2112 -0
- package/dist/dom-BwZ6opl4.cjs +2132 -0
- package/dist/dom-C0uO7s3X.mjs +2073 -0
- package/dist/dom-CA2M2r6M.cjs +2138 -0
- package/dist/dom-CEjSlC-i.cjs +2109 -0
- package/dist/dom-CKoP42sX.mjs +2073 -0
- package/dist/dom-CZ_THi-B.cjs +2094 -0
- package/dist/dom-CfkqBJ1D.cjs +2134 -0
- package/dist/dom-Cpvpcy1m.mjs +2078 -0
- package/dist/dom-DIImES-I.mjs +2076 -0
- package/dist/dom-DQ-4wDZ_.mjs +2069 -0
- package/dist/dom-DREcMGES.cjs +2136 -0
- package/dist/dom-DoyVaQky.mjs +2070 -0
- package/dist/dom-H4DPWQ4G.cjs +2137 -0
- package/dist/dom-KRcHcrS2.mjs +2075 -0
- package/dist/dom-Ndm2FOzd.mjs +2070 -0
- package/dist/dom-eP3TSA_V.cjs +2132 -0
- package/dist/dom-gYw7ZafB.cjs +2130 -0
- package/dist/index-6ueP8K6K.d.ts +1449 -0
- package/dist/index-B2A5HvPZ.d.ts +1449 -0
- package/dist/index-B3DwvT_m.d.ts +1449 -0
- package/dist/index-BCeAZiaJ.d.ts +1441 -0
- package/dist/index-BEckAOnS.d.ts +1443 -0
- package/dist/index-BIKeyAG3.d.ts +1441 -0
- package/dist/index-BahUCdlr.d.ts +1449 -0
- package/dist/index-Br17H0Aq.d.ts +1444 -0
- package/dist/index-BrWqIiZ8.d.ts +1443 -0
- package/dist/index-CjNhjXK0.d.ts +1443 -0
- package/dist/index-CsXc0vY1.d.ts +1449 -0
- package/dist/index-D0Gy87_L.d.ts +1449 -0
- package/dist/index-Zbp2D6Fm.d.ts +1449 -0
- package/dist/index.cjs +12 -5
- package/dist/index.d.cts +5 -10
- package/dist/index.d.ts +5 -10
- package/dist/index.mjs +10 -5
- package/dist/render/client.cjs +2 -1
- package/dist/render/client.d.cts +2 -2
- package/dist/render/client.d.ts +2 -2
- package/dist/render/client.mjs +2 -2
- package/dist/render/index.cjs +2 -1
- package/dist/render/index.d.cts +1 -1
- package/dist/render/index.d.ts +1 -1
- package/dist/render/index.mjs +1 -1
- package/dist/render/server.cjs +2 -1
- package/dist/render/server.d.cts +2 -2
- package/dist/render/server.d.ts +2 -2
- package/dist/render/server.mjs +2 -2
- package/package.json +2 -2
|
@@ -0,0 +1,1449 @@
|
|
|
1
|
+
import * as CSS from 'csstype';
|
|
2
|
+
|
|
3
|
+
type MemoryProviderOptions = {};
|
|
4
|
+
interface MemoryStorage<T> extends PersistenceProviderImpl<T> {
|
|
5
|
+
backendApi: Omit<Omit<Storage, "key">, "length">;
|
|
6
|
+
}
|
|
7
|
+
interface WebStorage<T> extends PersistenceProviderImpl<T> {
|
|
8
|
+
backendApi: Storage;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
type MiddlewareFn<T> = (key: string, value: T) => T;
|
|
12
|
+
/** a simple key/value persistence interface */
|
|
13
|
+
interface PersistenceProviderImpl<T> {
|
|
14
|
+
get: (key: string, defaultValue: T, middlewareFn?: MiddlewareFn<T>) => T;
|
|
15
|
+
set: (key: string, value: T, middlewareFn?: MiddlewareFn<T>) => void;
|
|
16
|
+
remove: (key: string) => void;
|
|
17
|
+
removeAll: () => void;
|
|
18
|
+
backendApi: any;
|
|
19
|
+
}
|
|
20
|
+
type PersistenceProviderType = "session" | "local" | "memory";
|
|
21
|
+
type PersistenceProviderOptions = MemoryProviderOptions;
|
|
22
|
+
|
|
23
|
+
type FormFieldValue = string | boolean;
|
|
24
|
+
interface FormKeyValues {
|
|
25
|
+
[keyOrPath: string]: FormFieldValue | FormFieldValue[];
|
|
26
|
+
}
|
|
27
|
+
interface Dimensions {
|
|
28
|
+
width: number;
|
|
29
|
+
height: number;
|
|
30
|
+
outerWidth?: number;
|
|
31
|
+
outerHeight?: number;
|
|
32
|
+
}
|
|
33
|
+
interface Position {
|
|
34
|
+
top: number;
|
|
35
|
+
left: number;
|
|
36
|
+
}
|
|
37
|
+
type DOMPropValue = string | number | boolean | null;
|
|
38
|
+
declare global {
|
|
39
|
+
interface HTMLElement {
|
|
40
|
+
_dequeryEvents?: Map<string, Set<EventListener>>;
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
interface DequeryOptions<NT = DequerySyncMethodReturnType> {
|
|
44
|
+
timeout?: number;
|
|
45
|
+
autoStart?: boolean;
|
|
46
|
+
autoStartDelay?: number;
|
|
47
|
+
resultStack?: NT[];
|
|
48
|
+
globals?: Partial<Globals>;
|
|
49
|
+
}
|
|
50
|
+
type ElementCreationOptions = JSX.HTMLAttributesLowerCase & JSX.HTMLAttributesLowerCase & {
|
|
51
|
+
html?: string;
|
|
52
|
+
text?: string;
|
|
53
|
+
};
|
|
54
|
+
type DequerySyncMethodReturnType = Array<NodeType> | NodeType | string | boolean | null;
|
|
55
|
+
|
|
56
|
+
declare class Call<NT> {
|
|
57
|
+
name: string;
|
|
58
|
+
fn: (...args: any[]) => Promise<NT>;
|
|
59
|
+
args: any[];
|
|
60
|
+
constructor(name: string, fn: (...args: any[]) => Promise<NT>, ...args: any[]);
|
|
61
|
+
}
|
|
62
|
+
declare function addNonChainedReturnCallNames(callNames: string[]): void;
|
|
63
|
+
declare function getNonChainedReturnCallNames(): string[];
|
|
64
|
+
declare function isNonChainedReturnCall(callName: string): boolean;
|
|
65
|
+
declare const emptyImpl: <T>(nodes: Array<T>) => T[];
|
|
66
|
+
declare class CallChainImpl<NT = DequerySyncMethodReturnType, ET extends Dequery<NT> = Dequery<NT>> {
|
|
67
|
+
[index: number]: NodeType;
|
|
68
|
+
isResolved: boolean;
|
|
69
|
+
options: DequeryOptions<NT>;
|
|
70
|
+
elementCreationOptions: ElementCreationOptions;
|
|
71
|
+
callStack: Call<NT>[];
|
|
72
|
+
resultStack: NT[][];
|
|
73
|
+
stackPointer: number;
|
|
74
|
+
lastResolvedStackPointer: number;
|
|
75
|
+
stoppedWithError: Error | null;
|
|
76
|
+
lastResult: NT[] | CallChainImpl<NT, ET> | CallChainImplThenable<NT, ET>;
|
|
77
|
+
length: number;
|
|
78
|
+
chainStartTime: number;
|
|
79
|
+
chainAsyncStartTime: number;
|
|
80
|
+
chainAsyncFinishTime: number;
|
|
81
|
+
document: Document;
|
|
82
|
+
window: Window;
|
|
83
|
+
performance: Performance;
|
|
84
|
+
Parser: typeof DOMParser;
|
|
85
|
+
constructor(options?: DequeryOptions<NT>);
|
|
86
|
+
get globals(): Globals;
|
|
87
|
+
get nodes(): NodeType[];
|
|
88
|
+
[Symbol.iterator](): IterableIterator<NT>;
|
|
89
|
+
getFirstElement(): PromiseLike<NT>;
|
|
90
|
+
debug(cb: (chain: CallChainImpl<NT, ET>) => void): CallChainImpl<NT, ET> | CallChainImplThenable<NT, ET>;
|
|
91
|
+
ref(ref: Ref<NodeType>): CallChainImpl<NT, ET> | CallChainImplThenable<NT, ET>;
|
|
92
|
+
query(selector: string): CallChainImpl<NT, ET> | CallChainImplThenable<NT, ET>;
|
|
93
|
+
next(): Dequery<NT>;
|
|
94
|
+
prev(): Dequery<NT>;
|
|
95
|
+
find(selector: string): CallChainImplThenable<NT, ET> | CallChainImpl<NT, ET>;
|
|
96
|
+
parent(): Dequery<NT>;
|
|
97
|
+
children(): Dequery<NT>;
|
|
98
|
+
closest(selector: string): Dequery<NT>;
|
|
99
|
+
first(): CallChainImpl<NT, ET> | CallChainImplThenable<NT, ET>;
|
|
100
|
+
last(): CallChainImpl<NT, ET> | CallChainImplThenable<NT, ET>;
|
|
101
|
+
attr(name: string, value: string): PromiseLike<ET>;
|
|
102
|
+
attr(name: string): PromiseLike<string | null>;
|
|
103
|
+
prop<K extends keyof AllHTMLElements>(name: K, value: DOMPropValue): PromiseLike<ET>;
|
|
104
|
+
prop<K extends keyof AllHTMLElements>(name: K): PromiseLike<string>;
|
|
105
|
+
private static resultCache;
|
|
106
|
+
css(prop: CSSProperties): PromiseLike<ET>;
|
|
107
|
+
css(prop: string, value: string): PromiseLike<ET>;
|
|
108
|
+
css(prop: string): PromiseLike<string>;
|
|
109
|
+
addClass(name: string | Array<string>): ET;
|
|
110
|
+
removeClass(name: string | Array<string>): ET;
|
|
111
|
+
hasClass(name: string): PromiseLike<boolean>;
|
|
112
|
+
toggleClass(name: string): ET;
|
|
113
|
+
animateClass(name: string, duration: number): ET;
|
|
114
|
+
empty(): ET;
|
|
115
|
+
html(): PromiseLike<string>;
|
|
116
|
+
html(html: string): PromiseLike<ET>;
|
|
117
|
+
jsx(vdom: RenderInput): ET;
|
|
118
|
+
text(text?: string): PromiseLike<string>;
|
|
119
|
+
remove(): ET;
|
|
120
|
+
replaceWith<T = NT>(content: string | RenderInput | NodeType | Dequery<NodeType> | Ref<NodeType>): ET;
|
|
121
|
+
append<T = NT>(content: string | RenderInput | NodeType | Ref<NodeType> | CallChainImpl<T> | CallChainImplThenable<T>): ET;
|
|
122
|
+
appendTo<T = NT>(target: string | NodeType | Ref<NodeType> | CallChainImpl<T> | CallChainImplThenable<T>): ET;
|
|
123
|
+
update(input: string | RenderInput | Ref<NodeType> | NodeType | CallChainImpl<NT> | CallChainImplThenable<NT>): ET;
|
|
124
|
+
on(event: string, handler: EventListener): ET;
|
|
125
|
+
off(event: string, handler?: EventListener): ET;
|
|
126
|
+
clearEvents(): ET;
|
|
127
|
+
trigger(eventType: string): ET;
|
|
128
|
+
position(): PromiseLike<Position>;
|
|
129
|
+
offset(): PromiseLike<Position>;
|
|
130
|
+
data(name: string, value?: string): PromiseLike<string | undefined>;
|
|
131
|
+
val(val?: string | boolean): PromiseLike<string | boolean>;
|
|
132
|
+
serialize(format?: "querystring" | "json"): PromiseLike<string>;
|
|
133
|
+
form<T = FormKeyValues>(formData?: Record<string, string | boolean>): PromiseLike<T>;
|
|
134
|
+
dimension(includeMarginOrPadding?: boolean, includePaddingIfMarginTrue?: boolean): PromiseLike<Dimensions>;
|
|
135
|
+
isVisible(): PromiseLike<boolean>;
|
|
136
|
+
isHidden(): PromiseLike<boolean>;
|
|
137
|
+
scrollTo(xOrOptions: number | ScrollToOptions, y?: number): ET;
|
|
138
|
+
scrollBy(xOrOptions: number | ScrollToOptions, y?: number): ET;
|
|
139
|
+
scrollIntoView(options?: boolean | ScrollIntoViewOptions): ET;
|
|
140
|
+
map<T>(cb: (el: NT, idx: number) => T): PromiseLike<T[]>;
|
|
141
|
+
toArray(): PromiseLike<NT[]>;
|
|
142
|
+
filter(selector: string): ET;
|
|
143
|
+
/** memory cleanup (chain becomes useless after calling this method) */
|
|
144
|
+
dispose(): PromiseLike<void>;
|
|
145
|
+
ready(callback?: () => void): ET;
|
|
146
|
+
}
|
|
147
|
+
declare class CallChainImplThenable<NT = DequerySyncMethodReturnType, ET extends Dequery<NT> = Dequery<NT>> extends CallChainImpl<NT, ET> {
|
|
148
|
+
constructor(options?: DequeryOptions<NT>, isResolved?: boolean);
|
|
149
|
+
then(onfulfilled?: (value: CallChainImpl<NT, ET>) => CallChainImpl<NT, ET>, onrejected?: (reason: any) => any | PromiseLike<any>): Promise<any>;
|
|
150
|
+
catch<TResult = never>(onrejected?: (reason: any) => TResult | PromiseLike<TResult>): Promise<any | TResult>;
|
|
151
|
+
finally(onfinally?: () => void): Promise<any>;
|
|
152
|
+
}
|
|
153
|
+
declare function scrollHelper<T = NodeType>(methodName: "scrollTo" | "scrollBy", elements: T[], xOrOptions: number | ScrollToOptions, y?: number): T[];
|
|
154
|
+
declare function getAllFormValues(chain: CallChainImpl<any, any>): FormKeyValues;
|
|
155
|
+
declare function delayedAutoStart<NT = DequerySyncMethodReturnType, ET extends Dequery<NT> = Dequery<NT>>(chain: CallChainImplThenable<NT, ET> | CallChainImpl<NT, ET>): CallChainImplThenable<NT, ET> | CallChainImpl<NT, ET>;
|
|
156
|
+
interface Dequery<NT> extends CallChainImplThenable<NT>, CallChainImpl<NT> {
|
|
157
|
+
}
|
|
158
|
+
declare function dequery<NT = DequerySyncMethodReturnType, ET extends Dequery<NT> = Dequery<NT>>(selectorRefOrEl: string | NodeType | Ref<any, NodeType> | RenderInput | Function, options?: DequeryOptions<NT> & ElementCreationOptions): ET;
|
|
159
|
+
declare namespace dequery {
|
|
160
|
+
var extend: <TExtendedClass extends new (...args: any[]) => any>(ExtensionClass: TExtendedClass, nonChainedReturnCalls?: string[]) => <NT = DequerySyncMethodReturnType>(selectorRefOrEl: string | NodeType | Ref<NodeType, any> | RenderInput | Function, options?: DequeryOptions<NT> & ElementCreationOptions) => InstanceType<TExtendedClass>;
|
|
161
|
+
}
|
|
162
|
+
declare const $: typeof dequery & {
|
|
163
|
+
extend: <TExtendedClass extends new (...args: any[]) => any>(ExtensionClass: TExtendedClass) => <NT = DequerySyncMethodReturnType>(selectorRefOrEl: string | NodeType | Ref<NodeType, any> | RenderInput | Function, options?: DequeryOptions<NT> & ElementCreationOptions) => InstanceType<TExtendedClass>;
|
|
164
|
+
};
|
|
165
|
+
declare function isDequery(obj: unknown): obj is CallChainImplThenable | CallChainImpl;
|
|
166
|
+
declare function isDequeryOptionsObject(o: object): boolean;
|
|
167
|
+
declare function getDefaultDequeryOptions<NT>(): DequeryOptions<NT>;
|
|
168
|
+
declare function mapArrayIndexAccess<NT = NodeType, ET extends Dequery<NT> = Dequery<NT>>(source: CallChainImpl<NT, ET>, target: CallChainImpl<NT, ET>): void;
|
|
169
|
+
declare function createCall<NT, ET extends Dequery<NT>>(chain: CallChainImpl<NT, ET>, methodName: string, handler: () => Promise<NT>): CallChainImplThenable<NT, ET> | CallChainImpl<NT, ET>;
|
|
170
|
+
declare function createGetterSetterCall<NT, ET extends Dequery<NT>, T, V>(chain: CallChainImpl<NT, ET>, methodName: string, value: V | undefined, getter: () => T, setter: (value: V) => void): CallChainImplThenable<NT, ET> | CallChainImpl<NT, ET>;
|
|
171
|
+
declare function createSubChain<NT = DequerySyncMethodReturnType, ET extends Dequery<NT> = Dequery<NT>>(source: CallChainImpl<NT, ET>, Constructor?: typeof CallChainImpl | typeof CallChainImplThenable, isResolved?: boolean): CallChainImpl<NT, ET> | CallChainImplThenable<NT, ET>;
|
|
172
|
+
declare function subChainForNextAwait<NT, ET extends Dequery<NT>>(source: CallChainImpl<NT, ET>): CallChainImplThenable<NT, ET> | CallChainImpl<NT, ET>;
|
|
173
|
+
declare function runWithTimeGuard<NT>(timeout: number, fn: Function, args: any[], onError: (ms: number, call: Call<NT>) => void): Promise<any>;
|
|
174
|
+
declare function renderNode<T = DequerySyncMethodReturnType>(input: string | RenderInput | NodeType | Dequery<T> | Ref<NodeType> | CallChainImpl<T> | CallChainImplThenable<T> | null | undefined, chain: CallChainImpl<any> | CallChainImplThenable<any>): Promise<NodeType | null>;
|
|
175
|
+
declare function resolveNodes<T = DequerySyncMethodReturnType>(input: string | NodeType | Ref<NodeType> | CallChainImpl<T> | CallChainImplThenable<T>, timeout: number, document?: Document): Promise<NodeType[]>;
|
|
176
|
+
declare function traverse<NT, R = NT, ET extends Dequery<R> = Dequery<R>>(chain: CallChainImpl<NT, any>, methodName: string, selector: (el: Element) => Element | Element[] | null | undefined): ET;
|
|
177
|
+
|
|
178
|
+
type Listener<T> = (newValue: T, oldValue?: T, changedKey?: string) => void;
|
|
179
|
+
interface Store<T> {
|
|
180
|
+
value: T;
|
|
181
|
+
get: <D = T>(path?: string) => D;
|
|
182
|
+
set: <D = T>(pathOrValue: string | D, value?: D) => void;
|
|
183
|
+
subscribe: (listener: Listener<T>) => () => void;
|
|
184
|
+
persist: (key: string, provider?: PersistenceProviderType) => void;
|
|
185
|
+
restore: (key: string, provider?: PersistenceProviderType) => void;
|
|
186
|
+
}
|
|
187
|
+
declare const createStore: <T>(initialValue: T) => Store<T>;
|
|
188
|
+
|
|
189
|
+
type Globals = Performance & Window & typeof globalThis;
|
|
190
|
+
type NodeType = Node | Text | Element | Document | DocumentFragment | HTMLElement | SVGElement | null;
|
|
191
|
+
interface CSSProperties extends CSS.Properties<string | number> {
|
|
192
|
+
}
|
|
193
|
+
interface FontFaceProperties {
|
|
194
|
+
MozFontFeatureSettings?: CSS.Property.FontFeatureSettings;
|
|
195
|
+
fontDisplay?: "auto" | "block" | "fallback" | "optional" | "swap" | (string & {});
|
|
196
|
+
fontFamily?: CSS.Property.FontFamily;
|
|
197
|
+
fontFeatureSettings?: CSS.Property.FontFeatureSettings;
|
|
198
|
+
fontStretch?: CSS.Property.FontStretch;
|
|
199
|
+
fontStyle?: CSS.Property.FontStyle;
|
|
200
|
+
fontVariant?: CSS.Property.FontVariant;
|
|
201
|
+
fontVariationSettings?: CSS.Property.FontVariationSettings;
|
|
202
|
+
fontWeight?: CSS.Property.FontWeight;
|
|
203
|
+
src?: string;
|
|
204
|
+
unicodeRange?: string;
|
|
205
|
+
}
|
|
206
|
+
interface KeyFrameProperties {
|
|
207
|
+
from?: Partial<CSSProperties>;
|
|
208
|
+
to?: Partial<CSSProperties>;
|
|
209
|
+
"0%"?: Partial<CSSProperties>;
|
|
210
|
+
"1%"?: Partial<CSSProperties>;
|
|
211
|
+
"2%"?: Partial<CSSProperties>;
|
|
212
|
+
"3%"?: Partial<CSSProperties>;
|
|
213
|
+
"4%"?: Partial<CSSProperties>;
|
|
214
|
+
"5%"?: Partial<CSSProperties>;
|
|
215
|
+
"6%"?: Partial<CSSProperties>;
|
|
216
|
+
"7%"?: Partial<CSSProperties>;
|
|
217
|
+
"8%"?: Partial<CSSProperties>;
|
|
218
|
+
"9%"?: Partial<CSSProperties>;
|
|
219
|
+
"10%"?: Partial<CSSProperties>;
|
|
220
|
+
"11%"?: Partial<CSSProperties>;
|
|
221
|
+
"12%"?: Partial<CSSProperties>;
|
|
222
|
+
"13%"?: Partial<CSSProperties>;
|
|
223
|
+
"14%"?: Partial<CSSProperties>;
|
|
224
|
+
"15%"?: Partial<CSSProperties>;
|
|
225
|
+
"16%"?: Partial<CSSProperties>;
|
|
226
|
+
"17%"?: Partial<CSSProperties>;
|
|
227
|
+
"18%"?: Partial<CSSProperties>;
|
|
228
|
+
"19%"?: Partial<CSSProperties>;
|
|
229
|
+
"20%"?: Partial<CSSProperties>;
|
|
230
|
+
"21%"?: Partial<CSSProperties>;
|
|
231
|
+
"22%"?: Partial<CSSProperties>;
|
|
232
|
+
"23%"?: Partial<CSSProperties>;
|
|
233
|
+
"24%"?: Partial<CSSProperties>;
|
|
234
|
+
"25%"?: Partial<CSSProperties>;
|
|
235
|
+
"26%"?: Partial<CSSProperties>;
|
|
236
|
+
"27%"?: Partial<CSSProperties>;
|
|
237
|
+
"28%"?: Partial<CSSProperties>;
|
|
238
|
+
"29%"?: Partial<CSSProperties>;
|
|
239
|
+
"30%"?: Partial<CSSProperties>;
|
|
240
|
+
"31%"?: Partial<CSSProperties>;
|
|
241
|
+
"32%"?: Partial<CSSProperties>;
|
|
242
|
+
"33%"?: Partial<CSSProperties>;
|
|
243
|
+
"34%"?: Partial<CSSProperties>;
|
|
244
|
+
"35%"?: Partial<CSSProperties>;
|
|
245
|
+
"36%"?: Partial<CSSProperties>;
|
|
246
|
+
"37%"?: Partial<CSSProperties>;
|
|
247
|
+
"38%"?: Partial<CSSProperties>;
|
|
248
|
+
"39%"?: Partial<CSSProperties>;
|
|
249
|
+
"40%"?: Partial<CSSProperties>;
|
|
250
|
+
"41%"?: Partial<CSSProperties>;
|
|
251
|
+
"42%"?: Partial<CSSProperties>;
|
|
252
|
+
"43%"?: Partial<CSSProperties>;
|
|
253
|
+
"44%"?: Partial<CSSProperties>;
|
|
254
|
+
"45%"?: Partial<CSSProperties>;
|
|
255
|
+
"46%"?: Partial<CSSProperties>;
|
|
256
|
+
"47%"?: Partial<CSSProperties>;
|
|
257
|
+
"48%"?: Partial<CSSProperties>;
|
|
258
|
+
"49%"?: Partial<CSSProperties>;
|
|
259
|
+
"50%"?: Partial<CSSProperties>;
|
|
260
|
+
"51%"?: Partial<CSSProperties>;
|
|
261
|
+
"52%"?: Partial<CSSProperties>;
|
|
262
|
+
"53%"?: Partial<CSSProperties>;
|
|
263
|
+
"54%"?: Partial<CSSProperties>;
|
|
264
|
+
"55%"?: Partial<CSSProperties>;
|
|
265
|
+
"56%"?: Partial<CSSProperties>;
|
|
266
|
+
"57%"?: Partial<CSSProperties>;
|
|
267
|
+
"58%"?: Partial<CSSProperties>;
|
|
268
|
+
"59%"?: Partial<CSSProperties>;
|
|
269
|
+
"60%"?: Partial<CSSProperties>;
|
|
270
|
+
"61%"?: Partial<CSSProperties>;
|
|
271
|
+
"62%"?: Partial<CSSProperties>;
|
|
272
|
+
"63%"?: Partial<CSSProperties>;
|
|
273
|
+
"64%"?: Partial<CSSProperties>;
|
|
274
|
+
"65%"?: Partial<CSSProperties>;
|
|
275
|
+
"66%"?: Partial<CSSProperties>;
|
|
276
|
+
"67%"?: Partial<CSSProperties>;
|
|
277
|
+
"68%"?: Partial<CSSProperties>;
|
|
278
|
+
"69%"?: Partial<CSSProperties>;
|
|
279
|
+
"70%"?: Partial<CSSProperties>;
|
|
280
|
+
"71%"?: Partial<CSSProperties>;
|
|
281
|
+
"72%"?: Partial<CSSProperties>;
|
|
282
|
+
"73%"?: Partial<CSSProperties>;
|
|
283
|
+
"74%"?: Partial<CSSProperties>;
|
|
284
|
+
"75%"?: Partial<CSSProperties>;
|
|
285
|
+
"76%"?: Partial<CSSProperties>;
|
|
286
|
+
"77%"?: Partial<CSSProperties>;
|
|
287
|
+
"78%"?: Partial<CSSProperties>;
|
|
288
|
+
"79%"?: Partial<CSSProperties>;
|
|
289
|
+
"80%"?: Partial<CSSProperties>;
|
|
290
|
+
"81%"?: Partial<CSSProperties>;
|
|
291
|
+
"82%"?: Partial<CSSProperties>;
|
|
292
|
+
"83%"?: Partial<CSSProperties>;
|
|
293
|
+
"84%"?: Partial<CSSProperties>;
|
|
294
|
+
"85%"?: Partial<CSSProperties>;
|
|
295
|
+
"86%"?: Partial<CSSProperties>;
|
|
296
|
+
"87%"?: Partial<CSSProperties>;
|
|
297
|
+
"88%"?: Partial<CSSProperties>;
|
|
298
|
+
"89%"?: Partial<CSSProperties>;
|
|
299
|
+
"90%"?: Partial<CSSProperties>;
|
|
300
|
+
"91%"?: Partial<CSSProperties>;
|
|
301
|
+
"92%"?: Partial<CSSProperties>;
|
|
302
|
+
"93%"?: Partial<CSSProperties>;
|
|
303
|
+
"94%"?: Partial<CSSProperties>;
|
|
304
|
+
"95%"?: Partial<CSSProperties>;
|
|
305
|
+
"96%"?: Partial<CSSProperties>;
|
|
306
|
+
"97%"?: Partial<CSSProperties>;
|
|
307
|
+
"98%"?: Partial<CSSProperties>;
|
|
308
|
+
"99%"?: Partial<CSSProperties>;
|
|
309
|
+
"100%"?: Partial<CSSProperties>;
|
|
310
|
+
}
|
|
311
|
+
type RefUpdateRenderFnInput = string | RenderInput | NodeType | Dequery<NodeType>;
|
|
312
|
+
type RefUpdateFn<ST> = (state: ST) => void;
|
|
313
|
+
type RefUpdateRenderFn = (input: RefUpdateRenderFnInput) => Promise<CallChainImpl<NodeType>>;
|
|
314
|
+
interface Ref<ST = any, NT = null | Node | Element | Text> {
|
|
315
|
+
current: NT;
|
|
316
|
+
store?: Store<ST>;
|
|
317
|
+
state?: ST;
|
|
318
|
+
update: RefUpdateRenderFn;
|
|
319
|
+
updateState: RefUpdateFn<ST>;
|
|
320
|
+
subscribe: (refUpdateFn: RefUpdateFn<ST>) => () => void;
|
|
321
|
+
persist: (key: string, provider?: PersistenceProviderType) => void;
|
|
322
|
+
restore: (key: string, provider?: PersistenceProviderType) => void;
|
|
323
|
+
}
|
|
324
|
+
interface VAttributes {
|
|
325
|
+
ref?: Ref;
|
|
326
|
+
key?: string;
|
|
327
|
+
}
|
|
328
|
+
interface VNodeAttributes extends VAttributes {
|
|
329
|
+
[attributeName: string]: any;
|
|
330
|
+
key?: string;
|
|
331
|
+
}
|
|
332
|
+
interface VNode<A = VNodeAttributes> {
|
|
333
|
+
type?: VNodeType;
|
|
334
|
+
attributes?: A;
|
|
335
|
+
children?: VNodeChildren;
|
|
336
|
+
}
|
|
337
|
+
type VNodeType = string | Function | any;
|
|
338
|
+
type VNodeKey = string | number | any;
|
|
339
|
+
type VNodeRefObject<T> = {
|
|
340
|
+
current?: T | null;
|
|
341
|
+
};
|
|
342
|
+
type VNodeRefCallback<T> = (instance: T | null) => void;
|
|
343
|
+
type VNodeRef<T> = VNodeRefObject<T> | VNodeRefCallback<T>;
|
|
344
|
+
type VNodeChild = VNode<any> | object | string | number | boolean | null | undefined;
|
|
345
|
+
type VNodeChildren = VNodeChild[];
|
|
346
|
+
type Children = VNodeChildren;
|
|
347
|
+
interface DomAbstractionImpl {
|
|
348
|
+
hasElNamespace(domElement: Element): boolean;
|
|
349
|
+
hasSvgNamespace(parentElement: Element, type: string): boolean;
|
|
350
|
+
createElementOrElements(virtualNode: VNode | undefined | Array<VNode | undefined | string>, parentDomElement?: Element | Document): Array<Element | Text | undefined> | Element | Text | undefined;
|
|
351
|
+
createElement(virtualNode: VNode | undefined, parentDomElement?: Element | Document): Element | undefined;
|
|
352
|
+
createTextNode(text: string, parentDomElement?: Element | Document): Text;
|
|
353
|
+
createChildElements(virtualChildren: VNodeChildren, parentDomElement?: Element): Array<Element | Text | undefined>;
|
|
354
|
+
setAttribute(name: string, value: any, parentDomElement: Element, attributes: VNodeAttributes): void;
|
|
355
|
+
setAttributes(attributes: VNode<VNodeAttributes>, parentDomElement: Element): void;
|
|
356
|
+
}
|
|
357
|
+
declare global {
|
|
358
|
+
namespace JSX {
|
|
359
|
+
interface ElementAttributesProperty {
|
|
360
|
+
attrs: {};
|
|
361
|
+
}
|
|
362
|
+
interface SVGAttributes extends HTMLAttributes {
|
|
363
|
+
accentHeight?: number | string;
|
|
364
|
+
accumulate?: "none" | "sum";
|
|
365
|
+
additive?: "replace" | "sum";
|
|
366
|
+
alignmentBaseline?: "auto" | "baseline" | "before-edge" | "text-before-edge" | "middle" | "central" | "after-edge" | "text-after-edge" | "ideographic" | "alphabetic" | "hanging" | "mathematical" | "inherit";
|
|
367
|
+
allowReorder?: "no" | "yes";
|
|
368
|
+
alphabetic?: number | string;
|
|
369
|
+
amplitude?: number | string;
|
|
370
|
+
arabicForm?: "initial" | "medial" | "terminal" | "isolated";
|
|
371
|
+
ascent?: number | string;
|
|
372
|
+
attributeName?: string;
|
|
373
|
+
attributeType?: string;
|
|
374
|
+
autoReverse?: number | string;
|
|
375
|
+
azimuth?: number | string;
|
|
376
|
+
baseFrequency?: number | string;
|
|
377
|
+
baselineShift?: number | string;
|
|
378
|
+
baseProfile?: number | string;
|
|
379
|
+
bbox?: number | string;
|
|
380
|
+
begin?: number | string;
|
|
381
|
+
bias?: number | string;
|
|
382
|
+
by?: number | string;
|
|
383
|
+
calcMode?: number | string;
|
|
384
|
+
capHeight?: number | string;
|
|
385
|
+
clip?: number | string;
|
|
386
|
+
clipPath?: string;
|
|
387
|
+
clipPathUnits?: number | string;
|
|
388
|
+
clipRule?: number | string;
|
|
389
|
+
colorInterpolation?: number | string;
|
|
390
|
+
colorInterpolationFilters?: "auto" | "sRGB" | "linearRGB" | "inherit";
|
|
391
|
+
colorProfile?: number | string;
|
|
392
|
+
colorRendering?: number | string;
|
|
393
|
+
contentScriptType?: number | string;
|
|
394
|
+
contentStyleType?: number | string;
|
|
395
|
+
cursor?: number | string;
|
|
396
|
+
cx?: number | string;
|
|
397
|
+
cy?: number | string;
|
|
398
|
+
d?: string;
|
|
399
|
+
decelerate?: number | string;
|
|
400
|
+
descent?: number | string;
|
|
401
|
+
diffuseConstant?: number | string;
|
|
402
|
+
direction?: number | string;
|
|
403
|
+
display?: number | string;
|
|
404
|
+
divisor?: number | string;
|
|
405
|
+
dominantBaseline?: number | string;
|
|
406
|
+
dur?: number | string;
|
|
407
|
+
dx?: number | string;
|
|
408
|
+
dy?: number | string;
|
|
409
|
+
edgeMode?: number | string;
|
|
410
|
+
elevation?: number | string;
|
|
411
|
+
enableBackground?: number | string;
|
|
412
|
+
end?: number | string;
|
|
413
|
+
exponent?: number | string;
|
|
414
|
+
externalResourcesRequired?: number | string;
|
|
415
|
+
fill?: string;
|
|
416
|
+
fillOpacity?: number | string;
|
|
417
|
+
fillRule?: "nonzero" | "evenodd" | "inherit";
|
|
418
|
+
filter?: string;
|
|
419
|
+
filterRes?: number | string;
|
|
420
|
+
filterUnits?: number | string;
|
|
421
|
+
floodColor?: number | string;
|
|
422
|
+
floodOpacity?: number | string;
|
|
423
|
+
focusable?: number | string;
|
|
424
|
+
fontFamily?: string;
|
|
425
|
+
fontSize?: number | string;
|
|
426
|
+
fontSizeAdjust?: number | string;
|
|
427
|
+
fontStretch?: number | string;
|
|
428
|
+
fontStyle?: number | string;
|
|
429
|
+
fontVariant?: number | string;
|
|
430
|
+
fontWeight?: number | string;
|
|
431
|
+
format?: number | string;
|
|
432
|
+
from?: number | string;
|
|
433
|
+
fx?: number | string;
|
|
434
|
+
fy?: number | string;
|
|
435
|
+
g1?: number | string;
|
|
436
|
+
g2?: number | string;
|
|
437
|
+
glyphName?: number | string;
|
|
438
|
+
glyphOrientationHorizontal?: number | string;
|
|
439
|
+
glyphOrientationVertical?: number | string;
|
|
440
|
+
glyphRef?: number | string;
|
|
441
|
+
gradientTransform?: string;
|
|
442
|
+
gradientUnits?: string;
|
|
443
|
+
hanging?: number | string;
|
|
444
|
+
horizAdvX?: number | string;
|
|
445
|
+
horizOriginX?: number | string;
|
|
446
|
+
ideographic?: number | string;
|
|
447
|
+
imageRendering?: number | string;
|
|
448
|
+
in2?: number | string;
|
|
449
|
+
in?: string;
|
|
450
|
+
intercept?: number | string;
|
|
451
|
+
k1?: number | string;
|
|
452
|
+
k2?: number | string;
|
|
453
|
+
k3?: number | string;
|
|
454
|
+
k4?: number | string;
|
|
455
|
+
k?: number | string;
|
|
456
|
+
kernelMatrix?: number | string;
|
|
457
|
+
kernelUnitLength?: number | string;
|
|
458
|
+
kerning?: number | string;
|
|
459
|
+
keyPoints?: number | string;
|
|
460
|
+
keySplines?: number | string;
|
|
461
|
+
keyTimes?: number | string;
|
|
462
|
+
lengthAdjust?: number | string;
|
|
463
|
+
letterSpacing?: number | string;
|
|
464
|
+
lightingColor?: number | string;
|
|
465
|
+
limitingConeAngle?: number | string;
|
|
466
|
+
local?: number | string;
|
|
467
|
+
markerEnd?: string;
|
|
468
|
+
markerHeight?: number | string;
|
|
469
|
+
markerMid?: string;
|
|
470
|
+
markerStart?: string;
|
|
471
|
+
markerUnits?: number | string;
|
|
472
|
+
markerWidth?: number | string;
|
|
473
|
+
mask?: string;
|
|
474
|
+
maskContentUnits?: number | string;
|
|
475
|
+
maskUnits?: number | string;
|
|
476
|
+
mathematical?: number | string;
|
|
477
|
+
mode?: number | string;
|
|
478
|
+
numOctaves?: number | string;
|
|
479
|
+
offset?: number | string;
|
|
480
|
+
opacity?: number | string;
|
|
481
|
+
operator?: number | string;
|
|
482
|
+
order?: number | string;
|
|
483
|
+
orient?: number | string;
|
|
484
|
+
orientation?: number | string;
|
|
485
|
+
origin?: number | string;
|
|
486
|
+
overflow?: number | string;
|
|
487
|
+
overlinePosition?: number | string;
|
|
488
|
+
overlineThickness?: number | string;
|
|
489
|
+
paintOrder?: number | string;
|
|
490
|
+
panose1?: number | string;
|
|
491
|
+
pathLength?: number | string;
|
|
492
|
+
patternContentUnits?: string;
|
|
493
|
+
patternTransform?: number | string;
|
|
494
|
+
patternUnits?: string;
|
|
495
|
+
pointerEvents?: number | string;
|
|
496
|
+
points?: string;
|
|
497
|
+
pointsAtX?: number | string;
|
|
498
|
+
pointsAtY?: number | string;
|
|
499
|
+
pointsAtZ?: number | string;
|
|
500
|
+
preserveAlpha?: number | string;
|
|
501
|
+
preserveAspectRatio?: string;
|
|
502
|
+
primitiveUnits?: number | string;
|
|
503
|
+
r?: number | string;
|
|
504
|
+
radius?: number | string;
|
|
505
|
+
refX?: number | string;
|
|
506
|
+
refY?: number | string;
|
|
507
|
+
renderingIntent?: number | string;
|
|
508
|
+
repeatCount?: number | string;
|
|
509
|
+
repeatDur?: number | string;
|
|
510
|
+
requiredExtensions?: number | string;
|
|
511
|
+
requiredFeatures?: number | string;
|
|
512
|
+
restart?: number | string;
|
|
513
|
+
result?: string;
|
|
514
|
+
rotate?: number | string;
|
|
515
|
+
rx?: number | string;
|
|
516
|
+
ry?: number | string;
|
|
517
|
+
scale?: number | string;
|
|
518
|
+
seed?: number | string;
|
|
519
|
+
shapeRendering?: number | string;
|
|
520
|
+
slope?: number | string;
|
|
521
|
+
spacing?: number | string;
|
|
522
|
+
specularConstant?: number | string;
|
|
523
|
+
specularExponent?: number | string;
|
|
524
|
+
speed?: number | string;
|
|
525
|
+
spreadMethod?: string;
|
|
526
|
+
startOffset?: number | string;
|
|
527
|
+
stdDeviation?: number | string;
|
|
528
|
+
stemh?: number | string;
|
|
529
|
+
stemv?: number | string;
|
|
530
|
+
stitchTiles?: number | string;
|
|
531
|
+
stopColor?: string;
|
|
532
|
+
stopOpacity?: number | string;
|
|
533
|
+
strikethroughPosition?: number | string;
|
|
534
|
+
strikethroughThickness?: number | string;
|
|
535
|
+
string?: number | string;
|
|
536
|
+
stroke?: string;
|
|
537
|
+
strokeDasharray?: string | number;
|
|
538
|
+
strokeDashoffset?: string | number;
|
|
539
|
+
strokeLinecap?: "butt" | "round" | "square" | "inherit";
|
|
540
|
+
strokeLinejoin?: "miter" | "round" | "bevel" | "inherit";
|
|
541
|
+
strokeMiterlimit?: string;
|
|
542
|
+
strokeOpacity?: number | string;
|
|
543
|
+
strokeWidth?: number | string;
|
|
544
|
+
surfaceScale?: number | string;
|
|
545
|
+
systemLanguage?: number | string;
|
|
546
|
+
tableValues?: number | string;
|
|
547
|
+
targetX?: number | string;
|
|
548
|
+
targetY?: number | string;
|
|
549
|
+
textAnchor?: string;
|
|
550
|
+
textDecoration?: number | string;
|
|
551
|
+
textLength?: number | string;
|
|
552
|
+
textRendering?: number | string;
|
|
553
|
+
to?: number | string;
|
|
554
|
+
transform?: string;
|
|
555
|
+
u1?: number | string;
|
|
556
|
+
u2?: number | string;
|
|
557
|
+
underlinePosition?: number | string;
|
|
558
|
+
underlineThickness?: number | string;
|
|
559
|
+
unicode?: number | string;
|
|
560
|
+
unicodeBidi?: number | string;
|
|
561
|
+
unicodeRange?: number | string;
|
|
562
|
+
unitsPerEm?: number | string;
|
|
563
|
+
vAlphabetic?: number | string;
|
|
564
|
+
values?: string;
|
|
565
|
+
vectorEffect?: number | string;
|
|
566
|
+
version?: string;
|
|
567
|
+
vertAdvY?: number | string;
|
|
568
|
+
vertOriginX?: number | string;
|
|
569
|
+
vertOriginY?: number | string;
|
|
570
|
+
vHanging?: number | string;
|
|
571
|
+
vIdeographic?: number | string;
|
|
572
|
+
viewBox?: string;
|
|
573
|
+
viewTarget?: number | string;
|
|
574
|
+
visibility?: number | string;
|
|
575
|
+
vMathematical?: number | string;
|
|
576
|
+
widths?: number | string;
|
|
577
|
+
wordSpacing?: number | string;
|
|
578
|
+
writingMode?: number | string;
|
|
579
|
+
x1?: number | string;
|
|
580
|
+
x2?: number | string;
|
|
581
|
+
x?: number | string;
|
|
582
|
+
xChannelSelector?: string;
|
|
583
|
+
xHeight?: number | string;
|
|
584
|
+
xlinkActuate?: string;
|
|
585
|
+
xlinkArcrole?: string;
|
|
586
|
+
xlinkHref?: string;
|
|
587
|
+
xlinkRole?: string;
|
|
588
|
+
xlinkShow?: string;
|
|
589
|
+
xlinkTitle?: string;
|
|
590
|
+
xlinkType?: string;
|
|
591
|
+
xmlBase?: string;
|
|
592
|
+
xmlLang?: string;
|
|
593
|
+
xmlns?: string;
|
|
594
|
+
xmlnsXlink?: string;
|
|
595
|
+
xmlSpace?: string;
|
|
596
|
+
y1?: number | string;
|
|
597
|
+
y2?: number | string;
|
|
598
|
+
y?: number | string;
|
|
599
|
+
yChannelSelector?: string;
|
|
600
|
+
z?: number | string;
|
|
601
|
+
zoomAndPan?: string;
|
|
602
|
+
}
|
|
603
|
+
interface PathAttributes {
|
|
604
|
+
d: string;
|
|
605
|
+
}
|
|
606
|
+
type EventHandler<E extends Event> = (event: E) => void;
|
|
607
|
+
type ClipboardEventHandler = EventHandler<ClipboardEvent>;
|
|
608
|
+
type CompositionEventHandler = EventHandler<CompositionEvent>;
|
|
609
|
+
type DragEventHandler = EventHandler<DragEvent>;
|
|
610
|
+
type FocusEventHandler = EventHandler<FocusEvent>;
|
|
611
|
+
type KeyboardEventHandler = EventHandler<KeyboardEvent>;
|
|
612
|
+
type MouseEventHandler = EventHandler<MouseEvent>;
|
|
613
|
+
type TouchEventHandler = EventHandler<TouchEvent>;
|
|
614
|
+
type UIEventHandler = EventHandler<UIEvent>;
|
|
615
|
+
type WheelEventHandler = EventHandler<WheelEvent>;
|
|
616
|
+
type AnimationEventHandler = EventHandler<AnimationEvent>;
|
|
617
|
+
type TransitionEventHandler = EventHandler<TransitionEvent>;
|
|
618
|
+
type ProgressEventHandler = EventHandler<ProgressEvent>;
|
|
619
|
+
type GenericEventHandler = EventHandler<Event>;
|
|
620
|
+
type PointerEventHandler = EventHandler<PointerEvent>;
|
|
621
|
+
interface DOMAttributeEventHandlersLowerCase {
|
|
622
|
+
onmount?: Function;
|
|
623
|
+
onunmount?: Function;
|
|
624
|
+
onload?: GenericEventHandler;
|
|
625
|
+
onloadcapture?: GenericEventHandler;
|
|
626
|
+
onerror?: GenericEventHandler;
|
|
627
|
+
onerrorcapture?: GenericEventHandler;
|
|
628
|
+
oncopy?: ClipboardEventHandler;
|
|
629
|
+
oncopycapture?: ClipboardEventHandler;
|
|
630
|
+
oncut?: ClipboardEventHandler;
|
|
631
|
+
oncutcapture?: ClipboardEventHandler;
|
|
632
|
+
onpaste?: ClipboardEventHandler;
|
|
633
|
+
onpastecapture?: ClipboardEventHandler;
|
|
634
|
+
oncompositionend?: CompositionEventHandler;
|
|
635
|
+
oncompositionendcapture?: CompositionEventHandler;
|
|
636
|
+
oncompositionstart?: CompositionEventHandler;
|
|
637
|
+
oncompositionstartcapture?: CompositionEventHandler;
|
|
638
|
+
oncompositionupdate?: CompositionEventHandler;
|
|
639
|
+
oncompositionupdatecapture?: CompositionEventHandler;
|
|
640
|
+
onfocus?: FocusEventHandler;
|
|
641
|
+
onfocuscapture?: FocusEventHandler;
|
|
642
|
+
onblur?: FocusEventHandler;
|
|
643
|
+
onblurcapture?: FocusEventHandler;
|
|
644
|
+
onchange?: GenericEventHandler;
|
|
645
|
+
onchangecapture?: GenericEventHandler;
|
|
646
|
+
oninput?: GenericEventHandler;
|
|
647
|
+
oninputcapture?: GenericEventHandler;
|
|
648
|
+
onsearch?: GenericEventHandler;
|
|
649
|
+
onsearchcapture?: GenericEventHandler;
|
|
650
|
+
onsubmit?: GenericEventHandler;
|
|
651
|
+
onsubmitcapture?: GenericEventHandler;
|
|
652
|
+
oninvalid?: GenericEventHandler;
|
|
653
|
+
oninvalidcapture?: GenericEventHandler;
|
|
654
|
+
onkeydown?: KeyboardEventHandler;
|
|
655
|
+
onkeydowncapture?: KeyboardEventHandler;
|
|
656
|
+
onkeypress?: KeyboardEventHandler;
|
|
657
|
+
onkeypresscapture?: KeyboardEventHandler;
|
|
658
|
+
onkeyup?: KeyboardEventHandler;
|
|
659
|
+
onkeyupcapture?: KeyboardEventHandler;
|
|
660
|
+
onabort?: GenericEventHandler;
|
|
661
|
+
onabortcapture?: GenericEventHandler;
|
|
662
|
+
oncanplay?: GenericEventHandler;
|
|
663
|
+
oncanplaycapture?: GenericEventHandler;
|
|
664
|
+
oncanplaythrough?: GenericEventHandler;
|
|
665
|
+
oncanplaythroughcapture?: GenericEventHandler;
|
|
666
|
+
ondurationchange?: GenericEventHandler;
|
|
667
|
+
ondurationchangecapture?: GenericEventHandler;
|
|
668
|
+
onemptied?: GenericEventHandler;
|
|
669
|
+
onemptiedcapture?: GenericEventHandler;
|
|
670
|
+
onencrypted?: GenericEventHandler;
|
|
671
|
+
onencryptedcapture?: GenericEventHandler;
|
|
672
|
+
onended?: GenericEventHandler;
|
|
673
|
+
onendedcapture?: GenericEventHandler;
|
|
674
|
+
onloadeddata?: GenericEventHandler;
|
|
675
|
+
onloadeddatacapture?: GenericEventHandler;
|
|
676
|
+
onloadedmetadata?: GenericEventHandler;
|
|
677
|
+
onloadedmetadatacapture?: GenericEventHandler;
|
|
678
|
+
onloadstart?: GenericEventHandler;
|
|
679
|
+
onloadstartcapture?: GenericEventHandler;
|
|
680
|
+
onpause?: GenericEventHandler;
|
|
681
|
+
onpausecapture?: GenericEventHandler;
|
|
682
|
+
onplay?: GenericEventHandler;
|
|
683
|
+
onplaycapture?: GenericEventHandler;
|
|
684
|
+
onplaying?: GenericEventHandler;
|
|
685
|
+
onplayingcapture?: GenericEventHandler;
|
|
686
|
+
onprogress?: ProgressEventHandler;
|
|
687
|
+
onprogresscapture?: ProgressEventHandler;
|
|
688
|
+
onratechange?: GenericEventHandler;
|
|
689
|
+
onratechangecapture?: GenericEventHandler;
|
|
690
|
+
onseeked?: GenericEventHandler;
|
|
691
|
+
onseekedcapture?: GenericEventHandler;
|
|
692
|
+
onseeking?: GenericEventHandler;
|
|
693
|
+
onseekingcapture?: GenericEventHandler;
|
|
694
|
+
onstalled?: GenericEventHandler;
|
|
695
|
+
onstalledcapture?: GenericEventHandler;
|
|
696
|
+
onsuspend?: GenericEventHandler;
|
|
697
|
+
onsuspendcapture?: GenericEventHandler;
|
|
698
|
+
ontimeupdate?: GenericEventHandler;
|
|
699
|
+
ontimeupdatecapture?: GenericEventHandler;
|
|
700
|
+
onvolumechange?: GenericEventHandler;
|
|
701
|
+
onvolumechangecapture?: GenericEventHandler;
|
|
702
|
+
onwaiting?: GenericEventHandler;
|
|
703
|
+
onwaitingcapture?: GenericEventHandler;
|
|
704
|
+
onclick?: MouseEventHandler;
|
|
705
|
+
onclickcapture?: MouseEventHandler;
|
|
706
|
+
oncontextmenu?: MouseEventHandler;
|
|
707
|
+
oncontextmenucapture?: MouseEventHandler;
|
|
708
|
+
ondblclick?: MouseEventHandler;
|
|
709
|
+
ondblclickcapture?: MouseEventHandler;
|
|
710
|
+
ondrag?: DragEventHandler;
|
|
711
|
+
ondragcapture?: DragEventHandler;
|
|
712
|
+
ondragend?: DragEventHandler;
|
|
713
|
+
ondragendcapture?: DragEventHandler;
|
|
714
|
+
ondragenter?: DragEventHandler;
|
|
715
|
+
ondragentercapture?: DragEventHandler;
|
|
716
|
+
ondragexit?: DragEventHandler;
|
|
717
|
+
ondragexitcapture?: DragEventHandler;
|
|
718
|
+
ondragleave?: DragEventHandler;
|
|
719
|
+
ondragleavecapture?: DragEventHandler;
|
|
720
|
+
ondragover?: DragEventHandler;
|
|
721
|
+
ondragovercapture?: DragEventHandler;
|
|
722
|
+
ondragstart?: DragEventHandler;
|
|
723
|
+
ondragstartcapture?: DragEventHandler;
|
|
724
|
+
ondrop?: DragEventHandler;
|
|
725
|
+
ondropcapture?: DragEventHandler;
|
|
726
|
+
onmousedown?: MouseEventHandler;
|
|
727
|
+
onmousedowncapture?: MouseEventHandler;
|
|
728
|
+
onmouseenter?: MouseEventHandler;
|
|
729
|
+
onmouseentercapture?: MouseEventHandler;
|
|
730
|
+
onmouseleave?: MouseEventHandler;
|
|
731
|
+
onmouseleavecapture?: MouseEventHandler;
|
|
732
|
+
onmousemove?: MouseEventHandler;
|
|
733
|
+
onmousemovecapture?: MouseEventHandler;
|
|
734
|
+
onmouseout?: MouseEventHandler;
|
|
735
|
+
onmouseoutcapture?: MouseEventHandler;
|
|
736
|
+
onmouseover?: MouseEventHandler;
|
|
737
|
+
onmouseovercapture?: MouseEventHandler;
|
|
738
|
+
onmouseup?: MouseEventHandler;
|
|
739
|
+
onmouseupcapture?: MouseEventHandler;
|
|
740
|
+
onselect?: GenericEventHandler;
|
|
741
|
+
onselectcapture?: GenericEventHandler;
|
|
742
|
+
ontouchcancel?: TouchEventHandler;
|
|
743
|
+
ontouchcancelcapture?: TouchEventHandler;
|
|
744
|
+
ontouchend?: TouchEventHandler;
|
|
745
|
+
ontouchendcapture?: TouchEventHandler;
|
|
746
|
+
ontouchmove?: TouchEventHandler;
|
|
747
|
+
ontouchmovecapture?: TouchEventHandler;
|
|
748
|
+
ontouchstart?: TouchEventHandler;
|
|
749
|
+
ontouchstartcapture?: TouchEventHandler;
|
|
750
|
+
onpointerover?: PointerEventHandler;
|
|
751
|
+
onpointerovercapture?: PointerEventHandler;
|
|
752
|
+
onpointerenter?: PointerEventHandler;
|
|
753
|
+
onpointerentercapture?: PointerEventHandler;
|
|
754
|
+
onpointerdown?: PointerEventHandler;
|
|
755
|
+
onpointerdowncapture?: PointerEventHandler;
|
|
756
|
+
onpointermove?: PointerEventHandler;
|
|
757
|
+
onpointermovecapture?: PointerEventHandler;
|
|
758
|
+
onpointerup?: PointerEventHandler;
|
|
759
|
+
onpointerupcapture?: PointerEventHandler;
|
|
760
|
+
onpointercancel?: PointerEventHandler;
|
|
761
|
+
onpointercancelcapture?: PointerEventHandler;
|
|
762
|
+
onpointerout?: PointerEventHandler;
|
|
763
|
+
onpointeroutcapture?: PointerEventHandler;
|
|
764
|
+
onpointerleave?: PointerEventHandler;
|
|
765
|
+
onpointerleavecapture?: PointerEventHandler;
|
|
766
|
+
ongotpointercapture?: PointerEventHandler;
|
|
767
|
+
ongotpointercapturecapture?: PointerEventHandler;
|
|
768
|
+
onlostpointercapture?: PointerEventHandler;
|
|
769
|
+
onlostpointercapturecapture?: PointerEventHandler;
|
|
770
|
+
onscroll?: UIEventHandler;
|
|
771
|
+
onscrollcapture?: UIEventHandler;
|
|
772
|
+
onwheel?: WheelEventHandler;
|
|
773
|
+
onwheelcapture?: WheelEventHandler;
|
|
774
|
+
onanimationstart?: AnimationEventHandler;
|
|
775
|
+
onanimationstartcapture?: AnimationEventHandler;
|
|
776
|
+
onanimationend?: AnimationEventHandler;
|
|
777
|
+
onanimationendcapture?: AnimationEventHandler;
|
|
778
|
+
onanimationiteration?: AnimationEventHandler;
|
|
779
|
+
onanimationiterationcapture?: AnimationEventHandler;
|
|
780
|
+
ontransitionend?: TransitionEventHandler;
|
|
781
|
+
ontransitionendcapture?: TransitionEventHandler;
|
|
782
|
+
}
|
|
783
|
+
interface DOMAttributes extends VAttributes, DOMAttributeEventHandlersLowerCase {
|
|
784
|
+
ref?: Ref;
|
|
785
|
+
onMount?: Function;
|
|
786
|
+
onUnmount?: Function;
|
|
787
|
+
onLoad?: GenericEventHandler;
|
|
788
|
+
onLoadCapture?: GenericEventHandler;
|
|
789
|
+
onError?: GenericEventHandler;
|
|
790
|
+
onErrorCapture?: GenericEventHandler;
|
|
791
|
+
onCopy?: ClipboardEventHandler;
|
|
792
|
+
onCopyCapture?: ClipboardEventHandler;
|
|
793
|
+
onCut?: ClipboardEventHandler;
|
|
794
|
+
onCutCapture?: ClipboardEventHandler;
|
|
795
|
+
onPaste?: ClipboardEventHandler;
|
|
796
|
+
onPasteCapture?: ClipboardEventHandler;
|
|
797
|
+
onCompositionEnd?: CompositionEventHandler;
|
|
798
|
+
onCompositionEndCapture?: CompositionEventHandler;
|
|
799
|
+
onCompositionStart?: CompositionEventHandler;
|
|
800
|
+
onCompositionStartCapture?: CompositionEventHandler;
|
|
801
|
+
onCompositionUpdate?: CompositionEventHandler;
|
|
802
|
+
onCompositionUpdateCapture?: CompositionEventHandler;
|
|
803
|
+
onFocus?: FocusEventHandler;
|
|
804
|
+
onFocusCapture?: FocusEventHandler;
|
|
805
|
+
onBlur?: FocusEventHandler;
|
|
806
|
+
onBlurCapture?: FocusEventHandler;
|
|
807
|
+
onChange?: GenericEventHandler;
|
|
808
|
+
onChangeCapture?: GenericEventHandler;
|
|
809
|
+
onInput?: GenericEventHandler;
|
|
810
|
+
onInputCapture?: GenericEventHandler;
|
|
811
|
+
onSearch?: GenericEventHandler;
|
|
812
|
+
onSearchCapture?: GenericEventHandler;
|
|
813
|
+
onSubmit?: GenericEventHandler;
|
|
814
|
+
onSubmitCapture?: GenericEventHandler;
|
|
815
|
+
onInvalid?: GenericEventHandler;
|
|
816
|
+
onInvalidCapture?: GenericEventHandler;
|
|
817
|
+
onKeyDown?: KeyboardEventHandler;
|
|
818
|
+
onKeyDownCapture?: KeyboardEventHandler;
|
|
819
|
+
onKeyPress?: KeyboardEventHandler;
|
|
820
|
+
onKeyPressCapture?: KeyboardEventHandler;
|
|
821
|
+
onKeyUp?: KeyboardEventHandler;
|
|
822
|
+
onKeyUpCapture?: KeyboardEventHandler;
|
|
823
|
+
onAbort?: GenericEventHandler;
|
|
824
|
+
onAbortCapture?: GenericEventHandler;
|
|
825
|
+
onCanPlay?: GenericEventHandler;
|
|
826
|
+
onCanPlayCapture?: GenericEventHandler;
|
|
827
|
+
onCanPlayThrough?: GenericEventHandler;
|
|
828
|
+
onCanPlayThroughCapture?: GenericEventHandler;
|
|
829
|
+
onDurationChange?: GenericEventHandler;
|
|
830
|
+
onDurationChangeCapture?: GenericEventHandler;
|
|
831
|
+
onEmptied?: GenericEventHandler;
|
|
832
|
+
onEmptiedCapture?: GenericEventHandler;
|
|
833
|
+
onEncrypted?: GenericEventHandler;
|
|
834
|
+
onEncryptedCapture?: GenericEventHandler;
|
|
835
|
+
onEnded?: GenericEventHandler;
|
|
836
|
+
onEndedCapture?: GenericEventHandler;
|
|
837
|
+
onLoadedData?: GenericEventHandler;
|
|
838
|
+
onLoadedDataCapture?: GenericEventHandler;
|
|
839
|
+
onLoadedMetadata?: GenericEventHandler;
|
|
840
|
+
onLoadedMetadataCapture?: GenericEventHandler;
|
|
841
|
+
onLoadStart?: GenericEventHandler;
|
|
842
|
+
onLoadStartCapture?: GenericEventHandler;
|
|
843
|
+
onPause?: GenericEventHandler;
|
|
844
|
+
onPauseCapture?: GenericEventHandler;
|
|
845
|
+
onPlay?: GenericEventHandler;
|
|
846
|
+
onPlayCapture?: GenericEventHandler;
|
|
847
|
+
onPlaying?: GenericEventHandler;
|
|
848
|
+
onPlayingCapture?: GenericEventHandler;
|
|
849
|
+
onProgress?: GenericEventHandler;
|
|
850
|
+
onProgressCapture?: GenericEventHandler;
|
|
851
|
+
onRateChange?: GenericEventHandler;
|
|
852
|
+
onRateChangeCapture?: GenericEventHandler;
|
|
853
|
+
onSeeked?: GenericEventHandler;
|
|
854
|
+
onSeekedCapture?: GenericEventHandler;
|
|
855
|
+
onSeeking?: GenericEventHandler;
|
|
856
|
+
onSeekingCapture?: GenericEventHandler;
|
|
857
|
+
onStalled?: GenericEventHandler;
|
|
858
|
+
onStalledCapture?: GenericEventHandler;
|
|
859
|
+
onSuspend?: GenericEventHandler;
|
|
860
|
+
onSuspendCapture?: GenericEventHandler;
|
|
861
|
+
onTimeUpdate?: GenericEventHandler;
|
|
862
|
+
onTimeUpdateCapture?: GenericEventHandler;
|
|
863
|
+
onVolumeChange?: GenericEventHandler;
|
|
864
|
+
onVolumeChangeCapture?: GenericEventHandler;
|
|
865
|
+
onWaiting?: GenericEventHandler;
|
|
866
|
+
onWaitingCapture?: GenericEventHandler;
|
|
867
|
+
onClick?: MouseEventHandler;
|
|
868
|
+
onClickCapture?: MouseEventHandler;
|
|
869
|
+
onContextMenu?: MouseEventHandler;
|
|
870
|
+
onContextMenuCapture?: MouseEventHandler;
|
|
871
|
+
onDblClick?: MouseEventHandler;
|
|
872
|
+
onDblClickCapture?: MouseEventHandler;
|
|
873
|
+
onDrag?: DragEventHandler;
|
|
874
|
+
onDragCapture?: DragEventHandler;
|
|
875
|
+
onDragEnd?: DragEventHandler;
|
|
876
|
+
onDragEndCapture?: DragEventHandler;
|
|
877
|
+
onDragEnter?: DragEventHandler;
|
|
878
|
+
onDragEnterCapture?: DragEventHandler;
|
|
879
|
+
onDragExit?: DragEventHandler;
|
|
880
|
+
onDragExitCapture?: DragEventHandler;
|
|
881
|
+
onDragLeave?: DragEventHandler;
|
|
882
|
+
onDragLeaveCapture?: DragEventHandler;
|
|
883
|
+
onDragOver?: DragEventHandler;
|
|
884
|
+
onDragOverCapture?: DragEventHandler;
|
|
885
|
+
onDragStart?: DragEventHandler;
|
|
886
|
+
onDragStartCapture?: DragEventHandler;
|
|
887
|
+
onDrop?: DragEventHandler;
|
|
888
|
+
onDropCapture?: DragEventHandler;
|
|
889
|
+
onMouseDown?: MouseEventHandler;
|
|
890
|
+
onMouseDownCapture?: MouseEventHandler;
|
|
891
|
+
onMouseEnter?: MouseEventHandler;
|
|
892
|
+
onMouseEnterCapture?: MouseEventHandler;
|
|
893
|
+
onMouseLeave?: MouseEventHandler;
|
|
894
|
+
onMouseLeaveCapture?: MouseEventHandler;
|
|
895
|
+
onMouseMove?: MouseEventHandler;
|
|
896
|
+
onMouseMoveCapture?: MouseEventHandler;
|
|
897
|
+
onMouseOut?: MouseEventHandler;
|
|
898
|
+
onMouseOutCapture?: MouseEventHandler;
|
|
899
|
+
onMouseOver?: MouseEventHandler;
|
|
900
|
+
onMouseOverCapture?: MouseEventHandler;
|
|
901
|
+
onMouseUp?: MouseEventHandler;
|
|
902
|
+
onMouseUpCapture?: MouseEventHandler;
|
|
903
|
+
onSelect?: GenericEventHandler;
|
|
904
|
+
onSelectCapture?: GenericEventHandler;
|
|
905
|
+
onTouchCancel?: TouchEventHandler;
|
|
906
|
+
onTouchCancelCapture?: TouchEventHandler;
|
|
907
|
+
onTouchEnd?: TouchEventHandler;
|
|
908
|
+
onTouchEndCapture?: TouchEventHandler;
|
|
909
|
+
onTouchMove?: TouchEventHandler;
|
|
910
|
+
onTouchMoveCapture?: TouchEventHandler;
|
|
911
|
+
onTouchStart?: TouchEventHandler;
|
|
912
|
+
onTouchStartCapture?: TouchEventHandler;
|
|
913
|
+
onPointerOver?: PointerEventHandler;
|
|
914
|
+
onPointerOverCapture?: PointerEventHandler;
|
|
915
|
+
onPointerEnter?: PointerEventHandler;
|
|
916
|
+
onPointerEnterCapture?: PointerEventHandler;
|
|
917
|
+
onPointerDown?: PointerEventHandler;
|
|
918
|
+
onPointerDownCapture?: PointerEventHandler;
|
|
919
|
+
onPointerMove?: PointerEventHandler;
|
|
920
|
+
onPointerMoveCapture?: PointerEventHandler;
|
|
921
|
+
onPointerUp?: PointerEventHandler;
|
|
922
|
+
onPointerUpCapture?: PointerEventHandler;
|
|
923
|
+
onPointerCancel?: PointerEventHandler;
|
|
924
|
+
onPointerCancelCapture?: PointerEventHandler;
|
|
925
|
+
onPointerOut?: PointerEventHandler;
|
|
926
|
+
onPointerOutCapture?: PointerEventHandler;
|
|
927
|
+
onPointerLeave?: PointerEventHandler;
|
|
928
|
+
onPointerLeaveCapture?: PointerEventHandler;
|
|
929
|
+
onGotPointerCapture?: PointerEventHandler;
|
|
930
|
+
onGotPointerCaptureCapture?: PointerEventHandler;
|
|
931
|
+
onLostPointerCapture?: PointerEventHandler;
|
|
932
|
+
onLostPointerCaptureCapture?: PointerEventHandler;
|
|
933
|
+
onScroll?: UIEventHandler;
|
|
934
|
+
onScrollCapture?: UIEventHandler;
|
|
935
|
+
onWheel?: WheelEventHandler;
|
|
936
|
+
onWheelCapture?: WheelEventHandler;
|
|
937
|
+
onAnimationStart?: AnimationEventHandler;
|
|
938
|
+
onAnimationStartCapture?: AnimationEventHandler;
|
|
939
|
+
onAnimationEnd?: AnimationEventHandler;
|
|
940
|
+
onAnimationEndCapture?: AnimationEventHandler;
|
|
941
|
+
onAnimationIteration?: AnimationEventHandler;
|
|
942
|
+
onAnimationIterationCapture?: AnimationEventHandler;
|
|
943
|
+
onTransitionEnd?: TransitionEventHandler;
|
|
944
|
+
onTransitionEndCapture?: TransitionEventHandler;
|
|
945
|
+
}
|
|
946
|
+
interface HTMLAttributesLowerCase {
|
|
947
|
+
ref?: Ref;
|
|
948
|
+
dangerouslysetinnerhtml?: {
|
|
949
|
+
__html: string;
|
|
950
|
+
};
|
|
951
|
+
accept?: string;
|
|
952
|
+
acceptcharset?: string;
|
|
953
|
+
accesskey?: string;
|
|
954
|
+
action?: string;
|
|
955
|
+
allowfullscreen?: boolean;
|
|
956
|
+
allowtransparency?: boolean;
|
|
957
|
+
alt?: string;
|
|
958
|
+
async?: boolean;
|
|
959
|
+
autocomplete?: string;
|
|
960
|
+
autocorrect?: string;
|
|
961
|
+
autofocus?: boolean | string;
|
|
962
|
+
autoplay?: boolean;
|
|
963
|
+
capture?: boolean;
|
|
964
|
+
cellpadding?: number | string;
|
|
965
|
+
cellspacing?: number | string;
|
|
966
|
+
charset?: string;
|
|
967
|
+
challenge?: string;
|
|
968
|
+
checked?: boolean | string;
|
|
969
|
+
class?: string | Array<string>;
|
|
970
|
+
classname?: string | Array<string>;
|
|
971
|
+
cols?: number;
|
|
972
|
+
children?: any;
|
|
973
|
+
colspan?: number;
|
|
974
|
+
content?: string;
|
|
975
|
+
contenteditable?: boolean;
|
|
976
|
+
contextmenu?: string;
|
|
977
|
+
controls?: boolean;
|
|
978
|
+
controlslist?: string;
|
|
979
|
+
coords?: string;
|
|
980
|
+
crossorigin?: string;
|
|
981
|
+
data?: string;
|
|
982
|
+
datetime?: string;
|
|
983
|
+
default?: boolean;
|
|
984
|
+
defer?: boolean;
|
|
985
|
+
dir?: string;
|
|
986
|
+
disabled?: boolean;
|
|
987
|
+
download?: any;
|
|
988
|
+
draggable?: boolean;
|
|
989
|
+
enctype?: string;
|
|
990
|
+
form?: string;
|
|
991
|
+
formaction?: string;
|
|
992
|
+
formenctype?: string;
|
|
993
|
+
formmethod?: string;
|
|
994
|
+
novalidate?: boolean | string;
|
|
995
|
+
formnovalidate?: boolean;
|
|
996
|
+
formtarget?: string;
|
|
997
|
+
frameborder?: number | string;
|
|
998
|
+
headers?: string;
|
|
999
|
+
height?: number | string;
|
|
1000
|
+
hidden?: boolean;
|
|
1001
|
+
high?: number;
|
|
1002
|
+
href?: string;
|
|
1003
|
+
hreflang?: string;
|
|
1004
|
+
for?: string;
|
|
1005
|
+
htmlfor?: string;
|
|
1006
|
+
httpequiv?: string;
|
|
1007
|
+
icon?: string;
|
|
1008
|
+
id?: string;
|
|
1009
|
+
inputmode?: string;
|
|
1010
|
+
integrity?: string;
|
|
1011
|
+
is?: string;
|
|
1012
|
+
keyparams?: string;
|
|
1013
|
+
keytype?: string;
|
|
1014
|
+
kind?: string;
|
|
1015
|
+
label?: string;
|
|
1016
|
+
lang?: string;
|
|
1017
|
+
list?: string;
|
|
1018
|
+
loop?: boolean;
|
|
1019
|
+
low?: number;
|
|
1020
|
+
manifest?: string;
|
|
1021
|
+
marginheight?: number;
|
|
1022
|
+
marginwidth?: number;
|
|
1023
|
+
max?: number | string;
|
|
1024
|
+
maxlength?: number;
|
|
1025
|
+
media?: string;
|
|
1026
|
+
mediagroup?: string;
|
|
1027
|
+
method?: string;
|
|
1028
|
+
min?: number | string;
|
|
1029
|
+
minlength?: number;
|
|
1030
|
+
multiple?: boolean;
|
|
1031
|
+
muted?: boolean;
|
|
1032
|
+
name?: string;
|
|
1033
|
+
open?: boolean;
|
|
1034
|
+
optimum?: number;
|
|
1035
|
+
pattern?: string;
|
|
1036
|
+
placeholder?: string;
|
|
1037
|
+
playsinline?: boolean;
|
|
1038
|
+
poster?: string;
|
|
1039
|
+
preload?: string;
|
|
1040
|
+
radiogroup?: string;
|
|
1041
|
+
readonly?: boolean;
|
|
1042
|
+
rel?: string;
|
|
1043
|
+
required?: boolean | string;
|
|
1044
|
+
role?: string;
|
|
1045
|
+
rows?: number;
|
|
1046
|
+
rowspan?: number;
|
|
1047
|
+
sandbox?: string;
|
|
1048
|
+
scope?: string;
|
|
1049
|
+
scoped?: boolean;
|
|
1050
|
+
scrolling?: string;
|
|
1051
|
+
seamless?: boolean;
|
|
1052
|
+
selected?: boolean;
|
|
1053
|
+
shape?: string;
|
|
1054
|
+
size?: number;
|
|
1055
|
+
sizes?: string;
|
|
1056
|
+
slot?: string;
|
|
1057
|
+
span?: number;
|
|
1058
|
+
spellcheck?: boolean;
|
|
1059
|
+
src?: string;
|
|
1060
|
+
srcset?: string;
|
|
1061
|
+
srcdoc?: string;
|
|
1062
|
+
srclang?: string;
|
|
1063
|
+
start?: number;
|
|
1064
|
+
step?: number | string;
|
|
1065
|
+
style?: string | Partial<CSSProperties>;
|
|
1066
|
+
summary?: string;
|
|
1067
|
+
tabindex?: number | string;
|
|
1068
|
+
target?: string;
|
|
1069
|
+
title?: string;
|
|
1070
|
+
type?: string;
|
|
1071
|
+
usemap?: string;
|
|
1072
|
+
value?: string | string[] | number;
|
|
1073
|
+
width?: number | string;
|
|
1074
|
+
wmode?: string;
|
|
1075
|
+
wrap?: string;
|
|
1076
|
+
about?: string;
|
|
1077
|
+
datatype?: string;
|
|
1078
|
+
inlist?: any;
|
|
1079
|
+
prefix?: string;
|
|
1080
|
+
property?: string;
|
|
1081
|
+
resource?: string;
|
|
1082
|
+
typeof?: string;
|
|
1083
|
+
vocab?: string;
|
|
1084
|
+
itemprop?: string;
|
|
1085
|
+
itemscope?: boolean;
|
|
1086
|
+
itemtype?: string;
|
|
1087
|
+
itemid?: string;
|
|
1088
|
+
itemref?: string;
|
|
1089
|
+
}
|
|
1090
|
+
interface HTMLAttributes extends HTMLAttributesLowerCase, DOMAttributes {
|
|
1091
|
+
ref?: Ref;
|
|
1092
|
+
dangerouslySetInnerHTML?: {
|
|
1093
|
+
__html: string;
|
|
1094
|
+
};
|
|
1095
|
+
accept?: string;
|
|
1096
|
+
acceptCharset?: string;
|
|
1097
|
+
accessKey?: string;
|
|
1098
|
+
action?: string;
|
|
1099
|
+
allowFullScreen?: boolean;
|
|
1100
|
+
allowTransparency?: boolean;
|
|
1101
|
+
alt?: string;
|
|
1102
|
+
async?: boolean;
|
|
1103
|
+
autoComplete?: string;
|
|
1104
|
+
autoCorrect?: string;
|
|
1105
|
+
autofocus?: boolean | string;
|
|
1106
|
+
autoFocus?: boolean;
|
|
1107
|
+
autoPlay?: boolean;
|
|
1108
|
+
capture?: boolean;
|
|
1109
|
+
cellPadding?: number | string;
|
|
1110
|
+
cellSpacing?: number | string;
|
|
1111
|
+
charSet?: string;
|
|
1112
|
+
challenge?: string;
|
|
1113
|
+
checked?: boolean | string;
|
|
1114
|
+
class?: string | Array<string>;
|
|
1115
|
+
className?: string | Array<string>;
|
|
1116
|
+
cols?: number;
|
|
1117
|
+
children?: any;
|
|
1118
|
+
colSpan?: number;
|
|
1119
|
+
content?: string;
|
|
1120
|
+
contentEditable?: boolean;
|
|
1121
|
+
contextMenu?: string;
|
|
1122
|
+
controls?: boolean;
|
|
1123
|
+
controlsList?: string;
|
|
1124
|
+
coords?: string;
|
|
1125
|
+
crossOrigin?: string;
|
|
1126
|
+
data?: string;
|
|
1127
|
+
dateTime?: string;
|
|
1128
|
+
default?: boolean;
|
|
1129
|
+
defer?: boolean;
|
|
1130
|
+
dir?: string;
|
|
1131
|
+
disabled?: boolean;
|
|
1132
|
+
download?: any;
|
|
1133
|
+
draggable?: boolean;
|
|
1134
|
+
encType?: string;
|
|
1135
|
+
form?: string;
|
|
1136
|
+
formAction?: string;
|
|
1137
|
+
formEncType?: string;
|
|
1138
|
+
formMethod?: string;
|
|
1139
|
+
formNoValidate?: boolean;
|
|
1140
|
+
formTarget?: string;
|
|
1141
|
+
frameBorder?: number | string;
|
|
1142
|
+
headers?: string;
|
|
1143
|
+
height?: number | string;
|
|
1144
|
+
hidden?: boolean;
|
|
1145
|
+
high?: number;
|
|
1146
|
+
href?: string;
|
|
1147
|
+
hrefLang?: string;
|
|
1148
|
+
for?: string;
|
|
1149
|
+
htmlFor?: string;
|
|
1150
|
+
httpEquiv?: string;
|
|
1151
|
+
icon?: string;
|
|
1152
|
+
id?: string;
|
|
1153
|
+
inputMode?: string;
|
|
1154
|
+
integrity?: string;
|
|
1155
|
+
is?: string;
|
|
1156
|
+
keyParams?: string;
|
|
1157
|
+
keyType?: string;
|
|
1158
|
+
kind?: string;
|
|
1159
|
+
label?: string;
|
|
1160
|
+
lang?: string;
|
|
1161
|
+
list?: string;
|
|
1162
|
+
loop?: boolean;
|
|
1163
|
+
low?: number;
|
|
1164
|
+
manifest?: string;
|
|
1165
|
+
marginHeight?: number;
|
|
1166
|
+
marginWidth?: number;
|
|
1167
|
+
max?: number | string;
|
|
1168
|
+
maxLength?: number;
|
|
1169
|
+
media?: string;
|
|
1170
|
+
mediaGroup?: string;
|
|
1171
|
+
method?: string;
|
|
1172
|
+
min?: number | string;
|
|
1173
|
+
minLength?: number;
|
|
1174
|
+
multiple?: boolean;
|
|
1175
|
+
muted?: boolean;
|
|
1176
|
+
name?: string;
|
|
1177
|
+
open?: boolean;
|
|
1178
|
+
optimum?: number;
|
|
1179
|
+
pattern?: string;
|
|
1180
|
+
placeholder?: string;
|
|
1181
|
+
playsInline?: boolean;
|
|
1182
|
+
poster?: string;
|
|
1183
|
+
preload?: string;
|
|
1184
|
+
radioGroup?: string;
|
|
1185
|
+
readOnly?: boolean;
|
|
1186
|
+
rel?: string;
|
|
1187
|
+
required?: boolean | string;
|
|
1188
|
+
role?: string;
|
|
1189
|
+
rows?: number;
|
|
1190
|
+
rowSpan?: number;
|
|
1191
|
+
sandbox?: string;
|
|
1192
|
+
scope?: string;
|
|
1193
|
+
scoped?: boolean;
|
|
1194
|
+
scrolling?: string;
|
|
1195
|
+
seamless?: boolean;
|
|
1196
|
+
selected?: boolean;
|
|
1197
|
+
shape?: string;
|
|
1198
|
+
size?: number;
|
|
1199
|
+
sizes?: string;
|
|
1200
|
+
slot?: string;
|
|
1201
|
+
span?: number;
|
|
1202
|
+
spellcheck?: boolean;
|
|
1203
|
+
src?: string;
|
|
1204
|
+
srcDoc?: string;
|
|
1205
|
+
srcLang?: string;
|
|
1206
|
+
srcSet?: string;
|
|
1207
|
+
start?: number;
|
|
1208
|
+
step?: number | string;
|
|
1209
|
+
style?: string | Partial<CSSProperties>;
|
|
1210
|
+
summary?: string;
|
|
1211
|
+
tabIndex?: number | string;
|
|
1212
|
+
target?: string;
|
|
1213
|
+
title?: string;
|
|
1214
|
+
type?: string;
|
|
1215
|
+
useMap?: string;
|
|
1216
|
+
value?: string | string[] | number;
|
|
1217
|
+
width?: number | string;
|
|
1218
|
+
wmode?: string;
|
|
1219
|
+
wrap?: string;
|
|
1220
|
+
about?: string;
|
|
1221
|
+
datatype?: string;
|
|
1222
|
+
inlist?: any;
|
|
1223
|
+
prefix?: string;
|
|
1224
|
+
property?: string;
|
|
1225
|
+
resource?: string;
|
|
1226
|
+
typeof?: string;
|
|
1227
|
+
vocab?: string;
|
|
1228
|
+
itemProp?: string;
|
|
1229
|
+
itemScope?: boolean;
|
|
1230
|
+
itemType?: string;
|
|
1231
|
+
itemID?: string;
|
|
1232
|
+
itemRef?: string;
|
|
1233
|
+
}
|
|
1234
|
+
interface IVirtualIntrinsicElements {
|
|
1235
|
+
}
|
|
1236
|
+
interface IntrinsicElements extends IVirtualIntrinsicElements {
|
|
1237
|
+
a: HTMLAttributes;
|
|
1238
|
+
abbr: HTMLAttributes;
|
|
1239
|
+
address: HTMLAttributes;
|
|
1240
|
+
area: HTMLAttributes;
|
|
1241
|
+
article: HTMLAttributes;
|
|
1242
|
+
aside: HTMLAttributes;
|
|
1243
|
+
audio: HTMLAttributes;
|
|
1244
|
+
b: HTMLAttributes;
|
|
1245
|
+
base: HTMLAttributes;
|
|
1246
|
+
bdi: HTMLAttributes;
|
|
1247
|
+
bdo: HTMLAttributes;
|
|
1248
|
+
big: HTMLAttributes;
|
|
1249
|
+
blockquote: HTMLAttributes;
|
|
1250
|
+
body: HTMLAttributes;
|
|
1251
|
+
br: HTMLAttributes;
|
|
1252
|
+
button: HTMLAttributes;
|
|
1253
|
+
canvas: HTMLAttributes;
|
|
1254
|
+
caption: HTMLAttributes;
|
|
1255
|
+
cite: HTMLAttributes;
|
|
1256
|
+
code: HTMLAttributes;
|
|
1257
|
+
col: HTMLAttributes;
|
|
1258
|
+
colgroup: HTMLAttributes;
|
|
1259
|
+
data: HTMLAttributes;
|
|
1260
|
+
datalist: HTMLAttributes;
|
|
1261
|
+
dd: HTMLAttributes;
|
|
1262
|
+
del: HTMLAttributes;
|
|
1263
|
+
details: HTMLAttributes;
|
|
1264
|
+
dfn: HTMLAttributes;
|
|
1265
|
+
dialog: HTMLAttributes;
|
|
1266
|
+
div: HTMLAttributes;
|
|
1267
|
+
dl: HTMLAttributes;
|
|
1268
|
+
dt: HTMLAttributes;
|
|
1269
|
+
em: HTMLAttributes;
|
|
1270
|
+
embed: HTMLAttributes;
|
|
1271
|
+
fieldset: HTMLAttributes;
|
|
1272
|
+
figcaption: HTMLAttributes;
|
|
1273
|
+
figure: HTMLAttributes;
|
|
1274
|
+
footer: HTMLAttributes;
|
|
1275
|
+
form: HTMLAttributes;
|
|
1276
|
+
h1: HTMLAttributes;
|
|
1277
|
+
h2: HTMLAttributes;
|
|
1278
|
+
h3: HTMLAttributes;
|
|
1279
|
+
h4: HTMLAttributes;
|
|
1280
|
+
h5: HTMLAttributes;
|
|
1281
|
+
h6: HTMLAttributes;
|
|
1282
|
+
head: HTMLAttributes;
|
|
1283
|
+
header: HTMLAttributes;
|
|
1284
|
+
hgroup: HTMLAttributes;
|
|
1285
|
+
hr: HTMLAttributes;
|
|
1286
|
+
html: HTMLAttributes;
|
|
1287
|
+
i: HTMLAttributes;
|
|
1288
|
+
iframe: HTMLAttributes;
|
|
1289
|
+
img: HTMLAttributes;
|
|
1290
|
+
input: HTMLAttributes;
|
|
1291
|
+
ins: HTMLAttributes;
|
|
1292
|
+
kbd: HTMLAttributes;
|
|
1293
|
+
keygen: HTMLAttributes;
|
|
1294
|
+
label: HTMLAttributes;
|
|
1295
|
+
legend: HTMLAttributes;
|
|
1296
|
+
li: HTMLAttributes;
|
|
1297
|
+
link: HTMLAttributes;
|
|
1298
|
+
main: HTMLAttributes;
|
|
1299
|
+
map: HTMLAttributes;
|
|
1300
|
+
mark: HTMLAttributes;
|
|
1301
|
+
menu: HTMLAttributes;
|
|
1302
|
+
menuitem: HTMLAttributes;
|
|
1303
|
+
meta: HTMLAttributes;
|
|
1304
|
+
meter: HTMLAttributes;
|
|
1305
|
+
nav: HTMLAttributes;
|
|
1306
|
+
noscript: HTMLAttributes;
|
|
1307
|
+
object: HTMLAttributes;
|
|
1308
|
+
ol: HTMLAttributes;
|
|
1309
|
+
optgroup: HTMLAttributes;
|
|
1310
|
+
option: HTMLAttributes;
|
|
1311
|
+
output: HTMLAttributes;
|
|
1312
|
+
p: HTMLAttributes;
|
|
1313
|
+
param: HTMLAttributes;
|
|
1314
|
+
picture: HTMLAttributes;
|
|
1315
|
+
pre: HTMLAttributes;
|
|
1316
|
+
progress: HTMLAttributes;
|
|
1317
|
+
q: HTMLAttributes;
|
|
1318
|
+
rp: HTMLAttributes;
|
|
1319
|
+
rt: HTMLAttributes;
|
|
1320
|
+
ruby: HTMLAttributes;
|
|
1321
|
+
s: HTMLAttributes;
|
|
1322
|
+
samp: HTMLAttributes;
|
|
1323
|
+
script: HTMLAttributes;
|
|
1324
|
+
section: HTMLAttributes;
|
|
1325
|
+
select: HTMLAttributes;
|
|
1326
|
+
slot: HTMLAttributes;
|
|
1327
|
+
small: HTMLAttributes;
|
|
1328
|
+
source: HTMLAttributes;
|
|
1329
|
+
span: HTMLAttributes;
|
|
1330
|
+
strong: HTMLAttributes;
|
|
1331
|
+
style: HTMLAttributes;
|
|
1332
|
+
sub: HTMLAttributes;
|
|
1333
|
+
summary: HTMLAttributes;
|
|
1334
|
+
sup: HTMLAttributes;
|
|
1335
|
+
table: HTMLAttributes;
|
|
1336
|
+
tbody: HTMLAttributes;
|
|
1337
|
+
td: HTMLAttributes;
|
|
1338
|
+
textarea: HTMLAttributes;
|
|
1339
|
+
tfoot: HTMLAttributes;
|
|
1340
|
+
th: HTMLAttributes;
|
|
1341
|
+
thead: HTMLAttributes;
|
|
1342
|
+
time: HTMLAttributes;
|
|
1343
|
+
title: HTMLAttributes;
|
|
1344
|
+
tr: HTMLAttributes;
|
|
1345
|
+
track: HTMLAttributes;
|
|
1346
|
+
u: HTMLAttributes;
|
|
1347
|
+
ul: HTMLAttributes;
|
|
1348
|
+
var: HTMLAttributes;
|
|
1349
|
+
video: HTMLAttributes & Partial<{
|
|
1350
|
+
autoplay: boolean;
|
|
1351
|
+
}>;
|
|
1352
|
+
wbr: HTMLAttributes;
|
|
1353
|
+
svg: SVGAttributes;
|
|
1354
|
+
animate: SVGAttributes;
|
|
1355
|
+
circle: SVGAttributes;
|
|
1356
|
+
clipPath: SVGAttributes;
|
|
1357
|
+
defs: SVGAttributes;
|
|
1358
|
+
desc: SVGAttributes;
|
|
1359
|
+
ellipse: SVGAttributes;
|
|
1360
|
+
feBlend: SVGAttributes;
|
|
1361
|
+
feColorMatrix: SVGAttributes;
|
|
1362
|
+
feComponentTransfer: SVGAttributes;
|
|
1363
|
+
feComposite: SVGAttributes;
|
|
1364
|
+
feConvolveMatrix: SVGAttributes;
|
|
1365
|
+
feDiffuseLighting: SVGAttributes;
|
|
1366
|
+
feDisplacementMap: SVGAttributes;
|
|
1367
|
+
feFlood: SVGAttributes;
|
|
1368
|
+
feGaussianBlur: SVGAttributes;
|
|
1369
|
+
feImage: SVGAttributes;
|
|
1370
|
+
feMerge: SVGAttributes;
|
|
1371
|
+
feMergeNode: SVGAttributes;
|
|
1372
|
+
feMorphology: SVGAttributes;
|
|
1373
|
+
feOffset: SVGAttributes;
|
|
1374
|
+
feSpecularLighting: SVGAttributes;
|
|
1375
|
+
feTile: SVGAttributes;
|
|
1376
|
+
feTurbulence: SVGAttributes;
|
|
1377
|
+
filter: SVGAttributes;
|
|
1378
|
+
foreignObject: SVGAttributes;
|
|
1379
|
+
g: SVGAttributes;
|
|
1380
|
+
image: SVGAttributes;
|
|
1381
|
+
line: SVGAttributes;
|
|
1382
|
+
linearGradient: SVGAttributes;
|
|
1383
|
+
marker: SVGAttributes;
|
|
1384
|
+
mask: SVGAttributes;
|
|
1385
|
+
path: SVGAttributes;
|
|
1386
|
+
pattern: SVGAttributes;
|
|
1387
|
+
polygon: SVGAttributes;
|
|
1388
|
+
polyline: SVGAttributes;
|
|
1389
|
+
radialGradient: SVGAttributes;
|
|
1390
|
+
rect: SVGAttributes;
|
|
1391
|
+
stop: SVGAttributes;
|
|
1392
|
+
symbol: SVGAttributes;
|
|
1393
|
+
text: SVGAttributes;
|
|
1394
|
+
tspan: SVGAttributes;
|
|
1395
|
+
use: SVGAttributes;
|
|
1396
|
+
}
|
|
1397
|
+
interface IntrinsicElements {
|
|
1398
|
+
fragment: {};
|
|
1399
|
+
}
|
|
1400
|
+
}
|
|
1401
|
+
}
|
|
1402
|
+
type RenderNodeInput = VNode | string | undefined;
|
|
1403
|
+
type RenderInput = RenderNodeInput | Array<RenderNodeInput>;
|
|
1404
|
+
type RenderResultNode = Element | Text | undefined;
|
|
1405
|
+
interface Props {
|
|
1406
|
+
children?: VNodeChild | VNodeChildren;
|
|
1407
|
+
ref?: Ref;
|
|
1408
|
+
key?: string;
|
|
1409
|
+
onError?: (error: unknown) => void;
|
|
1410
|
+
}
|
|
1411
|
+
type RenderResult<T = RenderInput> = T extends Array<RenderNodeInput> ? Array<RenderResultNode> : RenderResultNode;
|
|
1412
|
+
type AllHTMLElements = HTMLElement & HTMLAnchorElement & HTMLAreaElement & HTMLAudioElement & HTMLBaseElement & HTMLBodyElement & HTMLBRElement & HTMLButtonElement & HTMLCanvasElement & HTMLDataElement & HTMLDataListElement & HTMLDetailsElement & HTMLDialogElement & HTMLDivElement & HTMLDListElement & HTMLEmbedElement & HTMLFieldSetElement & HTMLFormElement & HTMLHeadingElement & HTMLHeadElement & HTMLHtmlElement & HTMLHRElement & HTMLIFrameElement & HTMLImageElement & HTMLInputElement & HTMLLabelElement & HTMLLegendElement & HTMLLIElement & HTMLLinkElement & HTMLMapElement & HTMLMenuElement & HTMLMetaElement & HTMLMeterElement & HTMLModElement & HTMLOListElement & HTMLObjectElement & HTMLOptGroupElement & HTMLOptionElement & HTMLOutputElement & HTMLParagraphElement & HTMLPictureElement & HTMLPreElement & HTMLProgressElement & HTMLQuoteElement & HTMLScriptElement & HTMLSelectElement & HTMLSlotElement & HTMLSourceElement & HTMLSpanElement & HTMLStyleElement & HTMLTableCaptionElement & HTMLTableCellElement & HTMLTableColElement & HTMLTableElement & HTMLTableRowElement & HTMLTableSectionElement & HTMLTemplateElement & HTMLTextAreaElement & HTMLTimeElement & HTMLTitleElement & HTMLTrackElement & HTMLUListElement & HTMLUnknownElement & HTMLVideoElement & HTMLParamElement & HTMLFontElement & HTMLMarqueeElement & HTMLTableDataCellElement & HTMLTableHeaderCellElement;
|
|
1413
|
+
|
|
1414
|
+
declare global {
|
|
1415
|
+
var __defuss_document: Document;
|
|
1416
|
+
var __defuss_window: Window;
|
|
1417
|
+
}
|
|
1418
|
+
declare const createInPlaceErrorMessageVNode: (error: unknown) => {
|
|
1419
|
+
type: string;
|
|
1420
|
+
attributes: {};
|
|
1421
|
+
children: string[];
|
|
1422
|
+
};
|
|
1423
|
+
declare const jsx: (type: VNodeType | Function | any, attributes: (JSX.HTMLAttributes & JSX.SVGAttributes & Record<string, any>) | null, key?: string) => Array<VNode> | VNode;
|
|
1424
|
+
declare const observeUnmount: (domNode: Node, onUnmount: () => void) => void;
|
|
1425
|
+
/** lifecycle event attachment has been implemented separately, because it is also required to run when partially updating the DOM */
|
|
1426
|
+
declare const handleLifecycleEventsForOnMount: (newEl: HTMLElement) => void;
|
|
1427
|
+
declare const getRenderer: (document: Document) => DomAbstractionImpl;
|
|
1428
|
+
type SyncRenderInput = VNode | undefined | string | Array<VNode | undefined | string>;
|
|
1429
|
+
type ParentElementInput = Element | Document | Dequery<NodeType> | undefined;
|
|
1430
|
+
type SyncRenderResult = Array<Element | Text | undefined> | Element | Text | undefined;
|
|
1431
|
+
declare const renderIsomorphicSync: (virtualNode: SyncRenderInput, parentDomElement: ParentElementInput, globals: Globals) => SyncRenderResult;
|
|
1432
|
+
type ParentElementInputAsync = ParentElementInput | Dequery<NodeType> | Promise<ParentElementInput | Dequery<NodeType>>;
|
|
1433
|
+
declare const renderIsomorphicAsync: (virtualNode: SyncRenderInput | Promise<SyncRenderInput>, parentDomElement: ParentElementInputAsync, globals: Globals) => Promise<SyncRenderResult>;
|
|
1434
|
+
declare const globalScopeDomApis: (window: Window, document: Document) => void;
|
|
1435
|
+
declare const isJSX: (o: any) => boolean;
|
|
1436
|
+
declare const Fragment: (props: VNode) => VNodeChildren | undefined;
|
|
1437
|
+
declare const jsxs: (type: VNodeType | Function | any, attributes: (JSX.HTMLAttributes & JSX.SVGAttributes & Record<string, any>) | null, key?: string) => Array<VNode> | VNode;
|
|
1438
|
+
declare const jsxDEV: (type: VNodeType | Function | any, attributes: (JSX.HTMLAttributes & JSX.SVGAttributes & Record<string, any>) | null, key?: string, allChildrenAreStatic?: boolean, sourceInfo?: string, selfReference?: any) => Array<VNode> | VNode;
|
|
1439
|
+
/**
|
|
1440
|
+
* Core DOM update logic extracted from the update() method.
|
|
1441
|
+
* This function handles the actual DOM manipulation without the createCall wrapper,
|
|
1442
|
+
* allowing it to be used by both update() and replaceWith() without deadlock.
|
|
1443
|
+
*/
|
|
1444
|
+
declare function updateDom<NT>(input: string | RenderInput | Ref<NodeType> | NodeType | CallChainImpl<NT> | CallChainImplThenable<NT>, nodes: readonly NodeType[], timeout: number, Parser: typeof globalThis.DOMParser): Promise<readonly NodeType[]>;
|
|
1445
|
+
|
|
1446
|
+
declare const isRef: <ST = any, NT extends Node | Element | Text | null = HTMLElement>(obj: any) => obj is Ref<ST, NT>;
|
|
1447
|
+
declare function createRef<ST = any, NT extends Node | Element | Text | null = HTMLElement>(refUpdateFn?: RefUpdateFn<ST>, defaultState?: ST): Ref<ST, NT>;
|
|
1448
|
+
|
|
1449
|
+
export { emptyImpl as $, type AllHTMLElements as A, renderIsomorphicAsync as B, type CSSProperties as C, type DomAbstractionImpl as D, globalScopeDomApis as E, type FontFaceProperties as F, type Globals as G, isJSX as H, Fragment as I, jsxs as J, type KeyFrameProperties as K, jsxDEV as L, updateDom as M, type NodeType as N, isRef as O, type ParentElementInput as P, createRef as Q, type RenderInput as R, type SyncRenderInput as S, type PersistenceProviderType as T, type PersistenceProviderOptions as U, type VAttributes as V, type PersistenceProviderImpl as W, Call as X, addNonChainedReturnCallNames as Y, getNonChainedReturnCallNames as Z, isNonChainedReturnCall as _, type RenderResult as a, CallChainImpl as a0, CallChainImplThenable as a1, scrollHelper as a2, getAllFormValues as a3, delayedAutoStart as a4, type Dequery as a5, dequery as a6, $ as a7, isDequery as a8, isDequeryOptionsObject as a9, getDefaultDequeryOptions as aa, mapArrayIndexAccess as ab, createCall as ac, createGetterSetterCall as ad, createSubChain as ae, subChainForNextAwait as af, runWithTimeGuard as ag, renderNode as ah, resolveNodes as ai, traverse as aj, type FormFieldValue as ak, type FormKeyValues as al, type Dimensions as am, type Position as an, type DOMPropValue as ao, type DequeryOptions as ap, type ElementCreationOptions as aq, type DequerySyncMethodReturnType as ar, type MiddlewareFn as as, type MemoryStorage as at, type WebStorage as au, type Listener as av, type Store as aw, createStore as ax, type ParentElementInputAsync as b, type RefUpdateRenderFnInput as c, type RefUpdateFn as d, type RefUpdateRenderFn as e, type Ref as f, type VNodeAttributes as g, type VNode as h, type VNodeType as i, type VNodeKey as j, type VNodeRefObject as k, type VNodeRefCallback as l, type VNodeRef as m, type VNodeChild as n, type VNodeChildren as o, type Children as p, type RenderNodeInput as q, type RenderResultNode as r, type Props as s, createInPlaceErrorMessageVNode as t, jsx as u, observeUnmount as v, handleLifecycleEventsForOnMount as w, getRenderer as x, type SyncRenderResult as y, renderIsomorphicSync as z };
|