sibujs 1.1.0 → 1.3.0

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.
Files changed (94) hide show
  1. package/README.md +29 -25
  2. package/dist/browser.cjs +804 -2
  3. package/dist/browser.d.cts +591 -1
  4. package/dist/browser.d.ts +591 -1
  5. package/dist/browser.js +50 -8
  6. package/dist/build.cjs +706 -161
  7. package/dist/build.js +21 -12
  8. package/dist/cdn.global.js +188 -7
  9. package/dist/chunk-2BYQDGN3.js +742 -0
  10. package/dist/chunk-32DY64NT.js +282 -0
  11. package/dist/chunk-3AIRKM3B.js +1263 -0
  12. package/dist/chunk-3X2YG6YM.js +505 -0
  13. package/dist/chunk-5X6PP2UK.js +28 -0
  14. package/dist/chunk-77L6NL3X.js +1097 -0
  15. package/dist/chunk-B7SWRFUT.js +332 -0
  16. package/dist/chunk-BGN5ZMP4.js +26 -0
  17. package/dist/chunk-BTU3TJDS.js +365 -0
  18. package/dist/chunk-CHF5OHIA.js +61 -0
  19. package/dist/chunk-CMBFNA7L.js +27 -0
  20. package/dist/chunk-DAHRH4ON.js +331 -0
  21. package/dist/chunk-EBGIRKQY.js +616 -0
  22. package/dist/chunk-EUZND3CB.js +27 -0
  23. package/dist/chunk-F3FA4F32.js +292 -0
  24. package/dist/chunk-GCOK2LC3.js +282 -0
  25. package/dist/chunk-JAKHTMQU.js +1000 -0
  26. package/dist/chunk-JCI5M6U6.js +956 -0
  27. package/dist/chunk-KQPDEVVS.js +398 -0
  28. package/dist/chunk-NEKUBFPT.js +60 -0
  29. package/dist/chunk-NYVAC6P5.js +37 -0
  30. package/dist/chunk-OUZZEE4S.js +365 -0
  31. package/dist/chunk-P6W3STU4.js +2249 -0
  32. package/dist/chunk-PTQJDMRT.js +146 -0
  33. package/dist/chunk-QWZG56ET.js +2744 -0
  34. package/dist/chunk-TSOKIX5Z.js +654 -0
  35. package/dist/chunk-VMVDTCXB.js +712 -0
  36. package/dist/chunk-VRW3FULF.js +725 -0
  37. package/dist/chunk-WZSPOOER.js +84 -0
  38. package/dist/chunk-YT6HQ6AM.js +14 -0
  39. package/dist/chunk-ZD6OAMTH.js +277 -0
  40. package/dist/contracts-DDrwxvJ-.d.cts +245 -0
  41. package/dist/contracts-DDrwxvJ-.d.ts +245 -0
  42. package/dist/data.cjs +35 -2
  43. package/dist/data.d.cts +7 -0
  44. package/dist/data.d.ts +7 -0
  45. package/dist/data.js +9 -8
  46. package/dist/devtools.cjs +122 -0
  47. package/dist/devtools.d.cts +69 -461
  48. package/dist/devtools.d.ts +69 -461
  49. package/dist/devtools.js +127 -6
  50. package/dist/ecosystem.cjs +68 -23
  51. package/dist/ecosystem.d.cts +1 -1
  52. package/dist/ecosystem.d.ts +1 -1
  53. package/dist/ecosystem.js +10 -9
  54. package/dist/extras.cjs +1252 -82
  55. package/dist/extras.d.cts +5 -5
  56. package/dist/extras.d.ts +5 -5
  57. package/dist/extras.js +69 -24
  58. package/dist/index.cjs +708 -161
  59. package/dist/index.d.cts +397 -17
  60. package/dist/index.d.ts +397 -17
  61. package/dist/index.js +39 -17
  62. package/dist/introspect-BumjnBKr.d.cts +477 -0
  63. package/dist/introspect-CZrlcaYy.d.ts +477 -0
  64. package/dist/introspect-Cb0zgpi2.d.cts +477 -0
  65. package/dist/introspect-Y2xNXGSf.d.ts +477 -0
  66. package/dist/motion.js +4 -4
  67. package/dist/patterns.cjs +51 -2
  68. package/dist/patterns.d.cts +18 -8
  69. package/dist/patterns.d.ts +18 -8
  70. package/dist/patterns.js +7 -7
  71. package/dist/performance.js +4 -4
  72. package/dist/plugins.cjs +473 -98
  73. package/dist/plugins.d.cts +27 -4
  74. package/dist/plugins.d.ts +27 -4
  75. package/dist/plugins.js +156 -37
  76. package/dist/ssr-4PBXAOO3.js +40 -0
  77. package/dist/ssr-Do_SiVoL.d.cts +201 -0
  78. package/dist/ssr-Do_SiVoL.d.ts +201 -0
  79. package/dist/ssr.cjs +357 -77
  80. package/dist/ssr.d.cts +10 -1
  81. package/dist/ssr.d.ts +10 -1
  82. package/dist/ssr.js +13 -10
  83. package/dist/tagFactory-DaJ0YWX6.d.cts +47 -0
  84. package/dist/tagFactory-DaJ0YWX6.d.ts +47 -0
  85. package/dist/testing.cjs +233 -2
  86. package/dist/testing.d.cts +42 -1
  87. package/dist/testing.d.ts +42 -1
  88. package/dist/testing.js +129 -2
  89. package/dist/ui.cjs +374 -3
  90. package/dist/ui.d.cts +252 -2
  91. package/dist/ui.d.ts +252 -2
  92. package/dist/ui.js +328 -8
  93. package/dist/widgets.js +7 -7
  94. package/package.json +1 -1
package/dist/extras.d.cts CHANGED
@@ -1,16 +1,16 @@
1
1
  export { InfiniteQueryOptions, InfiniteQueryResult, LoaderRoute, MutationOptions, MutationResult, OfflineStore, OfflineStoreOptions, QueryOptions, QueryResult, Resource, ResourceOptions, RetryOptions, RouteLoaderFn, SyncAdapter, SyncChange, SyncResult, calculateDelay, clearQueryCache, debounce, executeLoader, getQueryData, infiniteQuery, invalidateQueries, loaderData, mutation, offlineStore, preloadRoute, previous, query, resource, setQueryData, socket, stream, syncAdapter, throttle, withRetry } from './data.cjs';
2
- export { battery, clipboard, colorScheme, draggable, dropZone, formatCurrency, formatNumber, geo, idle, media, online, permissions, resize, scroll, title } from './browser.cjs';
2
+ export { AnimationFrameOptions, BoundsRect, GamepadSnapshot, ImageLoaderState, KeyboardOptions, MouseOptions, MutationObserverOptions, SpeakOptions, SwipeDirection, SwipeOptions, TextSelectionState, UrlStateOptions, animationFrame, battery, bounds, broadcast, clipboard, colorScheme, draggable, dropZone, favicon, formatCurrency, formatNumber, fullscreen, gamepad, geo, idle, imageLoader, keyboard, media, mouse, mutationObserver, network, online, permissions, pointerLock, resize, scroll, speech, svgFavicon, swipe, textSelection, title, urlState, vibrate, visibility, wakeLock, windowSize } from './browser.cjs';
3
3
  export { GlobalStore, MachineConfig, MachineReturn, Middleware, OptimisticAction, PersistOptions, Selector, TimeTravelReturn, createEffect, createMemo, createSignal, globalStore, machine, optimistic, optimisticList, persisted, timeline } from './patterns.cjs';
4
- export { C as ComponentProps, P as PropDef, a as PropSchema, R as RenderProp, V as Validator, b as assertType, c as composable, d as compose, e as createGuard, f as createSlots, g as defineComponent, h as defineSlottedComponent, i as defineStrictComponent, v as validateProps, j as validators, w as withBoundary, k as withDefaults, l as withProps, m as withWrapper } from './contracts-DOrhwbke.cjs';
4
+ export { C as ComponentProps, P as PropDef, a as PropSchema, R as RenderProp, V as Validator, b as assertType, c as composable, d as compose, e as createGuard, f as createSlots, g as defineComponent, h as defineSlottedComponent, i as defineStrictComponent, v as validateProps, j as validators, w as withBoundary, k as withDefaults, l as withProps, m as withWrapper } from './contracts-DDrwxvJ-.cjs';
5
5
  export { AnimationPreset, PresetOptions, SlideDirection, SpringOptions, TransitionGroup, TransitionGroupOptions, TransitionOptions, animate, bounceIn, bounceOut, fadeIn, fadeOut, flipIn, pulse, reducedMotion, scaleDown, scaleUp, sequence, shake, slideIn, slideOut, spring, springSignal, stagger, transition, viewTransition } from './motion.cjs';
6
6
  export { B as BoundFieldProps, C as CustomElementOptions, F as FieldConfig, a as FocusTrap, b as FormConfig, c as FormField, d as FormReturn, I as IntersectionResult, M as MaskOptions, T as Toast, e as ToastInstance, V as ValidatorFn, f as VirtualList, g as VirtualListProps, h as announce, i as aria, j as bindAttrs, k as bindBoolAttr, l as bindData, m as bindField, n as creditCardMask, o as custom, p as dateMask, q as defineElement, r as dialog, s as email, t as eventBus, u as focus, v as form, w as hotkey, x as infiniteScroll, y as inputMask, z as intersection, A as lazyLoad, D as matchesPattern, E as max, G as maxLength, H as min, J as minLength, K as pagination, L as phoneMask, N as removeScopedStyle, O as required, P as scopedStyle, Q as ssnMask, R as svgElement, S as timeMask, U as toast, W as withScopedStyle, X as zipMask } from './customElement-D2DJp_xn.cjs';
7
7
  export { ChunkConfig, DOMPool, Features, NormalizeResult, NormalizedEntities, NormalizedSchema, NormalizedState, NormalizedStoreActions, Priority, PriorityLevel, block, cloneTemplate, conditional, createChunkRegistry, deferredValue, denormalize, devOnly, domPool, flushScheduler, hoistable, lazyChunk, noSideEffect, normalize, normalizedStore, pendingTasks, precompile, prefetch, preloadImage, preloadModule, preloadModules, preloadResource, processInChunks, pure, resetIdCounter, scheduleUpdate, setIdPrefix, startTransition, staticTemplate, transitionState, uniqueId, yieldToMain } from './performance.cjs';
8
8
  export { ActionFn, ActionResult, Head, ISROptions, MicroApp, MicroAppConfig, MiddlewareFn, SSGOptions, SSGResult, ScrollRestorationOptions, ServiceWorkerState, SharedScope, UseWorkerFnReturn, UseWorkerReturn, WasmConfig, WasmModuleState, WorkerPool, clearWasmCache, composeMiddleware, createAction, createISR, createMicroApp, createMiddlewareChain, createSharedScope, createWasmBridge, createWorkerPool, defineRemoteComponent, generateStaticSite, isWasmCached, loadRemoteModule, loadWasmModule, preloadWasm, scrollRestoration, serviceWorker, setCanonical, setStructuredData, wasm, worker, workerFn } from './ssr.cjs';
9
- export { T as TrustedHTML, c as collectStream, d as deserializeState, h as hydrate, a as hydrateIslands, b as hydrateProgressively, i as island, r as renderToDocument, e as renderToReadableStream, f as renderToStream, g as renderToString, j as renderToSuspenseStream, k as resetSSRState, s as serializeState, l as ssrSuspense, m as suspenseSwapScript, t as trustHTML } from './ssr-BA6sxxUd.cjs';
9
+ export { H as HydrateOptions, a as HydrationMismatch, T as TrustedHTML, c as collectStream, d as deserializeState, e as escapeScriptJson, h as hydrate, b as hydrateIslands, f as hydrateProgressively, i as island, r as renderToDocument, g as renderToReadableStream, j as renderToStream, k as renderToString, l as renderToSuspenseStream, m as resetSSRState, s as serializeState, n as ssrSuspense, o as suspenseSwapScript, t as trustHTML } from './ssr-Do_SiVoL.cjs';
10
10
  export { P as PluginContext, S as SibuPlugin, c as createPlugin, i as inject, p as plugin, r as resetPlugins, t as triggerPluginError, a as triggerPluginMount, b as triggerPluginUnmount } from './plugin-Bek4RhJY.cjs';
11
11
  export { M as Migration, S as SemVer, V as VERSION, b as bundlerMetadata, c as checkCompatibility, a as compareSemVer, d as createBootSequence, e as createBundle, f as createMigrationRunner, g as createModuleRegistry, h as createSSRCache, i as createTestHarness, j as deferNonCritical, k as env, l as healthCheck, m as lazyModule, p as packageInfo, n as parseSemVer, o as preloadCritical, q as prerenderRoutes, s as satisfies } from './startup-0Qv6aosO.cjs';
12
- export { DevToolsEvent, DevtoolsOverlayOptions, ProfilerResult, ReactiveNodeInfo, SibuError, checkLeaks, clearDebugValues, clearHMRState, clearPerformanceData, createDevtoolsOverlay, createErrorReporter, createHMRBoundary, createProfiler, debugLog, debugValue, devState, disableDebug, enableDebug, formatError, getActiveDevTools, getDebugValues, getDependencies, getPerformanceReport, getSignalName, getSubscriberCount, hmrState, initDevTools, inspectSignal, isDebugEnabled, isHMRAvailable, measureRender, perfTracker, registerHMR, runCleanups, startMeasure, trackCleanup, walkDependencyGraph, withErrorTracking } from './devtools.cjs';
12
+ export { D as DevToolsEvent, a as DevtoolsOverlayOptions, P as ProfilerResult, R as ReactiveNodeInfo, S as SibuError, c as checkLeaks, b as clearDebugValues, d as clearHMRState, e as clearPerformanceData, f as createDevtoolsOverlay, g as createErrorReporter, h as createHMRBoundary, i as createProfiler, j as debugLog, k as debugValue, l as devState, m as disableDebug, n as enableDebug, o as formatError, p as getActiveDevTools, q as getDebugValues, r as getDependencies, s as getPerformanceReport, t as getSignalName, u as getSubscriberCount, v as hmrState, w as initDevTools, x as inspectSignal, y as isDebugEnabled, z as isHMRAvailable, A as measureRender, B as perfTracker, C as registerHMR, E as runCleanups, F as startMeasure, G as trackCleanup, H as walkDependencyGraph, I as withErrorTracking } from './introspect-BumjnBKr.cjs';
13
13
  export { AccordionOptions, ComboboxOptions, DatePickerOptions, FileUploadOptions, SelectOptions, TabsOptions, accordion, combobox, contentEditable, datePicker, fileUpload, popover, select, tabs, tooltip } from './widgets.cjs';
14
14
  export { AdaptedComponent, AdaptedComponentProps, AdapterConfig, ComponentMapping, MobXAdapterAPI, MobXAdapterOptions, MobXReactionDisposer, ReduxAdapterAPI, ReduxAdapterOptions, ReduxStore, ThemeAPI, ThemeConfig, ZustandAdapterAPI, ZustandAdapterOptions, ZustandStore, antdAdapter, chakraAdapter, componentAdapter, createTheme, materialAdapter, mobXAdapter, reduxAdapter, zustandAdapter } from './ecosystem.cjs';
15
15
  import './signal-BnWpq6WB.cjs';
16
- import './tagFactory-Dl8QCLga.cjs';
16
+ import './tagFactory-DaJ0YWX6.cjs';
package/dist/extras.d.ts CHANGED
@@ -1,16 +1,16 @@
1
1
  export { InfiniteQueryOptions, InfiniteQueryResult, LoaderRoute, MutationOptions, MutationResult, OfflineStore, OfflineStoreOptions, QueryOptions, QueryResult, Resource, ResourceOptions, RetryOptions, RouteLoaderFn, SyncAdapter, SyncChange, SyncResult, calculateDelay, clearQueryCache, debounce, executeLoader, getQueryData, infiniteQuery, invalidateQueries, loaderData, mutation, offlineStore, preloadRoute, previous, query, resource, setQueryData, socket, stream, syncAdapter, throttle, withRetry } from './data.js';
2
- export { battery, clipboard, colorScheme, draggable, dropZone, formatCurrency, formatNumber, geo, idle, media, online, permissions, resize, scroll, title } from './browser.js';
2
+ export { AnimationFrameOptions, BoundsRect, GamepadSnapshot, ImageLoaderState, KeyboardOptions, MouseOptions, MutationObserverOptions, SpeakOptions, SwipeDirection, SwipeOptions, TextSelectionState, UrlStateOptions, animationFrame, battery, bounds, broadcast, clipboard, colorScheme, draggable, dropZone, favicon, formatCurrency, formatNumber, fullscreen, gamepad, geo, idle, imageLoader, keyboard, media, mouse, mutationObserver, network, online, permissions, pointerLock, resize, scroll, speech, svgFavicon, swipe, textSelection, title, urlState, vibrate, visibility, wakeLock, windowSize } from './browser.js';
3
3
  export { GlobalStore, MachineConfig, MachineReturn, Middleware, OptimisticAction, PersistOptions, Selector, TimeTravelReturn, createEffect, createMemo, createSignal, globalStore, machine, optimistic, optimisticList, persisted, timeline } from './patterns.js';
4
- export { C as ComponentProps, P as PropDef, a as PropSchema, R as RenderProp, V as Validator, b as assertType, c as composable, d as compose, e as createGuard, f as createSlots, g as defineComponent, h as defineSlottedComponent, i as defineStrictComponent, v as validateProps, j as validators, w as withBoundary, k as withDefaults, l as withProps, m as withWrapper } from './contracts-DOrhwbke.js';
4
+ export { C as ComponentProps, P as PropDef, a as PropSchema, R as RenderProp, V as Validator, b as assertType, c as composable, d as compose, e as createGuard, f as createSlots, g as defineComponent, h as defineSlottedComponent, i as defineStrictComponent, v as validateProps, j as validators, w as withBoundary, k as withDefaults, l as withProps, m as withWrapper } from './contracts-DDrwxvJ-.js';
5
5
  export { AnimationPreset, PresetOptions, SlideDirection, SpringOptions, TransitionGroup, TransitionGroupOptions, TransitionOptions, animate, bounceIn, bounceOut, fadeIn, fadeOut, flipIn, pulse, reducedMotion, scaleDown, scaleUp, sequence, shake, slideIn, slideOut, spring, springSignal, stagger, transition, viewTransition } from './motion.js';
6
6
  export { B as BoundFieldProps, C as CustomElementOptions, F as FieldConfig, a as FocusTrap, b as FormConfig, c as FormField, d as FormReturn, I as IntersectionResult, M as MaskOptions, T as Toast, e as ToastInstance, V as ValidatorFn, f as VirtualList, g as VirtualListProps, h as announce, i as aria, j as bindAttrs, k as bindBoolAttr, l as bindData, m as bindField, n as creditCardMask, o as custom, p as dateMask, q as defineElement, r as dialog, s as email, t as eventBus, u as focus, v as form, w as hotkey, x as infiniteScroll, y as inputMask, z as intersection, A as lazyLoad, D as matchesPattern, E as max, G as maxLength, H as min, J as minLength, K as pagination, L as phoneMask, N as removeScopedStyle, O as required, P as scopedStyle, Q as ssnMask, R as svgElement, S as timeMask, U as toast, W as withScopedStyle, X as zipMask } from './customElement-D2DJp_xn.js';
7
7
  export { ChunkConfig, DOMPool, Features, NormalizeResult, NormalizedEntities, NormalizedSchema, NormalizedState, NormalizedStoreActions, Priority, PriorityLevel, block, cloneTemplate, conditional, createChunkRegistry, deferredValue, denormalize, devOnly, domPool, flushScheduler, hoistable, lazyChunk, noSideEffect, normalize, normalizedStore, pendingTasks, precompile, prefetch, preloadImage, preloadModule, preloadModules, preloadResource, processInChunks, pure, resetIdCounter, scheduleUpdate, setIdPrefix, startTransition, staticTemplate, transitionState, uniqueId, yieldToMain } from './performance.js';
8
8
  export { ActionFn, ActionResult, Head, ISROptions, MicroApp, MicroAppConfig, MiddlewareFn, SSGOptions, SSGResult, ScrollRestorationOptions, ServiceWorkerState, SharedScope, UseWorkerFnReturn, UseWorkerReturn, WasmConfig, WasmModuleState, WorkerPool, clearWasmCache, composeMiddleware, createAction, createISR, createMicroApp, createMiddlewareChain, createSharedScope, createWasmBridge, createWorkerPool, defineRemoteComponent, generateStaticSite, isWasmCached, loadRemoteModule, loadWasmModule, preloadWasm, scrollRestoration, serviceWorker, setCanonical, setStructuredData, wasm, worker, workerFn } from './ssr.js';
9
- export { T as TrustedHTML, c as collectStream, d as deserializeState, h as hydrate, a as hydrateIslands, b as hydrateProgressively, i as island, r as renderToDocument, e as renderToReadableStream, f as renderToStream, g as renderToString, j as renderToSuspenseStream, k as resetSSRState, s as serializeState, l as ssrSuspense, m as suspenseSwapScript, t as trustHTML } from './ssr-BA6sxxUd.js';
9
+ export { H as HydrateOptions, a as HydrationMismatch, T as TrustedHTML, c as collectStream, d as deserializeState, e as escapeScriptJson, h as hydrate, b as hydrateIslands, f as hydrateProgressively, i as island, r as renderToDocument, g as renderToReadableStream, j as renderToStream, k as renderToString, l as renderToSuspenseStream, m as resetSSRState, s as serializeState, n as ssrSuspense, o as suspenseSwapScript, t as trustHTML } from './ssr-Do_SiVoL.js';
10
10
  export { P as PluginContext, S as SibuPlugin, c as createPlugin, i as inject, p as plugin, r as resetPlugins, t as triggerPluginError, a as triggerPluginMount, b as triggerPluginUnmount } from './plugin-Bek4RhJY.js';
11
11
  export { M as Migration, S as SemVer, V as VERSION, b as bundlerMetadata, c as checkCompatibility, a as compareSemVer, d as createBootSequence, e as createBundle, f as createMigrationRunner, g as createModuleRegistry, h as createSSRCache, i as createTestHarness, j as deferNonCritical, k as env, l as healthCheck, m as lazyModule, p as packageInfo, n as parseSemVer, o as preloadCritical, q as prerenderRoutes, s as satisfies } from './startup-0Qv6aosO.js';
12
- export { DevToolsEvent, DevtoolsOverlayOptions, ProfilerResult, ReactiveNodeInfo, SibuError, checkLeaks, clearDebugValues, clearHMRState, clearPerformanceData, createDevtoolsOverlay, createErrorReporter, createHMRBoundary, createProfiler, debugLog, debugValue, devState, disableDebug, enableDebug, formatError, getActiveDevTools, getDebugValues, getDependencies, getPerformanceReport, getSignalName, getSubscriberCount, hmrState, initDevTools, inspectSignal, isDebugEnabled, isHMRAvailable, measureRender, perfTracker, registerHMR, runCleanups, startMeasure, trackCleanup, walkDependencyGraph, withErrorTracking } from './devtools.js';
12
+ export { D as DevToolsEvent, a as DevtoolsOverlayOptions, P as ProfilerResult, R as ReactiveNodeInfo, S as SibuError, c as checkLeaks, b as clearDebugValues, d as clearHMRState, e as clearPerformanceData, f as createDevtoolsOverlay, g as createErrorReporter, h as createHMRBoundary, i as createProfiler, j as debugLog, k as debugValue, l as devState, m as disableDebug, n as enableDebug, o as formatError, p as getActiveDevTools, q as getDebugValues, r as getDependencies, s as getPerformanceReport, t as getSignalName, u as getSubscriberCount, v as hmrState, w as initDevTools, x as inspectSignal, y as isDebugEnabled, z as isHMRAvailable, A as measureRender, B as perfTracker, C as registerHMR, E as runCleanups, F as startMeasure, G as trackCleanup, H as walkDependencyGraph, I as withErrorTracking } from './introspect-CZrlcaYy.js';
13
13
  export { AccordionOptions, ComboboxOptions, DatePickerOptions, FileUploadOptions, SelectOptions, TabsOptions, accordion, combobox, contentEditable, datePicker, fileUpload, popover, select, tabs, tooltip } from './widgets.js';
14
14
  export { AdaptedComponent, AdaptedComponentProps, AdapterConfig, ComponentMapping, MobXAdapterAPI, MobXAdapterOptions, MobXReactionDisposer, ReduxAdapterAPI, ReduxAdapterOptions, ReduxStore, ThemeAPI, ThemeConfig, ZustandAdapterAPI, ZustandAdapterOptions, ZustandStore, antdAdapter, chakraAdapter, componentAdapter, createTheme, materialAdapter, mobXAdapter, reduxAdapter, zustandAdapter } from './ecosystem.js';
15
15
  import './signal-BnWpq6WB.js';
16
- import './tagFactory-Dl8QCLga.js';
16
+ import './tagFactory-DaJ0YWX6.js';
package/dist/extras.js CHANGED
@@ -8,7 +8,7 @@ import {
8
8
  optimisticList,
9
9
  persisted,
10
10
  timeline
11
- } from "./chunk-WILQZRO4.js";
11
+ } from "./chunk-DAHRH4ON.js";
12
12
  import {
13
13
  DOMPool,
14
14
  Features,
@@ -44,7 +44,7 @@ import {
44
44
  transitionState,
45
45
  uniqueId,
46
46
  yieldToMain
47
- } from "./chunk-YUTWTI4B.js";
47
+ } from "./chunk-TSOKIX5Z.js";
48
48
  import {
49
49
  VERSION,
50
50
  bundlerMetadata,
@@ -65,7 +65,7 @@ import {
65
65
  preloadCritical,
66
66
  prerenderRoutes,
67
67
  satisfies
68
- } from "./chunk-RQGQSLQK.js";
68
+ } from "./chunk-VRW3FULF.js";
69
69
  import {
70
70
  Head,
71
71
  clearWasmCache,
@@ -90,7 +90,7 @@ import {
90
90
  wasm,
91
91
  worker,
92
92
  workerFn
93
- } from "./chunk-LA6KQEDU.js";
93
+ } from "./chunk-2BYQDGN3.js";
94
94
  import {
95
95
  FocusTrap,
96
96
  VirtualList,
@@ -130,7 +130,7 @@ import {
130
130
  toast,
131
131
  withScopedStyle,
132
132
  zipMask
133
- } from "./chunk-BW3WT46K.js";
133
+ } from "./chunk-JCI5M6U6.js";
134
134
  import {
135
135
  RenderProp,
136
136
  assertType,
@@ -158,10 +158,11 @@ import {
158
158
  select,
159
159
  tabs,
160
160
  tooltip
161
- } from "./chunk-C6KFWOFV.js";
161
+ } from "./chunk-EBGIRKQY.js";
162
162
  import {
163
163
  collectStream,
164
164
  deserializeState,
165
+ escapeScriptJson,
165
166
  hydrate,
166
167
  hydrateIslands,
167
168
  hydrateProgressively,
@@ -176,24 +177,45 @@ import {
176
177
  ssrSuspense,
177
178
  suspenseSwapScript,
178
179
  trustHTML
179
- } from "./chunk-WUHJISPP.js";
180
+ } from "./chunk-3X2YG6YM.js";
180
181
  import {
182
+ animationFrame,
181
183
  battery,
184
+ bounds,
185
+ broadcast,
182
186
  clipboard,
183
187
  colorScheme,
184
188
  draggable,
185
189
  dropZone,
190
+ favicon,
186
191
  formatCurrency,
187
192
  formatNumber,
193
+ fullscreen,
194
+ gamepad,
188
195
  geo,
189
196
  idle,
197
+ imageLoader,
198
+ keyboard,
190
199
  media,
200
+ mouse,
201
+ mutationObserver,
202
+ network,
191
203
  online,
192
204
  permissions,
205
+ pointerLock,
193
206
  resize,
194
207
  scroll,
195
- title
196
- } from "./chunk-ZBJP6WFL.js";
208
+ speech,
209
+ svgFavicon,
210
+ swipe,
211
+ textSelection,
212
+ title,
213
+ urlState,
214
+ vibrate,
215
+ visibility,
216
+ wakeLock,
217
+ windowSize
218
+ } from "./chunk-3AIRKM3B.js";
197
219
  import {
198
220
  calculateDelay,
199
221
  clearQueryCache,
@@ -215,7 +237,7 @@ import {
215
237
  syncAdapter,
216
238
  throttle,
217
239
  withRetry
218
- } from "./chunk-Z6POF5YC.js";
240
+ } from "./chunk-JAKHTMQU.js";
219
241
  import {
220
242
  SibuError,
221
243
  checkLeaks,
@@ -251,7 +273,7 @@ import {
251
273
  trackCleanup,
252
274
  walkDependencyGraph,
253
275
  withErrorTracking
254
- } from "./chunk-7BF6TK55.js";
276
+ } from "./chunk-77L6NL3X.js";
255
277
  import {
256
278
  antdAdapter,
257
279
  chakraAdapter,
@@ -261,7 +283,7 @@ import {
261
283
  mobXAdapter,
262
284
  reduxAdapter,
263
285
  zustandAdapter
264
- } from "./chunk-EVCZO745.js";
286
+ } from "./chunk-BTU3TJDS.js";
265
287
  import {
266
288
  createPlugin,
267
289
  inject,
@@ -271,14 +293,15 @@ import {
271
293
  triggerPluginMount,
272
294
  triggerPluginUnmount
273
295
  } from "./chunk-K5ZUMYVS.js";
274
- import "./chunk-NHUC2QWH.js";
275
- import "./chunk-TNQWPPE6.js";
276
- import "./chunk-WR5D4EGH.js";
277
- import "./chunk-WADYRCO2.js";
278
- import "./chunk-23VV7YD3.js";
279
- import "./chunk-L6JRBDNS.js";
280
- import "./chunk-6SA3QQES.js";
281
- import "./chunk-CHJ27IGK.js";
296
+ import "./chunk-32DY64NT.js";
297
+ import "./chunk-NYVAC6P5.js";
298
+ import "./chunk-BGN5ZMP4.js";
299
+ import "./chunk-F3FA4F32.js";
300
+ import "./chunk-PTQJDMRT.js";
301
+ import "./chunk-NEKUBFPT.js";
302
+ import "./chunk-CMBFNA7L.js";
303
+ import "./chunk-CHF5OHIA.js";
304
+ import "./chunk-EUZND3CB.js";
282
305
  import {
283
306
  TransitionGroup,
284
307
  animate,
@@ -300,10 +323,10 @@ import {
300
323
  stagger,
301
324
  transition,
302
325
  viewTransition
303
- } from "./chunk-3ARAQO7B.js";
304
- import "./chunk-V2XTI523.js";
305
- import "./chunk-UNXCEF6S.js";
306
- import "./chunk-MLKGABMK.js";
326
+ } from "./chunk-KQPDEVVS.js";
327
+ import "./chunk-WZSPOOER.js";
328
+ import "./chunk-ZD6OAMTH.js";
329
+ import "./chunk-5X6PP2UK.js";
307
330
  export {
308
331
  DOMPool,
309
332
  Features,
@@ -317,6 +340,7 @@ export {
317
340
  VirtualList,
318
341
  accordion,
319
342
  animate,
343
+ animationFrame,
320
344
  announce,
321
345
  antdAdapter,
322
346
  aria,
@@ -329,6 +353,8 @@ export {
329
353
  block,
330
354
  bounceIn,
331
355
  bounceOut,
356
+ bounds,
357
+ broadcast,
332
358
  bundlerMetadata,
333
359
  calculateDelay,
334
360
  chakraAdapter,
@@ -402,10 +428,12 @@ export {
402
428
  email,
403
429
  enableDebug,
404
430
  env,
431
+ escapeScriptJson,
405
432
  eventBus,
406
433
  executeLoader,
407
434
  fadeIn,
408
435
  fadeOut,
436
+ favicon,
409
437
  fileUpload,
410
438
  flipIn,
411
439
  flushScheduler,
@@ -414,6 +442,8 @@ export {
414
442
  formatCurrency,
415
443
  formatError,
416
444
  formatNumber,
445
+ fullscreen,
446
+ gamepad,
417
447
  generateStaticSite,
418
448
  geo,
419
449
  getActiveDevTools,
@@ -432,6 +462,7 @@ export {
432
462
  hydrateIslands,
433
463
  hydrateProgressively,
434
464
  idle,
465
+ imageLoader,
435
466
  infiniteQuery,
436
467
  infiniteScroll,
437
468
  initDevTools,
@@ -444,6 +475,7 @@ export {
444
475
  isHMRAvailable,
445
476
  isWasmCached,
446
477
  island,
478
+ keyboard,
447
479
  lazyChunk,
448
480
  lazyLoad,
449
481
  lazyModule,
@@ -460,7 +492,10 @@ export {
460
492
  min,
461
493
  minLength,
462
494
  mobXAdapter,
495
+ mouse,
463
496
  mutation,
497
+ mutationObserver,
498
+ network,
464
499
  noSideEffect,
465
500
  normalize,
466
501
  normalizedStore,
@@ -477,6 +512,7 @@ export {
477
512
  persisted,
478
513
  phoneMask,
479
514
  plugin,
515
+ pointerLock,
480
516
  popover,
481
517
  precompile,
482
518
  prefetch,
@@ -528,6 +564,7 @@ export {
528
564
  slideIn,
529
565
  slideOut,
530
566
  socket,
567
+ speech,
531
568
  spring,
532
569
  springSignal,
533
570
  ssnMask,
@@ -539,8 +576,11 @@ export {
539
576
  stream,
540
577
  suspenseSwapScript,
541
578
  svgElement,
579
+ svgFavicon,
580
+ swipe,
542
581
  syncAdapter,
543
582
  tabs,
583
+ textSelection,
544
584
  throttle,
545
585
  timeMask,
546
586
  timeline,
@@ -555,11 +595,16 @@ export {
555
595
  triggerPluginUnmount,
556
596
  trustHTML,
557
597
  uniqueId,
598
+ urlState,
558
599
  validateProps,
559
600
  validators,
601
+ vibrate,
560
602
  viewTransition,
603
+ visibility,
604
+ wakeLock,
561
605
  walkDependencyGraph,
562
606
  wasm,
607
+ windowSize,
563
608
  withBoundary,
564
609
  withDefaults,
565
610
  withErrorTracking,