@redzone/taunt-logins-ui-react 0.0.11 → 0.0.13
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/cjs/cc-D-353NYd.cjs +63 -0
- package/dist/cjs/index.cjs +647 -0
- package/dist/cjs/index.d.cts +112 -0
- package/dist/es/cc-D6TRVNtd.js +61 -0
- package/dist/es/index.d.ts +112 -0
- package/dist/es/index.js +636 -0
- package/dist/styling.css +239 -0
- package/package.json +40 -34
- package/README.md +0 -73
- package/dist/LoadingView.d.ts +0 -1
- package/dist/LoginUIComplete.d.ts +0 -6
- package/dist/LoginView.d.ts +0 -41
- package/dist/ModalView.d.ts +0 -7
- package/dist/assets/fonts/DrukTextWide-Bold-Trial.otf +0 -0
- package/dist/coinbase.d.ts +0 -5
- package/dist/index.d.ts +0 -11
- package/dist/magic.d.ts +0 -4
- package/dist/meta.d.ts +0 -5
- package/dist/metamask.d.ts +0 -5
- package/dist/taunt-logins-ui-react.d.ts +0 -2
- package/dist/taunt-logins-ui-react.js +0 -3639
- package/dist/taunt-logins-ui-react.js.map +0 -1
- package/dist/taunt-logins-ui-react.umd.cjs +0 -13
- package/dist/taunt-logins-ui-react.umd.cjs.map +0 -1
- package/dist/tauntContext.d.ts +0 -18
- package/dist/tauntProvider.d.ts +0 -5
- package/dist/telegram.d.ts +0 -5
package/dist/styling.css
ADDED
|
@@ -0,0 +1,239 @@
|
|
|
1
|
+
.rzd-loginui-complete {
|
|
2
|
+
background: radial-gradient(50% 50% at 50% 50%, #132c50 0%, #0b101b 100%);
|
|
3
|
+
border-radius: 37px;
|
|
4
|
+
|
|
5
|
+
display: flex;
|
|
6
|
+
flex-direction: column;
|
|
7
|
+
justify-content: center;
|
|
8
|
+
align-items: center;
|
|
9
|
+
text-align: center;
|
|
10
|
+
gap: 20px;
|
|
11
|
+
|
|
12
|
+
padding: 40px;
|
|
13
|
+
max-width: 620px;
|
|
14
|
+
|
|
15
|
+
min-height: 455px;
|
|
16
|
+
min-width: 500px;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.rzd-loginview {
|
|
20
|
+
box-sizing: border-box;
|
|
21
|
+
color: white;
|
|
22
|
+
|
|
23
|
+
.header-login {
|
|
24
|
+
font-family: "DRUNKWIDE", sans-serif;
|
|
25
|
+
font-size: 36px;
|
|
26
|
+
font-weight: bold;
|
|
27
|
+
color: white;
|
|
28
|
+
text-transform: uppercase;
|
|
29
|
+
margin: 20px 0;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.logo {
|
|
33
|
+
height: 6em;
|
|
34
|
+
padding: 1.5em;
|
|
35
|
+
will-change: filter;
|
|
36
|
+
transition: filter 300ms;
|
|
37
|
+
}
|
|
38
|
+
.logo:hover {
|
|
39
|
+
filter: drop-shadow(0 0 2em #646cffaa);
|
|
40
|
+
}
|
|
41
|
+
.logo.react:hover {
|
|
42
|
+
filter: drop-shadow(0 0 2em #61dafbaa);
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
/* @keyframes logo-spin {
|
|
46
|
+
from {
|
|
47
|
+
transform: rotate(0deg);
|
|
48
|
+
}
|
|
49
|
+
to {
|
|
50
|
+
transform: rotate(360deg);
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
@media (prefers-reduced-motion: no-preference) {
|
|
55
|
+
a:nth-of-type(2) .logo {
|
|
56
|
+
animation: logo-spin infinite 20s linear;
|
|
57
|
+
}
|
|
58
|
+
} */
|
|
59
|
+
|
|
60
|
+
.card {
|
|
61
|
+
padding: 2em;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
.read-the-docs {
|
|
65
|
+
color: #888;
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
.rdz-input {
|
|
70
|
+
font-family: "Futura PT", sans-serif !important;
|
|
71
|
+
line-height: 1.5;
|
|
72
|
+
font-weight: 400 !important;
|
|
73
|
+
|
|
74
|
+
color: white;
|
|
75
|
+
border-radius: 8px;
|
|
76
|
+
border: 1px solid transparent;
|
|
77
|
+
padding: 0.6em 1.2em;
|
|
78
|
+
font-size: 1.2em;
|
|
79
|
+
font-weight: 400;
|
|
80
|
+
font-family: inherit;
|
|
81
|
+
background-color: transparent;
|
|
82
|
+
cursor: pointer;
|
|
83
|
+
transition: border-color 0.25s;
|
|
84
|
+
|
|
85
|
+
/* On hover, show a blue border */
|
|
86
|
+
&:hover {
|
|
87
|
+
border-color: #646cff;
|
|
88
|
+
}
|
|
89
|
+
/* On focus, show an accessible outline */
|
|
90
|
+
&:focus,
|
|
91
|
+
&:focus-visible {
|
|
92
|
+
outline: 4px auto -webkit-focus-ring-color;
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
input.rdz-input {
|
|
97
|
+
box-sizing: border-box;
|
|
98
|
+
position: relative;
|
|
99
|
+
width: 100%;
|
|
100
|
+
max-width: 480px;
|
|
101
|
+
height: 58px;
|
|
102
|
+
|
|
103
|
+
border: 2px solid #009df3;
|
|
104
|
+
box-shadow: 0px 0px 16.9px 1px #0e79f3;
|
|
105
|
+
border-radius: 11px;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
input.rdz-input::placeholder {
|
|
109
|
+
color: white;
|
|
110
|
+
opacity: 1;
|
|
111
|
+
font-family: "Futura PT", sans-serif;
|
|
112
|
+
font-size: 1em;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
/* Magic Email Input Container */
|
|
116
|
+
.rdz-magic-email-container {
|
|
117
|
+
display: flex;
|
|
118
|
+
flex-direction: column;
|
|
119
|
+
align-items: center;
|
|
120
|
+
gap: 12px;
|
|
121
|
+
width: 100%;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
/* Error Message */
|
|
125
|
+
.rdz-magic-email-error {
|
|
126
|
+
color: red;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
/* Or Sign Up Using Text */
|
|
130
|
+
.rdz-sign-up-text {
|
|
131
|
+
font-family: "Futura PT", sans-serif;
|
|
132
|
+
font-size: 1.2em;
|
|
133
|
+
font-weight: 400;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
/* Icon Button (Rounded) */
|
|
137
|
+
.rdz-icon-button {
|
|
138
|
+
width: 55px;
|
|
139
|
+
height: 55px;
|
|
140
|
+
border-radius: 50%;
|
|
141
|
+
border: none;
|
|
142
|
+
background-color: transparent;
|
|
143
|
+
cursor: pointer;
|
|
144
|
+
padding: 0;
|
|
145
|
+
display: flex;
|
|
146
|
+
align-items: center;
|
|
147
|
+
justify-content: center;
|
|
148
|
+
transition:
|
|
149
|
+
transform 0.2s ease,
|
|
150
|
+
filter 0.2s ease;
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
.rdz-icon-button img {
|
|
154
|
+
width: 100%;
|
|
155
|
+
height: 100%;
|
|
156
|
+
object-fit: contain;
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
.rdz-icon-button:hover {
|
|
160
|
+
transform: scale(1.1);
|
|
161
|
+
filter: brightness(1.1);
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
.rdz-icon-button:active {
|
|
165
|
+
transform: scale(0.95);
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
.rdz-icon-button-disabled,
|
|
169
|
+
.rdz-icon-button:disabled {
|
|
170
|
+
opacity: 0.4;
|
|
171
|
+
cursor: not-allowed;
|
|
172
|
+
filter: grayscale(100%);
|
|
173
|
+
pointer-events: none;
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
.rdz-icon-button-disabled:hover,
|
|
177
|
+
.rdz-icon-button:disabled:hover {
|
|
178
|
+
transform: none;
|
|
179
|
+
filter: grayscale(100%);
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
/* Magic Email Button */
|
|
183
|
+
.rdz-magic-email-button {
|
|
184
|
+
background-size: 100% 100%;
|
|
185
|
+
background-position: center;
|
|
186
|
+
background-repeat: no-repeat;
|
|
187
|
+
font-family: "DRUNKWIDE", sans-serif;
|
|
188
|
+
border: none;
|
|
189
|
+
color: white;
|
|
190
|
+
padding: 16px 32px;
|
|
191
|
+
cursor: pointer;
|
|
192
|
+
min-height: 135px;
|
|
193
|
+
margin-bottom: -20px;
|
|
194
|
+
width: 100%;
|
|
195
|
+
max-width: 410px;
|
|
196
|
+
font-size: 22px;
|
|
197
|
+
font-weight: bold;
|
|
198
|
+
text-transform: uppercase;
|
|
199
|
+
letter-spacing: 1px;
|
|
200
|
+
background-color: transparent;
|
|
201
|
+
transition:
|
|
202
|
+
transform 0.2s ease,
|
|
203
|
+
filter 0.2s ease;
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
.rdz-magic-email-button:hover {
|
|
207
|
+
transform: scale(1.05);
|
|
208
|
+
filter: brightness(1.1);
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
.rdz-magic-email-button:active {
|
|
212
|
+
transform: scale(0.98);
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
/* Logout Button */
|
|
216
|
+
.rdz-logout-button {
|
|
217
|
+
margin-left: 8px;
|
|
218
|
+
padding: 12px 24px;
|
|
219
|
+
background-color: #3b82f6;
|
|
220
|
+
color: white;
|
|
221
|
+
border-radius: 6px;
|
|
222
|
+
border: none;
|
|
223
|
+
cursor: pointer;
|
|
224
|
+
font-family: "Futura PT", sans-serif;
|
|
225
|
+
font-size: 16px;
|
|
226
|
+
font-weight: 500;
|
|
227
|
+
transition:
|
|
228
|
+
transform 0.2s ease,
|
|
229
|
+
filter 0.2s ease;
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
.rdz-logout-button:hover {
|
|
233
|
+
transform: scale(1.05);
|
|
234
|
+
filter: brightness(1.1);
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
.rdz-logout-button:active {
|
|
238
|
+
transform: scale(0.98);
|
|
239
|
+
}
|
package/package.json
CHANGED
|
@@ -1,58 +1,64 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@redzone/taunt-logins-ui-react",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.13",
|
|
4
4
|
"type": "module",
|
|
5
|
+
"main": "./dist/es/index.js",
|
|
6
|
+
"module": "./dist/es/index.js",
|
|
7
|
+
"types": "./dist/es/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"import": {
|
|
11
|
+
"types": "./dist/es/index.d.ts",
|
|
12
|
+
"default": "./dist/es/index.js"
|
|
13
|
+
},
|
|
14
|
+
"require": {
|
|
15
|
+
"types": "./dist/cjs/index.d.cts",
|
|
16
|
+
"default": "./dist/cjs/index.cjs"
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
"./dist/styling.css": {
|
|
20
|
+
"import": "./dist/styling.css",
|
|
21
|
+
"require": "./dist/styling.css"
|
|
22
|
+
}
|
|
23
|
+
},
|
|
5
24
|
"scripts": {
|
|
6
|
-
"
|
|
7
|
-
"
|
|
8
|
-
"
|
|
9
|
-
"
|
|
10
|
-
"
|
|
11
|
-
"clean": "rm -rf dist
|
|
25
|
+
"build": "bunchee",
|
|
26
|
+
"dev": "bunchee --watch",
|
|
27
|
+
"copy:styles": "cp src/lib/styling.css dist/styling.css",
|
|
28
|
+
"pack": "npm pack",
|
|
29
|
+
"postbuild": "npm run copy:styles",
|
|
30
|
+
"clean": "rm -rf dist",
|
|
12
31
|
"lint": "eslint .",
|
|
13
|
-
"preview": "vite preview",
|
|
14
32
|
"prenpm:publish": "npm run build",
|
|
15
33
|
"npm:publish": "npm publish --access public",
|
|
16
34
|
"fb:deploy": "firebase deploy --only hosting:dev"
|
|
17
35
|
},
|
|
18
|
-
"main": "./dist/taunt-logins-ui-react.umd.js",
|
|
19
|
-
"module": "./dist/taunt-logins-ui-react.js",
|
|
20
|
-
"types": "./dist/taunt-logins-ui-react.d.ts",
|
|
21
|
-
"exports": {
|
|
22
|
-
".": {
|
|
23
|
-
"import": "./dist/taunt-logins-ui-react.js",
|
|
24
|
-
"require": "./dist/taunt-logins-ui-react.umd.js"
|
|
25
|
-
}
|
|
26
|
-
},
|
|
27
36
|
"peerDependencies": {
|
|
28
|
-
"react": "
|
|
29
|
-
|
|
30
|
-
|
|
37
|
+
"react": "*"
|
|
38
|
+
},
|
|
39
|
+
"dependencies": {
|
|
40
|
+
"@redzone/taunt-logins": "*"
|
|
31
41
|
},
|
|
32
42
|
"devDependencies": {
|
|
43
|
+
"@repo/eslint-config": "*",
|
|
44
|
+
"@repo/typescript-config": "*",
|
|
33
45
|
"@eslint/js": "^9.36.0",
|
|
34
46
|
"@ianvs/prettier-plugin-sort-imports": "^4.7.0",
|
|
35
47
|
"@types/chrome": "^0.1.21",
|
|
36
48
|
"@types/node": "^24.6.0",
|
|
37
|
-
"@types/react": "
|
|
38
|
-
"
|
|
39
|
-
"
|
|
40
|
-
"
|
|
41
|
-
"
|
|
49
|
+
"@types/react": "*",
|
|
50
|
+
"bunchee": "latest",
|
|
51
|
+
"react": "latest",
|
|
52
|
+
"eslint": "latest",
|
|
53
|
+
"prettier": "latest",
|
|
54
|
+
"prettier-config-custom": "*",
|
|
42
55
|
"eslint-plugin-react-hooks": "^5.2.0",
|
|
43
56
|
"eslint-plugin-react-refresh": "^0.4.22",
|
|
44
57
|
"globals": "^16.4.0",
|
|
45
58
|
"typescript": "~5.9.3",
|
|
46
|
-
"typescript-eslint": "^8.45.0"
|
|
47
|
-
"vite": "^7.1.9",
|
|
48
|
-
"vite-plugin-css-injected-by-js": "^3.5.2",
|
|
49
|
-
"vite-plugin-dts": "^4.5.4",
|
|
50
|
-
"vite-plugin-ts": "^1.3.2-1"
|
|
59
|
+
"typescript-eslint": "^8.45.0"
|
|
51
60
|
},
|
|
52
61
|
"files": [
|
|
53
62
|
"dist"
|
|
54
|
-
]
|
|
55
|
-
"dependencies": {
|
|
56
|
-
"@redzone/taunt-logins": "^0.0.4"
|
|
57
|
-
}
|
|
63
|
+
]
|
|
58
64
|
}
|
package/README.md
DELETED
|
@@ -1,73 +0,0 @@
|
|
|
1
|
-
# React + TypeScript + Vite
|
|
2
|
-
|
|
3
|
-
This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.
|
|
4
|
-
|
|
5
|
-
Currently, two official plugins are available:
|
|
6
|
-
|
|
7
|
-
- [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react) uses [Babel](https://babeljs.io/) (or [oxc](https://oxc.rs) when used in [rolldown-vite](https://vite.dev/guide/rolldown)) for Fast Refresh
|
|
8
|
-
- [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react-swc) uses [SWC](https://swc.rs/) for Fast Refresh
|
|
9
|
-
|
|
10
|
-
## React Compiler
|
|
11
|
-
|
|
12
|
-
The React Compiler is currently not compatible with SWC. See [this issue](https://github.com/vitejs/vite-plugin-react/issues/428) for tracking the progress.
|
|
13
|
-
|
|
14
|
-
## Expanding the ESLint configuration
|
|
15
|
-
|
|
16
|
-
If you are developing a production application, we recommend updating the configuration to enable type-aware lint rules:
|
|
17
|
-
|
|
18
|
-
```js
|
|
19
|
-
export default defineConfig([
|
|
20
|
-
globalIgnores(['dist']),
|
|
21
|
-
{
|
|
22
|
-
files: ['**/*.{ts,tsx}'],
|
|
23
|
-
extends: [
|
|
24
|
-
// Other configs...
|
|
25
|
-
|
|
26
|
-
// Remove tseslint.configs.recommended and replace with this
|
|
27
|
-
tseslint.configs.recommendedTypeChecked,
|
|
28
|
-
// Alternatively, use this for stricter rules
|
|
29
|
-
tseslint.configs.strictTypeChecked,
|
|
30
|
-
// Optionally, add this for stylistic rules
|
|
31
|
-
tseslint.configs.stylisticTypeChecked,
|
|
32
|
-
|
|
33
|
-
// Other configs...
|
|
34
|
-
],
|
|
35
|
-
languageOptions: {
|
|
36
|
-
parserOptions: {
|
|
37
|
-
project: ['./tsconfig.node.json', './tsconfig.app.json'],
|
|
38
|
-
tsconfigRootDir: import.meta.dirname,
|
|
39
|
-
},
|
|
40
|
-
// other options...
|
|
41
|
-
},
|
|
42
|
-
},
|
|
43
|
-
])
|
|
44
|
-
```
|
|
45
|
-
|
|
46
|
-
You can also install [eslint-plugin-react-x](https://github.com/Rel1cx/eslint-react/tree/main/packages/plugins/eslint-plugin-react-x) and [eslint-plugin-react-dom](https://github.com/Rel1cx/eslint-react/tree/main/packages/plugins/eslint-plugin-react-dom) for React-specific lint rules:
|
|
47
|
-
|
|
48
|
-
```js
|
|
49
|
-
// eslint.config.js
|
|
50
|
-
import reactX from 'eslint-plugin-react-x'
|
|
51
|
-
import reactDom from 'eslint-plugin-react-dom'
|
|
52
|
-
|
|
53
|
-
export default defineConfig([
|
|
54
|
-
globalIgnores(['dist']),
|
|
55
|
-
{
|
|
56
|
-
files: ['**/*.{ts,tsx}'],
|
|
57
|
-
extends: [
|
|
58
|
-
// Other configs...
|
|
59
|
-
// Enable lint rules for React
|
|
60
|
-
reactX.configs['recommended-typescript'],
|
|
61
|
-
// Enable lint rules for React DOM
|
|
62
|
-
reactDom.configs.recommended,
|
|
63
|
-
],
|
|
64
|
-
languageOptions: {
|
|
65
|
-
parserOptions: {
|
|
66
|
-
project: ['./tsconfig.node.json', './tsconfig.app.json'],
|
|
67
|
-
tsconfigRootDir: import.meta.dirname,
|
|
68
|
-
},
|
|
69
|
-
// other options...
|
|
70
|
-
},
|
|
71
|
-
},
|
|
72
|
-
])
|
|
73
|
-
```
|
package/dist/LoadingView.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare function LoadingView(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import { LoginComponentProps } from '.';
|
|
2
|
-
type LoginUICompleteProps = LoginComponentProps & {
|
|
3
|
-
className?: string;
|
|
4
|
-
};
|
|
5
|
-
export declare const LoginUIComplete: ({ className, ...loginProps }: LoginUICompleteProps) => import("react/jsx-runtime").JSX.Element;
|
|
6
|
-
export {};
|
package/dist/LoginView.d.ts
DELETED
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
import { CoinbaseButtonProps } from './coinbase';
|
|
2
|
-
import { MagicEmailProps } from './magic';
|
|
3
|
-
import { MetaButtonProps } from './meta';
|
|
4
|
-
import { MetaMaskButtonProps } from './metamask';
|
|
5
|
-
import { TelegramButtonProps } from './telegram';
|
|
6
|
-
export type LoginProvider = "email" | "metamask" | "telegram" | "meta" | "coinbase";
|
|
7
|
-
export interface LoginComponentProps {
|
|
8
|
-
/** Array of login providers to display. If not provided, shows all providers */
|
|
9
|
-
providers?: LoginProvider[];
|
|
10
|
-
/** Whether to show the email/magic link login */
|
|
11
|
-
showEmail?: boolean;
|
|
12
|
-
/** If true, show all providers but disable unsupported ones. If false, hide unsupported providers */
|
|
13
|
-
showDisabled?: boolean;
|
|
14
|
-
/** Custom text for the divider between email and social logins */
|
|
15
|
-
dividerText?: string;
|
|
16
|
-
/** Gap between provider buttons in pixels */
|
|
17
|
-
providerGap?: number;
|
|
18
|
-
/** Whether to show terms and privacy links (default: false) */
|
|
19
|
-
showTerms?: boolean;
|
|
20
|
-
/** Terms of Service text content (if provided, will show in built-in modal) */
|
|
21
|
-
termsContent?: string;
|
|
22
|
-
/** Privacy Policy text content (if provided, will show in built-in modal) */
|
|
23
|
-
privacyContent?: string;
|
|
24
|
-
/** Custom terms of service click handler (use if you want custom modal handling) */
|
|
25
|
-
onTermsClick?: () => void;
|
|
26
|
-
/** Custom privacy policy click handler (use if you want custom modal handling) */
|
|
27
|
-
onPrivacyClick?: () => void;
|
|
28
|
-
/** Custom modal component to use for displaying terms/privacy (optional) */
|
|
29
|
-
ModalComponent?: React.ComponentType<{
|
|
30
|
-
title: string;
|
|
31
|
-
content: string;
|
|
32
|
-
onClose: () => void;
|
|
33
|
-
}>;
|
|
34
|
-
/** Callback when email is entered (for custom handling) */
|
|
35
|
-
magicEmailProps?: MagicEmailProps;
|
|
36
|
-
coinbaseProps?: CoinbaseButtonProps;
|
|
37
|
-
metamaskProps?: MetaMaskButtonProps;
|
|
38
|
-
metaProps?: MetaButtonProps;
|
|
39
|
-
telegramProps?: TelegramButtonProps;
|
|
40
|
-
}
|
|
41
|
-
export declare const LoginView: ({ providers, showEmail, showDisabled, dividerText, providerGap, showTerms, termsContent, privacyContent, onTermsClick, onPrivacyClick, ModalComponent, magicEmailProps, coinbaseProps, metamaskProps, metaProps, telegramProps }: LoginComponentProps) => import("react/jsx-runtime").JSX.Element;
|
package/dist/ModalView.d.ts
DELETED
|
Binary file
|
package/dist/coinbase.d.ts
DELETED
package/dist/index.d.ts
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
export * from './coinbase';
|
|
2
|
-
export * from './LoadingView';
|
|
3
|
-
export * from './LoginUIComplete';
|
|
4
|
-
export * from './LoginView';
|
|
5
|
-
export * from './magic';
|
|
6
|
-
export * from './meta';
|
|
7
|
-
export * from './metamask';
|
|
8
|
-
export * from './ModalView';
|
|
9
|
-
export * from './tauntContext';
|
|
10
|
-
export * from './tauntProvider';
|
|
11
|
-
export * from './telegram';
|
package/dist/magic.d.ts
DELETED
package/dist/meta.d.ts
DELETED
package/dist/metamask.d.ts
DELETED