sibujs 3.3.0 → 3.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/browser.cjs +210 -26
- package/dist/browser.js +4 -4
- package/dist/build.cjs +193 -89
- package/dist/build.js +10 -10
- package/dist/cdn.global.js +7 -7
- package/dist/{chunk-24DBWDTK.js → chunk-37BUKSLH.js} +1 -1
- package/dist/{chunk-IHBVTURX.js → chunk-4UUMSLSL.js} +4 -4
- package/dist/{chunk-USDR2GFV.js → chunk-6LTFHJQG.js} +3 -3
- package/dist/{chunk-MWZFOIBG.js → chunk-AMIKDMLP.js} +4 -4
- package/dist/{chunk-JBXNCZSC.js → chunk-F7FXQ3QS.js} +1 -1
- package/dist/{chunk-BEIKESVL.js → chunk-IKLYI3RF.js} +9 -9
- package/dist/{chunk-NUWKIEHE.js → chunk-LU2MQXQQ.js} +2 -2
- package/dist/{chunk-WVJJUFPC.js → chunk-M5KBNOSJ.js} +2 -2
- package/dist/{chunk-7JHWAGRQ.js → chunk-MHBCEJQO.js} +1 -1
- package/dist/{chunk-Q2ERM6NT.js → chunk-NHKQKKZU.js} +1 -1
- package/dist/{chunk-6G6UNHZI.js → chunk-RYMOSG5B.js} +5 -5
- package/dist/{chunk-F4UM7QBJ.js → chunk-SLMFA3ZZ.js} +1 -1
- package/dist/{chunk-X3NHE2DK.js → chunk-TEFZT5PJ.js} +83 -17
- package/dist/{chunk-SLCUP2EK.js → chunk-ULLTNDRA.js} +3 -3
- package/dist/{chunk-M6WSIGYW.js → chunk-VOVVTOEA.js} +2 -2
- package/dist/{chunk-XQ7XSGYP.js → chunk-WL7BIR6O.js} +1 -1
- package/dist/{chunk-CVMMULHO.js → chunk-WW6DAGGR.js} +4 -4
- package/dist/{chunk-5K72I3UQ.js → chunk-WZG2SZOT.js} +21 -4
- package/dist/{chunk-S4FHR5ZZ.js → chunk-XH2RTYEQ.js} +3 -3
- package/dist/{chunk-4WXWJ4SW.js → chunk-Z37APKBV.js} +4 -4
- package/dist/data.cjs +161 -23
- package/dist/data.js +6 -6
- package/dist/devtools.cjs +245 -31
- package/dist/devtools.js +4 -4
- package/dist/ecosystem.cjs +183 -45
- package/dist/ecosystem.js +7 -7
- package/dist/extras.cjs +185 -86
- package/dist/extras.js +19 -19
- package/dist/index.cjs +193 -89
- package/dist/index.d.cts +59 -8
- package/dist/index.d.ts +59 -8
- package/dist/index.js +10 -10
- package/dist/motion.cjs +329 -13
- package/dist/motion.js +3 -3
- package/dist/patterns.cjs +161 -23
- package/dist/patterns.js +5 -5
- package/dist/performance.cjs +258 -23
- package/dist/performance.js +4 -4
- package/dist/plugins.cjs +244 -51
- package/dist/plugins.js +6 -6
- package/dist/ssr.cjs +183 -44
- package/dist/ssr.js +7 -7
- package/dist/testing.cjs +396 -5
- package/dist/testing.js +2 -2
- package/dist/ui.cjs +221 -32
- package/dist/ui.js +6 -6
- package/dist/widgets.cjs +146 -26
- package/dist/widgets.js +6 -6
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -192,7 +192,7 @@ declare const area: (first?: TagProps | NodeChildren, second?: NodeChildren) =>
|
|
|
192
192
|
declare const audio: TypedTagFunction<AudioProps, HTMLAudioElement>;
|
|
193
193
|
declare const img: TypedTagFunction<ImgProps, HTMLImageElement>;
|
|
194
194
|
declare const map: (first?: TagProps | NodeChildren, second?: NodeChildren) => Element;
|
|
195
|
-
declare const track: (first?: TagProps | NodeChildren, second?: NodeChildren) => Element;
|
|
195
|
+
declare const track$1: (first?: TagProps | NodeChildren, second?: NodeChildren) => Element;
|
|
196
196
|
declare const video: TypedTagFunction<VideoProps, HTMLVideoElement>;
|
|
197
197
|
declare const embed: (first?: TagProps | NodeChildren, second?: NodeChildren) => Element;
|
|
198
198
|
declare const iframe: (first?: TagProps | NodeChildren, second?: NodeChildren) => Element;
|
|
@@ -1300,16 +1300,24 @@ declare function withSSR<T>(fn: () => T): T;
|
|
|
1300
1300
|
* }); // Only one notification pass, result === "done"
|
|
1301
1301
|
* ```
|
|
1302
1302
|
*/
|
|
1303
|
-
declare function
|
|
1303
|
+
declare function batchImpl<T>(fn: () => T): T;
|
|
1304
1304
|
/**
|
|
1305
1305
|
* Queue a signal for deferred notification during a batch.
|
|
1306
1306
|
* If not batching, returns false so the caller can notify immediately.
|
|
1307
1307
|
*/
|
|
1308
|
-
declare function
|
|
1308
|
+
declare function enqueueBatchedSignalImpl(signal: ReactiveSignal): boolean;
|
|
1309
1309
|
/**
|
|
1310
1310
|
* Check if we're currently inside a batch.
|
|
1311
1311
|
*/
|
|
1312
|
-
declare function
|
|
1312
|
+
declare function isBatchingImpl(): boolean;
|
|
1313
|
+
interface BatchApi {
|
|
1314
|
+
batch: typeof batchImpl;
|
|
1315
|
+
enqueueBatchedSignal: typeof enqueueBatchedSignalImpl;
|
|
1316
|
+
isBatching: typeof isBatchingImpl;
|
|
1317
|
+
}
|
|
1318
|
+
declare const batch: BatchApi["batch"];
|
|
1319
|
+
declare const enqueueBatchedSignal: BatchApi["enqueueBatchedSignal"];
|
|
1320
|
+
declare const isBatching: BatchApi["isBatching"];
|
|
1313
1321
|
|
|
1314
1322
|
/**
|
|
1315
1323
|
* Wait for the next microtask — after any currently-pending reactive updates
|
|
@@ -1385,9 +1393,52 @@ interface TransitionState {
|
|
|
1385
1393
|
declare function transition(): TransitionState;
|
|
1386
1394
|
|
|
1387
1395
|
type Subscriber = () => void;
|
|
1388
|
-
declare function
|
|
1389
|
-
declare function
|
|
1390
|
-
|
|
1396
|
+
declare function suspendTracking(): void;
|
|
1397
|
+
declare function resumeTracking(): void;
|
|
1398
|
+
/** Read the "tracking suspended" flag (used by derived's lazy path). */
|
|
1399
|
+
declare function isTrackingSuspended(): boolean;
|
|
1400
|
+
declare function untracked$1<T>(fn: () => T): T;
|
|
1401
|
+
declare function retrack$1(effectFn: () => void, subscriber: Subscriber): void;
|
|
1402
|
+
declare function track(effectFn: () => void, subscriber?: Subscriber): () => void;
|
|
1403
|
+
declare function reactiveBinding(commit: () => void): () => void;
|
|
1404
|
+
declare function recordDependency(signal: ReactiveSignal): void;
|
|
1405
|
+
declare function cleanup(subscriber: Subscriber): void;
|
|
1406
|
+
declare function setMaxSubscriberRepeats(n: number): number;
|
|
1407
|
+
declare function setMaxDrainIterations$1(n: number): number;
|
|
1408
|
+
declare function drainNotificationQueue(): void;
|
|
1409
|
+
declare function queueSignalNotification(signal: ReactiveSignal): void;
|
|
1410
|
+
declare function notifySubscribers(signal: ReactiveSignal): void;
|
|
1411
|
+
/** O(1) subscriber count for devtools / introspection. */
|
|
1412
|
+
declare function getSubscriberCount(signal: ReactiveSignal): number;
|
|
1413
|
+
/** Return the signals a subscriber currently depends on, in record order. */
|
|
1414
|
+
declare function getSubscriberDeps(subscriber: Subscriber): ReactiveSignal[];
|
|
1415
|
+
/** Iterate subscribers of a signal (devtools graph walk). */
|
|
1416
|
+
declare function forEachSubscriber(signal: ReactiveSignal, visit: (sub: Subscriber) => void): void;
|
|
1417
|
+
|
|
1418
|
+
interface ReactiveApi {
|
|
1419
|
+
suspendTracking: typeof suspendTracking;
|
|
1420
|
+
resumeTracking: typeof resumeTracking;
|
|
1421
|
+
isTrackingSuspended: typeof isTrackingSuspended;
|
|
1422
|
+
untracked: typeof untracked$1;
|
|
1423
|
+
retrack: typeof retrack$1;
|
|
1424
|
+
track: typeof track;
|
|
1425
|
+
reactiveBinding: typeof reactiveBinding;
|
|
1426
|
+
recordDependency: typeof recordDependency;
|
|
1427
|
+
cleanup: typeof cleanup;
|
|
1428
|
+
setMaxSubscriberRepeats: typeof setMaxSubscriberRepeats;
|
|
1429
|
+
setMaxDrainIterations: typeof setMaxDrainIterations$1;
|
|
1430
|
+
drainNotificationQueue: typeof drainNotificationQueue;
|
|
1431
|
+
queueSignalNotification: typeof queueSignalNotification;
|
|
1432
|
+
notifySubscribers: typeof notifySubscribers;
|
|
1433
|
+
getSubscriberCount: typeof getSubscriberCount;
|
|
1434
|
+
getSubscriberDeps: typeof getSubscriberDeps;
|
|
1435
|
+
forEachSubscriber: typeof forEachSubscriber;
|
|
1436
|
+
version: string;
|
|
1437
|
+
__dupWarned?: boolean;
|
|
1438
|
+
}
|
|
1439
|
+
declare const untracked: ReactiveApi["untracked"];
|
|
1440
|
+
declare const retrack: ReactiveApi["retrack"];
|
|
1441
|
+
declare const setMaxDrainIterations: ReactiveApi["setMaxDrainIterations"];
|
|
1391
1442
|
|
|
1392
1443
|
/**
|
|
1393
1444
|
* Bind a dynamic attribute where both name and value can change reactively.
|
|
@@ -1564,4 +1615,4 @@ interface LoadingProps {
|
|
|
1564
1615
|
*/
|
|
1565
1616
|
declare function Loading(props?: LoadingProps): HTMLElement;
|
|
1566
1617
|
|
|
1567
|
-
export { type Accessor, type ActionFn, type AnchorProps, type ArrayActions, type AsyncDerivedState, type AudioProps, type ButtonProps, type Context, DynamicComponent, type EffectBody, type EffectOptions, ErrorBoundary, type ErrorBoundaryOptions, type ErrorBoundaryProps, ErrorDisplay, type ErrorDisplayProps, type ErrorSeverity, type FormProps, Fragment, type ImgProps, type InputProps, type InputType, KeepAlive, type KeepAliveOptions, type LabelProps, Loading, type LoadingProps, type LongPressOptions, type MediaProps, NodeChild, NodeChildren, type OnCleanup, type OptionProps, Portal, type Ref, type SSRStore, type SelectProps, type SignalOptions, type SlotFn, type Slots, type StoreActions, Suspense, type SuspenseProps, TagProps, type TextareaProps, type TypedTagFunction, type VideoProps, __resetIdCounter, a, abbr, action, address, area, array, article, aside, asyncDerived, audio, autoResize, b, base, batch, bdi, bdo, bindDynamic, blockquote, body, br, button, canvas, caption, catchError, catchErrorAsync, center, checkLeaks, circle, cite, clickOutside, clipPath, code, col, colgroup, context, copyOnClick, createId, customElement, data, datalist, dd, deepEqual, deepSignal, defer, defs, del, derived, details, dfn, dialog, disableSSR, dispose, div, dl, dt, each, effect, ellipse, em, embed, enableSSR, enqueueBatchedSignal, fieldset, figcaption, figure, font, footer, form, g, getRequestScopedCache, getSSRStore, getSlot, h1, h2, h3, h4, h5, h6, head, header, hr, html, i, iframe, img, input, ins, isBatching, isSSR, kbd, label, lazy, legend, li, line, linearGradient, link, longPress, main, map, mark, marker, marquee, mask, match, math, menu, meta, meter, mount, nav, nextTick, noscript, object, ol, on, onCleanup, onMount, onUnmount, optgroup, option, output, p, param, path, pattern, picture, polygon, polyline, portal, pre, progress, q, radialGradient, reactiveArray, rect, ref, registerComponent, registerDisposer, resolveComponent, retrack, rp, rt, ruby, runInSSRContext, s, samp, script, section, select, setGlobalErrorHandler, setMaxDrainIterations, show, signal, slot, small, source, span, stop, store, strict, strictEffect, strong, style, sub, summary, sup, svg, symbol, table, takePendingError, tbody, td, template, text, textarea, tfoot, th, thead, time, title, tr, track, transition, trapFocus, tspan, u, ul, unregisterComponent, untracked, use, var_, video, watch, when, withSSR, writable };
|
|
1618
|
+
export { type Accessor, type ActionFn, type AnchorProps, type ArrayActions, type AsyncDerivedState, type AudioProps, type ButtonProps, type Context, DynamicComponent, type EffectBody, type EffectOptions, ErrorBoundary, type ErrorBoundaryOptions, type ErrorBoundaryProps, ErrorDisplay, type ErrorDisplayProps, type ErrorSeverity, type FormProps, Fragment, type ImgProps, type InputProps, type InputType, KeepAlive, type KeepAliveOptions, type LabelProps, Loading, type LoadingProps, type LongPressOptions, type MediaProps, NodeChild, NodeChildren, type OnCleanup, type OptionProps, Portal, type Ref, type SSRStore, type SelectProps, type SignalOptions, type SlotFn, type Slots, type StoreActions, Suspense, type SuspenseProps, TagProps, type TextareaProps, type TypedTagFunction, type VideoProps, __resetIdCounter, a, abbr, action, address, area, array, article, aside, asyncDerived, audio, autoResize, b, base, batch, bdi, bdo, bindDynamic, blockquote, body, br, button, canvas, caption, catchError, catchErrorAsync, center, checkLeaks, circle, cite, clickOutside, clipPath, code, col, colgroup, context, copyOnClick, createId, customElement, data, datalist, dd, deepEqual, deepSignal, defer, defs, del, derived, details, dfn, dialog, disableSSR, dispose, div, dl, dt, each, effect, ellipse, em, embed, enableSSR, enqueueBatchedSignal, fieldset, figcaption, figure, font, footer, form, g, getRequestScopedCache, getSSRStore, getSlot, h1, h2, h3, h4, h5, h6, head, header, hr, html, i, iframe, img, input, ins, isBatching, isSSR, kbd, label, lazy, legend, li, line, linearGradient, link, longPress, main, map, mark, marker, marquee, mask, match, math, menu, meta, meter, mount, nav, nextTick, noscript, object, ol, on, onCleanup, onMount, onUnmount, optgroup, option, output, p, param, path, pattern, picture, polygon, polyline, portal, pre, progress, q, radialGradient, reactiveArray, rect, ref, registerComponent, registerDisposer, resolveComponent, retrack, rp, rt, ruby, runInSSRContext, s, samp, script, section, select, setGlobalErrorHandler, setMaxDrainIterations, show, signal, slot, small, source, span, stop, store, strict, strictEffect, strong, style, sub, summary, sup, svg, symbol, table, takePendingError, tbody, td, template, text, textarea, tfoot, th, thead, time, title, tr, track$1 as track, transition, trapFocus, tspan, u, ul, unregisterComponent, untracked, use, var_, video, watch, when, withSSR, writable };
|
package/dist/index.d.ts
CHANGED
|
@@ -192,7 +192,7 @@ declare const area: (first?: TagProps | NodeChildren, second?: NodeChildren) =>
|
|
|
192
192
|
declare const audio: TypedTagFunction<AudioProps, HTMLAudioElement>;
|
|
193
193
|
declare const img: TypedTagFunction<ImgProps, HTMLImageElement>;
|
|
194
194
|
declare const map: (first?: TagProps | NodeChildren, second?: NodeChildren) => Element;
|
|
195
|
-
declare const track: (first?: TagProps | NodeChildren, second?: NodeChildren) => Element;
|
|
195
|
+
declare const track$1: (first?: TagProps | NodeChildren, second?: NodeChildren) => Element;
|
|
196
196
|
declare const video: TypedTagFunction<VideoProps, HTMLVideoElement>;
|
|
197
197
|
declare const embed: (first?: TagProps | NodeChildren, second?: NodeChildren) => Element;
|
|
198
198
|
declare const iframe: (first?: TagProps | NodeChildren, second?: NodeChildren) => Element;
|
|
@@ -1300,16 +1300,24 @@ declare function withSSR<T>(fn: () => T): T;
|
|
|
1300
1300
|
* }); // Only one notification pass, result === "done"
|
|
1301
1301
|
* ```
|
|
1302
1302
|
*/
|
|
1303
|
-
declare function
|
|
1303
|
+
declare function batchImpl<T>(fn: () => T): T;
|
|
1304
1304
|
/**
|
|
1305
1305
|
* Queue a signal for deferred notification during a batch.
|
|
1306
1306
|
* If not batching, returns false so the caller can notify immediately.
|
|
1307
1307
|
*/
|
|
1308
|
-
declare function
|
|
1308
|
+
declare function enqueueBatchedSignalImpl(signal: ReactiveSignal): boolean;
|
|
1309
1309
|
/**
|
|
1310
1310
|
* Check if we're currently inside a batch.
|
|
1311
1311
|
*/
|
|
1312
|
-
declare function
|
|
1312
|
+
declare function isBatchingImpl(): boolean;
|
|
1313
|
+
interface BatchApi {
|
|
1314
|
+
batch: typeof batchImpl;
|
|
1315
|
+
enqueueBatchedSignal: typeof enqueueBatchedSignalImpl;
|
|
1316
|
+
isBatching: typeof isBatchingImpl;
|
|
1317
|
+
}
|
|
1318
|
+
declare const batch: BatchApi["batch"];
|
|
1319
|
+
declare const enqueueBatchedSignal: BatchApi["enqueueBatchedSignal"];
|
|
1320
|
+
declare const isBatching: BatchApi["isBatching"];
|
|
1313
1321
|
|
|
1314
1322
|
/**
|
|
1315
1323
|
* Wait for the next microtask — after any currently-pending reactive updates
|
|
@@ -1385,9 +1393,52 @@ interface TransitionState {
|
|
|
1385
1393
|
declare function transition(): TransitionState;
|
|
1386
1394
|
|
|
1387
1395
|
type Subscriber = () => void;
|
|
1388
|
-
declare function
|
|
1389
|
-
declare function
|
|
1390
|
-
|
|
1396
|
+
declare function suspendTracking(): void;
|
|
1397
|
+
declare function resumeTracking(): void;
|
|
1398
|
+
/** Read the "tracking suspended" flag (used by derived's lazy path). */
|
|
1399
|
+
declare function isTrackingSuspended(): boolean;
|
|
1400
|
+
declare function untracked$1<T>(fn: () => T): T;
|
|
1401
|
+
declare function retrack$1(effectFn: () => void, subscriber: Subscriber): void;
|
|
1402
|
+
declare function track(effectFn: () => void, subscriber?: Subscriber): () => void;
|
|
1403
|
+
declare function reactiveBinding(commit: () => void): () => void;
|
|
1404
|
+
declare function recordDependency(signal: ReactiveSignal): void;
|
|
1405
|
+
declare function cleanup(subscriber: Subscriber): void;
|
|
1406
|
+
declare function setMaxSubscriberRepeats(n: number): number;
|
|
1407
|
+
declare function setMaxDrainIterations$1(n: number): number;
|
|
1408
|
+
declare function drainNotificationQueue(): void;
|
|
1409
|
+
declare function queueSignalNotification(signal: ReactiveSignal): void;
|
|
1410
|
+
declare function notifySubscribers(signal: ReactiveSignal): void;
|
|
1411
|
+
/** O(1) subscriber count for devtools / introspection. */
|
|
1412
|
+
declare function getSubscriberCount(signal: ReactiveSignal): number;
|
|
1413
|
+
/** Return the signals a subscriber currently depends on, in record order. */
|
|
1414
|
+
declare function getSubscriberDeps(subscriber: Subscriber): ReactiveSignal[];
|
|
1415
|
+
/** Iterate subscribers of a signal (devtools graph walk). */
|
|
1416
|
+
declare function forEachSubscriber(signal: ReactiveSignal, visit: (sub: Subscriber) => void): void;
|
|
1417
|
+
|
|
1418
|
+
interface ReactiveApi {
|
|
1419
|
+
suspendTracking: typeof suspendTracking;
|
|
1420
|
+
resumeTracking: typeof resumeTracking;
|
|
1421
|
+
isTrackingSuspended: typeof isTrackingSuspended;
|
|
1422
|
+
untracked: typeof untracked$1;
|
|
1423
|
+
retrack: typeof retrack$1;
|
|
1424
|
+
track: typeof track;
|
|
1425
|
+
reactiveBinding: typeof reactiveBinding;
|
|
1426
|
+
recordDependency: typeof recordDependency;
|
|
1427
|
+
cleanup: typeof cleanup;
|
|
1428
|
+
setMaxSubscriberRepeats: typeof setMaxSubscriberRepeats;
|
|
1429
|
+
setMaxDrainIterations: typeof setMaxDrainIterations$1;
|
|
1430
|
+
drainNotificationQueue: typeof drainNotificationQueue;
|
|
1431
|
+
queueSignalNotification: typeof queueSignalNotification;
|
|
1432
|
+
notifySubscribers: typeof notifySubscribers;
|
|
1433
|
+
getSubscriberCount: typeof getSubscriberCount;
|
|
1434
|
+
getSubscriberDeps: typeof getSubscriberDeps;
|
|
1435
|
+
forEachSubscriber: typeof forEachSubscriber;
|
|
1436
|
+
version: string;
|
|
1437
|
+
__dupWarned?: boolean;
|
|
1438
|
+
}
|
|
1439
|
+
declare const untracked: ReactiveApi["untracked"];
|
|
1440
|
+
declare const retrack: ReactiveApi["retrack"];
|
|
1441
|
+
declare const setMaxDrainIterations: ReactiveApi["setMaxDrainIterations"];
|
|
1391
1442
|
|
|
1392
1443
|
/**
|
|
1393
1444
|
* Bind a dynamic attribute where both name and value can change reactively.
|
|
@@ -1564,4 +1615,4 @@ interface LoadingProps {
|
|
|
1564
1615
|
*/
|
|
1565
1616
|
declare function Loading(props?: LoadingProps): HTMLElement;
|
|
1566
1617
|
|
|
1567
|
-
export { type Accessor, type ActionFn, type AnchorProps, type ArrayActions, type AsyncDerivedState, type AudioProps, type ButtonProps, type Context, DynamicComponent, type EffectBody, type EffectOptions, ErrorBoundary, type ErrorBoundaryOptions, type ErrorBoundaryProps, ErrorDisplay, type ErrorDisplayProps, type ErrorSeverity, type FormProps, Fragment, type ImgProps, type InputProps, type InputType, KeepAlive, type KeepAliveOptions, type LabelProps, Loading, type LoadingProps, type LongPressOptions, type MediaProps, NodeChild, NodeChildren, type OnCleanup, type OptionProps, Portal, type Ref, type SSRStore, type SelectProps, type SignalOptions, type SlotFn, type Slots, type StoreActions, Suspense, type SuspenseProps, TagProps, type TextareaProps, type TypedTagFunction, type VideoProps, __resetIdCounter, a, abbr, action, address, area, array, article, aside, asyncDerived, audio, autoResize, b, base, batch, bdi, bdo, bindDynamic, blockquote, body, br, button, canvas, caption, catchError, catchErrorAsync, center, checkLeaks, circle, cite, clickOutside, clipPath, code, col, colgroup, context, copyOnClick, createId, customElement, data, datalist, dd, deepEqual, deepSignal, defer, defs, del, derived, details, dfn, dialog, disableSSR, dispose, div, dl, dt, each, effect, ellipse, em, embed, enableSSR, enqueueBatchedSignal, fieldset, figcaption, figure, font, footer, form, g, getRequestScopedCache, getSSRStore, getSlot, h1, h2, h3, h4, h5, h6, head, header, hr, html, i, iframe, img, input, ins, isBatching, isSSR, kbd, label, lazy, legend, li, line, linearGradient, link, longPress, main, map, mark, marker, marquee, mask, match, math, menu, meta, meter, mount, nav, nextTick, noscript, object, ol, on, onCleanup, onMount, onUnmount, optgroup, option, output, p, param, path, pattern, picture, polygon, polyline, portal, pre, progress, q, radialGradient, reactiveArray, rect, ref, registerComponent, registerDisposer, resolveComponent, retrack, rp, rt, ruby, runInSSRContext, s, samp, script, section, select, setGlobalErrorHandler, setMaxDrainIterations, show, signal, slot, small, source, span, stop, store, strict, strictEffect, strong, style, sub, summary, sup, svg, symbol, table, takePendingError, tbody, td, template, text, textarea, tfoot, th, thead, time, title, tr, track, transition, trapFocus, tspan, u, ul, unregisterComponent, untracked, use, var_, video, watch, when, withSSR, writable };
|
|
1618
|
+
export { type Accessor, type ActionFn, type AnchorProps, type ArrayActions, type AsyncDerivedState, type AudioProps, type ButtonProps, type Context, DynamicComponent, type EffectBody, type EffectOptions, ErrorBoundary, type ErrorBoundaryOptions, type ErrorBoundaryProps, ErrorDisplay, type ErrorDisplayProps, type ErrorSeverity, type FormProps, Fragment, type ImgProps, type InputProps, type InputType, KeepAlive, type KeepAliveOptions, type LabelProps, Loading, type LoadingProps, type LongPressOptions, type MediaProps, NodeChild, NodeChildren, type OnCleanup, type OptionProps, Portal, type Ref, type SSRStore, type SelectProps, type SignalOptions, type SlotFn, type Slots, type StoreActions, Suspense, type SuspenseProps, TagProps, type TextareaProps, type TypedTagFunction, type VideoProps, __resetIdCounter, a, abbr, action, address, area, array, article, aside, asyncDerived, audio, autoResize, b, base, batch, bdi, bdo, bindDynamic, blockquote, body, br, button, canvas, caption, catchError, catchErrorAsync, center, checkLeaks, circle, cite, clickOutside, clipPath, code, col, colgroup, context, copyOnClick, createId, customElement, data, datalist, dd, deepEqual, deepSignal, defer, defs, del, derived, details, dfn, dialog, disableSSR, dispose, div, dl, dt, each, effect, ellipse, em, embed, enableSSR, enqueueBatchedSignal, fieldset, figcaption, figure, font, footer, form, g, getRequestScopedCache, getSSRStore, getSlot, h1, h2, h3, h4, h5, h6, head, header, hr, html, i, iframe, img, input, ins, isBatching, isSSR, kbd, label, lazy, legend, li, line, linearGradient, link, longPress, main, map, mark, marker, marquee, mask, match, math, menu, meta, meter, mount, nav, nextTick, noscript, object, ol, on, onCleanup, onMount, onUnmount, optgroup, option, output, p, param, path, pattern, picture, polygon, polyline, portal, pre, progress, q, radialGradient, reactiveArray, rect, ref, registerComponent, registerDisposer, resolveComponent, retrack, rp, rt, ruby, runInSSRContext, s, samp, script, section, select, setGlobalErrorHandler, setMaxDrainIterations, show, signal, slot, small, source, span, stop, store, strict, strictEffect, strong, style, sub, summary, sup, svg, symbol, table, takePendingError, tbody, td, template, text, textarea, tfoot, th, thead, time, title, tr, track$1 as track, transition, trapFocus, tspan, u, ul, unregisterComponent, untracked, use, var_, video, watch, when, withSSR, writable };
|
package/dist/index.js
CHANGED
|
@@ -44,7 +44,7 @@ import {
|
|
|
44
44
|
unregisterComponent,
|
|
45
45
|
when,
|
|
46
46
|
writable
|
|
47
|
-
} from "./chunk-
|
|
47
|
+
} from "./chunk-IKLYI3RF.js";
|
|
48
48
|
import {
|
|
49
49
|
__resetIdCounter,
|
|
50
50
|
createId
|
|
@@ -186,26 +186,26 @@ import {
|
|
|
186
186
|
use,
|
|
187
187
|
var_,
|
|
188
188
|
video
|
|
189
|
-
} from "./chunk-
|
|
189
|
+
} from "./chunk-37BUKSLH.js";
|
|
190
190
|
import {
|
|
191
191
|
watch
|
|
192
|
-
} from "./chunk-
|
|
192
|
+
} from "./chunk-SLMFA3ZZ.js";
|
|
193
193
|
import {
|
|
194
194
|
trustHTML
|
|
195
195
|
} from "./chunk-R3QEDXFS.js";
|
|
196
196
|
import {
|
|
197
197
|
context
|
|
198
|
-
} from "./chunk-
|
|
198
|
+
} from "./chunk-F7FXQ3QS.js";
|
|
199
199
|
import {
|
|
200
200
|
SVG_NS,
|
|
201
201
|
tagFactory
|
|
202
|
-
} from "./chunk-
|
|
202
|
+
} from "./chunk-LU2MQXQQ.js";
|
|
203
203
|
import {
|
|
204
204
|
bindDynamic
|
|
205
|
-
} from "./chunk-
|
|
205
|
+
} from "./chunk-NHKQKKZU.js";
|
|
206
206
|
import {
|
|
207
207
|
derived
|
|
208
|
-
} from "./chunk-
|
|
208
|
+
} from "./chunk-WW6DAGGR.js";
|
|
209
209
|
import {
|
|
210
210
|
checkLeaks,
|
|
211
211
|
dispose,
|
|
@@ -215,7 +215,7 @@ import "./chunk-L3GAGWCC.js";
|
|
|
215
215
|
import {
|
|
216
216
|
effect,
|
|
217
217
|
on
|
|
218
|
-
} from "./chunk-
|
|
218
|
+
} from "./chunk-MHBCEJQO.js";
|
|
219
219
|
import {
|
|
220
220
|
disableSSR,
|
|
221
221
|
enableSSR,
|
|
@@ -230,12 +230,12 @@ import {
|
|
|
230
230
|
enqueueBatchedSignal,
|
|
231
231
|
isBatching,
|
|
232
232
|
signal
|
|
233
|
-
} from "./chunk-
|
|
233
|
+
} from "./chunk-WZG2SZOT.js";
|
|
234
234
|
import {
|
|
235
235
|
retrack,
|
|
236
236
|
setMaxDrainIterations,
|
|
237
237
|
untracked
|
|
238
|
-
} from "./chunk-
|
|
238
|
+
} from "./chunk-TEFZT5PJ.js";
|
|
239
239
|
import "./chunk-COY6PUD2.js";
|
|
240
240
|
export {
|
|
241
241
|
DynamicComponent,
|