@dappworks/kit 0.5.34 → 0.5.36

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 (55) hide show
  1. package/dist/{PromiseState-DVdsif1j.d.ts → PromiseState-e64b3707.d.ts} +1 -1
  2. package/dist/{StorageState-qapaHguM.d.ts → StorageState-cfd942cb.d.ts} +1 -1
  3. package/dist/aiem.d.mts +3 -3
  4. package/dist/aiem.mjs +2 -2
  5. package/dist/{chunk-BQSQ4L7R.mjs → chunk-5BTB7HRK.mjs} +2 -2
  6. package/dist/chunk-6F7H4PAA.mjs +35 -0
  7. package/dist/{chunk-I2RSE63R.mjs → chunk-72E76L6J.mjs} +2 -2
  8. package/dist/{chunk-2L5EKCYR.mjs → chunk-AVG4JG4V.mjs} +4 -4
  9. package/dist/chunk-BR7IWH2E.mjs +1284 -0
  10. package/dist/chunk-BR7IWH2E.mjs.map +1 -0
  11. package/dist/{chunk-SA53R6TL.mjs → chunk-KIS52LFU.mjs} +7 -7
  12. package/dist/{chunk-SA53R6TL.mjs.map → chunk-KIS52LFU.mjs.map} +1 -1
  13. package/dist/{chunk-FWK5VZHE.mjs → chunk-NKGQRF5D.mjs} +3 -3
  14. package/dist/{chunk-BAXWSAXB.mjs → chunk-SPFKGNUY.mjs} +364 -388
  15. package/dist/chunk-SPFKGNUY.mjs.map +1 -0
  16. package/dist/{chunk-WWCB4WOQ.mjs → chunk-WMV5O3PI.mjs} +4 -4
  17. package/dist/chunk-WMV5O3PI.mjs.map +1 -0
  18. package/dist/dev.d.mts +1 -1
  19. package/dist/dev.mjs +2 -2
  20. package/dist/experimental.d.mts +5 -5
  21. package/dist/experimental.mjs +3 -3
  22. package/dist/form.d.mts +14 -14
  23. package/dist/form.mjs +3 -3
  24. package/dist/form.mjs.map +1 -1
  25. package/dist/{index-CUKoRIdy.d.ts → index-38be834f.d.ts} +1 -1
  26. package/dist/index.d.mts +5 -5
  27. package/dist/index.mjs +6 -6
  28. package/dist/inspector.d.mts +1 -1
  29. package/dist/inspector.mjs +1 -1
  30. package/dist/jsoncomponent.d.mts +1 -1
  31. package/dist/jsoncomponent.mjs +1 -1
  32. package/dist/jsontable.d.mts +2 -2
  33. package/dist/jsontable.mjs +4 -4
  34. package/dist/metrics.d.mts +1 -1
  35. package/dist/metrics.mjs +4 -4
  36. package/dist/plugins.d.mts +8 -8
  37. package/dist/plugins.mjs +5 -5
  38. package/dist/{root-BPMUmS6H.d.ts → root-218afa4f.d.ts} +1 -1
  39. package/dist/ui.mjs +3 -3
  40. package/dist/utils.d.mts +19 -100
  41. package/dist/utils.mjs +1 -1
  42. package/dist/wallet.d.mts +4 -4
  43. package/dist/wallet.mjs +7 -7
  44. package/package.json +175 -174
  45. package/dist/chunk-4KRVA5CB.mjs +0 -23690
  46. package/dist/chunk-4KRVA5CB.mjs.map +0 -1
  47. package/dist/chunk-BAXWSAXB.mjs.map +0 -1
  48. package/dist/chunk-VIK2VI34.mjs +0 -69
  49. package/dist/chunk-WWCB4WOQ.mjs.map +0 -1
  50. /package/dist/{PaginationState-Bmrrw0ky.d.ts → PaginationState-c19e621a.d.ts} +0 -0
  51. /package/dist/{chunk-BQSQ4L7R.mjs.map → chunk-5BTB7HRK.mjs.map} +0 -0
  52. /package/dist/{chunk-VIK2VI34.mjs.map → chunk-6F7H4PAA.mjs.map} +0 -0
  53. /package/dist/{chunk-I2RSE63R.mjs.map → chunk-72E76L6J.mjs.map} +0 -0
  54. /package/dist/{chunk-2L5EKCYR.mjs.map → chunk-AVG4JG4V.mjs.map} +0 -0
  55. /package/dist/{chunk-FWK5VZHE.mjs.map → chunk-NKGQRF5D.mjs.map} +0 -0
@@ -1,5 +1,5 @@
1
1
  import { EventEmitter } from 'events';
2
- import { c as BooleanState, B as BaseState } from './root-BPMUmS6H.js';
2
+ import { c as BooleanState, B as BaseState } from './root-218afa4f.js';
3
3
 
4
4
  interface Events {
5
5
  data: (data: any) => void;
@@ -45,4 +45,4 @@ declare class StorageState<T> {
45
45
  clear(): any;
46
46
  }
47
47
 
48
- export { PromiseHook as P, StorageState as S, type PromiseHookData as a };
48
+ export { PromiseHook as P, StorageState as S, PromiseHookData as a };
package/dist/aiem.d.mts CHANGED
@@ -1,4 +1,4 @@
1
- import { Chain, Abi, GetContractReturnType, PublicClient, HttpTransport, WalletClient, Transport, Account } from 'viem';
1
+ import { MulticallBatchOptions, Chain, Abi, GetContractReturnType, PublicClient, HttpTransport, WalletClient, Transport, Account } from 'viem';
2
2
  import TTLCache from '@isaacs/ttlcache';
3
3
 
4
4
  type ClassType<T> = {
@@ -20,7 +20,7 @@ declare class Cache {
20
20
  wrap<T>(key: string, fn: () => T | Promise<T>, config?: TTLCache.Options<any, any>): T | Promise<T>;
21
21
  }
22
22
  type GetOptions = {
23
- multicall?: boolean;
23
+ multicall?: boolean | MulticallBatchOptions;
24
24
  rpcUrls?: Chain["rpcUrls"];
25
25
  pollingInterval?: number;
26
26
  };
@@ -121,4 +121,4 @@ type QueryReturnType<E, S extends QuerySelect<E>> = {
121
121
  [K in keyof E]: K extends keyof S ? E[K] extends (...args: any[]) => any ? Awaited<ReturnType<E[K]>> : E[K] extends object ? S[K] extends object ? QueryReturnType<E[K], S[K]> : E[K] : E[K] : E[K];
122
122
  };
123
123
 
124
- export { AIem, Cache, Fields, type GetOptions, type Item, type QueryReturnType };
124
+ export { AIem, Cache, Fields, GetOptions, Item, QueryReturnType };
package/dist/aiem.mjs CHANGED
@@ -1,7 +1,7 @@
1
- export { AIem, Cache, Fields } from './chunk-WWCB4WOQ.mjs';
1
+ export { AIem, Cache, Fields } from './chunk-WMV5O3PI.mjs';
2
2
  import './chunk-2BZKMJZX.mjs';
3
3
  import './chunk-7WJMHFRA.mjs';
4
4
  import './chunk-2PD23V7H.mjs';
5
- import './chunk-VIK2VI34.mjs';
5
+ import './chunk-6F7H4PAA.mjs';
6
6
  //# sourceMappingURL=out.js.map
7
7
  //# sourceMappingURL=aiem.mjs.map
@@ -1,4 +1,4 @@
1
- import { cn } from './chunk-BAXWSAXB.mjs';
1
+ import { cn } from './chunk-SPFKGNUY.mjs';
2
2
  import { Skeleton } from '@nextui-org/react';
3
3
  import React from 'react';
4
4
 
@@ -26,4 +26,4 @@ var SkeletonBox = ({
26
26
 
27
27
  export { SkeletonBox };
28
28
  //# sourceMappingURL=out.js.map
29
- //# sourceMappingURL=chunk-BQSQ4L7R.mjs.map
29
+ //# sourceMappingURL=chunk-5BTB7HRK.mjs.map
@@ -0,0 +1,35 @@
1
+ var __defProp = Object.defineProperty;
2
+ var __defProps = Object.defineProperties;
3
+ var __getOwnPropDescs = Object.getOwnPropertyDescriptors;
4
+ var __getOwnPropSymbols = Object.getOwnPropertySymbols;
5
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
6
+ var __propIsEnum = Object.prototype.propertyIsEnumerable;
7
+ var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
8
+ var __spreadValues = (a, b) => {
9
+ for (var prop in b || (b = {}))
10
+ if (__hasOwnProp.call(b, prop))
11
+ __defNormalProp(a, prop, b[prop]);
12
+ if (__getOwnPropSymbols)
13
+ for (var prop of __getOwnPropSymbols(b)) {
14
+ if (__propIsEnum.call(b, prop))
15
+ __defNormalProp(a, prop, b[prop]);
16
+ }
17
+ return a;
18
+ };
19
+ var __spreadProps = (a, b) => __defProps(a, __getOwnPropDescs(b));
20
+ var __objRest = (source, exclude) => {
21
+ var target = {};
22
+ for (var prop in source)
23
+ if (__hasOwnProp.call(source, prop) && exclude.indexOf(prop) < 0)
24
+ target[prop] = source[prop];
25
+ if (source != null && __getOwnPropSymbols)
26
+ for (var prop of __getOwnPropSymbols(source)) {
27
+ if (exclude.indexOf(prop) < 0 && __propIsEnum.call(source, prop))
28
+ target[prop] = source[prop];
29
+ }
30
+ return target;
31
+ };
32
+
33
+ export { __objRest, __spreadProps, __spreadValues };
34
+ //# sourceMappingURL=out.js.map
35
+ //# sourceMappingURL=chunk-6F7H4PAA.mjs.map
@@ -1,5 +1,5 @@
1
1
  import { ToastPlugin } from './chunk-7EL2RQI7.mjs';
2
- import { RootStore } from './chunk-SA53R6TL.mjs';
2
+ import { RootStore } from './chunk-KIS52LFU.mjs';
3
3
  import { makeAutoObservable } from 'mobx';
4
4
  import { EventEmitter } from 'events';
5
5
  import { useEffect } from 'react';
@@ -222,4 +222,4 @@ var PromiseState = class {
222
222
 
223
223
  export { BooleanState, NumberState, PromiseState, Store, StringState, ValueState };
224
224
  //# sourceMappingURL=out.js.map
225
- //# sourceMappingURL=chunk-I2RSE63R.mjs.map
225
+ //# sourceMappingURL=chunk-72E76L6J.mjs.map
@@ -1,8 +1,8 @@
1
1
  import { PaginationState } from './chunk-Z3LJE5QF.mjs';
2
- import { SkeletonBox } from './chunk-BQSQ4L7R.mjs';
2
+ import { SkeletonBox } from './chunk-5BTB7HRK.mjs';
3
3
  import { _ } from './chunk-2PD23V7H.mjs';
4
- import { cn } from './chunk-BAXWSAXB.mjs';
5
- import { __objRest, __spreadValues, __spreadProps } from './chunk-VIK2VI34.mjs';
4
+ import { cn } from './chunk-SPFKGNUY.mjs';
5
+ import { __objRest, __spreadValues, __spreadProps } from './chunk-6F7H4PAA.mjs';
6
6
  import * as React2 from 'react';
7
7
  import React2__default, { useRef, useEffect, useState, useMemo } from 'react';
8
8
  import { Card, Divider, Pagination, Spinner } from '@nextui-org/react';
@@ -1028,4 +1028,4 @@ function groupByColSpan(arr, colSpan) {
1028
1028
 
1029
1029
  export { JSONTable };
1030
1030
  //# sourceMappingURL=out.js.map
1031
- //# sourceMappingURL=chunk-2L5EKCYR.mjs.map
1031
+ //# sourceMappingURL=chunk-AVG4JG4V.mjs.map