@liberfi.io/ui-predict 0.1.107 → 0.1.109
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.mts +2 -16
- package/dist/index.d.ts +2 -16
- package/dist/index.js +8 -8
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +8 -8
- package/dist/index.mjs.map +1 -1
- package/package.json +15 -15
package/dist/index.d.mts
CHANGED
|
@@ -13,7 +13,7 @@ declare global {
|
|
|
13
13
|
};
|
|
14
14
|
}
|
|
15
15
|
}
|
|
16
|
-
declare const _default: "0.1.
|
|
16
|
+
declare const _default: "0.1.109";
|
|
17
17
|
|
|
18
18
|
/**
|
|
19
19
|
* A single category entry in the static navigation model.
|
|
@@ -776,23 +776,9 @@ interface SetupModalProps {
|
|
|
776
776
|
evmAddress: string;
|
|
777
777
|
safeDeployed: boolean;
|
|
778
778
|
tokenApproved: boolean;
|
|
779
|
-
/**
|
|
780
|
-
* Whether Polymarket L2 API credentials are already derived.
|
|
781
|
-
* Comes from `PolymarketContext.credentials !== null`.
|
|
782
|
-
*/
|
|
783
|
-
keysConnected: boolean;
|
|
784
|
-
/**
|
|
785
|
-
* Callback to deploy Safe + approve tokens (Steps 1-2).
|
|
786
|
-
* The consuming app provides the implementation using RelayClient.
|
|
787
|
-
*/
|
|
788
779
|
onDeployAndApprove: () => Promise<void>;
|
|
789
|
-
/**
|
|
790
|
-
* Callback to trigger L2 key derivation (Step 3).
|
|
791
|
-
* Provided by the consuming app that has access to the wallet signer.
|
|
792
|
-
*/
|
|
793
|
-
onConnectKeys?: () => Promise<void>;
|
|
794
780
|
}
|
|
795
|
-
declare function SetupModal({ isOpen, onClose, safeDeployed, tokenApproved,
|
|
781
|
+
declare function SetupModal({ isOpen, onClose, safeDeployed, tokenApproved, onDeployAndApprove, }: SetupModalProps): react_jsx_runtime.JSX.Element;
|
|
796
782
|
|
|
797
783
|
/** Default page size for list queries */
|
|
798
784
|
declare const DEFAULT_PAGE_SIZE = 48;
|
package/dist/index.d.ts
CHANGED
|
@@ -13,7 +13,7 @@ declare global {
|
|
|
13
13
|
};
|
|
14
14
|
}
|
|
15
15
|
}
|
|
16
|
-
declare const _default: "0.1.
|
|
16
|
+
declare const _default: "0.1.109";
|
|
17
17
|
|
|
18
18
|
/**
|
|
19
19
|
* A single category entry in the static navigation model.
|
|
@@ -776,23 +776,9 @@ interface SetupModalProps {
|
|
|
776
776
|
evmAddress: string;
|
|
777
777
|
safeDeployed: boolean;
|
|
778
778
|
tokenApproved: boolean;
|
|
779
|
-
/**
|
|
780
|
-
* Whether Polymarket L2 API credentials are already derived.
|
|
781
|
-
* Comes from `PolymarketContext.credentials !== null`.
|
|
782
|
-
*/
|
|
783
|
-
keysConnected: boolean;
|
|
784
|
-
/**
|
|
785
|
-
* Callback to deploy Safe + approve tokens (Steps 1-2).
|
|
786
|
-
* The consuming app provides the implementation using RelayClient.
|
|
787
|
-
*/
|
|
788
779
|
onDeployAndApprove: () => Promise<void>;
|
|
789
|
-
/**
|
|
790
|
-
* Callback to trigger L2 key derivation (Step 3).
|
|
791
|
-
* Provided by the consuming app that has access to the wallet signer.
|
|
792
|
-
*/
|
|
793
|
-
onConnectKeys?: () => Promise<void>;
|
|
794
780
|
}
|
|
795
|
-
declare function SetupModal({ isOpen, onClose, safeDeployed, tokenApproved,
|
|
781
|
+
declare function SetupModal({ isOpen, onClose, safeDeployed, tokenApproved, onDeployAndApprove, }: SetupModalProps): react_jsx_runtime.JSX.Element;
|
|
796
782
|
|
|
797
783
|
/** Default page size for list queries */
|
|
798
784
|
declare const DEFAULT_PAGE_SIZE = 48;
|