@worldcoin/idkit 0.0.2 → 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/README.md +2 -2
- package/build/components/IDKitWidget/States/ErrorState.d.ts +2 -0
- package/build/components/IDKitWidget/States/HostAppVerificationState.d.ts +7 -0
- package/build/components/IDKitWidget/States/PrivacyState.d.ts +2 -0
- package/build/idkit-js.js +29 -29
- package/build/index.css +1 -1
- package/build/index.js +2 -2
- package/build/index.js.map +3 -3
- package/build/lib/telemetry.d.ts +2 -0
- package/build/services/phone.d.ts +4 -4
- package/build/services/walletconnect.d.ts +2 -2
- package/build/store/idkit.d.ts +4 -4
- package/build/tsconfig.tsbuildinfo +1 -1
- package/build/types/config.d.ts +1 -1
- package/build/types/index.d.ts +22 -4
- package/build/types/orb.d.ts +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,12 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
This folder (`/idkit`) contains the main code for the widget. For instructions on **how to use the widget**, please refer to the repository's main [README](/README.md).
|
|
4
4
|
|
|
5
|
-
## ℹ️ About the
|
|
5
|
+
## ℹ️ About the Codebase
|
|
6
6
|
|
|
7
7
|
- The widget is made to work mainly with vanilla JS code (no framework required). The starting point can be found in `src/vanilla.tsx`.
|
|
8
8
|
- The React wrapper is found on `src/components/IDKitWidget/index.ts`.
|
|
9
9
|
|
|
10
|
-
## 🧑💻 Development &
|
|
10
|
+
## 🧑💻 Development & Testing
|
|
11
11
|
|
|
12
12
|
To develop locally and contribute to this package, you can simply follow these instructions after cloning the repo.
|
|
13
13
|
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This state is triggered after a successful signal is received and the host app is performing their own verifications,
|
|
3
|
+
* before we show a success/error state.
|
|
4
|
+
*/
|
|
5
|
+
/// <reference types="react" />
|
|
6
|
+
declare const _default: import("react").MemoExoticComponent<() => JSX.Element>;
|
|
7
|
+
export default _default;
|