mates 0.1.0-beta.8 → 0.2.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.
package/dist/index.d.ts CHANGED
@@ -209,7 +209,7 @@ declare function injectMatesAnimations(): void;
209
209
  *
210
210
  * @example
211
211
  * ```ts
212
- * import { MA } from "@mates";
212
+ * import { MA } from "mates";
213
213
  * html`<div class=${MA.fadeIn}>Hello</div>`
214
214
  * html`<div class="${MA.slideInUp}" style="--mates-duration:500ms">Hi</div>`
215
215
  * ```
@@ -1120,8 +1120,8 @@ type FetchRequest = Omit<RequestInit, "body"> & {
1120
1120
  * - If it starts with `http:` or `https:` it is used as-is (absolute URL),
1121
1121
  * ignoring any `host` set on the client/base request.
1122
1122
  * - Otherwise it is treated as a path and appended to `host`
1123
- * (e.g. `host = "https://api.example.com"` + `url = "/users"` →
1124
- * `"https://api.example.com/users"`).
1123
+ * (e.g. `host = "https://<host>"` + `url = "/users"` →
1124
+ * `"https://<host>/users"`).
1125
1125
  * - Dynamic segments (`:id`) are substituted from `params`.
1126
1126
  *
1127
1127
  * @example
@@ -1136,7 +1136,7 @@ type FetchRequest = Omit<RequestInit, "body"> & {
1136
1136
  */
1137
1137
  path?: string;
1138
1138
  /**
1139
- * Origin / base host, e.g. `"https://api.example.com"`.
1139
+ * Origin / base host, e.g. `"https://<your-api>"`.
1140
1140
  * Used as a prefix when `url` is a relative path.
1141
1141
  * Defaults to `""` (no host prefix).
1142
1142
  */
@@ -1179,7 +1179,7 @@ declare const clearInterceptors: () => void;
1179
1179
  * - All requests are logged to Mates DevTools when devtools is connected.
1180
1180
  *
1181
1181
  * @example
1182
- * const api = new FetchClient({ host: "https://api.example.com" });
1182
+ * const api = new FetchClient({ host: "https://<your-api>" });
1183
1183
  * api.interceptBefore((url, opts) => ({
1184
1184
  * url,
1185
1185
  * options: { ...opts, headers: { ...opts.headers, Authorization: `Bearer ${token}` } },
@@ -1218,16 +1218,16 @@ declare class FetchClient {
1218
1218
  * exactly as `buildRequestUrl` handles them.
1219
1219
  *
1220
1220
  * @example
1221
- * const loadUser = api.fetchAction({ host: "https://api.example.com", url: "/users/:id" });
1221
+ * const loadUser = api.fetchAction({ host: "https://<your-api>", url: "/users/:id" });
1222
1222
  * loadUser({ id: 7, expand: "posts" });
1223
- * // → GET https://api.example.com/users/7?expand=posts
1223
+ * // → GET https://<your-api>/users/7?expand=posts
1224
1224
  */
1225
1225
  fetchAction<T = unknown>(config?: FetchActionConfig): AsyncActionReturnType<(params?: Record<string, any>) => Promise<T>>;
1226
1226
  /**
1227
1227
  * Creates an asyncAction that always issues a GET request via this client.
1228
1228
  *
1229
1229
  * @example
1230
- * const loadUsers = api.getAction({ host: "https://api.example.com", url: "/users" });
1230
+ * const loadUsers = api.getAction({ host: "https://<your-api>", url: "/users" });
1231
1231
  * loadUsers({ page: 2, limit: 20 });
1232
1232
  */
1233
1233
  getAction<T = unknown>(config?: FetchActionConfig): AsyncActionReturnType<(params?: Record<string, any>) => Promise<T>>;
@@ -1235,7 +1235,7 @@ declare class FetchClient {
1235
1235
  * Creates an asyncAction that always issues a POST request via this client.
1236
1236
  *
1237
1237
  * @example
1238
- * const createUser = api.postAction({ host: "https://api.example.com", url: "/users" });
1238
+ * const createUser = api.postAction({ host: "https://<your-api>", url: "/users" });
1239
1239
  * createUser({ name: "Alice" });
1240
1240
  */
1241
1241
  postAction<T = unknown>(config?: FetchActionConfig): AsyncActionReturnType<(params?: Record<string, any>) => Promise<T>>;
@@ -1243,7 +1243,7 @@ declare class FetchClient {
1243
1243
  * Creates an asyncAction that always issues a PUT request via this client.
1244
1244
  *
1245
1245
  * @example
1246
- * const replaceUser = api.putAction({ host: "https://api.example.com", url: "/users/:id" });
1246
+ * const replaceUser = api.putAction({ host: "https://<your-api>", url: "/users/:id" });
1247
1247
  * replaceUser({ id: 7, name: "Bob" });
1248
1248
  */
1249
1249
  putAction<T = unknown>(config?: FetchActionConfig): AsyncActionReturnType<(params?: Record<string, any>) => Promise<T>>;
@@ -1251,7 +1251,7 @@ declare class FetchClient {
1251
1251
  * Creates an asyncAction that always issues a PATCH request via this client.
1252
1252
  *
1253
1253
  * @example
1254
- * const patchUser = api.patchAction({ host: "https://api.example.com", url: "/users/:id" });
1254
+ * const patchUser = api.patchAction({ host: "https://<your-api>", url: "/users/:id" });
1255
1255
  * patchUser({ id: 7, status: "inactive" });
1256
1256
  */
1257
1257
  patchAction<T = unknown>(config?: FetchActionConfig): AsyncActionReturnType<(params?: Record<string, any>) => Promise<T>>;
@@ -1259,7 +1259,7 @@ declare class FetchClient {
1259
1259
  * Creates an asyncAction that always issues a DELETE request via this client.
1260
1260
  *
1261
1261
  * @example
1262
- * const removeUser = api.deleteAction({ host: "https://api.example.com", url: "/users/:id" });
1262
+ * const removeUser = api.deleteAction({ host: "https://<your-api>", url: "/users/:id" });
1263
1263
  * removeUser({ id: 7 });
1264
1264
  */
1265
1265
  deleteAction<T = unknown>(config?: FetchActionConfig): AsyncActionReturnType<(params?: Record<string, any>) => Promise<T>>;
@@ -1464,6 +1464,64 @@ declare function keyframes(name: string, stops: CSSKeyframeStops): string;
1464
1464
  */
1465
1465
  declare function globalCSS<R extends CSSRulesInput>(rules: R, options?: SerializeOptions): Cl<R>;
1466
1466
 
1467
+ /** The three possible theme values a user can choose. */
1468
+ type ThemeValue = "light" | "dark" | "auto";
1469
+ /**
1470
+ * A reactive theme atom extended with convenience mutators and a pre-resolved
1471
+ * `resolved` getter.
1472
+ *
1473
+ * Inherits the full `AtomType<ThemeValue>` interface — callable, `.get()`,
1474
+ * `.set()`, `.val`, `.__subscribe()`, `.__version__`, etc. — plus
1475
+ * theme-specific helpers:
1476
+ *
1477
+ * - `setToLight()` — force light mode and persist choice.
1478
+ * - `setToDark()` — force dark mode and persist choice.
1479
+ * - `setToAuto()` — follow OS preference, removes stored key.
1480
+ * - `toggle()` — flip between "light" and "dark"; resolves OS preference
1481
+ * first if currently "auto"; result is always explicit.
1482
+ * - `resolved` — the effective theme, always "light" or "dark".
1483
+ */
1484
+ type ThemeAtomType = AtomType<ThemeValue> & {
1485
+ /** Explicitly set theme to "light" and persist to localStorage. */
1486
+ setToLight(): void;
1487
+ /** Explicitly set theme to "dark" and persist to localStorage. */
1488
+ setToDark(): void;
1489
+ /** Follow the OS color-scheme preference. Removes localStorage key. */
1490
+ setToAuto(): void;
1491
+ /**
1492
+ * Toggle between "light" and "dark".
1493
+ * If currently "auto", resolves OS preference first, then flips.
1494
+ * After toggle the theme is always explicit (never "auto").
1495
+ */
1496
+ toggle(): void;
1497
+ /** The resolved theme — always "light" or "dark", never "auto". */
1498
+ readonly resolved: "light" | "dark";
1499
+ readonly name: "themeAtom";
1500
+ };
1501
+ /**
1502
+ * The singleton reactive theme atom.
1503
+ *
1504
+ * Use directly — it is the atom, not a factory.
1505
+ *
1506
+ * - Reads the initial theme from `localStorage["mates-theme"]`.
1507
+ * - Falls back to the OS color-scheme preference when no value is stored.
1508
+ * - Keeps `<html data-theme="…">` in sync automatically via an internal effect.
1509
+ * - Persists changes to localStorage (removes key for "auto").
1510
+ * - Re-applies the resolved theme when the OS preference changes while in
1511
+ * "auto" mode, re-notifying all subscribers so derived UIs update.
1512
+ *
1513
+ * @example
1514
+ * import { themeAtom } from "mates";
1515
+ *
1516
+ * themeAtom.setToDark();
1517
+ * themeAtom.toggle(); // → "light"
1518
+ * themeAtom.setToAuto(); // follows OS
1519
+ * themeAtom.resolved; // "light" | "dark" — never "auto"
1520
+ * themeAtom(); // read current value: "light" | "dark" | "auto"
1521
+ * themeAtom.val; // same
1522
+ */
1523
+ declare const themeAtom: ThemeAtomType;
1524
+
1467
1525
  /**
1468
1526
  * A flat map of token names to CSS values.
1469
1527
  * Keys may include or omit the leading "--".
@@ -1498,8 +1556,13 @@ type ThemeMode<T extends ThemesInput> = "auto" | (string & keyof T);
1498
1556
  type GlobalThemeResult<T extends ThemesInput> = {
1499
1557
  /** Plain object: tokenKey → "--token-key" (the CSS variable name, no var() wrapper). */
1500
1558
  cssVars: CssVars<T[keyof T]>;
1501
- /** Reactive atom: "auto" | theme-name. Reads/writes localStorage & data-theme on <html>. */
1502
- themeAtom: AtomType<ThemeMode<T>>;
1559
+ /**
1560
+ * The singleton theme atom shared across the entire app.
1561
+ * Call `.setToDark()`, `.setToLight()`, `.setToAuto()`, or `.toggle()`.
1562
+ * Reads/writes localStorage & data-theme on <html>.
1563
+ * Always the same instance as `themeAtom()` from mates.
1564
+ */
1565
+ themeAtom: ThemeAtomType;
1503
1566
  };
1504
1567
  /**
1505
1568
  * Define your application's themes as named token maps.
@@ -1566,7 +1629,7 @@ declare function globalTheme<T extends ThemesInput>(themes: T): GlobalThemeResul
1566
1629
  * });
1567
1630
  * ```
1568
1631
  */
1569
- declare function rootCSS(tokens: Record<string, string>): void;
1632
+ declare function rootCSS<T extends Record<string, string>>(tokens: T): T;
1570
1633
 
1571
1634
  interface MatesRef<T extends Element = Element> {
1572
1635
  readonly value: T | undefined;
@@ -3011,7 +3074,7 @@ type OnParentMap = {
3011
3074
  *
3012
3075
  * @example
3013
3076
  * ```ts
3014
- * import { ref, setRef, onParent } from "@mates";
3077
+ * import { ref, setRef, onParent } from "mates";
3015
3078
  *
3016
3079
  * const listRef = ref<HTMLUListElement>();
3017
3080
  *
@@ -3104,8 +3167,8 @@ type TimerContent = () => unknown;
3104
3167
  *
3105
3168
  * @example
3106
3169
  * ```ts
3107
- * import { html } from "@mates";
3108
- * import { timer } from "@mates";
3170
+ * import { html } from "mates";
3171
+ * import { timer } from "mates";
3109
3172
  *
3110
3173
  * // Live clock — updates every second, no component re-render
3111
3174
  * html`
@@ -4052,64 +4115,6 @@ type PaginationAtomType = AtomType<number> & {
4052
4115
  */
4053
4116
  declare const paginationAtom: (initial?: number, config?: AtomConfig) => PaginationAtomType;
4054
4117
 
4055
- /** The three possible theme values a user can choose. */
4056
- type ThemeValue = "light" | "dark" | "auto";
4057
- /**
4058
- * A reactive theme atom extended with convenience mutators and a pre-resolved
4059
- * `resolved` getter.
4060
- *
4061
- * Inherits the full `AtomType<ThemeValue>` interface — callable, `.get()`,
4062
- * `.set()`, `.val`, `.__subscribe()`, `.__version__`, etc. — plus
4063
- * theme-specific helpers:
4064
- *
4065
- * - `setToLight()` — force light mode and persist choice.
4066
- * - `setToDark()` — force dark mode and persist choice.
4067
- * - `setToAuto()` — follow OS preference, removes stored key.
4068
- * - `toggle()` — flip between "light" and "dark"; resolves OS preference
4069
- * first if currently "auto"; result is always explicit.
4070
- * - `resolved` — the effective theme, always "light" or "dark".
4071
- */
4072
- type ThemeAtomType = AtomType<ThemeValue> & {
4073
- /** Explicitly set theme to "light" and persist to localStorage. */
4074
- setToLight(): void;
4075
- /** Explicitly set theme to "dark" and persist to localStorage. */
4076
- setToDark(): void;
4077
- /** Follow the OS color-scheme preference. Removes localStorage key. */
4078
- setToAuto(): void;
4079
- /**
4080
- * Toggle between "light" and "dark".
4081
- * If currently "auto", resolves OS preference first, then flips.
4082
- * After toggle the theme is always explicit (never "auto").
4083
- */
4084
- toggle(): void;
4085
- /** The resolved theme — always "light" or "dark", never "auto". */
4086
- readonly resolved: "light" | "dark";
4087
- readonly name: "themeAtom";
4088
- };
4089
- /**
4090
- * Returns the singleton reactive theme atom.
4091
- *
4092
- * Call once at module / app level to initialise. Every subsequent call
4093
- * returns the same instance with no side-effects.
4094
- *
4095
- * - Reads the initial theme from `localStorage["mates-theme"]`.
4096
- * - Falls back to the OS color-scheme preference when no value is stored.
4097
- * - Keeps `<html data-theme="…">` in sync automatically via an internal effect.
4098
- * - Persists changes to localStorage (removes key for "auto").
4099
- * - Re-applies the resolved theme when the OS preference changes while in
4100
- * "auto" mode, re-notifying all subscribers so derived UIs update.
4101
- *
4102
- * @example
4103
- * const theme = themeAtom();
4104
- * theme.setToDark();
4105
- * theme.toggle(); // → "light"
4106
- * theme.setToAuto(); // follows OS
4107
- * theme.resolved; // "light" | "dark" — never "auto"
4108
- * theme(); // "light" | "dark" | "auto"
4109
- * theme.val; // same
4110
- */
4111
- declare function themeAtom(): ThemeAtomType;
4112
-
4113
4118
  /**
4114
4119
  * Creates a reactive side-effect that runs immediately and re-runs whenever
4115
4120
  * its dependencies change.
@@ -4719,7 +4724,7 @@ type WsConnection<T = unknown> = {
4719
4724
  * ```ts
4720
4725
  * // ✅ correct — inside a component's outer function
4721
4726
  * const MyComponent = () => {
4722
- * const sock = ws<ChatMessage>("wss://api.example.com/chat", {
4727
+ * const sock = ws<ChatMessage>("wss://<your-server>/chat", {
4723
4728
  * reconnect: true,
4724
4729
  * });
4725
4730
  * onSocket((msg) => { messages.update(d => { d.push(msg); }); }, [sock]);
@@ -4727,7 +4732,7 @@ type WsConnection<T = unknown> = {
4727
4732
  * };
4728
4733
  *
4729
4734
  * // ❌ wrong — module level, no host, cleanup is never registered
4730
- * const chatSocket = ws<ChatMessage>("wss://api.example.com/chat");
4735
+ * const chatSocket = ws<ChatMessage>("wss://<your-server>/chat");
4731
4736
  *
4732
4737
  * // ❌ wrong — inner function, outer function has already returned
4733
4738
  * const MyComponent = () => {
@@ -5690,7 +5695,11 @@ declare const globalScheduler: RenderScheduler;
5690
5695
 
5691
5696
  declare const x: <T extends Record<string, any>>(viewFn: ComponentType<T>, props?: T) => lit_html.TemplateResult<1>;
5692
5697
  declare const view: <T extends Record<string, any>>(viewFn: ComponentType<T>, props?: T) => lit_html.TemplateResult<1>;
5698
+ /** @alias x */
5699
+ declare const template: <T extends Record<string, any>>(viewFn: ComponentType<T>, props?: T) => lit_html.TemplateResult<1>;
5693
5700
  declare const renderX: <T extends Record<string, any>>(viewFn: ComponentType<T>, element: HTMLElement, props?: T) => lit_html.RootPart;
5701
+ /** @alias renderX */
5702
+ declare const renderTemplate: <T extends Record<string, any>>(viewFn: ComponentType<T>, element: HTMLElement, props?: T) => lit_html.RootPart;
5694
5703
 
5695
5704
  /**
5696
5705
  * Checks whether a value is async — an AsyncFunction, a Promise, or a thenable.
@@ -5895,10 +5904,8 @@ declare const svgIconDirective: (_markup: string, _config: SvgConfig) => lit_htm
5895
5904
  * ```ts
5896
5905
  * import { safeSVG, html } from "mates";
5897
5906
  *
5898
- * const heartIcon =
5899
- * `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
5900
- * <path d="M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5…"/>
5901
- * </svg>`;
5907
+ * // markup must be a valid SVG string (starts with <svg ...>)
5908
+ * const heartIcon = `<svg viewBox="0 0 24 24"><path d="M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5…"/></svg>`;
5902
5909
  *
5903
5910
  * html`<button>${safeSVG(heartIcon, { size: 24, fill: "currentColor" })}</button>`;
5904
5911
  * ```
@@ -6004,5 +6011,5 @@ declare function getMonths(locale?: string): MonthInfo[];
6004
6011
  */
6005
6012
  declare function getCalendar(year: number, month: number): MatesDate[][];
6006
6013
 
6007
- export { $, Component$1 as ComponentElement, Context, Delete, ErrorTypes, Fetch, FetchClient, Get, MA, NotificationManager, Patch, Post, Put, Router, SyncNotificationManager, ZeroPromise, _, _subToView, action, addStoreBeingRead, animatedIf, animatedRouter, animatedX, range as arrayRange, assertComponentOuterContext, assertNotInRestrictedContext, asyncAction, atom, attr, blurInPreset, blurOutPreset, bouncePreset, buildPath, buildRequestUrl, cacheAtom, createCacheManager as cacheFn, chunk, clamp, classes, cleanupScheduler, clearInterceptors, collapseWidthPreset, componentRunningStatus, computeAutoPlacement, configureCSS, createCacheManager, createManagedTimer, createPollingManager, createReactiveRunner, createTimedAtom, date, debounce, debouncedAtom, deepClone, deepFreeze, deleteAction, deepFreeze as df, dialog, effect, effectScheduler, eleHook, event, expandWidthPreset, fadeInPreset, fadeOutPreset, fetchAction, fetchClient, flipInPreset, flipOutPreset, formAtom, get, getAction, getAllProps, getAllTimezones, getCalendar, getCoords, getCurrentHost, getLocale, getMonths, getParentScope, getParentScope as getScope, getStoresBeingRead, getTimezoneOffset, globalCSS, globalScheduler, globalTheme, groupBy, hashAtom, htmlHook, iAtom, injectMatesAnimations, installDevToolsHooks, interceptAfter, interceptBefore, interceptError, isAction, isApiResponseSuccess, isAsyncAction, isAsyncFunction, isAsyncValue, isAtom, isChannel, isConfirmationEvent, isDefinedAsGetter, isDevToolsInstalled, isEffectRunning, isEmail, isEmpty, isEvent, isFunction, isGetter, isInRestrictedContext, isMax, isMin, isPathMatching, isPattern, isReadTrackingEnabled, isRequired, isSSR, isSetter, isUnit, iterateDeeply, keyframes, lazyLoad, location, lockNavigation, logError, lsAtom, mapAtom, masonryGrid, maxLength, memo, memoTemplate, merge, minLength, navigateTo, navigationLocked, omit, on$1 as on, onAllMount, onBlur, onCleanup, onClickAway, onConnect, onCopy, onCut, onDOMReady, onDisconnect, onError, onFileDrop, onFocus, onHidden, onIntersect, onInterval, onKeyDown, onKeyUp, onMount, onNavigate, onOffline, onOnline, onPaint, onParent, onPaste, onReferenceChange, onResize, onScroll, onScrolledIntoView, onSelectionChange, onSocket, onStorageChange, onTimeout, onUpdate, onVisibilityChange, onVisible, onWindow, onWindowCapture, onWindowResize, onWindowScroll, paginatedAsyncAction, paginationAtom, patchAction, pathAtom, pick, placementTransform, popEffect, popup, portal, postAction, pulsePreset, pushEffect, putAction, qsAtom, uuid as randomId, ref, registerCleanup, removeAttr, removeClasses, removeOn, removeStyle, renderSwitch, renderX, resetComponentState, resolveAsyncValue, restoreTracking, rootCSS, route, safeSVG, safetyCheck, saveAndEnableTracking, scaleInPreset, scaleOutPreset, scope, setAtom, setLocale, setRef, setSSRApiLookup, setSSRMode, setSSRRequest, setTimezone, setTimezoneOffset, setter, shakePreset, iAtom as signal, slideInPreset, slideOutPreset, spinPreset, springInPreset, ssAtom, startTracking, stopTracking, style, stylesheet, superAtom, taskAction, themeAtom, throttle, throttledAtom, timer, tip, titleAtom, tooltip, trackAndSubscribe, uniqBy, unlockNavigation, safeSVG as unsafeSVG, unwrapModule, useContext, scope as useScope, useState, useStore, uuid, validateAll, validateReactiveFunction, view, virtualGrid, virtualList, virtualMasonry, on as watch, withHost, withStaggerPreset, ws, x, xTabEvent };
6014
+ export { $, Component$1 as ComponentElement, Context, Delete, ErrorTypes, Fetch, FetchClient, Get, MA, NotificationManager, Patch, Post, Put, Router, SyncNotificationManager, ZeroPromise, _, _subToView, action, addStoreBeingRead, animatedIf, animatedRouter, animatedX, range as arrayRange, assertComponentOuterContext, assertNotInRestrictedContext, asyncAction, atom, attr, blurInPreset, blurOutPreset, bouncePreset, buildPath, buildRequestUrl, cacheAtom, createCacheManager as cacheFn, chunk, clamp, classes, cleanupScheduler, clearInterceptors, collapseWidthPreset, componentRunningStatus, computeAutoPlacement, configureCSS, createCacheManager, createManagedTimer, createPollingManager, createReactiveRunner, createTimedAtom, date, debounce, debouncedAtom, deepClone, deepFreeze, deleteAction, deepFreeze as df, dialog, effect, effectScheduler, eleHook, event, expandWidthPreset, fadeInPreset, fadeOutPreset, fetchAction, fetchClient, flipInPreset, flipOutPreset, formAtom, get, getAction, getAllProps, getAllTimezones, getCalendar, getCoords, getCurrentHost, getLocale, getMonths, getParentScope, getParentScope as getScope, getStoresBeingRead, getTimezoneOffset, globalCSS, globalScheduler, globalTheme, groupBy, hashAtom, htmlHook, iAtom, injectMatesAnimations, installDevToolsHooks, interceptAfter, interceptBefore, interceptError, isAction, isApiResponseSuccess, isAsyncAction, isAsyncFunction, isAsyncValue, isAtom, isChannel, isConfirmationEvent, isDefinedAsGetter, isDevToolsInstalled, isEffectRunning, isEmail, isEmpty, isEvent, isFunction, isGetter, isInRestrictedContext, isMax, isMin, isPathMatching, isPattern, isReadTrackingEnabled, isRequired, isSSR, isSetter, isUnit, iterateDeeply, keyframes, lazyLoad, location, lockNavigation, logError, lsAtom, mapAtom, masonryGrid, maxLength, memo, memoTemplate, merge, minLength, navigateTo, navigationLocked, omit, on, onAllMount, onBlur, onCleanup, onClickAway, onConnect, onCopy, onCut, onDOMReady, onDisconnect, onError, on$1 as onEvent, onFileDrop, onFocus, onHidden, onIntersect, onInterval, onKeyDown, onKeyUp, onMount, onNavigate, onOffline, onOnline, onPaint, onParent, onPaste, onReferenceChange, onResize, onScroll, onScrolledIntoView, onSelectionChange, onSocket, onStorageChange, onTimeout, onUpdate, onVisibilityChange, onVisible, onWindow, onWindowCapture, onWindowResize, onWindowScroll, paginatedAsyncAction, paginationAtom, patchAction, pathAtom, pick, placementTransform, popEffect, popup, portal, postAction, pulsePreset, pushEffect, putAction, qsAtom, uuid as randomId, ref, registerCleanup, removeAttr, removeClasses, removeOn, removeStyle, renderSwitch, renderTemplate, renderX, resetComponentState, resolveAsyncValue, restoreTracking, rootCSS, route, safeSVG, safetyCheck, saveAndEnableTracking, scaleInPreset, scaleOutPreset, scope, setAtom, setLocale, setRef, setSSRApiLookup, setSSRMode, setSSRRequest, setTimezone, setTimezoneOffset, setter, shakePreset, iAtom as signal, slideInPreset, slideOutPreset, spinPreset, springInPreset, ssAtom, startTracking, stopTracking, style, stylesheet, superAtom, taskAction, template, themeAtom, throttle, throttledAtom, timer, tip, titleAtom, tooltip, trackAndSubscribe, uniqBy, unlockNavigation, safeSVG as unsafeSVG, unwrapModule, useContext, scope as useScope, useState, useStore, uuid, validateAll, validateReactiveFunction, view, virtualGrid, virtualList, virtualMasonry, on as watch, withHost, withStaggerPreset, ws, x, xTabEvent };
6008
6015
  export type { ActionAfterInterceptor, ActionBeforeInterceptor, ActionFn, ActionReturnType, ActionSubscriber, AfterInterceptor, AnimateDirectiveConfig, AnimateKeyframes, AnimateOptions, AnimatedIfConfig, AnimatedRouteConfig, AnimatedRouterOptions, AnimatedXConfig, AnimationHandle, AnimationPreset, AsyncActionAfterInterceptor, AsyncActionBeforeInterceptor, AsyncActionOptions, AsyncActionReturnType, AsyncActionStatus, AtomConfig, AtomType, AttrMap, AttrValue, BeforeInterceptor, C, CSSBlock, CSSKeyframeStops, CSSNestedBlock, CSSRulesInput, CacheAtomType, CacheManager, Cl, ClassEntry, ClassesInput, ClosureComponent, Component, ComponentFn, ComponentType, ConnectCallback, CssVars, DateInput, DateUnit, DateValues, DevToolsHooks, DialogOptions, DisconnectCallback, DollarChain, EleHookLifecycle, EleHookMountFn, ElementTarget, ErrorInterceptor, ErrorType, EventType, FetchActionConfig, FetchBody, FetchRequest, FormAtom, GlobalThemeResult, HostElement, HtmlHookLifecycle, HtmlHookMountFn, HtmlHookRenderFn, IAtomType, InnerFn, IntersectCallback, IntersectOptions, IterateDeeplyCallback, LazyComponent, LazyLoadCallback, LazyLoadOptions, MasonryGridOptions, MasonryItemTemplate, MasonryKeyFn, MatesAnimationClass, MatesCustomEventMap, MatesDate, Measurements, MemoKeys, MemoTemplateFn, MonthInfo, OnEventMap, OnParentMap, OuterFn, PaginatedAsyncActionReturnType, PaginationAtomType, Placement, PollingManager, PopupOptions, PopupPlacement, PortalOptions, Props, PropsType, MatesRef as Ref, RenderFn, ScrolledIntoViewCallback, ScrolledIntoViewOptions, SerializeOptions, Setter, SetterReturnType, SlideDirection, StorageAtomType, StorageValue, StyleMap, StyleValue, Subscribable, SuperAtomOptions, SuperAtomType, SvgConfig, SwitchCase, SwitchEntry, Task, TaskActionType, TaskStatus, TemplateComponent, TemplateFn, ThemeAtomType, ThemeMode, ThemeTokenMap, ThemeValue, ThemesInput, TimerContent, TimezoneEntry, TipContent, TipStyle, TrackingSnapshot, UpdateCallback, ValidateAllResult, ValidatorFn, View, ViewComponent, VirtualGridOptions, VirtualListOptions, VirtualMasonryOptions, WheelDirectionEvent, WindowHookEventName, WindowHookHandler, WsConfig, WsConnection, WsStatus, X, XTabEventType };
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../lib/index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../lib/index.ts"],"names":[],"mappings":"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"}