@vertz/ui 0.2.12 → 0.2.13

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 (35) hide show
  1. package/README.md +70 -6
  2. package/dist/shared/{chunk-bjcpcq5j.js → chunk-2sth83bd.js} +1 -1
  3. package/dist/shared/{chunk-9e92w0wt.js → chunk-83g4h38e.js} +13 -0
  4. package/dist/shared/{chunk-2rs8a26p.js → chunk-8hsz5y4a.js} +92 -33
  5. package/dist/shared/{chunk-55tgkc7s.js → chunk-c30eg6wn.js} +1 -1
  6. package/dist/shared/{chunk-kg898f92.js → chunk-c9xxsrat.js} +7 -2
  7. package/dist/shared/{chunk-wn4gv1qd.js → chunk-dksg08fq.js} +1 -1
  8. package/dist/shared/{chunk-g4rch80a.js → chunk-h89w580h.js} +7 -0
  9. package/dist/shared/chunk-hw67ckr3.js +1212 -0
  10. package/dist/shared/{chunk-662f9zrb.js → chunk-j6qyxfdc.js} +7 -7
  11. package/dist/shared/{chunk-g1gf16fz.js → chunk-mj7b4t40.js} +107 -41
  12. package/dist/shared/{chunk-18jzqefd.js → chunk-nn9v1zmk.js} +4 -4
  13. package/dist/src/auth/public.d.ts +303 -0
  14. package/dist/src/auth/public.js +773 -0
  15. package/dist/src/css/public.js +22 -0
  16. package/dist/{form → src/form}/public.js +2 -2
  17. package/dist/{index.d.ts → src/index.d.ts} +218 -14
  18. package/dist/{index.js → src/index.js} +79 -229
  19. package/dist/{internals.d.ts → src/internals.d.ts} +265 -3
  20. package/dist/{internals.js → src/internals.js} +18 -10
  21. package/dist/{jsx-runtime → src/jsx-runtime}/index.js +1 -1
  22. package/dist/{query → src/query}/public.d.ts +3 -1
  23. package/dist/src/query/public.js +15 -0
  24. package/dist/{router → src/router}/public.d.ts +25 -4
  25. package/dist/{router → src/router}/public.js +9 -9
  26. package/dist/{test → src/test}/index.d.ts +12 -2
  27. package/dist/{test → src/test}/index.js +4 -4
  28. package/package.json +31 -25
  29. package/reactivity.json +67 -0
  30. package/dist/css/public.js +0 -22
  31. package/dist/query/public.js +0 -15
  32. package/dist/shared/chunk-9k2z3jfx.js +0 -528
  33. /package/dist/{css → src/css}/public.d.ts +0 -0
  34. /package/dist/{form → src/form}/public.d.ts +0 -0
  35. /package/dist/{jsx-runtime → src/jsx-runtime}/index.d.ts +0 -0
@@ -0,0 +1,22 @@
1
+ import {
2
+ ThemeProvider,
3
+ compileTheme,
4
+ css,
5
+ defineTheme,
6
+ globalCss,
7
+ s,
8
+ variants
9
+ } from "../../shared/chunk-c9xxsrat.js";
10
+ import"../../shared/chunk-j6qyxfdc.js";
11
+ import"../../shared/chunk-prj7nm08.js";
12
+ import"../../shared/chunk-h89w580h.js";
13
+ import"../../shared/chunk-8hsz5y4a.js";
14
+ export {
15
+ variants,
16
+ s,
17
+ globalCss,
18
+ defineTheme,
19
+ css,
20
+ compileTheme,
21
+ ThemeProvider
22
+ };
@@ -3,8 +3,8 @@ import {
3
3
  form,
4
4
  formDataToObject,
5
5
  validate
6
- } from "../shared/chunk-55tgkc7s.js";
7
- import"../shared/chunk-2rs8a26p.js";
6
+ } from "../../shared/chunk-c30eg6wn.js";
7
+ import"../../shared/chunk-8hsz5y4a.js";
8
8
  export {
9
9
  validate,
10
10
  formDataToObject,
@@ -151,7 +151,7 @@ declare function onMount2(callback: () => (() => void) | void): void;
151
151
  interface ListTransitionProps<T> {
152
152
  each: T[];
153
153
  keyFn: (item: T, index: number) => string | number;
154
- children: (item: T) => HTMLElement | SVGElement;
154
+ children: (item: T) => Node;
155
155
  }
156
156
  /**
157
157
  * ListTransition component for animated list item enter/exit.
@@ -161,7 +161,7 @@ interface ListTransitionProps<T> {
161
161
  * Props are accessed as getters (not destructured) so the compiler-generated
162
162
  * reactive getters are tracked by the underlying domEffect.
163
163
  */
164
- declare function ListTransition<T>(props: ListTransitionProps<T>): Node;
164
+ declare function ListTransition<T>(props: ListTransitionProps<T>): DocumentFragment;
165
165
  interface PresenceProps {
166
166
  when: boolean;
167
167
  children: () => HTMLElement;
@@ -173,7 +173,7 @@ interface PresenceProps {
173
173
  * Props are accessed as getters (not destructured) so the compiler-generated
174
174
  * reactive getters are tracked by domEffect.
175
175
  */
176
- declare function Presence(props: PresenceProps): Node;
176
+ declare function Presence(props: PresenceProps): DocumentFragment;
177
177
  /** A ref container for DOM element access. */
178
178
  interface Ref<T> {
179
179
  current: T | undefined;
@@ -241,7 +241,7 @@ type CSSOutput<T extends CSSInput = CSSInput> = { readonly [K in keyof T & strin
241
241
  * In SSR, document.head is freshly created per request by installDomShim().
242
242
  * The module-level dedup Set would incorrectly block injection on request 2+
243
243
  * since the Set persists across requests while document.head is replaced.
244
- * We bypass dedup when __SSR_URL__ is set (SSR context).
244
+ * We bypass dedup when SSR context is active.
245
245
  */
246
246
  declare function injectCSS(cssText: string): void;
247
247
  /** Reset injected styles tracking. Used in tests. */
@@ -738,19 +738,18 @@ interface MountHandle {
738
738
  root: HTMLElement;
739
739
  }
740
740
  /**
741
- * Mount an app to a DOM element.
741
+ * Mount an app to the `#app` root element.
742
742
  *
743
743
  * Uses tolerant hydration automatically: if the root element has SSR content,
744
744
  * it walks the existing DOM and attaches reactivity without re-creating nodes.
745
745
  * If the root is empty (CSR), it renders from scratch.
746
746
  *
747
747
  * @param app - App function that returns an HTMLElement
748
- * @param selector - CSS selector string or HTMLElement
749
748
  * @param options - Mount options (theme, styles, onMount, etc.)
750
749
  * @returns MountHandle with unmount function and root element
751
750
  */
752
- declare function mount<AppFn extends () => Element | DocumentFragment>(app: AppFn, selector: string | HTMLElement, options?: MountOptions): MountHandle;
753
- import { QueryDescriptor as QueryDescriptor2 } from "@vertz/fetch";
751
+ declare function mount<AppFn extends () => Element | DocumentFragment>(app: AppFn, options?: MountOptions): MountHandle;
752
+ import { QueryDescriptor as QueryDescriptor3 } from "@vertz/fetch";
754
753
  import { isQueryDescriptor } from "@vertz/fetch";
755
754
  /**
756
755
  * Interface for cache stores used by query().
@@ -763,6 +762,31 @@ interface CacheStore<T = unknown> {
763
762
  clear?(): void;
764
763
  }
765
764
  import { QueryDescriptor } from "@vertz/fetch";
765
+ /**
766
+ * Invalidate all active queries matching the descriptor's entity metadata.
767
+ *
768
+ * - List descriptors match ALL active list queries for that entity type
769
+ * (regardless of filter params).
770
+ * - Get descriptors match by entity type + specific id.
771
+ * - Descriptors without entity metadata are a no-op.
772
+ *
773
+ * Active queries are revalidated in the background (SWR pattern) —
774
+ * existing data stays visible while the refetch happens.
775
+ *
776
+ * @example
777
+ * ```ts
778
+ * import { invalidate } from '@vertz/ui';
779
+ *
780
+ * // After a custom operation not covered by optimistic updates:
781
+ * invalidate(api.todos.list()); // revalidates all active todo list queries
782
+ * invalidate(api.todos.get('123')); // revalidates the specific get query
783
+ * ```
784
+ */
785
+ declare function invalidate<
786
+ T,
787
+ E
788
+ >(descriptor: QueryDescriptor<T, E>): void;
789
+ import { EntityQueryMeta as EntityQueryMeta2, QueryDescriptor as QueryDescriptor2 } from "@vertz/fetch";
766
790
  /** Options for query(). */
767
791
  interface QueryOptions<T> {
768
792
  /** Pre-populated data — skips the initial fetch when provided. */
@@ -788,6 +812,8 @@ interface QueryOptions<T> {
788
812
  * when the function returns `false`).
789
813
  */
790
814
  refetchInterval?: number | false | ((data: T | undefined, iteration: number) => number | false);
815
+ /** @internal Entity metadata for entity-backed queries. Set by descriptor overload. */
816
+ _entityMeta?: EntityQueryMeta2;
791
817
  }
792
818
  /** The reactive object returned by query(). */
793
819
  interface QueryResult<
@@ -822,7 +848,7 @@ interface QueryResult<
822
848
  declare function query<
823
849
  T,
824
850
  E
825
- >(descriptor: QueryDescriptor<T, E>, options?: Omit<QueryOptions<T>, "key">): QueryResult<T, E>;
851
+ >(descriptor: QueryDescriptor2<T, E>, options?: Omit<QueryOptions<T>, "key">): QueryResult<T, E>;
826
852
  declare function query<T>(thunk: () => Promise<T>, options?: QueryOptions<T>): QueryResult<T>;
827
853
  interface QueryMatchHandlers<
828
854
  T,
@@ -899,7 +925,7 @@ type PathWithParams<T extends string> = T extends `${infer Before}*` ? `${PathWi
899
925
  * ```
900
926
  */
901
927
  type RoutePaths<TRouteMap extends Record<string, unknown>> = { [K in keyof TRouteMap & string] : PathWithParams<K> }[keyof TRouteMap & string];
902
- /** Simple schema interface for search param parsing. */
928
+ /** Schema interface for parsing and validating values (search params, path params). */
903
929
  interface SearchParamSchema<T> {
904
930
  parse(data: unknown): {
905
931
  ok: true;
@@ -909,11 +935,14 @@ interface SearchParamSchema<T> {
909
935
  error: unknown;
910
936
  };
911
937
  }
938
+ /** Schema interface for parsing and validating route path params. */
939
+ type ParamSchema<T> = SearchParamSchema<T>;
912
940
  /** A route configuration for a single path. */
913
941
  interface RouteConfig<
914
942
  TPath extends string = string,
915
943
  TLoaderData = unknown,
916
- TSearch = unknown
944
+ TSearch = unknown,
945
+ TParams = unknown
917
946
  > {
918
947
  /** Component factory (lazy for code splitting). */
919
948
  component: () => Node | Promise<{
@@ -926,6 +955,8 @@ interface RouteConfig<
926
955
  }) => Promise<TLoaderData> | TLoaderData;
927
956
  /** Optional error component rendered when loader throws. */
928
957
  errorComponent?: (error: Error) => Node;
958
+ /** Optional path params schema for validation/parsing. */
959
+ params?: ParamSchema<TParams>;
929
960
  /** Optional search params schema for validation/coercion. */
930
961
  searchParams?: SearchParamSchema<TSearch>;
931
962
  /** Nested child routes. */
@@ -956,6 +987,7 @@ interface RouteConfigLike {
956
987
  signal: AbortSignal;
957
988
  }): unknown;
958
989
  errorComponent?: (error: Error) => Node;
990
+ params?: ParamSchema<unknown>;
959
991
  searchParams?: SearchParamSchema<unknown>;
960
992
  children?: Record<string, RouteConfigLike>;
961
993
  }
@@ -986,6 +1018,8 @@ interface CompiledRoute {
986
1018
  signal: AbortSignal;
987
1019
  }) => Promise<unknown> | unknown;
988
1020
  errorComponent?: RouteConfig["errorComponent"];
1021
+ /** Optional path params schema for validation/parsing. */
1022
+ params?: ParamSchema<unknown>;
989
1023
  searchParams?: RouteConfig["searchParams"];
990
1024
  /** Compiled children. */
991
1025
  children?: CompiledRoute[];
@@ -999,6 +1033,8 @@ interface MatchedRoute {
999
1033
  interface RouteMatch {
1000
1034
  /** All params extracted from the full URL path. */
1001
1035
  params: Record<string, string>;
1036
+ /** Parsed params via schema (set when route has a params schema and parse succeeds). */
1037
+ parsedParams?: Record<string, unknown>;
1002
1038
  /** The leaf route config that matched. */
1003
1039
  route: CompiledRoute;
1004
1040
  /** The chain of matched routes from root to leaf (for nested layouts). */
@@ -1116,7 +1152,7 @@ type TypedRouter<T extends Record<string, RouteConfigLike> = RouteDefinitionMap>
1116
1152
  * Create a router instance.
1117
1153
  *
1118
1154
  * @param routes - Compiled route list from defineRoutes()
1119
- * @param initialUrl - The initial URL to match (optional; auto-detects from window.location or __SSR_URL__)
1155
+ * @param initialUrl - The initial URL to match (optional; auto-detects from window.location or SSR context)
1120
1156
  * @returns Router instance with reactive state and navigation methods
1121
1157
  */
1122
1158
  declare function createRouter<T extends Record<string, RouteConfigLike> = RouteDefinitionMap>(routes: TypedRoutes<T>, initialUrl?: string, options?: RouterOptions): Router<T>;
@@ -1140,7 +1176,18 @@ declare const OutletContext: Context<OutletContextValue>;
1140
1176
  declare function Outlet(): Node;
1141
1177
  declare const RouterContext: Context<Router>;
1142
1178
  declare function useRouter<T extends Record<string, RouteConfigLike> = RouteDefinitionMap>(): UnwrapSignals<Router<T>>;
1179
+ /**
1180
+ * Read route params from the current matched route.
1181
+ *
1182
+ * Overload 1: `useParams<'/tasks/:id'>()` — returns `{ id: string }` (backward compat).
1183
+ * Overload 2: `useParams<{ id: number }>()` — returns parsed type assertion
1184
+ * (reads `parsedParams` when a route has a `params` schema).
1185
+ *
1186
+ * At runtime, both overloads prefer `parsedParams` (schema-parsed) when available,
1187
+ * falling back to raw `params` (string values).
1188
+ */
1143
1189
  declare function useParams<TPath extends string = string>(): ExtractParams<TPath>;
1190
+ declare function useParams<T extends Record<string, unknown>>(): T;
1144
1191
  interface RouterViewProps {
1145
1192
  router: Router;
1146
1193
  fallback?: () => Node;
@@ -1202,6 +1249,38 @@ declare function computed<T>(fn: () => T): Computed<T>;
1202
1249
  */
1203
1250
  declare function untrack<T>(fn: () => T): T;
1204
1251
  /**
1252
+ * QueryResultIndex tracks ordered arrays of entity IDs for list queries.
1253
+ * Used to maintain list query results and invalidate on entity removal.
1254
+ */
1255
+ declare class QueryResultIndex {
1256
+ private _indices;
1257
+ /**
1258
+ * Set the result IDs for a query key.
1259
+ */
1260
+ set(queryKey: string, ids: string[]): void;
1261
+ /**
1262
+ * Get the result IDs for a query key.
1263
+ */
1264
+ get(queryKey: string): string[] | undefined;
1265
+ /**
1266
+ * Remove an entity ID from all indices (called after entity delete).
1267
+ */
1268
+ removeEntity(entityId: string): void;
1269
+ /**
1270
+ * Clear a specific query's index (for revalidation).
1271
+ */
1272
+ clear(queryKey: string): void;
1273
+ /**
1274
+ * Snapshot all indices containing the given entity ID.
1275
+ * Returns a Map of queryKey → full ID array (copy) for rollback support.
1276
+ */
1277
+ snapshotEntity(entityId: string): Map<string, string[]>;
1278
+ /**
1279
+ * Get all query keys (for serialization).
1280
+ */
1281
+ keys(): string[];
1282
+ }
1283
+ /**
1205
1284
  * Serialized format for EntityStore - used for SSR transfer and hydration.
1206
1285
  */
1207
1286
  interface SerializedStore {
@@ -1224,12 +1303,14 @@ interface EntityStoreOptions {
1224
1303
  * EntityStore - Normalized, signal-backed entity cache for @vertz/ui.
1225
1304
  *
1226
1305
  * Stores entities by type and ID, with signal-per-entity reactivity.
1227
- * Supports field-level merge, SSR hydration, and query result indices.
1306
+ * Supports field-level merge, SSR hydration, optimistic layers, and query result indices.
1228
1307
  */
1229
1308
  declare class EntityStore {
1230
1309
  private _entities;
1231
1310
  private _typeListeners;
1232
1311
  private _queryIndices;
1312
+ /** Public accessor for query indices — used by optimistic handlers and tests. */
1313
+ get queryIndices(): QueryResultIndex;
1233
1314
  constructor(options?: EntityStoreOptions);
1234
1315
  /**
1235
1316
  * Read a single entity. Returns a signal that updates on merge.
@@ -1270,16 +1351,139 @@ declare class EntityStore {
1270
1351
  size(type: string): number;
1271
1352
  /**
1272
1353
  * Serialize the store for SSR transfer.
1354
+ * Serializes base values only — optimistic layers are transient.
1273
1355
  */
1274
1356
  dehydrate(): SerializedStore;
1275
1357
  /**
1276
1358
  * Hydrate from serialized data. Merges into existing store (doesn't replace).
1277
1359
  */
1278
1360
  hydrate(data: SerializedStore): void;
1361
+ /**
1362
+ * Apply an optimistic layer to an entity.
1363
+ * The layer is stacked on top of base, recomputing the visible signal value.
1364
+ */
1365
+ applyLayer(type: string, id: string, mutationId: string, patch: Record<string, unknown>): void;
1366
+ /**
1367
+ * Increment the reference count for an entity.
1368
+ * Clears orphanedAt timestamp. No-op if entity doesn't exist.
1369
+ */
1370
+ addRef(type: string, id: string): void;
1371
+ /**
1372
+ * Decrement the reference count for an entity.
1373
+ * Sets orphanedAt when refCount reaches 0. No-op if entity doesn't exist.
1374
+ */
1375
+ removeRef(type: string, id: string): void;
1376
+ /**
1377
+ * Evict orphaned entities (refCount=0) that have been unreferenced
1378
+ * for longer than maxAge ms. Entities with pending layers are preserved.
1379
+ * Default maxAge: 5 minutes.
1380
+ */
1381
+ evictOrphans(maxAge?: number): number;
1382
+ /**
1383
+ * Inspect the internal state of an entity — for debugging and testing.
1384
+ * Returns base, layers, visible (computed) state, refCount, and orphanedAt.
1385
+ */
1386
+ inspect(type: string, id: string): {
1387
+ base: Record<string, unknown>;
1388
+ layers: Map<string, Record<string, unknown>>;
1389
+ visible: unknown;
1390
+ refCount: number;
1391
+ orphanedAt: number | null;
1392
+ } | undefined;
1393
+ /**
1394
+ * Rollback an optimistic layer (mutation failed).
1395
+ * Removes the layer and recomputes visible from base + remaining layers.
1396
+ */
1397
+ rollbackLayer(type: string, id: string, mutationId: string): void;
1398
+ /**
1399
+ * Optimistically remove an entity (for delete mutations).
1400
+ * Removes the entity from the store and query indices.
1401
+ * Caller should snapshot entity + indices beforehand for rollback.
1402
+ */
1403
+ removeOptimistic(type: string, id: string, _mutationId: string): void;
1404
+ /**
1405
+ * Restore an entity after a failed optimistic delete.
1406
+ * Re-merges the entity and restores query index positions.
1407
+ */
1408
+ restoreOptimistic(type: string, _id: string, _mutationId: string, entitySnapshot: unknown, indexSnapshot: Map<string, string[]>): void;
1409
+ /**
1410
+ * Commit an optimistic layer after server confirms the mutation.
1411
+ * Sets base to server data, removes the layer, recomputes visible.
1412
+ */
1413
+ commitLayer(type: string, id: string, mutationId: string, serverData: Record<string, unknown>): void;
1414
+ /**
1415
+ * Merge a single (already normalized) entity into the store.
1416
+ */
1417
+ private _mergeOne;
1418
+ /**
1419
+ * Recompute the visible signal value from base + all layers.
1420
+ */
1421
+ private _recomputeVisible;
1279
1422
  private _getOrCreateTypeMap;
1280
1423
  private _getOrCreateListeners;
1281
1424
  private _notifyTypeChange;
1282
1425
  }
1426
+ /** Envelope metadata for list queries (pagination info without entity data). */
1427
+ interface QueryEnvelope {
1428
+ total?: number;
1429
+ limit?: number;
1430
+ nextCursor?: string | null;
1431
+ hasNextPage?: boolean;
1432
+ [key: string]: unknown;
1433
+ }
1434
+ /**
1435
+ * Stores list query envelope metadata per query key.
1436
+ * Decoupled from entity data — entities live in EntityStore,
1437
+ * envelopes live here. Allows list query reconstruction from
1438
+ * EntityStore data + envelope metadata.
1439
+ */
1440
+ declare class QueryEnvelopeStore {
1441
+ private _envelopes;
1442
+ get(queryKey: string): QueryEnvelope | undefined;
1443
+ set(queryKey: string, envelope: QueryEnvelope): void;
1444
+ clear(): void;
1445
+ }
1446
+ /** Get the global EntityStore singleton. */
1447
+ declare function getEntityStore(): EntityStore;
1448
+ /** Get the global QueryEnvelopeStore singleton. */
1449
+ declare function getQueryEnvelopeStore(): QueryEnvelopeStore;
1450
+ /**
1451
+ * MutationEventBus — simple pub/sub for same-type query revalidation.
1452
+ *
1453
+ * When a mutation commits, the handler emits the mutated entity type.
1454
+ * Queries subscribed to that entity type revalidate automatically.
1455
+ */
1456
+ interface MutationEventBus {
1457
+ /** Subscribe to mutation events for a specific entity type. Returns unsubscribe function. */
1458
+ subscribe(entityType: string, callback: () => void): () => void;
1459
+ /** Emit a mutation event for an entity type. All subscribers for that type are notified. */
1460
+ emit(entityType: string): void;
1461
+ /** Remove all subscriptions. Used for SSR per-request isolation. */
1462
+ clear(): void;
1463
+ }
1464
+ import { OptimisticHandler } from "@vertz/fetch";
1465
+ interface OptimisticHandlerOptions {
1466
+ /** Custom MutationEventBus instance. Defaults to the singleton bus. */
1467
+ mutationEventBus?: MutationEventBus;
1468
+ }
1469
+ /**
1470
+ * Create an OptimisticHandler that bridges @vertz/fetch mutations
1471
+ * to EntityStore's optimistic layer API.
1472
+ *
1473
+ * By default, emits mutation events to the singleton MutationEventBus
1474
+ * so that entity-backed queries revalidate automatically.
1475
+ */
1476
+ declare function createOptimisticHandler(store: EntityStore, options?: OptimisticHandlerOptions): OptimisticHandler;
1477
+ interface RelationFieldDef {
1478
+ readonly type: "one" | "many";
1479
+ readonly entity: string;
1480
+ }
1481
+ interface RelationSchema {
1482
+ readonly [fieldName: string]: RelationFieldDef;
1483
+ }
1484
+ declare function registerRelationSchema(entityType: string, schema: RelationSchema): void;
1485
+ declare function getRelationSchema(entityType: string): RelationSchema | undefined;
1486
+ declare function resetRelationSchemas_TEST_ONLY(): void;
1283
1487
  /**
1284
1488
  * Create a pre-populated EntityStore for testing.
1285
1489
  *
@@ -1299,4 +1503,4 @@ declare class EntityStore {
1299
1503
  * ```
1300
1504
  */
1301
1505
  declare function createTestStore(data: Record<string, Record<string, unknown>>): EntityStore;
1302
- export { zoomOut, zoomIn, variants, validate, useSearchParams, useRouter, useParams, useDialogStack, useContext, untrack, slideOutToTop, slideOutToRight, slideOutToLeft, slideOutToBottom, slideInFromTop, slideInFromRight, slideInFromLeft, slideInFromBottom, signal, setAdapter, s, resolveChildren, resetInjectedStyles, ref, queryMatch, query, parseSearchParams, palettes, onMount2 as onMount, mount, keyframes, isRenderNode, isQueryDescriptor, injectCSS, hydrate, globalCss, getInjectedCSS, getAdapter, formDataToObject, form, fadeOut, fadeIn, defineTheme, defineRoutes, css, createTestStore, createRouter, createLink, createFieldState, createDialogStack, createDOMAdapter, createContext, computed, compileTheme, children, batch, accordionUp, accordionDown, __staticText, __exitChildren, __enterChildren, __element, __append, VariantsConfig, VariantProps, VariantFunction, ValidationResult, UnwrapSignals, TypedRoutes, TypedRouter, ThemeProviderProps, ThemeProvider, ThemeInput, Theme, SuspenseProps, Suspense, StyleValue, StyleEntry, Signal, SerializedStore, SearchParamSchema, SdkMethodWithMeta, SdkMethod, RouterViewProps, RouterView, RouterOptions, RouterContext, Router, RoutePaths, RouteMatch, RouteDefinitionMap, RouteConfig, RenderText, RenderNode, RenderElement, RenderAdapter, Ref, ReadonlySignal, RawDeclaration, RENDER_NODE_BRAND, QueryResult, QueryOptions, QueryMatchHandlers, QueryDescriptor2 as QueryDescriptor, PresenceProps, Presence, PathWithParams, OutletContextValue, OutletContext, Outlet, NavigateOptions, MountOptions, MountHandle, MatchedRoute, LoaderData, ListTransitionProps, ListTransition, LinkProps, LinkFactoryOptions, InferRouteMap, GlobalCSSOutput, GlobalCSSInput, FormSchema, FormOptions, FormInstance, FormDataOptions, FieldState, ExtractParams, ErrorBoundaryProps, ErrorBoundary, EntityStoreOptions, EntityStore, DisposeFn, DisposalScopeError, DialogStackContext, DialogStack, DialogHandle, DialogDismissedError, DialogComponent, Context, Computed, ComponentRegistry, ComponentLoader, ComponentFunction, CompiledTheme, CompiledRoute, ColorPalette, ChildrenAccessor, ChildValue, CacheStore, CSSOutput, CSSInput, ANIMATION_EASING, ANIMATION_DURATION };
1506
+ export { zoomOut, zoomIn, variants, validate, useSearchParams, useRouter, useParams, useDialogStack, useContext, untrack, slideOutToTop, slideOutToRight, slideOutToLeft, slideOutToBottom, slideInFromTop, slideInFromRight, slideInFromLeft, slideInFromBottom, signal, setAdapter, s, resolveChildren, resetRelationSchemas_TEST_ONLY, resetInjectedStyles, registerRelationSchema, ref, queryMatch, query, parseSearchParams, palettes, onMount2 as onMount, mount, keyframes, isRenderNode, isQueryDescriptor, invalidate, injectCSS, hydrate, globalCss, getRelationSchema, getQueryEnvelopeStore, getInjectedCSS, getEntityStore, getAdapter, formDataToObject, form, fadeOut, fadeIn, defineTheme, defineRoutes, css, createTestStore, createRouter, createOptimisticHandler, createLink, createFieldState, createDialogStack, createDOMAdapter, createContext, computed, compileTheme, children, batch, accordionUp, accordionDown, __staticText, __exitChildren, __enterChildren, __element, __append, VariantsConfig, VariantProps, VariantFunction, ValidationResult, UnwrapSignals, TypedRoutes, TypedRouter, ThemeProviderProps, ThemeProvider, ThemeInput, Theme, SuspenseProps, Suspense, StyleValue, StyleEntry, Signal, SerializedStore, SearchParamSchema, SdkMethodWithMeta, SdkMethod, RouterViewProps, RouterView, RouterOptions, RouterContext, Router, RoutePaths, RouteMatch, RouteDefinitionMap, RouteConfig, RenderText, RenderNode, RenderElement, RenderAdapter, RelationSchema, RelationFieldDef, Ref, ReadonlySignal, RawDeclaration, RENDER_NODE_BRAND, QueryResult, QueryOptions, QueryMatchHandlers, QueryEnvelopeStore, QueryEnvelope, QueryDescriptor3 as QueryDescriptor, PresenceProps, Presence, PathWithParams, ParamSchema, OutletContextValue, OutletContext, Outlet, NavigateOptions, MountOptions, MountHandle, MatchedRoute, LoaderData, ListTransitionProps, ListTransition, LinkProps, LinkFactoryOptions, InferRouteMap, GlobalCSSOutput, GlobalCSSInput, FormSchema, FormOptions, FormInstance, FormDataOptions, FieldState, ExtractParams, ErrorBoundaryProps, ErrorBoundary, EntityStoreOptions, EntityStore, DisposeFn, DisposalScopeError, DialogStackContext, DialogStack, DialogHandle, DialogDismissedError, DialogComponent, Context, Computed, ComponentRegistry, ComponentLoader, ComponentFunction, CompiledTheme, CompiledRoute, ColorPalette, ChildrenAccessor, ChildValue, CacheStore, CSSOutput, CSSInput, ANIMATION_EASING, ANIMATION_DURATION };