@graphrefly/graphrefly 0.24.0 → 0.25.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 (33) hide show
  1. package/dist/{chunk-IPLKX3L2.js → chunk-EVR6UFUV.js} +2 -2
  2. package/dist/{chunk-5WGT55R4.js → chunk-IAHGTNOZ.js} +4 -2
  3. package/dist/{chunk-5WGT55R4.js.map → chunk-IAHGTNOZ.js.map} +1 -1
  4. package/dist/{chunk-AOCBDH4T.js → chunk-L2GLW2U7.js} +68 -1
  5. package/dist/chunk-L2GLW2U7.js.map +1 -0
  6. package/dist/{chunk-TDEXAMGO.js → chunk-TKE3JGOH.js} +488 -16
  7. package/dist/chunk-TKE3JGOH.js.map +1 -0
  8. package/dist/compat/nestjs/index.cjs.map +1 -1
  9. package/dist/compat/nestjs/index.js +2 -2
  10. package/dist/extra/index.cjs +68 -0
  11. package/dist/extra/index.cjs.map +1 -1
  12. package/dist/extra/index.d.cts +1 -1
  13. package/dist/extra/index.d.ts +1 -1
  14. package/dist/extra/index.js +4 -2
  15. package/dist/{index-1z8vRTCt.d.cts → index-Ch0IpIO0.d.cts} +29 -2
  16. package/dist/{index-b5BYtczN.d.cts → index-DKE1EATr.d.cts} +222 -2
  17. package/dist/{index-BysCTzJz.d.ts → index-Ds23Wvou.d.ts} +29 -2
  18. package/dist/{index-D7XgsUt7.d.ts → index-OXImXMq6.d.ts} +222 -2
  19. package/dist/index.cjs +550 -15
  20. package/dist/index.cjs.map +1 -1
  21. package/dist/index.d.cts +3 -3
  22. package/dist/index.d.ts +3 -3
  23. package/dist/index.js +6 -4
  24. package/dist/index.js.map +1 -1
  25. package/dist/patterns/reactive-layout/index.cjs +488 -16
  26. package/dist/patterns/reactive-layout/index.cjs.map +1 -1
  27. package/dist/patterns/reactive-layout/index.d.cts +1 -1
  28. package/dist/patterns/reactive-layout/index.d.ts +1 -1
  29. package/dist/patterns/reactive-layout/index.js +16 -4
  30. package/package.json +1 -1
  31. package/dist/chunk-AOCBDH4T.js.map +0 -1
  32. package/dist/chunk-TDEXAMGO.js.map +0 -1
  33. /package/dist/{chunk-IPLKX3L2.js.map → chunk-EVR6UFUV.js.map} +0 -0
@@ -882,6 +882,32 @@ declare function matchesAnyPattern(path: string, patterns: RegExp[]): boolean;
882
882
  declare function fromTimer(ms: number, opts?: AsyncSourceOpts & {
883
883
  period?: number;
884
884
  }): Node<number>;
885
+ /**
886
+ * Animation-frame-driven source. Emits on every `requestAnimationFrame` tick,
887
+ * yielding the frame timestamp (DOMHighResTimeStamp, ms since navigation).
888
+ *
889
+ * Use instead of `fromTimer({ period: 16 })` when animation smoothness matters.
890
+ * In a real browser, `requestAnimationFrame` synchronizes with the display
891
+ * refresh. The source keeps ticking even when the tab is hidden — it
892
+ * transparently switches to `setTimeout` while the tab is backgrounded (so
893
+ * downstream state updates continue) and returns to `requestAnimationFrame`
894
+ * when the tab regains focus.
895
+ *
896
+ * When `requestAnimationFrame` is unavailable (Node test environments, SSR),
897
+ * this falls back to `setTimeout(~16ms)` unconditionally. Abortable via
898
+ * `signal` (emits `ERROR`).
899
+ *
900
+ * @example
901
+ * ```ts
902
+ * import { fromRaf, derived } from "@graphrefly/graphrefly-ts";
903
+ *
904
+ * const frame = fromRaf();
905
+ * const bouncingX = derived([frame], ([t]) => 50 + 40 * Math.sin((t as number) * 0.001));
906
+ * ```
907
+ *
908
+ * @category extra
909
+ */
910
+ declare function fromRaf(opts?: AsyncSourceOpts): Node<number>;
885
911
  /**
886
912
  * Polls on an interval; when the current minute matches a 5-field cron expression, emits once (see {@link parseCron}).
887
913
  *
@@ -5637,6 +5663,7 @@ declare const index_fromPrometheus: typeof fromPrometheus;
5637
5663
  declare const index_fromPromise: typeof fromPromise;
5638
5664
  declare const index_fromPulsar: typeof fromPulsar;
5639
5665
  declare const index_fromRabbitMQ: typeof fromRabbitMQ;
5666
+ declare const index_fromRaf: typeof fromRaf;
5640
5667
  declare const index_fromRedisStream: typeof fromRedisStream;
5641
5668
  declare const index_fromSSE: typeof fromSSE;
5642
5669
  declare const index_fromSqlite: typeof fromSqlite;
@@ -5738,7 +5765,7 @@ declare const index_workerBridge: typeof workerBridge;
5738
5765
  declare const index_workerSelf: typeof workerSelf;
5739
5766
  declare const index_zip: typeof zip;
5740
5767
  declare namespace index {
5741
- export { type index_AckableMessage as AckableMessage, type index_AdapterHandlers as AdapterHandlers, type index_AsyncSourceOpts as AsyncSourceOpts, type index_BackoffPreset as BackoffPreset, type index_BackoffStrategy as BackoffStrategy, type index_BatchMessage as BatchMessage, type index_BridgeMessage as BridgeMessage, type index_BufferedSinkHandle as BufferedSinkHandle, type index_BundleTriad as BundleTriad, type index_CSVRow as CSVRow, type index_CacheEvictionPolicy as CacheEvictionPolicy, type index_CascadingCache as CascadingCache, type index_CascadingCacheOptions as CascadingCacheOptions, type index_CheckpointToRedisOptions as CheckpointToRedisOptions, type index_CheckpointToS3Options as CheckpointToS3Options, type index_CircuitBreaker as CircuitBreaker, type index_CircuitBreakerOptions as CircuitBreakerOptions, index_CircuitOpenError as CircuitOpenError, type index_CircuitState as CircuitState, type index_ClickHouseClientLike as ClickHouseClientLike, type index_ClickHouseInsertClientLike as ClickHouseInsertClientLike, type index_ClickHouseRow as ClickHouseRow, type index_CronSchedule as CronSchedule, type index_DistillBundle as DistillBundle, type index_DistillOptions as DistillOptions, type index_DrizzleQueryLike as DrizzleQueryLike, type index_EmitTriad as EmitTriad, type index_ErrorMessage as ErrorMessage, type index_EventTargetLike as EventTargetLike, type index_ExponentialBackoffOptions as ExponentialBackoffOptions, type index_ExternalBundleOptions as ExternalBundleOptions, type index_ExternalRegister as ExternalRegister, type index_Extraction as Extraction, type index_FSEvent as FSEvent, type index_FSEventType as FSEventType, type index_FallbackInput as FallbackInput, type index_FileWriterLike as FileWriterLike, type index_FromCSVOptions as FromCSVOptions, type index_FromClickHouseWatchOptions as FromClickHouseWatchOptions, type index_FromCronOptions as FromCronOptions, type index_FromDrizzleOptions as FromDrizzleOptions, type index_FromFSWatchOptions as FromFSWatchOptions, type index_FromGitHookOptions as FromGitHookOptions, type index_FromHTTPOptions as FromHTTPOptions, type index_FromHTTPPollOptions as FromHTTPPollOptions, type index_FromHTTPStreamOptions as FromHTTPStreamOptions, type index_FromKafkaOptions as FromKafkaOptions, type index_FromKyselyOptions as FromKyselyOptions, type index_FromMCPOptions as FromMCPOptions, type index_FromNATSOptions as FromNATSOptions, type index_FromNDJSONOptions as FromNDJSONOptions, type index_FromOTelOptions as FromOTelOptions, type index_FromPrismaOptions as FromPrismaOptions, type index_FromPrometheusOptions as FromPrometheusOptions, type index_FromPulsarOptions as FromPulsarOptions, type index_FromRabbitMQOptions as FromRabbitMQOptions, type index_FromRedisStreamOptions as FromRedisStreamOptions, type index_FromSSEOptions as FromSSEOptions, type index_FromSqliteOptions as FromSqliteOptions, type index_FromStatsDOptions as FromStatsDOptions, type index_FromSyslogOptions as FromSyslogOptions, type index_FromWebSocketReconnectOptions as FromWebSocketReconnectOptions, type index_GitEvent as GitEvent, type index_GitHookType as GitHookType, type index_HTTPBundle as HTTPBundle, type index_IndexBackend as IndexBackend, type index_IndexRow as IndexRow, index_IndexedDbStorageSpec as IndexedDbStorageSpec, type index_InitMessage as InitMessage, type index_JitterMode as JitterMode, type index_KafkaConsumerLike as KafkaConsumerLike, type index_KafkaMessage as KafkaMessage, type index_KafkaProducerLike as KafkaProducerLike, type index_KyselyQueryLike as KyselyQueryLike, type index_ListBackend as ListBackend, type index_LogBackend as LogBackend, type index_LokiClientLike as LokiClientLike, type index_LokiStream as LokiStream, type index_MCPClientLike as MCPClientLike, type index_MapBackend as MapBackend, type index_MergeMapOptions as MergeMapOptions, type index_MongoCollectionLike as MongoCollectionLike, type index_NATSClientLike as NATSClientLike, type index_NATSMessage as NATSMessage, type index_NATSSubscriptionLike as NATSSubscriptionLike, index_NS_PER_MS as NS_PER_MS, index_NS_PER_SEC as NS_PER_SEC, index_NativeIndexBackend as NativeIndexBackend, index_NativeListBackend as NativeListBackend, index_NativeLogBackend as NativeLogBackend, index_NativeMapBackend as NativeMapBackend, type index_NativeMapBackendOptions as NativeMapBackendOptions, index_NativePubSubBackend as NativePubSubBackend, type index_NodeInput as NodeInput, type index_OTelBundle as OTelBundle, type index_OTelLog as OTelLog, type index_OTelMetric as OTelMetric, type index_OTelRegister as OTelRegister, type index_OTelSpan as OTelSpan, type index_PostgresClientLike as PostgresClientLike, type index_PrismaModelLike as PrismaModelLike, type index_PrometheusMetric as PrometheusMetric, type index_PubSubBackend as PubSubBackend, type index_PubSubHub as PubSubHub, type index_PubSubHubOptions as PubSubHubOptions, type index_PulsarConsumerLike as PulsarConsumerLike, type index_PulsarMessage as PulsarMessage, type index_PulsarProducerLike as PulsarProducerLike, type index_RabbitMQChannelLike as RabbitMQChannelLike, type index_RabbitMQMessage as RabbitMQMessage, type index_RateLimiterOptions as RateLimiterOptions, index_RateLimiterOverflowError as RateLimiterOverflowError, type index_RateLimiterOverflowPolicy as RateLimiterOverflowPolicy, type index_ReactiveCounterBundle as ReactiveCounterBundle, type index_ReactiveIndexBundle as ReactiveIndexBundle, type index_ReactiveIndexOptions as ReactiveIndexOptions, type index_ReactiveListBundle as ReactiveListBundle, type index_ReactiveListOptions as ReactiveListOptions, type index_ReactiveLogBundle as ReactiveLogBundle, type index_ReactiveLogOptions as ReactiveLogOptions, type index_ReactiveMapBundle as ReactiveMapBundle, type index_ReactiveMapOptions as ReactiveMapOptions, type index_ReactiveSinkBackpressureOptions as ReactiveSinkBackpressureOptions, type index_ReactiveSinkConfig as ReactiveSinkConfig, type index_ReactiveSinkHandle as ReactiveSinkHandle, type index_ReactiveSinkOptions as ReactiveSinkOptions, type index_ReactiveSinkRetryOptions as ReactiveSinkRetryOptions, type index_ReadyMessage as ReadyMessage, type index_RedisCheckpointClientLike as RedisCheckpointClientLike, type index_RedisClientLike as RedisClientLike, type index_RedisStreamEntry as RedisStreamEntry, index_ResettableTimer as ResettableTimer, type index_RetryOptions as RetryOptions, type index_RetrySourceOptions as RetrySourceOptions, type index_S3ClientLike as S3ClientLike, type index_SSEEvent as SSEEvent, type index_SignalMessage as SignalMessage, type index_SinkFailure as SinkFailure, type index_SinkHandle as SinkHandle, type index_SinkTransportError as SinkTransportError, type index_SqliteDbLike as SqliteDbLike, type index_SqliteIterableDbLike as SqliteIterableDbLike, type index_StatsDMetric as StatsDMetric, type index_StatsDRegister as StatsDRegister, type index_StatusValue as StatusValue, index_StorageHandle as StorageHandle, index_StorageTier as StorageTier, type index_SyslogMessage as SyslogMessage, type index_SyslogRegister as SyslogRegister, type index_TapObserver as TapObserver, type index_TempoClientLike as TempoClientLike, type index_ThrottleOptions as ThrottleOptions, index_TimeoutError as TimeoutError, type index_ToCSVOptions as ToCSVOptions, type index_ToClickHouseOptions as ToClickHouseOptions, type index_ToFileOptions as ToFileOptions, type index_ToHTTPOptions as ToHTTPOptions, type index_ToKafkaOptions as ToKafkaOptions, type index_ToLokiOptions as ToLokiOptions, type index_ToMongoOptions as ToMongoOptions, type index_ToNATSOptions as ToNATSOptions, index_ToObservableOptions as ToObservableOptions, type index_ToPostgresOptions as ToPostgresOptions, type index_ToPulsarOptions as ToPulsarOptions, type index_ToRabbitMQOptions as ToRabbitMQOptions, type index_ToRedisStreamOptions as ToRedisStreamOptions, type index_ToS3Options as ToS3Options, type index_ToSSEOptions as ToSSEOptions, type index_ToSqliteOptions as ToSqliteOptions, type index_ToTempoOptions as ToTempoOptions, type index_ToWebSocketOptions as ToWebSocketOptions, type index_TokenBucket as TokenBucket, type index_UpsertOptions as UpsertOptions, type index_ValueMessage as ValueMessage, type index_VerifiableBundle as VerifiableBundle, type index_VerifiableOptions as VerifiableOptions, type index_VerifyValue as VerifyValue, type index_WatermarkController as WatermarkController, type index_WatermarkOptions as WatermarkOptions, type index_WebSocketLike as WebSocketLike, type index_WebSocketMessageEventLike as WebSocketMessageEventLike, type index_WebSocketRegister as WebSocketRegister, type index_WebhookRegister as WebhookRegister, type index_WithBreakerBundle as WithBreakerBundle, type index_WithStatusBundle as WithStatusBundle, type index_WorkerBridge as WorkerBridge, type index_WorkerBridgeOptions as WorkerBridgeOptions, type index_WorkerSelfHandle as WorkerSelfHandle, type index_WorkerSelfOptions as WorkerSelfOptions, type index_WorkerTransport as WorkerTransport, index_audit as audit, index_buffer as buffer, index_bufferCount as bufferCount, index_bufferTime as bufferTime, index_cached as cached, index_cascadingCache as cascadingCache, index_catchError as catchError, index_checkpointToRedis as checkpointToRedis, index_checkpointToS3 as checkpointToS3, index_circuitBreaker as circuitBreaker, index_combine as combine, index_combineLatest as combineLatest, index_concat as concat, index_concatMap as concatMap, index_constant as constant, index_createTransport as createTransport, index_createWatermarkController as createWatermarkController, index_csvRows as csvRows, index_debounce as debounce, index_debounceTime as debounceTime, index_decorrelatedJitter as decorrelatedJitter, index_delay as delay, index_deserializeError as deserializeError, index_dictStorage as dictStorage, index_distill as distill, index_distinctUntilChanged as distinctUntilChanged, index_elementAt as elementAt, index_empty as empty, index_escapeRegexChar as escapeRegexChar, index_exhaustMap as exhaustMap, index_exponential as exponential, index_externalBundle as externalBundle, index_externalProducer as externalProducer, index_fallback as fallback, index_fibonacci as fibonacci, index_fileStorage as fileStorage, index_filter as filter, index_find as find, index_first as first, index_firstValueFrom as firstValueFrom, index_firstWhere as firstWhere, index_flatMap as flatMap, index_forEach as forEach, index_fromAny as fromAny, index_fromAsyncIter as fromAsyncIter, index_fromCSV as fromCSV, index_fromClickHouseWatch as fromClickHouseWatch, index_fromCron as fromCron, index_fromDrizzle as fromDrizzle, index_fromEvent as fromEvent, index_fromFSWatch as fromFSWatch, index_fromGitHook as fromGitHook, index_fromHTTP as fromHTTP, index_fromHTTPPoll as fromHTTPPoll, index_fromHTTPStream as fromHTTPStream, index_fromIDBRequest as fromIDBRequest, index_fromIDBTransaction as fromIDBTransaction, index_fromIter as fromIter, index_fromKafka as fromKafka, index_fromKysely as fromKysely, index_fromMCP as fromMCP, index_fromNATS as fromNATS, index_fromNDJSON as fromNDJSON, index_fromOTel as fromOTel, index_fromPrisma as fromPrisma, index_fromPrometheus as fromPrometheus, index_fromPromise as fromPromise, index_fromPulsar as fromPulsar, index_fromRabbitMQ as fromRabbitMQ, index_fromRedisStream as fromRedisStream, index_fromSSE as fromSSE, index_fromSqlite as fromSqlite, index_fromSqliteCursor as fromSqliteCursor, index_fromStatsD as fromStatsD, index_fromSyslog as fromSyslog, index_fromTimer as fromTimer, index_fromWebSocket as fromWebSocket, index_fromWebSocketReconnect as fromWebSocketReconnect, index_fromWebhook as fromWebhook, index_globToRegExp as globToRegExp, index_indexedDbStorage as indexedDbStorage, index_interval as interval, index_keepalive as keepalive, index_last as last, index_linear as linear, index_lru as lru, index_map as map, index_matchesAnyPattern as matchesAnyPattern, index_matchesCron as matchesCron, index_memoryStorage as memoryStorage, index_merge as merge, index_mergeMap as mergeMap, index_nameToSignal as nameToSignal, index_ndjsonRows as ndjsonRows, index_never as never, index_of as of, index_pairwise as pairwise, index_parseCron as parseCron, index_parsePrometheusText as parsePrometheusText, index_parseStatsD as parseStatsD, index_parseSyslog as parseSyslog, index_pausable as pausable, index_pubsub as pubsub, index_race as race, index_rateLimiter as rateLimiter, index_reactiveCounter as reactiveCounter, index_reactiveIndex as reactiveIndex, index_reactiveList as reactiveList, index_reactiveLog as reactiveLog, index_reactiveMap as reactiveMap, index_reactiveSink as reactiveSink, index_reduce as reduce, index_repeat as repeat, index_replay as replay, index_rescue as rescue, index_resolveBackoffPreset as resolveBackoffPreset, index_retry as retry, index_retrySource as retrySource, index_sample as sample, index_scan as scan, index_serializeError as serializeError, index_share as share, index_shareReplay as shareReplay, index_signalToName as signalToName, index_skip as skip, index_sqliteStorage as sqliteStorage, index_switchMap as switchMap, index_take as take, index_takeUntil as takeUntil, index_takeWhile as takeWhile, index_tap as tap, index_throttle as throttle, index_throttleTime as throttleTime, index_throwError as throwError, index_timeout as timeout, index_toArray as toArray, index_toCSV as toCSV, index_toClickHouse as toClickHouse, index_toFile as toFile, index_toHTTP as toHTTP, index_toKafka as toKafka, index_toLoki as toLoki, index_toMongo as toMongo, index_toNATS as toNATS, index_toObservable as toObservable, index_toPostgres as toPostgres, index_toPulsar as toPulsar, index_toRabbitMQ as toRabbitMQ, index_toReadableStream as toReadableStream, index_toRedisStream as toRedisStream, index_toS3 as toS3, index_toSSE as toSSE, index_toSSEBytes as toSSEBytes, index_toSqlite as toSqlite, index_toTempo as toTempo, index_toWebSocket as toWebSocket, index_tokenBucket as tokenBucket, index_valve as valve, index_verifiable as verifiable, index_window as window, index_windowCount as windowCount, index_windowTime as windowTime, index_withBreaker as withBreaker, index_withLatestFrom as withLatestFrom, index_withMaxAttempts as withMaxAttempts, index_withStatus as withStatus, index_workerBridge as workerBridge, index_workerSelf as workerSelf, index_zip as zip };
5768
+ export { type index_AckableMessage as AckableMessage, type index_AdapterHandlers as AdapterHandlers, type index_AsyncSourceOpts as AsyncSourceOpts, type index_BackoffPreset as BackoffPreset, type index_BackoffStrategy as BackoffStrategy, type index_BatchMessage as BatchMessage, type index_BridgeMessage as BridgeMessage, type index_BufferedSinkHandle as BufferedSinkHandle, type index_BundleTriad as BundleTriad, type index_CSVRow as CSVRow, type index_CacheEvictionPolicy as CacheEvictionPolicy, type index_CascadingCache as CascadingCache, type index_CascadingCacheOptions as CascadingCacheOptions, type index_CheckpointToRedisOptions as CheckpointToRedisOptions, type index_CheckpointToS3Options as CheckpointToS3Options, type index_CircuitBreaker as CircuitBreaker, type index_CircuitBreakerOptions as CircuitBreakerOptions, index_CircuitOpenError as CircuitOpenError, type index_CircuitState as CircuitState, type index_ClickHouseClientLike as ClickHouseClientLike, type index_ClickHouseInsertClientLike as ClickHouseInsertClientLike, type index_ClickHouseRow as ClickHouseRow, type index_CronSchedule as CronSchedule, type index_DistillBundle as DistillBundle, type index_DistillOptions as DistillOptions, type index_DrizzleQueryLike as DrizzleQueryLike, type index_EmitTriad as EmitTriad, type index_ErrorMessage as ErrorMessage, type index_EventTargetLike as EventTargetLike, type index_ExponentialBackoffOptions as ExponentialBackoffOptions, type index_ExternalBundleOptions as ExternalBundleOptions, type index_ExternalRegister as ExternalRegister, type index_Extraction as Extraction, type index_FSEvent as FSEvent, type index_FSEventType as FSEventType, type index_FallbackInput as FallbackInput, type index_FileWriterLike as FileWriterLike, type index_FromCSVOptions as FromCSVOptions, type index_FromClickHouseWatchOptions as FromClickHouseWatchOptions, type index_FromCronOptions as FromCronOptions, type index_FromDrizzleOptions as FromDrizzleOptions, type index_FromFSWatchOptions as FromFSWatchOptions, type index_FromGitHookOptions as FromGitHookOptions, type index_FromHTTPOptions as FromHTTPOptions, type index_FromHTTPPollOptions as FromHTTPPollOptions, type index_FromHTTPStreamOptions as FromHTTPStreamOptions, type index_FromKafkaOptions as FromKafkaOptions, type index_FromKyselyOptions as FromKyselyOptions, type index_FromMCPOptions as FromMCPOptions, type index_FromNATSOptions as FromNATSOptions, type index_FromNDJSONOptions as FromNDJSONOptions, type index_FromOTelOptions as FromOTelOptions, type index_FromPrismaOptions as FromPrismaOptions, type index_FromPrometheusOptions as FromPrometheusOptions, type index_FromPulsarOptions as FromPulsarOptions, type index_FromRabbitMQOptions as FromRabbitMQOptions, type index_FromRedisStreamOptions as FromRedisStreamOptions, type index_FromSSEOptions as FromSSEOptions, type index_FromSqliteOptions as FromSqliteOptions, type index_FromStatsDOptions as FromStatsDOptions, type index_FromSyslogOptions as FromSyslogOptions, type index_FromWebSocketReconnectOptions as FromWebSocketReconnectOptions, type index_GitEvent as GitEvent, type index_GitHookType as GitHookType, type index_HTTPBundle as HTTPBundle, type index_IndexBackend as IndexBackend, type index_IndexRow as IndexRow, index_IndexedDbStorageSpec as IndexedDbStorageSpec, type index_InitMessage as InitMessage, type index_JitterMode as JitterMode, type index_KafkaConsumerLike as KafkaConsumerLike, type index_KafkaMessage as KafkaMessage, type index_KafkaProducerLike as KafkaProducerLike, type index_KyselyQueryLike as KyselyQueryLike, type index_ListBackend as ListBackend, type index_LogBackend as LogBackend, type index_LokiClientLike as LokiClientLike, type index_LokiStream as LokiStream, type index_MCPClientLike as MCPClientLike, type index_MapBackend as MapBackend, type index_MergeMapOptions as MergeMapOptions, type index_MongoCollectionLike as MongoCollectionLike, type index_NATSClientLike as NATSClientLike, type index_NATSMessage as NATSMessage, type index_NATSSubscriptionLike as NATSSubscriptionLike, index_NS_PER_MS as NS_PER_MS, index_NS_PER_SEC as NS_PER_SEC, index_NativeIndexBackend as NativeIndexBackend, index_NativeListBackend as NativeListBackend, index_NativeLogBackend as NativeLogBackend, index_NativeMapBackend as NativeMapBackend, type index_NativeMapBackendOptions as NativeMapBackendOptions, index_NativePubSubBackend as NativePubSubBackend, type index_NodeInput as NodeInput, type index_OTelBundle as OTelBundle, type index_OTelLog as OTelLog, type index_OTelMetric as OTelMetric, type index_OTelRegister as OTelRegister, type index_OTelSpan as OTelSpan, type index_PostgresClientLike as PostgresClientLike, type index_PrismaModelLike as PrismaModelLike, type index_PrometheusMetric as PrometheusMetric, type index_PubSubBackend as PubSubBackend, type index_PubSubHub as PubSubHub, type index_PubSubHubOptions as PubSubHubOptions, type index_PulsarConsumerLike as PulsarConsumerLike, type index_PulsarMessage as PulsarMessage, type index_PulsarProducerLike as PulsarProducerLike, type index_RabbitMQChannelLike as RabbitMQChannelLike, type index_RabbitMQMessage as RabbitMQMessage, type index_RateLimiterOptions as RateLimiterOptions, index_RateLimiterOverflowError as RateLimiterOverflowError, type index_RateLimiterOverflowPolicy as RateLimiterOverflowPolicy, type index_ReactiveCounterBundle as ReactiveCounterBundle, type index_ReactiveIndexBundle as ReactiveIndexBundle, type index_ReactiveIndexOptions as ReactiveIndexOptions, type index_ReactiveListBundle as ReactiveListBundle, type index_ReactiveListOptions as ReactiveListOptions, type index_ReactiveLogBundle as ReactiveLogBundle, type index_ReactiveLogOptions as ReactiveLogOptions, type index_ReactiveMapBundle as ReactiveMapBundle, type index_ReactiveMapOptions as ReactiveMapOptions, type index_ReactiveSinkBackpressureOptions as ReactiveSinkBackpressureOptions, type index_ReactiveSinkConfig as ReactiveSinkConfig, type index_ReactiveSinkHandle as ReactiveSinkHandle, type index_ReactiveSinkOptions as ReactiveSinkOptions, type index_ReactiveSinkRetryOptions as ReactiveSinkRetryOptions, type index_ReadyMessage as ReadyMessage, type index_RedisCheckpointClientLike as RedisCheckpointClientLike, type index_RedisClientLike as RedisClientLike, type index_RedisStreamEntry as RedisStreamEntry, index_ResettableTimer as ResettableTimer, type index_RetryOptions as RetryOptions, type index_RetrySourceOptions as RetrySourceOptions, type index_S3ClientLike as S3ClientLike, type index_SSEEvent as SSEEvent, type index_SignalMessage as SignalMessage, type index_SinkFailure as SinkFailure, type index_SinkHandle as SinkHandle, type index_SinkTransportError as SinkTransportError, type index_SqliteDbLike as SqliteDbLike, type index_SqliteIterableDbLike as SqliteIterableDbLike, type index_StatsDMetric as StatsDMetric, type index_StatsDRegister as StatsDRegister, type index_StatusValue as StatusValue, index_StorageHandle as StorageHandle, index_StorageTier as StorageTier, type index_SyslogMessage as SyslogMessage, type index_SyslogRegister as SyslogRegister, type index_TapObserver as TapObserver, type index_TempoClientLike as TempoClientLike, type index_ThrottleOptions as ThrottleOptions, index_TimeoutError as TimeoutError, type index_ToCSVOptions as ToCSVOptions, type index_ToClickHouseOptions as ToClickHouseOptions, type index_ToFileOptions as ToFileOptions, type index_ToHTTPOptions as ToHTTPOptions, type index_ToKafkaOptions as ToKafkaOptions, type index_ToLokiOptions as ToLokiOptions, type index_ToMongoOptions as ToMongoOptions, type index_ToNATSOptions as ToNATSOptions, index_ToObservableOptions as ToObservableOptions, type index_ToPostgresOptions as ToPostgresOptions, type index_ToPulsarOptions as ToPulsarOptions, type index_ToRabbitMQOptions as ToRabbitMQOptions, type index_ToRedisStreamOptions as ToRedisStreamOptions, type index_ToS3Options as ToS3Options, type index_ToSSEOptions as ToSSEOptions, type index_ToSqliteOptions as ToSqliteOptions, type index_ToTempoOptions as ToTempoOptions, type index_ToWebSocketOptions as ToWebSocketOptions, type index_TokenBucket as TokenBucket, type index_UpsertOptions as UpsertOptions, type index_ValueMessage as ValueMessage, type index_VerifiableBundle as VerifiableBundle, type index_VerifiableOptions as VerifiableOptions, type index_VerifyValue as VerifyValue, type index_WatermarkController as WatermarkController, type index_WatermarkOptions as WatermarkOptions, type index_WebSocketLike as WebSocketLike, type index_WebSocketMessageEventLike as WebSocketMessageEventLike, type index_WebSocketRegister as WebSocketRegister, type index_WebhookRegister as WebhookRegister, type index_WithBreakerBundle as WithBreakerBundle, type index_WithStatusBundle as WithStatusBundle, type index_WorkerBridge as WorkerBridge, type index_WorkerBridgeOptions as WorkerBridgeOptions, type index_WorkerSelfHandle as WorkerSelfHandle, type index_WorkerSelfOptions as WorkerSelfOptions, type index_WorkerTransport as WorkerTransport, index_audit as audit, index_buffer as buffer, index_bufferCount as bufferCount, index_bufferTime as bufferTime, index_cached as cached, index_cascadingCache as cascadingCache, index_catchError as catchError, index_checkpointToRedis as checkpointToRedis, index_checkpointToS3 as checkpointToS3, index_circuitBreaker as circuitBreaker, index_combine as combine, index_combineLatest as combineLatest, index_concat as concat, index_concatMap as concatMap, index_constant as constant, index_createTransport as createTransport, index_createWatermarkController as createWatermarkController, index_csvRows as csvRows, index_debounce as debounce, index_debounceTime as debounceTime, index_decorrelatedJitter as decorrelatedJitter, index_delay as delay, index_deserializeError as deserializeError, index_dictStorage as dictStorage, index_distill as distill, index_distinctUntilChanged as distinctUntilChanged, index_elementAt as elementAt, index_empty as empty, index_escapeRegexChar as escapeRegexChar, index_exhaustMap as exhaustMap, index_exponential as exponential, index_externalBundle as externalBundle, index_externalProducer as externalProducer, index_fallback as fallback, index_fibonacci as fibonacci, index_fileStorage as fileStorage, index_filter as filter, index_find as find, index_first as first, index_firstValueFrom as firstValueFrom, index_firstWhere as firstWhere, index_flatMap as flatMap, index_forEach as forEach, index_fromAny as fromAny, index_fromAsyncIter as fromAsyncIter, index_fromCSV as fromCSV, index_fromClickHouseWatch as fromClickHouseWatch, index_fromCron as fromCron, index_fromDrizzle as fromDrizzle, index_fromEvent as fromEvent, index_fromFSWatch as fromFSWatch, index_fromGitHook as fromGitHook, index_fromHTTP as fromHTTP, index_fromHTTPPoll as fromHTTPPoll, index_fromHTTPStream as fromHTTPStream, index_fromIDBRequest as fromIDBRequest, index_fromIDBTransaction as fromIDBTransaction, index_fromIter as fromIter, index_fromKafka as fromKafka, index_fromKysely as fromKysely, index_fromMCP as fromMCP, index_fromNATS as fromNATS, index_fromNDJSON as fromNDJSON, index_fromOTel as fromOTel, index_fromPrisma as fromPrisma, index_fromPrometheus as fromPrometheus, index_fromPromise as fromPromise, index_fromPulsar as fromPulsar, index_fromRabbitMQ as fromRabbitMQ, index_fromRaf as fromRaf, index_fromRedisStream as fromRedisStream, index_fromSSE as fromSSE, index_fromSqlite as fromSqlite, index_fromSqliteCursor as fromSqliteCursor, index_fromStatsD as fromStatsD, index_fromSyslog as fromSyslog, index_fromTimer as fromTimer, index_fromWebSocket as fromWebSocket, index_fromWebSocketReconnect as fromWebSocketReconnect, index_fromWebhook as fromWebhook, index_globToRegExp as globToRegExp, index_indexedDbStorage as indexedDbStorage, index_interval as interval, index_keepalive as keepalive, index_last as last, index_linear as linear, index_lru as lru, index_map as map, index_matchesAnyPattern as matchesAnyPattern, index_matchesCron as matchesCron, index_memoryStorage as memoryStorage, index_merge as merge, index_mergeMap as mergeMap, index_nameToSignal as nameToSignal, index_ndjsonRows as ndjsonRows, index_never as never, index_of as of, index_pairwise as pairwise, index_parseCron as parseCron, index_parsePrometheusText as parsePrometheusText, index_parseStatsD as parseStatsD, index_parseSyslog as parseSyslog, index_pausable as pausable, index_pubsub as pubsub, index_race as race, index_rateLimiter as rateLimiter, index_reactiveCounter as reactiveCounter, index_reactiveIndex as reactiveIndex, index_reactiveList as reactiveList, index_reactiveLog as reactiveLog, index_reactiveMap as reactiveMap, index_reactiveSink as reactiveSink, index_reduce as reduce, index_repeat as repeat, index_replay as replay, index_rescue as rescue, index_resolveBackoffPreset as resolveBackoffPreset, index_retry as retry, index_retrySource as retrySource, index_sample as sample, index_scan as scan, index_serializeError as serializeError, index_share as share, index_shareReplay as shareReplay, index_signalToName as signalToName, index_skip as skip, index_sqliteStorage as sqliteStorage, index_switchMap as switchMap, index_take as take, index_takeUntil as takeUntil, index_takeWhile as takeWhile, index_tap as tap, index_throttle as throttle, index_throttleTime as throttleTime, index_throwError as throwError, index_timeout as timeout, index_toArray as toArray, index_toCSV as toCSV, index_toClickHouse as toClickHouse, index_toFile as toFile, index_toHTTP as toHTTP, index_toKafka as toKafka, index_toLoki as toLoki, index_toMongo as toMongo, index_toNATS as toNATS, index_toObservable as toObservable, index_toPostgres as toPostgres, index_toPulsar as toPulsar, index_toRabbitMQ as toRabbitMQ, index_toReadableStream as toReadableStream, index_toRedisStream as toRedisStream, index_toS3 as toS3, index_toSSE as toSSE, index_toSSEBytes as toSSEBytes, index_toSqlite as toSqlite, index_toTempo as toTempo, index_toWebSocket as toWebSocket, index_tokenBucket as tokenBucket, index_valve as valve, index_verifiable as verifiable, index_window as window, index_windowCount as windowCount, index_windowTime as windowTime, index_withBreaker as withBreaker, index_withLatestFrom as withLatestFrom, index_withMaxAttempts as withMaxAttempts, index_withStatus as withStatus, index_workerBridge as workerBridge, index_workerSelf as workerSelf, index_zip as zip };
5742
5769
  }
5743
5770
 
5744
- export { type FromPrismaOptions as $, type AckableMessage as A, type BackoffPreset as B, type CSVRow as C, type DistillBundle as D, type Extraction as E, type ExternalBundleOptions as F, type ExternalRegister as G, type FSEvent as H, type FSEventType as I, type FallbackInput as J, type FileWriterLike as K, type FromCSVOptions as L, type FromClickHouseWatchOptions as M, type NodeInput as N, type FromCronOptions as O, type FromDrizzleOptions as P, type FromFSWatchOptions as Q, type FromGitHookOptions as R, type FromHTTPOptions as S, type FromHTTPPollOptions as T, type FromHTTPStreamOptions as U, type FromKafkaOptions as V, type FromKyselyOptions as W, type FromMCPOptions as X, type FromNATSOptions as Y, type FromNDJSONOptions as Z, type FromOTelOptions as _, type AdapterHandlers as a, type ReactiveLogBundle as a$, type FromPrometheusOptions as a0, type FromPulsarOptions as a1, type FromRabbitMQOptions as a2, type FromRedisStreamOptions as a3, type FromSSEOptions as a4, type FromSqliteOptions as a5, type FromStatsDOptions as a6, type FromSyslogOptions as a7, type FromWebSocketReconnectOptions as a8, type GitEvent as a9, NativeMapBackend as aA, type NativeMapBackendOptions as aB, NativePubSubBackend as aC, type OTelBundle as aD, type OTelLog as aE, type OTelMetric as aF, type OTelRegister as aG, type OTelSpan as aH, type PostgresClientLike as aI, type PrismaModelLike as aJ, type PrometheusMetric as aK, type PubSubBackend as aL, type PubSubHub as aM, type PubSubHubOptions as aN, type PulsarConsumerLike as aO, type PulsarMessage as aP, type PulsarProducerLike as aQ, type RabbitMQChannelLike as aR, type RabbitMQMessage as aS, type RateLimiterOptions as aT, RateLimiterOverflowError as aU, type RateLimiterOverflowPolicy as aV, type ReactiveCounterBundle as aW, type ReactiveIndexBundle as aX, type ReactiveIndexOptions as aY, type ReactiveListBundle as aZ, type ReactiveListOptions as a_, type GitHookType as aa, type HTTPBundle as ab, type IndexBackend as ac, type IndexRow as ad, type InitMessage as ae, type JitterMode as af, type KafkaConsumerLike as ag, type KafkaMessage as ah, type KafkaProducerLike as ai, type KyselyQueryLike as aj, type ListBackend as ak, type LogBackend as al, type LokiClientLike as am, type LokiStream as an, type MCPClientLike as ao, type MapBackend as ap, type MergeMapOptions as aq, type MongoCollectionLike as ar, type NATSClientLike as as, type NATSMessage as at, type NATSSubscriptionLike as au, NS_PER_MS as av, NS_PER_SEC as aw, NativeIndexBackend as ax, NativeListBackend as ay, NativeLogBackend as az, type AsyncSourceOpts as b, type WorkerBridge as b$, type ReactiveLogOptions as b0, type ReactiveMapBundle as b1, type ReactiveMapOptions as b2, type ReactiveSinkBackpressureOptions as b3, type ReactiveSinkConfig as b4, type ReactiveSinkHandle as b5, type ReactiveSinkOptions as b6, type ReactiveSinkRetryOptions as b7, type ReadyMessage as b8, type RedisCheckpointClientLike as b9, type ToKafkaOptions as bA, type ToLokiOptions as bB, type ToMongoOptions as bC, type ToNATSOptions as bD, type ToPostgresOptions as bE, type ToPulsarOptions as bF, type ToRabbitMQOptions as bG, type ToRedisStreamOptions as bH, type ToS3Options as bI, type ToSSEOptions as bJ, type ToSqliteOptions as bK, type ToTempoOptions as bL, type ToWebSocketOptions as bM, type TokenBucket as bN, type UpsertOptions as bO, type ValueMessage as bP, type VerifiableBundle as bQ, type VerifiableOptions as bR, type VerifyValue as bS, type WatermarkController as bT, type WatermarkOptions as bU, type WebSocketLike as bV, type WebSocketMessageEventLike as bW, type WebSocketRegister as bX, type WebhookRegister as bY, type WithBreakerBundle as bZ, type WithStatusBundle as b_, type RedisClientLike as ba, type RedisStreamEntry as bb, ResettableTimer as bc, type RetryOptions as bd, type RetrySourceOptions as be, type S3ClientLike as bf, type SSEEvent as bg, type SignalMessage as bh, type SinkFailure as bi, type SinkHandle as bj, type SinkTransportError as bk, type SqliteDbLike as bl, type SqliteIterableDbLike as bm, type StatsDMetric as bn, type StatsDRegister as bo, type StatusValue as bp, type SyslogMessage as bq, type SyslogRegister as br, type TapObserver as bs, type TempoClientLike as bt, type ThrottleOptions as bu, TimeoutError as bv, type ToCSVOptions as bw, type ToClickHouseOptions as bx, type ToFileOptions as by, type ToHTTPOptions as bz, type BackoffStrategy as c, fromNDJSON as c$, type WorkerBridgeOptions as c0, type WorkerSelfHandle as c1, type WorkerSelfOptions as c2, type WorkerTransport as c3, audit as c4, buffer as c5, bufferCount as c6, bufferTime as c7, cached as c8, cascadingCache as c9, index as cA, fallback as cB, fibonacci as cC, filter as cD, find as cE, first as cF, firstValueFrom as cG, firstWhere as cH, flatMap as cI, forEach as cJ, fromAny as cK, fromAsyncIter as cL, fromCSV as cM, fromClickHouseWatch as cN, fromCron as cO, fromDrizzle as cP, fromEvent as cQ, fromFSWatch as cR, fromGitHook as cS, fromHTTP as cT, fromHTTPPoll as cU, fromHTTPStream as cV, fromIter as cW, fromKafka as cX, fromKysely as cY, fromMCP as cZ, fromNATS as c_, catchError as ca, checkpointToRedis as cb, checkpointToS3 as cc, circuitBreaker as cd, combine as ce, combineLatest as cf, concat as cg, concatMap as ch, constant as ci, createTransport as cj, createWatermarkController as ck, csvRows as cl, debounce as cm, debounceTime as cn, decorrelatedJitter as co, delay as cp, deserializeError as cq, distill as cr, distinctUntilChanged as cs, elementAt as ct, empty as cu, escapeRegexChar as cv, exhaustMap as cw, exponential as cx, externalBundle as cy, externalProducer as cz, type BatchMessage as d, takeUntil as d$, fromOTel as d0, fromPrisma as d1, fromPrometheus as d2, fromPromise as d3, fromPulsar as d4, fromRabbitMQ as d5, fromRedisStream as d6, fromSSE as d7, fromSqlite as d8, fromSqliteCursor as d9, parseSyslog as dA, pausable as dB, pubsub as dC, race as dD, rateLimiter as dE, reactiveCounter as dF, reactiveIndex as dG, reactiveList as dH, reactiveLog as dI, reactiveMap as dJ, reactiveSink as dK, reduce as dL, repeat as dM, replay as dN, rescue as dO, resolveBackoffPreset as dP, retry as dQ, retrySource as dR, sample as dS, scan as dT, serializeError as dU, share as dV, shareReplay as dW, signalToName as dX, skip as dY, switchMap as dZ, take as d_, fromStatsD as da, fromSyslog as db, fromTimer as dc, fromWebSocket as dd, fromWebSocketReconnect as de, fromWebhook as df, globToRegExp as dg, interval as dh, keepalive as di, last as dj, linear as dk, lru as dl, map as dm, matchesAnyPattern as dn, matchesCron as dp, merge as dq, mergeMap as dr, nameToSignal as ds, ndjsonRows as dt, never as du, of as dv, pairwise as dw, parseCron as dx, parsePrometheusText as dy, parseStatsD as dz, type BridgeMessage as e, takeWhile as e0, tap as e1, throttle as e2, throttleTime as e3, throwError as e4, timeout as e5, toArray as e6, toCSV as e7, toClickHouse as e8, toFile as e9, workerBridge as eA, workerSelf as eB, zip as eC, toHTTP as ea, toKafka as eb, toLoki as ec, toMongo as ed, toNATS as ee, toPostgres as ef, toPulsar as eg, toRabbitMQ as eh, toReadableStream as ei, toRedisStream as ej, toS3 as ek, toSSE as el, toSSEBytes as em, toSqlite as en, toTempo as eo, toWebSocket as ep, tokenBucket as eq, valve as er, verifiable as es, window as et, windowCount as eu, windowTime as ev, withBreaker as ew, withLatestFrom as ex, withMaxAttempts as ey, withStatus as ez, type BufferedSinkHandle as f, type BundleTriad as g, type CacheEvictionPolicy as h, type CascadingCache as i, type CascadingCacheOptions as j, type CheckpointToRedisOptions as k, type CheckpointToS3Options as l, type CircuitBreaker as m, type CircuitBreakerOptions as n, CircuitOpenError as o, type CircuitState as p, type ClickHouseClientLike as q, type ClickHouseInsertClientLike as r, type ClickHouseRow as s, type CronSchedule as t, type DistillOptions as u, type DrizzleQueryLike as v, type EmitTriad as w, type ErrorMessage as x, type EventTargetLike as y, type ExponentialBackoffOptions as z };
5771
+ export { type FromPrismaOptions as $, type AckableMessage as A, type BackoffPreset as B, type CSVRow as C, type DistillBundle as D, type Extraction as E, type ExternalBundleOptions as F, type ExternalRegister as G, type FSEvent as H, type FSEventType as I, type FallbackInput as J, type FileWriterLike as K, type FromCSVOptions as L, type FromClickHouseWatchOptions as M, type NodeInput as N, type FromCronOptions as O, type FromDrizzleOptions as P, type FromFSWatchOptions as Q, type FromGitHookOptions as R, type FromHTTPOptions as S, type FromHTTPPollOptions as T, type FromHTTPStreamOptions as U, type FromKafkaOptions as V, type FromKyselyOptions as W, type FromMCPOptions as X, type FromNATSOptions as Y, type FromNDJSONOptions as Z, type FromOTelOptions as _, type AdapterHandlers as a, type ReactiveLogBundle as a$, type FromPrometheusOptions as a0, type FromPulsarOptions as a1, type FromRabbitMQOptions as a2, type FromRedisStreamOptions as a3, type FromSSEOptions as a4, type FromSqliteOptions as a5, type FromStatsDOptions as a6, type FromSyslogOptions as a7, type FromWebSocketReconnectOptions as a8, type GitEvent as a9, NativeMapBackend as aA, type NativeMapBackendOptions as aB, NativePubSubBackend as aC, type OTelBundle as aD, type OTelLog as aE, type OTelMetric as aF, type OTelRegister as aG, type OTelSpan as aH, type PostgresClientLike as aI, type PrismaModelLike as aJ, type PrometheusMetric as aK, type PubSubBackend as aL, type PubSubHub as aM, type PubSubHubOptions as aN, type PulsarConsumerLike as aO, type PulsarMessage as aP, type PulsarProducerLike as aQ, type RabbitMQChannelLike as aR, type RabbitMQMessage as aS, type RateLimiterOptions as aT, RateLimiterOverflowError as aU, type RateLimiterOverflowPolicy as aV, type ReactiveCounterBundle as aW, type ReactiveIndexBundle as aX, type ReactiveIndexOptions as aY, type ReactiveListBundle as aZ, type ReactiveListOptions as a_, type GitHookType as aa, type HTTPBundle as ab, type IndexBackend as ac, type IndexRow as ad, type InitMessage as ae, type JitterMode as af, type KafkaConsumerLike as ag, type KafkaMessage as ah, type KafkaProducerLike as ai, type KyselyQueryLike as aj, type ListBackend as ak, type LogBackend as al, type LokiClientLike as am, type LokiStream as an, type MCPClientLike as ao, type MapBackend as ap, type MergeMapOptions as aq, type MongoCollectionLike as ar, type NATSClientLike as as, type NATSMessage as at, type NATSSubscriptionLike as au, NS_PER_MS as av, NS_PER_SEC as aw, NativeIndexBackend as ax, NativeListBackend as ay, NativeLogBackend as az, type AsyncSourceOpts as b, type WorkerBridge as b$, type ReactiveLogOptions as b0, type ReactiveMapBundle as b1, type ReactiveMapOptions as b2, type ReactiveSinkBackpressureOptions as b3, type ReactiveSinkConfig as b4, type ReactiveSinkHandle as b5, type ReactiveSinkOptions as b6, type ReactiveSinkRetryOptions as b7, type ReadyMessage as b8, type RedisCheckpointClientLike as b9, type ToKafkaOptions as bA, type ToLokiOptions as bB, type ToMongoOptions as bC, type ToNATSOptions as bD, type ToPostgresOptions as bE, type ToPulsarOptions as bF, type ToRabbitMQOptions as bG, type ToRedisStreamOptions as bH, type ToS3Options as bI, type ToSSEOptions as bJ, type ToSqliteOptions as bK, type ToTempoOptions as bL, type ToWebSocketOptions as bM, type TokenBucket as bN, type UpsertOptions as bO, type ValueMessage as bP, type VerifiableBundle as bQ, type VerifiableOptions as bR, type VerifyValue as bS, type WatermarkController as bT, type WatermarkOptions as bU, type WebSocketLike as bV, type WebSocketMessageEventLike as bW, type WebSocketRegister as bX, type WebhookRegister as bY, type WithBreakerBundle as bZ, type WithStatusBundle as b_, type RedisClientLike as ba, type RedisStreamEntry as bb, ResettableTimer as bc, type RetryOptions as bd, type RetrySourceOptions as be, type S3ClientLike as bf, type SSEEvent as bg, type SignalMessage as bh, type SinkFailure as bi, type SinkHandle as bj, type SinkTransportError as bk, type SqliteDbLike as bl, type SqliteIterableDbLike as bm, type StatsDMetric as bn, type StatsDRegister as bo, type StatusValue as bp, type SyslogMessage as bq, type SyslogRegister as br, type TapObserver as bs, type TempoClientLike as bt, type ThrottleOptions as bu, TimeoutError as bv, type ToCSVOptions as bw, type ToClickHouseOptions as bx, type ToFileOptions as by, type ToHTTPOptions as bz, type BackoffStrategy as c, fromNDJSON as c$, type WorkerBridgeOptions as c0, type WorkerSelfHandle as c1, type WorkerSelfOptions as c2, type WorkerTransport as c3, audit as c4, buffer as c5, bufferCount as c6, bufferTime as c7, cached as c8, cascadingCache as c9, index as cA, fallback as cB, fibonacci as cC, filter as cD, find as cE, first as cF, firstValueFrom as cG, firstWhere as cH, flatMap as cI, forEach as cJ, fromAny as cK, fromAsyncIter as cL, fromCSV as cM, fromClickHouseWatch as cN, fromCron as cO, fromDrizzle as cP, fromEvent as cQ, fromFSWatch as cR, fromGitHook as cS, fromHTTP as cT, fromHTTPPoll as cU, fromHTTPStream as cV, fromIter as cW, fromKafka as cX, fromKysely as cY, fromMCP as cZ, fromNATS as c_, catchError as ca, checkpointToRedis as cb, checkpointToS3 as cc, circuitBreaker as cd, combine as ce, combineLatest as cf, concat as cg, concatMap as ch, constant as ci, createTransport as cj, createWatermarkController as ck, csvRows as cl, debounce as cm, debounceTime as cn, decorrelatedJitter as co, delay as cp, deserializeError as cq, distill as cr, distinctUntilChanged as cs, elementAt as ct, empty as cu, escapeRegexChar as cv, exhaustMap as cw, exponential as cx, externalBundle as cy, externalProducer as cz, type BatchMessage as d, take as d$, fromOTel as d0, fromPrisma as d1, fromPrometheus as d2, fromPromise as d3, fromPulsar as d4, fromRabbitMQ as d5, fromRaf as d6, fromRedisStream as d7, fromSSE as d8, fromSqlite as d9, parseStatsD as dA, parseSyslog as dB, pausable as dC, pubsub as dD, race as dE, rateLimiter as dF, reactiveCounter as dG, reactiveIndex as dH, reactiveList as dI, reactiveLog as dJ, reactiveMap as dK, reactiveSink as dL, reduce as dM, repeat as dN, replay as dO, rescue as dP, resolveBackoffPreset as dQ, retry as dR, retrySource as dS, sample as dT, scan as dU, serializeError as dV, share as dW, shareReplay as dX, signalToName as dY, skip as dZ, switchMap as d_, fromSqliteCursor as da, fromStatsD as db, fromSyslog as dc, fromTimer as dd, fromWebSocket as de, fromWebSocketReconnect as df, fromWebhook as dg, globToRegExp as dh, interval as di, keepalive as dj, last as dk, linear as dl, lru as dm, map as dn, matchesAnyPattern as dp, matchesCron as dq, merge as dr, mergeMap as ds, nameToSignal as dt, ndjsonRows as du, never as dv, of as dw, pairwise as dx, parseCron as dy, parsePrometheusText as dz, type BridgeMessage as e, takeUntil as e0, takeWhile as e1, tap as e2, throttle as e3, throttleTime as e4, throwError as e5, timeout as e6, toArray as e7, toCSV as e8, toClickHouse as e9, withStatus as eA, workerBridge as eB, workerSelf as eC, zip as eD, toFile as ea, toHTTP as eb, toKafka as ec, toLoki as ed, toMongo as ee, toNATS as ef, toPostgres as eg, toPulsar as eh, toRabbitMQ as ei, toReadableStream as ej, toRedisStream as ek, toS3 as el, toSSE as em, toSSEBytes as en, toSqlite as eo, toTempo as ep, toWebSocket as eq, tokenBucket as er, valve as es, verifiable as et, window as eu, windowCount as ev, windowTime as ew, withBreaker as ex, withLatestFrom as ey, withMaxAttempts as ez, type BufferedSinkHandle as f, type BundleTriad as g, type CacheEvictionPolicy as h, type CascadingCache as i, type CascadingCacheOptions as j, type CheckpointToRedisOptions as k, type CheckpointToS3Options as l, type CircuitBreaker as m, type CircuitBreakerOptions as n, CircuitOpenError as o, type CircuitState as p, type ClickHouseClientLike as q, type ClickHouseInsertClientLike as r, type ClickHouseRow as s, type CronSchedule as t, type DistillOptions as u, type DrizzleQueryLike as v, type EmitTriad as w, type ErrorMessage as x, type EventTargetLike as y, type ExponentialBackoffOptions as z };
@@ -46,6 +46,35 @@ type LineBreaksResult = {
46
46
  lines: LayoutLine[];
47
47
  lineCount: number;
48
48
  };
49
+ /**
50
+ * A position within `PreparedSegment[]` — segment + grapheme offset.
51
+ * `graphemeIndex: 0` at segment boundaries.
52
+ *
53
+ * Used by {@link layoutNextLine} for cursor-based line walking; needed when
54
+ * lines have varying widths (multi-column flow, text wrapping around obstacles).
55
+ */
56
+ type LayoutCursor = {
57
+ segmentIndex: number;
58
+ graphemeIndex: number;
59
+ };
60
+ /** A horizontal span `[left, right]` in pixels — used by flow-layout slot carving. */
61
+ type Interval = {
62
+ left: number;
63
+ right: number;
64
+ };
65
+ /** Result of a single `layoutNextLine` call. */
66
+ type LayoutNextLineResult = {
67
+ text: string;
68
+ width: number;
69
+ start: LayoutCursor;
70
+ end: LayoutCursor;
71
+ };
72
+ /** Optional context for `layoutNextLine` — enables soft-hyphen visible-hyphen rendering. */
73
+ type LayoutNextLineContext = {
74
+ adapter?: MeasurementAdapter;
75
+ font?: string;
76
+ cache?: Map<string, Map<string, number>>;
77
+ };
49
78
  /** Result of the reactive layout graph's describe-accessible state. */
50
79
  type ReactiveLayoutBundle = {
51
80
  graph: Graph;
@@ -82,6 +111,42 @@ declare function analyzeAndMeasure(text: string, font: string, adapter: Measurem
82
111
  * - Hard breaks (forced newline)
83
112
  */
84
113
  declare function computeLineBreaks(segments: PreparedSegment[], maxWidth: number, adapter: MeasurementAdapter, font: string, cache: Map<string, Map<string, number>>): LineBreaksResult;
114
+ /**
115
+ * Lay out the next single line starting from `cursor`, fitting into `slotWidth`.
116
+ *
117
+ * Unlike `computeLineBreaks`, which consumes whole text with one `maxWidth`,
118
+ * this is the cursor-based primitive needed when successive lines have different
119
+ * widths (multi-column flow, text wrapping around shape obstacles, mixed
120
+ * column+pullquote layouts).
121
+ *
122
+ * Returns `null` when the cursor is past all segments (text exhausted).
123
+ * At a hard-break with no preceding content, returns an empty line and advances
124
+ * the cursor past the break so the caller can continue.
125
+ *
126
+ * ```ts
127
+ * let cursor: LayoutCursor = { segmentIndex: 0, graphemeIndex: 0 };
128
+ * while (true) {
129
+ * const line = layoutNextLine(segments, cursor, availableWidth);
130
+ * if (line === null) break;
131
+ * render(line);
132
+ * cursor = line.end;
133
+ * }
134
+ * ```
135
+ */
136
+ declare function layoutNextLine(segments: PreparedSegment[], cursor: LayoutCursor, slotWidth: number, ctx?: LayoutNextLineContext): LayoutNextLineResult | null;
137
+ /**
138
+ * Subtract blocked horizontal intervals from a base interval, producing
139
+ * remaining ordered, non-overlapping slots wide enough to fit text.
140
+ *
141
+ * Pure geometry — no text dependency. Used by flow-layout to turn obstacle
142
+ * intersections into per-line layout slots.
143
+ *
144
+ * ```ts
145
+ * carveTextLineSlots({left: 0, right: 600}, [{left: 200, right: 280}])
146
+ * // → [{left: 0, right: 200}, {left: 280, right: 600}]
147
+ * ```
148
+ */
149
+ declare function carveTextLineSlots(base: Interval, blocked: Interval[], minSlotWidth?: number): Interval[];
85
150
  /** Compute per-character x,y positions from line breaks and segments. */
86
151
  declare function computeCharPositions(lineBreaks: LineBreaksResult, segments: PreparedSegment[], lineHeight: number): CharPosition[];
87
152
  type ReactiveLayoutOptions = {
@@ -392,6 +457,142 @@ declare function computeTotalHeight(flow: PositionedBlock[]): number;
392
457
  */
393
458
  declare function reactiveBlockLayout(opts: ReactiveBlockLayoutOptions): ReactiveBlockLayoutBundle;
394
459
 
460
+ /** A circle obstacle. Center `(cx, cy)`, radius `r`; text keeps `padding` distance. */
461
+ type CircleObstacle = {
462
+ kind: "circle";
463
+ cx: number;
464
+ cy: number;
465
+ r: number;
466
+ /** Horizontal padding between obstacle and wrapped text (default 0). */
467
+ hPad?: number;
468
+ /** Vertical padding — band overlap tolerance (default 0). */
469
+ vPad?: number;
470
+ };
471
+ /** A rectangle obstacle. Top-left `(x, y)`, size `(w, h)`. */
472
+ type RectObstacle = {
473
+ kind: "rect";
474
+ x: number;
475
+ y: number;
476
+ w: number;
477
+ h: number;
478
+ hPad?: number;
479
+ vPad?: number;
480
+ };
481
+ /** Union of built-in obstacle shapes. */
482
+ type Obstacle = CircleObstacle | RectObstacle;
483
+ /**
484
+ * Compute the horizontal interval occluded by a circle at vertical band
485
+ * `[bandTop, bandBottom]`, or `null` if no occlusion.
486
+ *
487
+ * Exported so consumers that render obstacle outlines in sync with the flow
488
+ * can reuse the same geometry the flow engine uses — no divergence.
489
+ */
490
+ declare function circleIntervalForBand(o: CircleObstacle, bandTop: number, bandBottom: number): Interval | null;
491
+ /** Same as `circleIntervalForBand` for rectangles. */
492
+ declare function rectIntervalForBand(o: RectObstacle, bandTop: number, bandBottom: number): Interval | null;
493
+ type FlowContainer = {
494
+ width: number;
495
+ height: number;
496
+ paddingX?: number;
497
+ paddingY?: number;
498
+ };
499
+ type FlowColumns = {
500
+ count: number;
501
+ gap: number;
502
+ };
503
+ /** A single positioned line after flow layout. */
504
+ type PositionedLine = {
505
+ x: number;
506
+ y: number;
507
+ /** Natural measured width of the text content. */
508
+ width: number;
509
+ /** Width of the slot this line was placed in — use this as the DOM element's
510
+ * `width` when applying `text-align: justify` so the line stretches to the
511
+ * obstacle edge on both sides. */
512
+ slotWidth: number;
513
+ text: string;
514
+ /** Which column index this line belongs to (0-based). */
515
+ columnIndex: number;
516
+ /** `true` iff the slot's right edge was carved short by an obstacle (the
517
+ * slot sits to the LEFT of an obstacle). Renderers can right-align text
518
+ * in these slots so single-word lines still hug the obstacle — CSS
519
+ * `text-align: justify` can't stretch single-word lines, which otherwise
520
+ * produces a visible asymmetry vs. the slot on the other side of the
521
+ * obstacle (which is flush by default). */
522
+ flushToRight: boolean;
523
+ };
524
+ /** Options for `reactiveFlowLayout`. */
525
+ type ReactiveFlowLayoutOptions = {
526
+ adapter: MeasurementAdapter;
527
+ name?: string;
528
+ text?: string;
529
+ font?: string;
530
+ lineHeight?: number;
531
+ container?: FlowContainer;
532
+ columns?: FlowColumns;
533
+ obstacles?: Obstacle[];
534
+ /** Minimum slot width (px) below which a slot is discarded rather than squeezed. Default `20`. */
535
+ minSlotWidth?: number;
536
+ };
537
+ /** Result bundle from `reactiveFlowLayout`. */
538
+ type ReactiveFlowLayoutBundle = {
539
+ graph: Graph;
540
+ setText: (text: string) => void;
541
+ setFont: (font: string) => void;
542
+ setLineHeight: (lh: number) => void;
543
+ setContainer: (c: FlowContainer) => void;
544
+ setColumns: (c: FlowColumns) => void;
545
+ setObstacles: (o: Obstacle[]) => void;
546
+ segments: Node<PreparedSegment[]>;
547
+ flowLines: Node<PositionedLine[]>;
548
+ };
549
+ /** Result of `computeFlowLines`. */
550
+ type FlowLinesResult = {
551
+ /** Positioned lines in render order (columns inner-ordered top-to-bottom). */
552
+ lines: PositionedLine[];
553
+ /** Cursor position after the last line was placed. If
554
+ * `cursor.segmentIndex < segments.length`, the layout **truncated** — the
555
+ * container couldn't fit all text. */
556
+ cursor: LayoutCursor;
557
+ };
558
+ /**
559
+ * Lay out `segments` across N columns, wrapping each line around `obstacles`.
560
+ * Pure function — no reactive wiring. Exported for testing and for consumers
561
+ * who want to run flow layout outside a Graph.
562
+ *
563
+ * `carveTextLineSlots` guarantees left-to-right-ordered, non-overlapping slots,
564
+ * so this function does not sort them.
565
+ */
566
+ declare function computeFlowLines(segments: PreparedSegment[], container: FlowContainer, columns: FlowColumns, obstacles: Obstacle[], lineHeight: number, minSlotWidth: number): FlowLinesResult;
567
+ /**
568
+ * Create a reactive flow-layout graph: N columns of text wrapping around
569
+ * shape obstacles. Re-runs only the dependent derived nodes on any input
570
+ * change. Obstacle movement (e.g. rAF-driven) invalidates `flow-lines` only;
571
+ * `segments` stays cached as long as `text`/`font` don't change.
572
+ *
573
+ * @example
574
+ * ```ts
575
+ * import { fromRaf, reactiveFlowLayout } from "@graphrefly/graphrefly-ts";
576
+ *
577
+ * const flow = reactiveFlowLayout({
578
+ * adapter: new CanvasMeasureAdapter(),
579
+ * text: longEssay,
580
+ * font: "18px serif",
581
+ * lineHeight: 26,
582
+ * container: { width: 900, height: 600, paddingX: 40, paddingY: 40 },
583
+ * columns: { count: 2, gap: 32 },
584
+ * obstacles: [{ kind: "circle", cx: 450, cy: 300, r: 80 }],
585
+ * });
586
+ *
587
+ * // Animate the obstacle via rAF:
588
+ * fromRaf().subscribe(([[, t]]) => {
589
+ * const x = 450 + 120 * Math.sin((t as number) * 0.001);
590
+ * flow.setObstacles([{ kind: "circle", cx: x, cy: 300, r: 80 }]);
591
+ * });
592
+ * ```
593
+ */
594
+ declare function reactiveFlowLayout(opts: ReactiveFlowLayoutOptions): ReactiveFlowLayoutBundle;
595
+
395
596
  /**
396
597
  * Reactive layout pattern — standalone subpath export.
397
598
  *
@@ -406,44 +607,63 @@ declare const index_CanvasMeasureAdapter: typeof CanvasMeasureAdapter;
406
607
  type index_CanvasMeasureAdapterOptions = CanvasMeasureAdapterOptions;
407
608
  type index_CanvasModule = CanvasModule;
408
609
  type index_CharPosition = CharPosition;
610
+ type index_CircleObstacle = CircleObstacle;
409
611
  type index_CliMeasureAdapter = CliMeasureAdapter;
410
612
  declare const index_CliMeasureAdapter: typeof CliMeasureAdapter;
411
613
  type index_CliMeasureAdapterOptions = CliMeasureAdapterOptions;
412
614
  type index_ContentBlock = ContentBlock;
615
+ type index_FlowColumns = FlowColumns;
616
+ type index_FlowContainer = FlowContainer;
617
+ type index_FlowLinesResult = FlowLinesResult;
413
618
  type index_ImageMeasurer = ImageMeasurer;
414
619
  type index_ImageSizeAdapter = ImageSizeAdapter;
415
620
  declare const index_ImageSizeAdapter: typeof ImageSizeAdapter;
621
+ type index_Interval = Interval;
622
+ type index_LayoutCursor = LayoutCursor;
416
623
  type index_LayoutLine = LayoutLine;
624
+ type index_LayoutNextLineContext = LayoutNextLineContext;
625
+ type index_LayoutNextLineResult = LayoutNextLineResult;
417
626
  type index_LineBreaksResult = LineBreaksResult;
418
627
  type index_MeasuredBlock = MeasuredBlock;
419
628
  type index_MeasurementAdapter = MeasurementAdapter;
420
629
  type index_NodeCanvasMeasureAdapter = NodeCanvasMeasureAdapter;
421
630
  declare const index_NodeCanvasMeasureAdapter: typeof NodeCanvasMeasureAdapter;
631
+ type index_Obstacle = Obstacle;
422
632
  type index_PositionedBlock = PositionedBlock;
633
+ type index_PositionedLine = PositionedLine;
423
634
  type index_PrecomputedAdapter = PrecomputedAdapter;
424
635
  declare const index_PrecomputedAdapter: typeof PrecomputedAdapter;
425
636
  type index_PrecomputedAdapterOptions = PrecomputedAdapterOptions;
426
637
  type index_PreparedSegment = PreparedSegment;
427
638
  type index_ReactiveBlockLayoutBundle = ReactiveBlockLayoutBundle;
428
639
  type index_ReactiveBlockLayoutOptions = ReactiveBlockLayoutOptions;
640
+ type index_ReactiveFlowLayoutBundle = ReactiveFlowLayoutBundle;
641
+ type index_ReactiveFlowLayoutOptions = ReactiveFlowLayoutOptions;
429
642
  type index_ReactiveLayoutBundle = ReactiveLayoutBundle;
430
643
  type index_ReactiveLayoutOptions = ReactiveLayoutOptions;
644
+ type index_RectObstacle = RectObstacle;
431
645
  type index_SegmentBreakKind = SegmentBreakKind;
432
646
  type index_SegmentMeasureStats = SegmentMeasureStats;
433
647
  type index_SvgBoundsAdapter = SvgBoundsAdapter;
434
648
  declare const index_SvgBoundsAdapter: typeof SvgBoundsAdapter;
435
649
  type index_SvgMeasurer = SvgMeasurer;
436
650
  declare const index_analyzeAndMeasure: typeof analyzeAndMeasure;
651
+ declare const index_carveTextLineSlots: typeof carveTextLineSlots;
652
+ declare const index_circleIntervalForBand: typeof circleIntervalForBand;
437
653
  declare const index_computeBlockFlow: typeof computeBlockFlow;
438
654
  declare const index_computeCharPositions: typeof computeCharPositions;
655
+ declare const index_computeFlowLines: typeof computeFlowLines;
439
656
  declare const index_computeLineBreaks: typeof computeLineBreaks;
440
657
  declare const index_computeTotalHeight: typeof computeTotalHeight;
658
+ declare const index_layoutNextLine: typeof layoutNextLine;
441
659
  declare const index_measureBlock: typeof measureBlock;
442
660
  declare const index_measureBlocks: typeof measureBlocks;
443
661
  declare const index_reactiveBlockLayout: typeof reactiveBlockLayout;
662
+ declare const index_reactiveFlowLayout: typeof reactiveFlowLayout;
444
663
  declare const index_reactiveLayout: typeof reactiveLayout;
664
+ declare const index_rectIntervalForBand: typeof rectIntervalForBand;
445
665
  declare namespace index {
446
- export { type index_BlockAdapters as BlockAdapters, index_CanvasMeasureAdapter as CanvasMeasureAdapter, type index_CanvasMeasureAdapterOptions as CanvasMeasureAdapterOptions, type index_CanvasModule as CanvasModule, type index_CharPosition as CharPosition, index_CliMeasureAdapter as CliMeasureAdapter, type index_CliMeasureAdapterOptions as CliMeasureAdapterOptions, type index_ContentBlock as ContentBlock, type index_ImageMeasurer as ImageMeasurer, index_ImageSizeAdapter as ImageSizeAdapter, type index_LayoutLine as LayoutLine, type index_LineBreaksResult as LineBreaksResult, type index_MeasuredBlock as MeasuredBlock, type index_MeasurementAdapter as MeasurementAdapter, index_NodeCanvasMeasureAdapter as NodeCanvasMeasureAdapter, type index_PositionedBlock as PositionedBlock, index_PrecomputedAdapter as PrecomputedAdapter, type index_PrecomputedAdapterOptions as PrecomputedAdapterOptions, type index_PreparedSegment as PreparedSegment, type index_ReactiveBlockLayoutBundle as ReactiveBlockLayoutBundle, type index_ReactiveBlockLayoutOptions as ReactiveBlockLayoutOptions, type index_ReactiveLayoutBundle as ReactiveLayoutBundle, type index_ReactiveLayoutOptions as ReactiveLayoutOptions, type index_SegmentBreakKind as SegmentBreakKind, type index_SegmentMeasureStats as SegmentMeasureStats, index_SvgBoundsAdapter as SvgBoundsAdapter, type index_SvgMeasurer as SvgMeasurer, index_analyzeAndMeasure as analyzeAndMeasure, index_computeBlockFlow as computeBlockFlow, index_computeCharPositions as computeCharPositions, index_computeLineBreaks as computeLineBreaks, index_computeTotalHeight as computeTotalHeight, index_measureBlock as measureBlock, index_measureBlocks as measureBlocks, index_reactiveBlockLayout as reactiveBlockLayout, index_reactiveLayout as reactiveLayout };
666
+ export { type index_BlockAdapters as BlockAdapters, index_CanvasMeasureAdapter as CanvasMeasureAdapter, type index_CanvasMeasureAdapterOptions as CanvasMeasureAdapterOptions, type index_CanvasModule as CanvasModule, type index_CharPosition as CharPosition, type index_CircleObstacle as CircleObstacle, index_CliMeasureAdapter as CliMeasureAdapter, type index_CliMeasureAdapterOptions as CliMeasureAdapterOptions, type index_ContentBlock as ContentBlock, type index_FlowColumns as FlowColumns, type index_FlowContainer as FlowContainer, type index_FlowLinesResult as FlowLinesResult, type index_ImageMeasurer as ImageMeasurer, index_ImageSizeAdapter as ImageSizeAdapter, type index_Interval as Interval, type index_LayoutCursor as LayoutCursor, type index_LayoutLine as LayoutLine, type index_LayoutNextLineContext as LayoutNextLineContext, type index_LayoutNextLineResult as LayoutNextLineResult, type index_LineBreaksResult as LineBreaksResult, type index_MeasuredBlock as MeasuredBlock, type index_MeasurementAdapter as MeasurementAdapter, index_NodeCanvasMeasureAdapter as NodeCanvasMeasureAdapter, type index_Obstacle as Obstacle, type index_PositionedBlock as PositionedBlock, type index_PositionedLine as PositionedLine, index_PrecomputedAdapter as PrecomputedAdapter, type index_PrecomputedAdapterOptions as PrecomputedAdapterOptions, type index_PreparedSegment as PreparedSegment, type index_ReactiveBlockLayoutBundle as ReactiveBlockLayoutBundle, type index_ReactiveBlockLayoutOptions as ReactiveBlockLayoutOptions, type index_ReactiveFlowLayoutBundle as ReactiveFlowLayoutBundle, type index_ReactiveFlowLayoutOptions as ReactiveFlowLayoutOptions, type index_ReactiveLayoutBundle as ReactiveLayoutBundle, type index_ReactiveLayoutOptions as ReactiveLayoutOptions, type index_RectObstacle as RectObstacle, type index_SegmentBreakKind as SegmentBreakKind, type index_SegmentMeasureStats as SegmentMeasureStats, index_SvgBoundsAdapter as SvgBoundsAdapter, type index_SvgMeasurer as SvgMeasurer, index_analyzeAndMeasure as analyzeAndMeasure, index_carveTextLineSlots as carveTextLineSlots, index_circleIntervalForBand as circleIntervalForBand, index_computeBlockFlow as computeBlockFlow, index_computeCharPositions as computeCharPositions, index_computeFlowLines as computeFlowLines, index_computeLineBreaks as computeLineBreaks, index_computeTotalHeight as computeTotalHeight, index_layoutNextLine as layoutNextLine, index_measureBlock as measureBlock, index_measureBlocks as measureBlocks, index_reactiveBlockLayout as reactiveBlockLayout, index_reactiveFlowLayout as reactiveFlowLayout, index_reactiveLayout as reactiveLayout, index_rectIntervalForBand as rectIntervalForBand };
447
667
  }
448
668
 
449
- export { reactiveBlockLayout as A, type BlockAdapters as B, CanvasMeasureAdapter as C, reactiveLayout as D, type ImageMeasurer as I, type LayoutLine as L, type MeasurementAdapter as M, NodeCanvasMeasureAdapter as N, type PositionedBlock as P, type ReactiveBlockLayoutBundle as R, type SegmentBreakKind as S, type CanvasMeasureAdapterOptions as a, type CanvasModule as b, type CharPosition as c, CliMeasureAdapter as d, type CliMeasureAdapterOptions as e, type ContentBlock as f, ImageSizeAdapter as g, type LineBreaksResult as h, index as i, type MeasuredBlock as j, PrecomputedAdapter as k, type PrecomputedAdapterOptions as l, type PreparedSegment as m, type ReactiveBlockLayoutOptions as n, type ReactiveLayoutBundle as o, type ReactiveLayoutOptions as p, type SegmentMeasureStats as q, SvgBoundsAdapter as r, type SvgMeasurer as s, analyzeAndMeasure as t, computeBlockFlow as u, computeCharPositions as v, computeLineBreaks as w, computeTotalHeight as x, measureBlock as y, measureBlocks as z };
669
+ export { reactiveFlowLayout as $, type RectObstacle as A, type BlockAdapters as B, CanvasMeasureAdapter as C, type SegmentMeasureStats as D, SvgBoundsAdapter as E, type FlowColumns as F, type SvgMeasurer as G, analyzeAndMeasure as H, type ImageMeasurer as I, carveTextLineSlots as J, circleIntervalForBand as K, type LayoutCursor as L, type MeasurementAdapter as M, NodeCanvasMeasureAdapter as N, type Obstacle as O, type PositionedBlock as P, computeBlockFlow as Q, type ReactiveBlockLayoutBundle as R, type SegmentBreakKind as S, computeCharPositions as T, computeFlowLines as U, computeLineBreaks as V, computeTotalHeight as W, layoutNextLine as X, measureBlock as Y, measureBlocks as Z, reactiveBlockLayout as _, type CanvasMeasureAdapterOptions as a, reactiveLayout as a0, rectIntervalForBand as a1, type CanvasModule as b, type CharPosition as c, type CircleObstacle as d, CliMeasureAdapter as e, type CliMeasureAdapterOptions as f, type ContentBlock as g, type FlowContainer as h, index as i, type FlowLinesResult as j, ImageSizeAdapter as k, type Interval as l, type LayoutLine as m, type LayoutNextLineContext as n, type LayoutNextLineResult as o, type LineBreaksResult as p, type MeasuredBlock as q, type PositionedLine as r, PrecomputedAdapter as s, type PrecomputedAdapterOptions as t, type PreparedSegment as u, type ReactiveBlockLayoutOptions as v, type ReactiveFlowLayoutBundle as w, type ReactiveFlowLayoutOptions as x, type ReactiveLayoutBundle as y, type ReactiveLayoutOptions as z };