@tarojs/runtime 3.6.22-nightly.0 → 3.6.22-nightly.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +7 -0
- package/dist/bom/URL.d.ts +7 -14
- package/dist/bom/URL.js +221 -0
- package/dist/bom/URL.js.map +1 -0
- package/dist/bom/URLSearchParams.d.ts +2 -14
- package/dist/bom/URLSearchParams.js +123 -0
- package/dist/bom/URLSearchParams.js.map +1 -0
- package/dist/bom/document.d.ts +2 -1
- package/dist/bom/document.js +39 -0
- package/dist/bom/document.js.map +1 -0
- package/dist/bom/getComputedStyle.d.ts +5 -3
- package/dist/bom/getComputedStyle.js +8 -0
- package/dist/bom/getComputedStyle.js.map +1 -0
- package/dist/bom/history.d.ts +11 -8
- package/dist/bom/history.js +121 -0
- package/dist/bom/history.js.map +1 -0
- package/dist/bom/location.d.ts +7 -4
- package/dist/bom/location.js +240 -0
- package/dist/bom/location.js.map +1 -0
- package/dist/bom/navigator.d.ts +2 -1
- package/dist/bom/navigator.js +24 -0
- package/dist/bom/navigator.js.map +1 -0
- package/dist/bom/raf.d.ts +3 -4
- package/dist/bom/raf.js +33 -0
- package/dist/bom/raf.js.map +1 -0
- package/dist/bom/window.d.ts +25 -4
- package/dist/bom/window.js +92 -0
- package/dist/bom/window.js.map +1 -0
- package/dist/constants/index.d.ts +52 -50
- package/dist/constants/index.js +63 -0
- package/dist/constants/index.js.map +1 -0
- package/dist/current.d.ts +5 -5
- package/dist/current.js +9 -0
- package/dist/current.js.map +1 -0
- package/dist/dom/anchor-element.d.ts +3 -2
- package/dist/dom/anchor-element.js +54 -0
- package/dist/dom/anchor-element.js.map +1 -0
- package/dist/dom/class-list.d.ts +3 -2
- package/dist/dom/class-list.js +92 -0
- package/dist/dom/class-list.js.map +1 -0
- package/dist/dom/document.d.ts +11 -6
- package/dist/dom/document.js +80 -0
- package/dist/dom/document.js.map +1 -0
- package/dist/dom/element.d.ts +8 -7
- package/dist/dom/element.js +318 -0
- package/dist/dom/element.js.map +1 -0
- package/dist/dom/event-source.d.ts +3 -3
- package/dist/dom/event-source.js +17 -0
- package/dist/dom/event-source.js.map +1 -0
- package/dist/dom/event-target.d.ts +3 -2
- package/dist/dom/event-target.js +78 -0
- package/dist/dom/event-target.js.map +1 -0
- package/dist/dom/event.d.ts +6 -5
- package/dist/dom/event.js +151 -0
- package/dist/dom/event.js.map +1 -0
- package/dist/dom/form.d.ts +4 -3
- package/dist/dom/form.js +38 -0
- package/dist/dom/form.js.map +1 -0
- package/dist/dom/node.d.ts +40 -9
- package/dist/dom/node.js +292 -0
- package/dist/dom/node.js.map +1 -0
- package/dist/dom/root.d.ts +6 -5
- package/dist/dom/root.js +169 -0
- package/dist/dom/root.js.map +1 -0
- package/dist/dom/style.d.ts +3 -2
- package/dist/dom/style.js +168 -0
- package/dist/dom/style.js.map +1 -0
- package/dist/dom/style_properties.js +186 -0
- package/dist/dom/style_properties.js.map +1 -0
- package/dist/dom/svg.d.ts +3 -2
- package/dist/dom/svg.js +8 -0
- package/dist/dom/svg.js.map +1 -0
- package/dist/dom/text.d.ts +4 -3
- package/dist/dom/text.js +41 -0
- package/dist/dom/text.js.map +1 -0
- package/dist/dom/transfer.d.ts +3 -2
- package/dist/dom/transfer.js +15 -0
- package/dist/dom/transfer.js.map +1 -0
- package/dist/dom/tree.d.ts +3 -3
- package/dist/dom/tree.js +38 -0
- package/dist/dom/tree.js.map +1 -0
- package/dist/dom-external/element.d.ts +4 -3
- package/dist/dom-external/element.js +29 -0
- package/dist/dom-external/element.js.map +1 -0
- package/dist/dom-external/index.js +38 -0
- package/dist/dom-external/index.js.map +1 -0
- package/dist/dom-external/inner-html/html.d.ts +3 -2
- package/dist/dom-external/inner-html/html.js +28 -0
- package/dist/dom-external/inner-html/html.js.map +1 -0
- package/dist/dom-external/inner-html/parser.d.ts +7 -7
- package/dist/dom-external/inner-html/parser.js +216 -0
- package/dist/dom-external/inner-html/parser.js.map +1 -0
- package/dist/dom-external/inner-html/scaner.d.ts +3 -3
- package/dist/dom-external/inner-html/scaner.js +304 -0
- package/dist/dom-external/inner-html/scaner.js.map +1 -0
- package/dist/dom-external/inner-html/style.d.ts +3 -3
- package/dist/dom-external/inner-html/style.js +235 -0
- package/dist/dom-external/inner-html/style.js.map +1 -0
- package/dist/dom-external/inner-html/tags.d.ts +6 -5
- package/dist/dom-external/inner-html/tags.js +26 -0
- package/dist/dom-external/inner-html/tags.js.map +1 -0
- package/dist/dom-external/inner-html/utils.d.ts +2 -1
- package/dist/dom-external/inner-html/utils.js +12 -0
- package/dist/dom-external/inner-html/utils.js.map +1 -0
- package/dist/dom-external/mutation-observer/implements.d.ts +25 -6
- package/dist/dom-external/mutation-observer/implements.js +108 -0
- package/dist/dom-external/mutation-observer/implements.js.map +1 -0
- package/dist/dom-external/mutation-observer/index.d.ts +5 -6
- package/dist/dom-external/mutation-observer/index.js +35 -0
- package/dist/dom-external/mutation-observer/index.js.map +1 -0
- package/dist/dom-external/node.d.ts +6 -5
- package/dist/dom-external/node.js +74 -0
- package/dist/dom-external/node.js.map +1 -0
- package/dist/dsl/common.d.ts +16 -16
- package/dist/dsl/common.js +337 -0
- package/dist/dsl/common.js.map +1 -0
- package/dist/emitter/emitter.d.ts +2 -2
- package/dist/emitter/emitter.js +7 -0
- package/dist/emitter/emitter.js.map +1 -0
- package/dist/env.d.ts +2 -2
- package/dist/env.js +9 -0
- package/dist/env.js.map +1 -0
- package/dist/hydrate.d.ts +5 -4
- package/dist/hydrate.js +84 -0
- package/dist/hydrate.js.map +1 -0
- package/dist/index-26658829.d.ts +23 -0
- package/dist/index.cjs.d.ts +775 -0
- package/dist/index.cjs.js +4347 -0
- package/dist/index.cjs.js.map +1 -0
- package/dist/index.d.ts +30 -31
- package/dist/index.js +31 -0
- package/dist/index.js.map +1 -0
- package/dist/{dsl/instance.d.ts → instance-0f017c6e.d.ts} +19 -18
- package/dist/next-tick.d.ts +3 -2
- package/dist/next-tick.js +47 -0
- package/dist/next-tick.js.map +1 -0
- package/dist/node_modules/.pnpm/registry.npmjs.org_tslib@2.5.0/node_modules/tslib/tslib.es6.js +32 -0
- package/dist/node_modules/.pnpm/registry.npmjs.org_tslib@2.5.0/node_modules/tslib/tslib.es6.js.map +1 -0
- package/dist/{dom/node_types.d.ts → node_types-9ac5b4dd.d.ts} +2 -1
- package/dist/{interface/options.d.ts → options-0f017c6e.d.ts} +5 -4
- package/dist/options.d.ts +3 -2
- package/dist/options.js +7 -0
- package/dist/options.js.map +1 -0
- package/dist/perf.d.ts +2 -2
- package/dist/perf.js +28 -0
- package/dist/perf.js.map +1 -0
- package/dist/{dom-external/mutation-observer/record.d.ts → record-32b054d8.d.ts} +4 -3
- package/dist/runtime.esm.d.ts +82 -88
- package/dist/runtime.esm.js +360 -374
- package/dist/runtime.esm.js.map +1 -1
- package/dist/utils/cache.d.ts +2 -1
- package/dist/utils/cache.js +27 -0
- package/dist/utils/cache.js.map +1 -0
- package/dist/utils/index.d.ts +15 -15
- package/dist/utils/index.js +95 -0
- package/dist/utils/index.js.map +1 -0
- package/package.json +20 -10
- package/dist/interface/element.d.ts +0 -4
- package/dist/interface/event-target.d.ts +0 -10
- package/dist/interface/event.d.ts +0 -15
- package/dist/interface/hydrate.d.ts +0 -30
- package/dist/interface/index.d.ts +0 -7
- package/dist/interface/node.d.ts +0 -7
- package/dist/interface/utils.d.ts +0 -2
package/dist/runtime.esm.d.ts
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { Shortcuts, Events } from "@tarojs/shared";
|
|
2
|
-
import { PageConfig } from "@tarojs/taro";
|
|
3
2
|
import VueCtor from "vue";
|
|
4
3
|
import { ComponentOptions, VNode } from "vue";
|
|
5
4
|
import { Component as Vue3Component } from "@vue/runtime-core";
|
|
@@ -48,6 +47,9 @@ interface AddEventListenerOptions extends EventListenerOptions {
|
|
|
48
47
|
interface EventHandler extends Function {
|
|
49
48
|
_stop?: boolean;
|
|
50
49
|
}
|
|
50
|
+
// Note: @tarojs/runtime 不依赖 @tarojs/taro, 所以不能改为从 @tarojs/taro 引入 (可能导致循环依赖)
|
|
51
|
+
type TFunc = (...args: any[]) => any;
|
|
52
|
+
type PageConfig = Record<string, any>;
|
|
51
53
|
interface MpInstance {
|
|
52
54
|
config: PageConfig;
|
|
53
55
|
setData: (data: unknown, cb: () => void) => void;
|
|
@@ -134,8 +136,6 @@ interface Options {
|
|
|
134
136
|
};
|
|
135
137
|
miniGlobal?: any;
|
|
136
138
|
}
|
|
137
|
-
type Func = (...args: any[]) => any;
|
|
138
|
-
type Ctx = Record<string, any>;
|
|
139
139
|
declare class TaroEventTarget {
|
|
140
140
|
__handlers: Record<string, EventHandler[]>;
|
|
141
141
|
addEventListener(type: string, handler: EventHandler, options?: boolean | AddEventListenerOptions): void;
|
|
@@ -151,8 +151,8 @@ declare class TaroRootElement extends TaroElement {
|
|
|
151
151
|
get _path(): string;
|
|
152
152
|
get _root(): TaroRootElement;
|
|
153
153
|
enqueueUpdate(payload: UpdatePayload): void;
|
|
154
|
-
performUpdate(initRender?: boolean, prerender?:
|
|
155
|
-
enqueueUpdateCallback(cb:
|
|
154
|
+
performUpdate(initRender?: boolean, prerender?: TFunc): void;
|
|
155
|
+
enqueueUpdateCallback(cb: TFunc, ctx?: Record<string, any>): void;
|
|
156
156
|
flushUpdateCallback(): void;
|
|
157
157
|
}
|
|
158
158
|
interface RemoveChildOptions {
|
|
@@ -223,7 +223,7 @@ declare class TaroNode extends TaroEventTarget {
|
|
|
223
223
|
hasChildNodes(): boolean;
|
|
224
224
|
enqueueUpdate(payload: UpdatePayload): void;
|
|
225
225
|
get ownerDocument(): TaroDocument;
|
|
226
|
-
static extend(methodName: string, options:
|
|
226
|
+
static extend(methodName: string, options: TFunc | Record<string, any>): void;
|
|
227
227
|
}
|
|
228
228
|
declare class Style {
|
|
229
229
|
_pending: boolean;
|
|
@@ -297,7 +297,7 @@ declare class TaroElement extends TaroNode {
|
|
|
297
297
|
dispatchEvent(event: TaroEvent): boolean;
|
|
298
298
|
addEventListener(type: any, handler: any, options: any): void;
|
|
299
299
|
removeEventListener(type: any, handler: any, sideEffect?: boolean): void;
|
|
300
|
-
static extend(methodName: string, options:
|
|
300
|
+
static extend(methodName: string, options: TFunc | Record<string, any>): void;
|
|
301
301
|
}
|
|
302
302
|
declare class FormElement extends TaroElement {
|
|
303
303
|
get type(): string;
|
|
@@ -311,6 +311,7 @@ declare class TaroDocument extends TaroElement {
|
|
|
311
311
|
head: TaroElement;
|
|
312
312
|
body: TaroElement;
|
|
313
313
|
createEvent: typeof createEvent;
|
|
314
|
+
cookie?: string;
|
|
314
315
|
constructor();
|
|
315
316
|
createElement(type: string): TaroElement | TaroRootElement | FormElement;
|
|
316
317
|
// an ugly fake createElementNS to deal with @vue/runtime-dom's
|
|
@@ -329,8 +330,9 @@ interface Env {
|
|
|
329
330
|
document: TaroDocument;
|
|
330
331
|
}
|
|
331
332
|
declare const env: Env;
|
|
332
|
-
declare
|
|
333
|
-
|
|
333
|
+
declare const document: TaroDocument;
|
|
334
|
+
type TGetComputedStyle = typeof window.getComputedStyle | ((el: TaroElement) => Style);
|
|
335
|
+
declare const getComputedStyle: TGetComputedStyle;
|
|
334
336
|
declare const eventCenter: Events;
|
|
335
337
|
type EventsType = typeof Events;
|
|
336
338
|
/**
|
|
@@ -345,75 +347,60 @@ declare class RuntimeCache<T> {
|
|
|
345
347
|
get(identifier: string): T | undefined;
|
|
346
348
|
delete(identifier: string): void;
|
|
347
349
|
}
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
set search(val: string);
|
|
385
|
-
get hash(): string;
|
|
386
|
-
// 小程序的navigateTo存在截断hash字符串的问题
|
|
387
|
-
set hash(val: string);
|
|
388
|
-
get href(): string;
|
|
389
|
-
set href(val: string);
|
|
390
|
-
get origin(): string;
|
|
391
|
-
set origin(val: string);
|
|
392
|
-
/* public method */
|
|
393
|
-
assign(): void;
|
|
394
|
-
reload(): void;
|
|
395
|
-
replace(url: string): void;
|
|
396
|
-
toString(): string;
|
|
397
|
-
// For debug
|
|
398
|
-
get cache(): RuntimeCache<LocationContext>;
|
|
399
|
-
}
|
|
350
|
+
type Options$0 = {
|
|
351
|
+
window: any;
|
|
352
|
+
};
|
|
353
|
+
type LocationContext = {
|
|
354
|
+
lastHref: string;
|
|
355
|
+
};
|
|
356
|
+
declare class TaroLocation extends Events {
|
|
357
|
+
#private;
|
|
358
|
+
constructor(options: Options$0);
|
|
359
|
+
/* public property */
|
|
360
|
+
get protocol(): string;
|
|
361
|
+
set protocol(val: string);
|
|
362
|
+
get host(): string;
|
|
363
|
+
set host(val: string);
|
|
364
|
+
get hostname(): string;
|
|
365
|
+
set hostname(val: string);
|
|
366
|
+
get port(): string;
|
|
367
|
+
set port(val: string);
|
|
368
|
+
get pathname(): string;
|
|
369
|
+
set pathname(val: string);
|
|
370
|
+
get search(): string;
|
|
371
|
+
set search(val: string);
|
|
372
|
+
get hash(): string;
|
|
373
|
+
// 小程序的navigateTo存在截断hash字符串的问题
|
|
374
|
+
set hash(val: string);
|
|
375
|
+
get href(): string;
|
|
376
|
+
set href(val: string);
|
|
377
|
+
get origin(): string;
|
|
378
|
+
set origin(val: string);
|
|
379
|
+
/* public method */
|
|
380
|
+
assign(): void;
|
|
381
|
+
reload(): void;
|
|
382
|
+
replace(url: string): void;
|
|
383
|
+
toString(): string;
|
|
384
|
+
// For debug
|
|
385
|
+
get cache(): RuntimeCache<LocationContext>;
|
|
400
386
|
}
|
|
387
|
+
declare const Location: typeof TaroLocation;
|
|
401
388
|
interface HistoryState {
|
|
402
389
|
state: Record<string, any> | null;
|
|
403
390
|
title: string;
|
|
404
391
|
url: string;
|
|
405
392
|
}
|
|
406
|
-
type Options$
|
|
393
|
+
type Options$1 = {
|
|
407
394
|
window: any;
|
|
408
395
|
};
|
|
409
396
|
type HistoryContext = {
|
|
410
|
-
location:
|
|
397
|
+
location: TaroLocation;
|
|
411
398
|
stack: HistoryState[];
|
|
412
399
|
cur: number;
|
|
413
400
|
};
|
|
414
|
-
declare class
|
|
401
|
+
declare class TaroHistory extends Events {
|
|
415
402
|
#private;
|
|
416
|
-
constructor(location:
|
|
403
|
+
constructor(location: TaroLocation, options: Options$1);
|
|
417
404
|
/* public property */
|
|
418
405
|
get length(): number;
|
|
419
406
|
get state(): Record<string, any> | null;
|
|
@@ -426,28 +413,15 @@ declare class History extends Events {
|
|
|
426
413
|
// For debug
|
|
427
414
|
get cache(): RuntimeCache<HistoryContext>;
|
|
428
415
|
}
|
|
429
|
-
declare const
|
|
416
|
+
declare const History: typeof TaroHistory;
|
|
417
|
+
declare const nav: typeof window.navigator;
|
|
430
418
|
// https://github.com/myrne/performance-now
|
|
431
419
|
declare let now: () => number;
|
|
432
420
|
// https://gist.github.com/paulirish/1579671
|
|
433
421
|
// https://gist.github.com/jalbam/5fe05443270fa6d8136238ec72accbc0
|
|
434
|
-
declare const _raf: typeof requestAnimationFrame
|
|
422
|
+
declare const _raf: typeof requestAnimationFrame;
|
|
435
423
|
declare const _caf: typeof cancelAnimationFrame;
|
|
436
|
-
declare class
|
|
437
|
-
#private;
|
|
438
|
-
constructor(query: any);
|
|
439
|
-
append(name: string, value: string): void;
|
|
440
|
-
delete(name: string): void;
|
|
441
|
-
get(name: string): any;
|
|
442
|
-
getAll(name: string): any;
|
|
443
|
-
has(name: string): boolean;
|
|
444
|
-
keys(): string[];
|
|
445
|
-
set(name: string, value: string): void;
|
|
446
|
-
forEach(callback: any, thisArg: any): void;
|
|
447
|
-
toJSON(): {};
|
|
448
|
-
toString(): string;
|
|
449
|
-
}
|
|
450
|
-
declare class URL {
|
|
424
|
+
declare class TaroURL {
|
|
451
425
|
#private;
|
|
452
426
|
static createObjectURL(): void;
|
|
453
427
|
static revokeObjectURL(): void;
|
|
@@ -488,6 +462,7 @@ declare class URL {
|
|
|
488
462
|
href: string;
|
|
489
463
|
};
|
|
490
464
|
}
|
|
465
|
+
declare const URL: typeof TaroURL;
|
|
491
466
|
declare function parseUrl(url?: string): {
|
|
492
467
|
href: string;
|
|
493
468
|
origin: string;
|
|
@@ -499,9 +474,27 @@ declare function parseUrl(url?: string): {
|
|
|
499
474
|
search: string;
|
|
500
475
|
hash: string;
|
|
501
476
|
};
|
|
502
|
-
declare
|
|
503
|
-
declare
|
|
504
|
-
|
|
477
|
+
declare const URLSearchParams: any;
|
|
478
|
+
declare class TaroWindow extends Events {
|
|
479
|
+
navigator: Navigator;
|
|
480
|
+
requestAnimationFrame: typeof requestAnimationFrame;
|
|
481
|
+
cancelAnimationFrame: typeof cancelAnimationFrame;
|
|
482
|
+
getComputedStyle: TGetComputedStyle;
|
|
483
|
+
Date: DateConstructor;
|
|
484
|
+
location: TaroLocation;
|
|
485
|
+
history: TaroHistory;
|
|
486
|
+
XMLHttpRequest?: Partial<XMLHttpRequest>;
|
|
487
|
+
constructor();
|
|
488
|
+
initEvent(): void;
|
|
489
|
+
get document(): TaroDocument;
|
|
490
|
+
addEventListener(event: string, callback: (arg: any) => void): void;
|
|
491
|
+
removeEventListener(event: string, callback: (arg: any) => void): void;
|
|
492
|
+
setTimeout(...args: Parameters<typeof setTimeout>): number;
|
|
493
|
+
clearTimeout(...args: Parameters<typeof clearTimeout>): void;
|
|
494
|
+
}
|
|
495
|
+
declare const window: TaroWindow;
|
|
496
|
+
declare const location: TaroLocation;
|
|
497
|
+
declare const history: TaroHistory;
|
|
505
498
|
// for Vue3
|
|
506
499
|
declare class SVGElement extends TaroElement {
|
|
507
500
|
}
|
|
@@ -626,6 +619,7 @@ declare const KEY_CODE = "keyCode";
|
|
|
626
619
|
declare const TOUCHMOVE = "touchmove";
|
|
627
620
|
declare const DATE = "Date";
|
|
628
621
|
declare const SET_TIMEOUT = "setTimeout";
|
|
622
|
+
declare const COMPILE_MODE = "compileMode";
|
|
629
623
|
declare const CATCHMOVE = "catchMove";
|
|
630
624
|
declare const CATCH_VIEW = "catch-view";
|
|
631
625
|
declare const COMMENT = "comment";
|
|
@@ -676,7 +670,7 @@ interface ReactAppInstance<T = AppInstance> extends Component<T>, AppInstance {
|
|
|
676
670
|
interface PageLifeCycle extends Show {
|
|
677
671
|
eh?(event: MpEvent): void;
|
|
678
672
|
onAddToFavorites?(): void;
|
|
679
|
-
onLoad?(options: Record<string, unknown>, cb?:
|
|
673
|
+
onLoad?(options: Record<string, unknown>, cb?: TFunc): void;
|
|
680
674
|
onOptionMenuClick?(): void;
|
|
681
675
|
onPageScroll?(obj: {
|
|
682
676
|
scrollTop: number;
|
|
@@ -773,9 +767,9 @@ declare function createRecursiveComponentConfig(componentName?: string): any;
|
|
|
773
767
|
* it's a vnode traverser and modifier: that's exactly what Taro's doing in here.
|
|
774
768
|
*/
|
|
775
769
|
declare function hydrate(node: TaroElement | TaroText): MiniData;
|
|
776
|
-
declare const nextTick: (cb:
|
|
770
|
+
declare const nextTick: (cb: TFunc, ctx?: Record<string, any>) => void;
|
|
777
771
|
declare const options: Options;
|
|
778
772
|
declare const incrementId: () => () => string;
|
|
779
773
|
declare function isHasExtractProp(el: TaroElement): boolean;
|
|
780
774
|
export { hooks } from '@tarojs/shared';
|
|
781
|
-
export { document, getComputedStyle, History, Location, nav as navigator, _caf as cancelAnimationFrame, now, _raf as requestAnimationFrame, parseUrl, URL, URLSearchParams, history, location, window, TaroElement, createEvent, eventHandler, TaroEvent, FormElement, TaroNode, TaroRootElement, Style, SVGElement, TaroText, MutationObserver, env, PROPERTY_THRESHOLD, TARO_RUNTIME, HOOKS_APP_ID, SET_DATA, PAGE_INIT, ROOT_STR, HTML, HEAD, BODY, APP, CONTAINER, DOCUMENT_ELEMENT_NAME, DOCUMENT_FRAGMENT, ID, UID, CLASS, STYLE, FOCUS, VIEW, STATIC_VIEW, PURE_VIEW, PROPS, DATASET, OBJECT, VALUE, INPUT, CHANGE, CUSTOM_WRAPPER, TARGET, CURRENT_TARGET, TYPE, CONFIRM, TIME_STAMP, KEY_CODE, TOUCHMOVE, DATE, SET_TIMEOUT, CATCHMOVE, CATCH_VIEW, COMMENT, ON_LOAD, ON_READY, ON_SHOW, ON_HIDE, OPTIONS, EXTERNAL_CLASSES, EVENT_CALLBACK_RESULT, BEHAVIORS, A, CONTEXT_ACTIONS, Current, getCurrentInstance, eventSource, addLeadingSlash, createComponentConfig, createPageConfig, createRecursiveComponentConfig, getOnHideEventKey, getOnReadyEventKey, getOnShowEventKey, getPageInstance, getPath, injectPageInstance, removePageInstance, safeExecute, stringify, EventsType, eventCenter, Events, hydrate, nextTick, options, incrementId, isHasExtractProp, Instance, VueAppInstance, VueInstance, PageProps, ReactPageComponent, ReactPageInstance, ReactAppInstance, PageLifeCycle, PageInstance, AppInstance, Attributes, EventOptions, MpEvent, EventListenerOptions, AddEventListenerOptions, EventHandler, MpInstance, MiniElementData, MiniData, HydratedData, UpdatePayloadValue, DataTree, UpdatePayload, Options$
|
|
775
|
+
export { document, getComputedStyle, History, Location, nav as navigator, _caf as cancelAnimationFrame, now, _raf as requestAnimationFrame, parseUrl, URL, URLSearchParams, history, location, window, TaroElement, createEvent, eventHandler, TaroEvent, FormElement, TaroNode, TaroRootElement, Style, SVGElement, TaroText, MutationObserver, env, PROPERTY_THRESHOLD, TARO_RUNTIME, HOOKS_APP_ID, SET_DATA, PAGE_INIT, ROOT_STR, HTML, HEAD, BODY, APP, CONTAINER, DOCUMENT_ELEMENT_NAME, DOCUMENT_FRAGMENT, ID, UID, CLASS, STYLE, FOCUS, VIEW, STATIC_VIEW, PURE_VIEW, PROPS, DATASET, OBJECT, VALUE, INPUT, CHANGE, CUSTOM_WRAPPER, TARGET, CURRENT_TARGET, TYPE, CONFIRM, TIME_STAMP, KEY_CODE, TOUCHMOVE, DATE, SET_TIMEOUT, COMPILE_MODE, CATCHMOVE, CATCH_VIEW, COMMENT, ON_LOAD, ON_READY, ON_SHOW, ON_HIDE, OPTIONS, EXTERNAL_CLASSES, EVENT_CALLBACK_RESULT, BEHAVIORS, A, CONTEXT_ACTIONS, Current, getCurrentInstance, eventSource, addLeadingSlash, createComponentConfig, createPageConfig, createRecursiveComponentConfig, getOnHideEventKey, getOnReadyEventKey, getOnShowEventKey, getPageInstance, getPath, injectPageInstance, removePageInstance, safeExecute, stringify, EventsType, eventCenter, Events, hydrate, nextTick, options, incrementId, isHasExtractProp, Instance, VueAppInstance, VueInstance, PageProps, ReactPageComponent, ReactPageInstance, ReactAppInstance, PageLifeCycle, PageInstance, AppInstance, Attributes, EventOptions, MpEvent, EventListenerOptions, AddEventListenerOptions, EventHandler, MpInstance, MiniElementData, MiniTextData, MiniData, HydratedData, UpdatePayloadValue, DataTree, UpdatePayload, Options$1 as Options, TFunc, PageConfig };
|