@redzone/taunt-logins-ui-react 0.0.8 → 0.0.10
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/LoadingView.d.ts +1 -0
- package/dist/LoginUIComplete.d.ts +6 -0
- package/dist/LoginView.d.ts +41 -0
- package/dist/ModalView.d.ts +7 -0
- package/dist/coinbase.d.ts +4 -2
- package/dist/index.d.ts +7 -3
- package/dist/magic.d.ts +3 -2
- package/dist/meta.d.ts +4 -2
- package/dist/metamask.d.ts +4 -2
- package/dist/taunt-logins-ui-react.js +2180 -1829
- package/dist/taunt-logins-ui-react.js.map +1 -1
- package/dist/taunt-logins-ui-react.umd.cjs +11 -5
- package/dist/taunt-logins-ui-react.umd.cjs.map +1 -1
- package/dist/tauntContext.d.ts +1 -0
- package/dist/telegram.d.ts +4 -2
- package/package.json +1 -2
package/dist/tauntContext.d.ts
CHANGED
package/dist/telegram.d.ts
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
-
export
|
|
1
|
+
export interface TelegramButtonProps {
|
|
2
2
|
openTelegram?: () => void;
|
|
3
|
-
|
|
3
|
+
disabled?: boolean;
|
|
4
|
+
}
|
|
5
|
+
export declare const TelegramButton: ({ openTelegram, disabled }: TelegramButtonProps) => import("react/jsx-runtime").JSX.Element;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@redzone/taunt-logins-ui-react",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.10",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"dev": "vite",
|
|
@@ -12,7 +12,6 @@
|
|
|
12
12
|
"preview": "vite preview",
|
|
13
13
|
"prenpm:publish": "npm run build:lib",
|
|
14
14
|
"npm:publish": "npm publish --access public",
|
|
15
|
-
"fb:login": "firebase login --reauth",
|
|
16
15
|
"fb:deploy": "firebase deploy --only hosting:dev"
|
|
17
16
|
},
|
|
18
17
|
"main": "./dist/taunt-logins-ui-react.umd.js",
|