@pelatform/starter 0.1.5 → 0.1.7

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.
@@ -1,531 +0,0 @@
1
- // src/config/query.ts
2
- var defaultAuthQueryOptions = {
3
- sessionQueryOptions: {
4
- staleTime: 60 * 1e3
5
- },
6
- optimistic: true,
7
- refetchOnMutate: true,
8
- queryKey: {
9
- accountInfo: ["account-info"],
10
- listAccounts: ["list-accounts"],
11
- listApiKeys: ["list-api-keys"],
12
- listDeviceSessions: ["list-device-sessions"],
13
- listPasskeys: ["list-passkeys"],
14
- listSessions: ["list-sessions"],
15
- session: ["session"]
16
- }
17
- };
18
-
19
- // src/lib/translations.ts
20
- function getTranslations({
21
- error,
22
- t
23
- }) {
24
- if (typeof error === "string") {
25
- const translated = t(`systems.${error}`);
26
- if (translated && translated !== `systems.${error}`) {
27
- return translated;
28
- }
29
- return error;
30
- }
31
- if (error?.error) {
32
- if (error.error.code) {
33
- const errorCode = error.error.code;
34
- const translated = t(`systems.${errorCode}`);
35
- if (translated && translated !== `systems.${errorCode}`) {
36
- return translated;
37
- }
38
- return errorCode;
39
- }
40
- return error.error.message || error.error.code || error.error.statusText || t("systems.REQUEST_FAILED");
41
- }
42
- return error?.message || t("systems.REQUEST_FAILED") || "Request failed";
43
- }
44
-
45
- // src/lib/images.ts
46
- async function resizeAndCropImage(file, name, size, extension) {
47
- const image = await loadImage(file);
48
- const canvas = document.createElement("canvas");
49
- canvas.width = canvas.height = size;
50
- const ctx = canvas.getContext("2d");
51
- const minEdge = Math.min(image.width, image.height);
52
- const sx = (image.width - minEdge) / 2;
53
- const sy = (image.height - minEdge) / 2;
54
- const sWidth = minEdge;
55
- const sHeight = minEdge;
56
- ctx?.drawImage(image, sx, sy, sWidth, sHeight, 0, 0, size, size);
57
- const resizedImageBlob = await new Promise(
58
- (resolve) => canvas.toBlob(resolve, `image/${extension}`)
59
- );
60
- return new File([resizedImageBlob], `${name}.${extension}`, {
61
- type: `image/${extension}`
62
- });
63
- }
64
- async function loadImage(file) {
65
- return new Promise((resolve, reject) => {
66
- const image = new Image();
67
- const reader = new FileReader();
68
- reader.onload = (e) => {
69
- image.src = e.target?.result;
70
- };
71
- image.onload = () => resolve(image);
72
- image.onerror = (err) => reject(err);
73
- reader.readAsDataURL(file);
74
- });
75
- }
76
- async function fileToBase64(file) {
77
- return new Promise((resolve, reject) => {
78
- const reader = new FileReader();
79
- reader.onloadend = () => resolve(reader.result);
80
- reader.onerror = reject;
81
- reader.readAsDataURL(file);
82
- });
83
- }
84
-
85
- // src/lib/password-schema.ts
86
- import { z } from "@pelatform/ui/re/zod";
87
- function getPasswordSchema(t) {
88
- const getError = (key, fallback) => {
89
- return t ? t(`systems.${key}`) : fallback;
90
- };
91
- const minLength = 8;
92
- const maxLength = 32;
93
- const regex = void 0;
94
- let schema = z.string().min(1, {
95
- error: getError("PASSWORD_REQUIRED", "Password is required")
96
- });
97
- schema = schema.min(minLength, {
98
- error: getError("PASSWORD_TOO_SHORT", "Password is too short")
99
- });
100
- schema = schema.max(maxLength, {
101
- error: getError("PASSWORD_TOO_LONG", "Password is too long")
102
- });
103
- if (regex) {
104
- schema = schema.regex(regex, {
105
- error: getError("INVALID_PASSWORD", "Invalid password")
106
- });
107
- }
108
- return schema;
109
- }
110
-
111
- // src/ui/shared/provider-icons.tsx
112
- import { jsx, jsxs } from "react/jsx-runtime";
113
- var AppleIcon = ({ className }) => /* @__PURE__ */ jsx("svg", { className, viewBox: "0 0 32 32", xmlns: "http://www.w3.org/2000/svg", children: /* @__PURE__ */ jsx(
114
- "path",
115
- {
116
- d: "M9.438 31.401a7 7 0 0 1-1.656-1.536a20 20 0 0 1-1.422-1.938a18.9 18.9 0 0 1-2.375-4.849c-.667-2-.99-3.917-.99-5.792c0-2.094.453-3.922 1.339-5.458a7.7 7.7 0 0 1 2.797-2.906a7.45 7.45 0 0 1 3.786-1.12q.705.002 1.51.198c.385.109.854.281 1.427.495c.729.281 1.13.453 1.266.495c.427.156.786.224 1.068.224c.214 0 .516-.068.859-.172c.193-.068.557-.188 1.078-.411c.516-.188.922-.349 1.245-.469c.495-.146.974-.281 1.401-.349a6.7 6.7 0 0 1 1.531-.063a9 9 0 0 1 2.589.557c1.359.547 2.458 1.401 3.276 2.615a6.4 6.4 0 0 0-.969.734a8.2 8.2 0 0 0-1.641 2.005a6.8 6.8 0 0 0-.859 3.359c.021 1.443.391 2.714 1.12 3.813a7.2 7.2 0 0 0 2.047 2.047c.417.281.776.474 1.12.604c-.161.5-.333.984-.536 1.464a19 19 0 0 1-1.667 3.083c-.578.839-1.031 1.464-1.375 1.88c-.536.635-1.052 1.12-1.573 1.458c-.573.38-1.25.583-1.938.583a4.4 4.4 0 0 1-1.38-.167c-.385-.13-.766-.271-1.141-.432a9 9 0 0 0-1.203-.453a6.3 6.3 0 0 0-3.099-.005c-.417.12-.818.26-1.214.432c-.557.234-.927.391-1.141.458c-.427.125-.87.203-1.318.229c-.693 0-1.339-.198-1.979-.599zm9.14-24.615c-.906.453-1.771.646-2.63.583c-.135-.865 0-1.75.359-2.719a7.3 7.3 0 0 1 1.333-2.24A7.1 7.1 0 0 1 19.812.733q1.319-.68 2.521-.734c.104.906 0 1.797-.333 2.76a8 8 0 0 1-1.333 2.344a6.8 6.8 0 0 1-2.115 1.682z",
117
- fill: "currentColor"
118
- }
119
- ) });
120
- var DiscordIcon = ({ className }) => /* @__PURE__ */ jsx("svg", { className, viewBox: "0 0 256 199", xmlns: "http://www.w3.org/2000/svg", children: /* @__PURE__ */ jsx(
121
- "path",
122
- {
123
- d: "M216.856 16.597A208.5 208.5 0 0 0 164.042 0c-2.275 4.113-4.933 9.645-6.766 14.046q-29.538-4.442-58.533 0c-1.832-4.4-4.55-9.933-6.846-14.046a207.8 207.8 0 0 0-52.855 16.638C5.618 67.147-3.443 116.4 1.087 164.956c22.169 16.555 43.653 26.612 64.775 33.193A161 161 0 0 0 79.735 175.3a136.4 136.4 0 0 1-21.846-10.632a109 109 0 0 0 5.356-4.237c42.122 19.702 87.89 19.702 129.51 0a132 132 0 0 0 5.355 4.237a136 136 0 0 1-21.886 10.653c4.006 8.02 8.638 15.67 13.873 22.848c21.142-6.58 42.646-16.637 64.815-33.213c5.316-56.288-9.08-105.09-38.056-148.36M85.474 135.095c-12.645 0-23.015-11.805-23.015-26.18s10.149-26.2 23.015-26.2s23.236 11.804 23.015 26.2c.02 14.375-10.148 26.18-23.015 26.18m85.051 0c-12.645 0-23.014-11.805-23.014-26.18s10.148-26.2 23.014-26.2c12.867 0 23.236 11.804 23.015 26.2c0 14.375-10.148 26.18-23.015 26.18",
124
- fill: "#5865f2"
125
- }
126
- ) });
127
- var DropboxIcon = ({ className }) => /* @__PURE__ */ jsx("svg", { className, viewBox: "0 0 256 218", xmlns: "http://www.w3.org/2000/svg", children: /* @__PURE__ */ jsx(
128
- "path",
129
- {
130
- d: "M63.995 0L0 40.771l63.995 40.772L128 40.771zM192 0l-64 40.775l64 40.775l64.001-40.775zM0 122.321l63.995 40.772L128 122.321L63.995 81.55zM192 81.55l-64 40.775l64 40.774l64-40.774zM64 176.771l64.005 40.772L192 176.771L128.005 136z",
131
- fill: "#0061ff"
132
- }
133
- ) });
134
- var FacebookIcon = ({ className }) => /* @__PURE__ */ jsxs("svg", { className, viewBox: "0 0 256 256", xmlns: "http://www.w3.org/2000/svg", children: [
135
- /* @__PURE__ */ jsx(
136
- "path",
137
- {
138
- d: "M256 128C256 57.308 198.692 0 128 0S0 57.308 0 128c0 63.888 46.808 116.843 108 126.445V165H75.5v-37H108V99.8c0-32.08 19.11-49.8 48.348-49.8C170.352 50 185 52.5 185 52.5V84h-16.14C152.959 84 148 93.867 148 103.99V128h35.5l-5.675 37H148v89.445c61.192-9.602 108-62.556 108-126.445",
139
- fill: "#1877f2"
140
- }
141
- ),
142
- /* @__PURE__ */ jsx(
143
- "path",
144
- {
145
- d: "m177.825 165l5.675-37H148v-24.01C148 93.866 152.959 84 168.86 84H185V52.5S170.352 50 156.347 50C127.11 50 108 67.72 108 99.8V128H75.5v37H108v89.445A129 129 0 0 0 128 256a129 129 0 0 0 20-1.555V165z",
146
- fill: "#fff"
147
- }
148
- )
149
- ] });
150
- var GitHubIcon = ({ className }) => /* @__PURE__ */ jsx("svg", { className, viewBox: "0 0 24 24", xmlns: "http://www.w3.org/2000/svg", children: /* @__PURE__ */ jsx(
151
- "path",
152
- {
153
- d: "M12 .297c-6.63 0-12 5.373-12 12c0 5.303 3.438 9.8 8.205 11.385c.6.113.82-.258.82-.577c0-.285-.01-1.04-.015-2.04c-3.338.724-4.042-1.61-4.042-1.61C4.422 18.07 3.633 17.7 3.633 17.7c-1.087-.744.084-.729.084-.729c1.205.084 1.838 1.236 1.838 1.236c1.07 1.835 2.809 1.305 3.495.998c.108-.776.417-1.305.76-1.605c-2.665-.3-5.466-1.332-5.466-5.93c0-1.31.465-2.38 1.235-3.22c-.135-.303-.54-1.523.105-3.176c0 0 1.005-.322 3.3 1.23c.96-.267 1.98-.399 3-.405c1.02.006 2.04.138 3 .405c2.28-1.552 3.285-1.23 3.285-1.23c.645 1.653.24 2.873.12 3.176c.765.84 1.23 1.91 1.23 3.22c0 4.61-2.805 5.625-5.475 5.92c.42.36.81 1.096.81 2.22c0 1.606-.015 2.896-.015 3.286c0 .315.21.69.825.57C20.565 22.092 24 17.592 24 12.297c0-6.627-5.373-12-12-12",
154
- fill: "currentColor"
155
- }
156
- ) });
157
- var GitLabIcon = ({ className }) => /* @__PURE__ */ jsxs("svg", { className, viewBox: "0 0 256 236", xmlns: "http://www.w3.org/2000/svg", children: [
158
- /* @__PURE__ */ jsx("path", { d: "m128.075 236.075l47.104-144.97H80.97z", fill: "#e24329" }),
159
- /* @__PURE__ */ jsx("path", { d: "M128.075 236.074L80.97 91.104H14.956z", fill: "#fc6d26" }),
160
- /* @__PURE__ */ jsx(
161
- "path",
162
- {
163
- d: "M14.956 91.104L.642 135.16a9.75 9.75 0 0 0 3.542 10.903l123.891 90.012z",
164
- fill: "#fca326"
165
- }
166
- ),
167
- /* @__PURE__ */ jsx("path", { d: "M14.956 91.105H80.97L52.601 3.79c-1.46-4.493-7.816-4.492-9.275 0z", fill: "#e24329" }),
168
- /* @__PURE__ */ jsx("path", { d: "m128.075 236.074l47.104-144.97h66.015z", fill: "#fc6d26" }),
169
- /* @__PURE__ */ jsx(
170
- "path",
171
- {
172
- d: "m241.194 91.104l14.314 44.056a9.75 9.75 0 0 1-3.543 10.903l-123.89 90.012z",
173
- fill: "#fca326"
174
- }
175
- ),
176
- /* @__PURE__ */ jsx("path", { d: "M241.194 91.105h-66.015l28.37-87.315c1.46-4.493 7.816-4.492 9.275 0z", fill: "#e24329" })
177
- ] });
178
- var GoogleIcon = ({ className }) => /* @__PURE__ */ jsxs("svg", { className, viewBox: "0 0 256 262", xmlns: "http://www.w3.org/2000/svg", children: [
179
- /* @__PURE__ */ jsx(
180
- "path",
181
- {
182
- d: "M255.878 133.451c0-10.734-.871-18.567-2.756-26.69H130.55v48.448h71.947c-1.45 12.04-9.283 30.172-26.69 42.356l-.244 1.622l38.755 30.023l2.685.268c24.659-22.774 38.875-56.282 38.875-96.027",
183
- fill: "#4285f4"
184
- }
185
- ),
186
- /* @__PURE__ */ jsx(
187
- "path",
188
- {
189
- d: "M130.55 261.1c35.248 0 64.839-11.605 86.453-31.622l-41.196-31.913c-11.024 7.688-25.82 13.055-45.257 13.055c-34.523 0-63.824-22.773-74.269-54.25l-1.531.13l-40.298 31.187l-.527 1.465C35.393 231.798 79.49 261.1 130.55 261.1",
190
- fill: "#34a853"
191
- }
192
- ),
193
- /* @__PURE__ */ jsx(
194
- "path",
195
- {
196
- d: "M56.281 156.37c-2.756-8.123-4.351-16.827-4.351-25.82c0-8.994 1.595-17.697 4.206-25.82l-.073-1.73L15.26 71.312l-1.335.635C5.077 89.644 0 109.517 0 130.55s5.077 40.905 13.925 58.602z",
197
- fill: "#fbbc05"
198
- }
199
- ),
200
- /* @__PURE__ */ jsx(
201
- "path",
202
- {
203
- d: "M130.55 50.479c24.514 0 41.05 10.589 50.479 19.438l36.844-35.974C195.245 12.91 165.798 0 130.55 0C79.49 0 35.393 29.301 13.925 71.947l42.211 32.783c10.59-31.477 39.891-54.251 74.414-54.251",
204
- fill: "#eb4335"
205
- }
206
- )
207
- ] });
208
- var HuggingFaceIcon = ({ className }) => /* @__PURE__ */ jsx("svg", { className, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", children: /* @__PURE__ */ jsx(
209
- "path",
210
- {
211
- fill: "currentColor",
212
- d: "M12.025 1.13c-5.77 0-10.449 4.647-10.449 10.378c0 1.112.178 2.181.503 3.185c.064-.222.203-.444.416-.577a.96.96 0 0 1 .524-.15c.293 0 .584.124.84.284c.278.173.48.408.71.694c.226.282.458.611.684.951v-.014c.017-.324.106-.622.264-.874s.403-.487.762-.543c.3-.047.596.06.787.203s.31.313.4.467c.15.257.212.468.233.542c.01.026.653 1.552 1.657 2.54c.616.605 1.01 1.223 1.082 1.912c.055.537-.096 1.059-.38 1.572c.637.121 1.294.187 1.967.187c.657 0 1.298-.063 1.921-.178c-.287-.517-.44-1.041-.384-1.581c.07-.69.465-1.307 1.081-1.913c1.004-.987 1.647-2.513 1.657-2.539c.021-.074.083-.285.233-.542c.09-.154.208-.323.4-.467a1.08 1.08 0 0 1 .787-.203c.359.056.604.29.762.543s.247.55.265.874v.015c.225-.34.457-.67.683-.952c.23-.286.432-.52.71-.694c.257-.16.547-.284.84-.285a.97.97 0 0 1 .524.151c.228.143.373.388.43.625l.006.04a10.3 10.3 0 0 0 .534-3.273c0-5.731-4.678-10.378-10.449-10.378M8.327 6.583a1.5 1.5 0 0 1 .713.174a1.487 1.487 0 0 1 .617 2.013c-.183.343-.762-.214-1.102-.094c-.38.134-.532.914-.917.71a1.487 1.487 0 0 1 .69-2.803m7.486 0a1.487 1.487 0 0 1 .689 2.803c-.385.204-.536-.576-.916-.71c-.34-.12-.92.437-1.103.094a1.487 1.487 0 0 1 .617-2.013a1.5 1.5 0 0 1 .713-.174m-10.68 1.55a.96.96 0 1 1 0 1.921a.96.96 0 0 1 0-1.92m13.838 0a.96.96 0 1 1 0 1.92a.96.96 0 0 1 0-1.92M8.489 11.458c.588.01 1.965 1.157 3.572 1.164c1.607-.007 2.984-1.155 3.572-1.164c.196-.003.305.12.305.454c0 .886-.424 2.328-1.563 3.202c-.22-.756-1.396-1.366-1.63-1.32q-.011.001-.02.006l-.044.026l-.01.008l-.03.024q-.018.017-.035.036l-.032.04a1 1 0 0 0-.058.09l-.014.025q-.049.088-.11.19a1 1 0 0 1-.083.116a1.2 1.2 0 0 1-.173.18q-.035.029-.075.058a1.3 1.3 0 0 1-.251-.243a1 1 0 0 1-.076-.107c-.124-.193-.177-.363-.337-.444c-.034-.016-.104-.008-.2.022q-.094.03-.216.087q-.06.028-.125.063l-.13.074q-.067.04-.136.086a3 3 0 0 0-.135.096a3 3 0 0 0-.26.219a2 2 0 0 0-.12.121a2 2 0 0 0-.106.128l-.002.002a2 2 0 0 0-.09.132l-.001.001a1.2 1.2 0 0 0-.105.212q-.013.036-.024.073c-1.139-.875-1.563-2.317-1.563-3.203c0-.334.109-.457.305-.454m.836 10.354c.824-1.19.766-2.082-.365-3.194c-1.13-1.112-1.789-2.738-1.789-2.738s-.246-.945-.806-.858s-.97 1.499.202 2.362c1.173.864-.233 1.45-.685.64c-.45-.812-1.683-2.896-2.322-3.295s-1.089-.175-.938.647s2.822 2.813 2.562 3.244s-1.176-.506-1.176-.506s-2.866-2.567-3.49-1.898s.473 1.23 2.037 2.16c1.564.932 1.686 1.178 1.464 1.53s-3.675-2.511-4-1.297c-.323 1.214 3.524 1.567 3.287 2.405c-.238.839-2.71-1.587-3.216-.642c-.506.946 3.49 2.056 3.522 2.064c1.29.33 4.568 1.028 5.713-.624m5.349 0c-.824-1.19-.766-2.082.365-3.194c1.13-1.112 1.789-2.738 1.789-2.738s.246-.945.806-.858s.97 1.499-.202 2.362c-1.173.864.233 1.45.685.64c.451-.812 1.683-2.896 2.322-3.295s1.089-.175.938.647s-2.822 2.813-2.562 3.244s1.176-.506 1.176-.506s2.866-2.567 3.49-1.898s-.473 1.23-2.037 2.16c-1.564.932-1.686 1.178-1.464 1.53s3.675-2.511 4-1.297c.323 1.214-3.524 1.567-3.287 2.405c.238.839 2.71-1.587 3.216-.642c.506.946-3.49 2.056-3.522 2.064c-1.29.33-4.568 1.028-5.713-.624"
213
- }
214
- ) });
215
- var KickIcon = ({ className }) => /* @__PURE__ */ jsx(
216
- "svg",
217
- {
218
- className,
219
- xmlns: "http://www.w3.org/2000/svg",
220
- width: 24,
221
- height: 24,
222
- viewBox: "0 0 24 24",
223
- children: /* @__PURE__ */ jsx(
224
- "path",
225
- {
226
- fill: "currentColor",
227
- d: "M1.333 0h8v5.333H12V2.667h2.667V0h8v8H20v2.667h-2.667v2.666H20V16h2.667v8h-8v-2.667H12v-2.666H9.333V24h-8Z"
228
- }
229
- )
230
- }
231
- );
232
- var LinearIcon = ({ className }) => /* @__PURE__ */ jsx("svg", { className, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", children: /* @__PURE__ */ jsx(
233
- "path",
234
- {
235
- fill: "currentColor",
236
- d: "M2.886 4.18A11.98 11.98 0 0 1 11.99 0C18.624 0 24 5.376 24 12.009c0 3.64-1.62 6.903-4.18 9.105L2.887 4.18ZM1.817 5.626l16.556 16.556q-.787.496-1.65.866L.951 7.277q.371-.863.866-1.65ZM.322 9.163l14.515 14.515q-1.066.26-2.195.322L0 11.358a12 12 0 0 1 .322-2.195m-.17 4.862l9.823 9.824a12.02 12.02 0 0 1-9.824-9.824Z"
237
- }
238
- ) });
239
- var LinkedInIcon = ({ className }) => /* @__PURE__ */ jsxs("svg", { className, viewBox: "0 0 128 128", xmlns: "http://www.w3.org/2000/svg", children: [
240
- /* @__PURE__ */ jsx(
241
- "path",
242
- {
243
- d: "M116 3H12a8.91 8.91 0 0 0-9 8.8v104.42a8.91 8.91 0 0 0 9 8.78h104a8.93 8.93 0 0 0 9-8.81V11.77A8.93 8.93 0 0 0 116 3",
244
- fill: "#0076b2"
245
- }
246
- ),
247
- /* @__PURE__ */ jsx(
248
- "path",
249
- {
250
- d: "M21.06 48.73h18.11V107H21.06zm9.06-29a10.5 10.5 0 1 1-10.5 10.49a10.5 10.5 0 0 1 10.5-10.49m20.41 29h17.36v8h.24c2.42-4.58 8.32-9.41 17.13-9.41C103.6 47.28 107 59.35 107 75v32H88.89V78.65c0-6.75-.12-15.44-9.41-15.44s-10.87 7.36-10.87 15V107H50.53z",
251
- fill: "#fff"
252
- }
253
- )
254
- ] });
255
- var MicrosoftIcon = ({ className }) => /* @__PURE__ */ jsxs("svg", { className, viewBox: "0 0 256 256", xmlns: "http://www.w3.org/2000/svg", children: [
256
- /* @__PURE__ */ jsx("path", { d: "M121.666 121.666H0V0h121.666z", fill: "#f1511b" }),
257
- /* @__PURE__ */ jsx("path", { d: "M256 121.666H134.335V0H256z", fill: "#80cc28" }),
258
- /* @__PURE__ */ jsx("path", { d: "M121.663 256.002H0V134.336h121.663z", fill: "#00adef" }),
259
- /* @__PURE__ */ jsx("path", { d: "M256 256.002H134.335V134.336H256z", fill: "#fbbc09" })
260
- ] });
261
- var NotionIcon = ({ className }) => /* @__PURE__ */ jsx("svg", { className, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", children: /* @__PURE__ */ jsx(
262
- "path",
263
- {
264
- fill: "currentColor",
265
- d: "M4.459 4.208c.746.606 1.026.56 2.428.466l13.215-.793c.28 0 .047-.28-.046-.326L17.86 1.968c-.42-.326-.981-.7-2.055-.607L3.01 2.295c-.466.046-.56.28-.374.466zm.793 3.08v13.904c0 .747.373 1.027 1.214.98l14.523-.84c.841-.046.935-.56.935-1.167V6.354c0-.606-.233-.933-.748-.887l-15.177.887c-.56.047-.747.327-.747.933zm14.337.745c.093.42 0 .84-.42.888l-.7.14v10.264c-.608.327-1.168.514-1.635.514c-.748 0-.935-.234-1.495-.933l-4.577-7.186v6.952L12.21 19s0 .84-1.168.84l-3.222.186c-.093-.186 0-.653.327-.746l.84-.233V9.854L7.822 9.76c-.094-.42.14-1.026.793-1.073l3.456-.233l4.764 7.279v-6.44l-1.215-.139c-.093-.514.28-.887.747-.933zM1.936 1.035l13.31-.98c1.634-.14 2.055-.047 3.082.7l4.249 2.986c.7.513.934.653.934 1.213v16.378c0 1.026-.373 1.634-1.68 1.726l-15.458.934c-.98.047-1.448-.093-1.962-.747l-3.129-4.06c-.56-.747-.793-1.306-.793-1.96V2.667c0-.839.374-1.54 1.447-1.632"
266
- }
267
- ) });
268
- var RedditIcon = ({ className }) => /* @__PURE__ */ jsxs("svg", { className, viewBox: "0 0 256 256", xmlns: "http://www.w3.org/2000/svg", children: [
269
- /* @__PURE__ */ jsx("circle", { cx: "128", cy: "128", fill: "#ff4500", r: "128" }),
270
- /* @__PURE__ */ jsx(
271
- "path",
272
- {
273
- d: "M213.15 129.22c0-10.376-8.391-18.617-18.617-18.617a18.74 18.74 0 0 0-12.97 5.189c-12.818-9.157-30.368-15.107-49.9-15.87l8.544-39.981l27.773 5.95c.307 7.02 6.104 12.667 13.278 12.667c7.324 0 13.275-5.95 13.275-13.278c0-7.324-5.95-13.275-13.275-13.275c-5.188 0-9.768 3.052-11.904 7.478l-30.976-6.562c-.916-.154-1.832 0-2.443.458c-.763.458-1.22 1.22-1.371 2.136l-9.464 44.558c-19.837.612-37.692 6.562-50.662 15.872a18.74 18.74 0 0 0-12.971-5.188c-10.377 0-18.617 8.391-18.617 18.617c0 7.629 4.577 14.037 10.988 16.939a33.6 33.6 0 0 0-.458 5.646c0 28.686 33.42 52.036 74.621 52.036c41.202 0 74.622-23.196 74.622-52.036a35 35 0 0 0-.458-5.646c6.408-2.902 10.985-9.464 10.985-17.093M85.272 142.495c0-7.324 5.95-13.275 13.278-13.275c7.324 0 13.275 5.95 13.275 13.275s-5.95 13.278-13.275 13.278c-7.327.15-13.278-5.953-13.278-13.278m74.317 35.251c-9.156 9.157-26.553 9.768-31.588 9.768c-5.188 0-22.584-.765-31.59-9.768c-1.371-1.373-1.371-3.51 0-4.883c1.374-1.371 3.51-1.371 4.884 0c5.8 5.8 18.008 7.782 26.706 7.782s21.058-1.983 26.704-7.782c1.374-1.371 3.51-1.371 4.884 0c1.22 1.373 1.22 3.51 0 4.883m-2.443-21.822c-7.325 0-13.275-5.95-13.275-13.275s5.95-13.275 13.275-13.275c7.327 0 13.277 5.95 13.277 13.275c0 7.17-5.95 13.275-13.277 13.275",
274
- fill: "#fff"
275
- }
276
- )
277
- ] });
278
- var RobloxIcon = ({ className }) => /* @__PURE__ */ jsx("svg", { className, viewBox: "0 0 24 24", xmlns: "http://www.w3.org/2000/svg", children: /* @__PURE__ */ jsx(
279
- "path",
280
- {
281
- d: "M18.926 23.998L0 18.892L5.075.002L24 5.108ZM15.348 10.09l-5.282-1.453l-1.414 5.273l5.282 1.453z",
282
- fill: "currentColor"
283
- }
284
- ) });
285
- var SlackIcon = ({ className }) => /* @__PURE__ */ jsx("svg", { className, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", children: /* @__PURE__ */ jsx(
286
- "path",
287
- {
288
- fill: "currentColor",
289
- d: "M6 15a2 2 0 0 1-2 2a2 2 0 0 1-2-2a2 2 0 0 1 2-2h2zm1 0a2 2 0 0 1 2-2a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2a2 2 0 0 1-2-2zm2-8a2 2 0 0 1-2-2a2 2 0 0 1 2-2a2 2 0 0 1 2 2v2zm0 1a2 2 0 0 1 2 2a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2a2 2 0 0 1 2-2zm8 2a2 2 0 0 1 2-2a2 2 0 0 1 2 2a2 2 0 0 1-2 2h-2zm-1 0a2 2 0 0 1-2 2a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2a2 2 0 0 1 2 2zm-2 8a2 2 0 0 1 2 2a2 2 0 0 1-2 2a2 2 0 0 1-2-2v-2zm0-1a2 2 0 0 1-2-2a2 2 0 0 1 2-2h5a2 2 0 0 1 2 2a2 2 0 0 1-2 2z"
290
- }
291
- ) });
292
- var SpotifyIcon = ({ className }) => /* @__PURE__ */ jsx("svg", { className, viewBox: "0 0 256 256", xmlns: "http://www.w3.org/2000/svg", children: /* @__PURE__ */ jsx(
293
- "path",
294
- {
295
- d: "M128 0C57.308 0 0 57.309 0 128c0 70.696 57.309 128 128 128c70.697 0 128-57.304 128-128C256 57.314 198.697.007 127.998.007zm58.699 184.614c-2.293 3.76-7.215 4.952-10.975 2.644c-30.053-18.357-67.885-22.515-112.44-12.335a7.98 7.98 0 0 1-9.552-6.007a7.97 7.97 0 0 1 6-9.553c48.76-11.14 90.583-6.344 124.323 14.276c3.76 2.308 4.952 7.215 2.644 10.975m15.667-34.853c-2.89 4.695-9.034 6.178-13.726 3.289c-34.406-21.148-86.853-27.273-127.548-14.92c-5.278 1.594-10.852-1.38-12.454-6.649c-1.59-5.278 1.386-10.842 6.655-12.446c46.485-14.106 104.275-7.273 143.787 17.007c4.692 2.89 6.175 9.034 3.286 13.72zm1.345-36.293C162.457 88.964 94.394 86.71 55.007 98.666c-6.325 1.918-13.014-1.653-14.93-7.978c-1.917-6.328 1.65-13.012 7.98-14.935C93.27 62.027 168.434 64.68 215.929 92.876c5.702 3.376 7.566 10.724 4.188 16.405c-3.362 5.69-10.73 7.565-16.4 4.187z",
296
- fill: "#1ed760"
297
- }
298
- ) });
299
- var TikTokIcon = ({ className }) => /* @__PURE__ */ jsxs("svg", { className, viewBox: "0 0 256 290", xmlns: "http://www.w3.org/2000/svg", children: [
300
- /* @__PURE__ */ jsx(
301
- "path",
302
- {
303
- d: "M189.72 104.421c18.678 13.345 41.56 21.197 66.273 21.197v-47.53a67 67 0 0 1-13.918-1.456v37.413c-24.711 0-47.59-7.851-66.272-21.195v96.996c0 48.523-39.356 87.855-87.9 87.855c-18.113 0-34.949-5.473-48.934-14.86c15.962 16.313 38.222 26.432 62.848 26.432c48.548 0 87.905-39.332 87.905-87.857v-96.995zm17.17-47.952c-9.546-10.423-15.814-23.893-17.17-38.785v-6.113h-13.189c3.32 18.927 14.644 35.097 30.358 44.898M69.673 225.607a40 40 0 0 1-8.203-24.33c0-22.192 18.001-40.186 40.21-40.186a40.3 40.3 0 0 1 12.197 1.883v-48.593c-4.61-.631-9.262-.9-13.912-.801v37.822a40.3 40.3 0 0 0-12.203-1.882c-22.208 0-40.208 17.992-40.208 40.187c0 15.694 8.997 29.281 22.119 35.9",
304
- fill: "#ff004f"
305
- }
306
- ),
307
- /* @__PURE__ */ jsx("path", { d: "M175.803 92.849c18.683 13.344 41.56 21.195 66.272 21.195V76.631c-13.794-2.937-26.005-10.141-35.186-20.162c-15.715-9.802-27.038-25.972-30.358-44.898h-34.643v189.843c-.079 22.132-18.049 40.052-40.21 40.052c-13.058 0-24.66-6.221-32.007-15.86c-13.12-6.618-22.118-20.206-22.118-35.898c0-22.193 18-40.187 40.208-40.187c4.255 0 8.356.662 12.203 1.882v-37.822c-47.692.985-86.047 39.933-86.047 87.834c0 23.912 9.551 45.589 25.053 61.428c13.985 9.385 30.82 14.86 48.934 14.86c48.545 0 87.9-39.335 87.9-87.857z" }),
308
- /* @__PURE__ */ jsx(
309
- "path",
310
- {
311
- d: "M242.075 76.63V66.516a66.3 66.3 0 0 1-35.186-10.047a66.47 66.47 0 0 0 35.186 20.163M176.53 11.57a68 68 0 0 1-.728-5.457V0h-47.834v189.845c-.076 22.13-18.046 40.05-40.208 40.05a40.06 40.06 0 0 1-18.09-4.287c7.347 9.637 18.949 15.857 32.007 15.857c22.16 0 40.132-17.918 40.21-40.05V11.571zM99.966 113.58v-10.769a89 89 0 0 0-12.061-.818C39.355 101.993 0 141.327 0 189.845c0 30.419 15.467 57.227 38.971 72.996c-15.502-15.838-25.053-37.516-25.053-61.427c0-47.9 38.354-86.848 86.048-87.833",
312
- fill: "#00f2ea"
313
- }
314
- )
315
- ] });
316
- var TwitchIcon = ({ className }) => /* @__PURE__ */ jsxs(
317
- "svg",
318
- {
319
- className,
320
- version: "1.1",
321
- viewBox: "0 0 2400 2800",
322
- x: "0px",
323
- xmlSpace: "preserve",
324
- xmlns: "http://www.w3.org/2000/svg",
325
- xmlnsXlink: "http://www.w3.org/1999/xlink",
326
- y: "0px",
327
- children: [
328
- /* @__PURE__ */ jsx("style", { type: "text/css", children: `
329
- .st0{fill:#FFFFFF}
330
- .st1{fill:#9146FF}
331
- ` }),
332
- /* @__PURE__ */ jsx("title", { children: "Asset 2" }),
333
- /* @__PURE__ */ jsxs("g", { children: [
334
- /* @__PURE__ */ jsx(
335
- "polygon",
336
- {
337
- className: "st0",
338
- points: "2200,1300 1800,1700 1400,1700 1050,2050 1050,1700 600,1700 600,200 2200,200"
339
- }
340
- ),
341
- /* @__PURE__ */ jsx("g", { children: /* @__PURE__ */ jsxs("g", { children: [
342
- /* @__PURE__ */ jsx(
343
- "path",
344
- {
345
- className: "st1",
346
- d: "M500,0L0,500v1800h600v500l500-500h400l900-900V0H500z M2200,1300l-400,400h-400l-350,350v-350H600V200h1600V1300z"
347
- }
348
- ),
349
- /* @__PURE__ */ jsx("rect", { className: "st1", height: "600", width: "200", x: "1700", y: "550" }),
350
- /* @__PURE__ */ jsx("rect", { className: "st1", height: "600", width: "200", x: "1150", y: "550" })
351
- ] }) })
352
- ] })
353
- ]
354
- }
355
- );
356
- var VKIcon = ({ className }) => /* @__PURE__ */ jsx("svg", { className, viewBox: "0 0 576 512", xmlns: "http://www.w3.org/2000/svg", children: /* @__PURE__ */ jsx(
357
- "path",
358
- {
359
- d: "M545 117.7c3.7-12.5 0-21.7-17.8-21.7h-58.9c-15 0-21.9 7.9-25.6 16.7c0 0-30 73.1-72.4 120.5c-13.7 13.7-20 18.1-27.5 18.1c-3.7 0-9.4-4.4-9.4-16.9V117.7c0-15-4.2-21.7-16.6-21.7h-92.6c-9.4 0-15 7-15 13.5c0 14.2 21.2 17.5 23.4 57.5v86.8c0 19-3.4 22.5-10.9 22.5c-20 0-68.6-73.4-97.4-157.4c-5.8-16.3-11.5-22.9-26.6-22.9H38.8c-16.8 0-20.2 7.9-20.2 16.7c0 15.6 20 93.1 93.1 195.5C160.4 378.1 229 416 291.4 416c37.5 0 42.1-8.4 42.1-22.9c0-66.8-3.4-73.1 15.4-73.1c8.7 0 23.7 4.4 58.7 38.1c40 40 46.6 57.9 69 57.9h58.9c16.8 0 25.3-8.4 20.4-25c-11.2-34.9-86.9-106.7-90.3-111.5c-8.7-11.2-6.2-16.2 0-26.2c.1-.1 72-101.3 79.4-135.6",
360
- fill: "currentColor"
361
- }
362
- ) });
363
- var XIcon = ({ className }) => /* @__PURE__ */ jsx("svg", { className, viewBox: "0 0 512 512", xmlns: "http://www.w3.org/2000/svg", children: /* @__PURE__ */ jsx(
364
- "path",
365
- {
366
- d: "M389.2 48h70.6L305.6 224.2L487 464H345L233.7 318.6L106.5 464H35.8l164.9-188.5L26.8 48h145.6l100.5 132.9zm-24.8 373.8h39.1L151.1 88h-42z",
367
- fill: "currentColor"
368
- }
369
- ) });
370
- var ZoomIcon = ({ className }) => /* @__PURE__ */ jsx(
371
- "svg",
372
- {
373
- className,
374
- xmlns: "http://www.w3.org/2000/svg",
375
- width: 512,
376
- height: 117,
377
- viewBox: "0 0 512 117",
378
- children: /* @__PURE__ */ jsx(
379
- "path",
380
- {
381
- fill: "#0b5cff",
382
- d: "M107.472 114.706H16.348c-5.968 0-11.791-3.203-14.557-8.589C-1.41 99.858-.247 92.434 4.702 87.63L68.17 24.164H22.607C10.088 24.164.044 13.974.044 1.6h83.992c5.968 0 11.79 3.203 14.556 8.589c3.203 6.259 2.038 13.683-2.911 18.486L32.214 92.143h52.55c12.518 0 22.708 10.19 22.708 22.563M468.183 0c-13.1 0-24.746 5.677-32.898 14.702C427.134 5.677 415.488 0 402.388 0c-24.164 0-43.961 20.67-43.961 44.834v69.872c12.518 0 22.562-10.19 22.562-22.563V44.689c0-11.646 9.025-21.544 20.67-21.98c12.228-.437 22.272 9.315 22.272 21.397v48.037c0 12.519 10.19 22.563 22.563 22.563V44.543c0-11.645 9.025-21.544 20.67-21.98c12.228-.437 22.272 9.316 22.272 21.398v48.036c0 12.52 10.19 22.563 22.563 22.563V44.69C512.144 20.67 492.347 0 468.183 0M221.595 58.226c0 32.17-26.056 58.226-58.226 58.226s-58.226-26.056-58.226-58.226S131.199 0 163.369 0s58.226 26.056 58.226 58.226m-22.563 0c0-19.651-16.012-35.663-35.663-35.663s-35.664 16.012-35.664 35.663c0 19.652 16.013 35.664 35.664 35.664s35.663-16.012 35.663-35.664m148.04 0c0 32.17-26.056 58.226-58.226 58.226S230.62 90.396 230.62 58.226S256.676 0 288.846 0s58.227 26.056 58.227 58.226m-22.562 0c0-19.651-16.012-35.663-35.664-35.663c-19.65 0-35.663 16.012-35.663 35.663c0 19.652 16.012 35.664 35.663 35.664c19.652 0 35.664-16.012 35.664-35.664"
383
- }
384
- )
385
- }
386
- );
387
-
388
- // src/lib/social-providers.ts
389
- var socialProviders = [
390
- {
391
- provider: "apple",
392
- name: "Apple",
393
- icon: AppleIcon
394
- },
395
- {
396
- provider: "discord",
397
- name: "Discord",
398
- icon: DiscordIcon
399
- },
400
- {
401
- provider: "dropbox",
402
- name: "Dropbox",
403
- icon: DropboxIcon
404
- },
405
- {
406
- provider: "facebook",
407
- name: "Facebook",
408
- icon: FacebookIcon
409
- },
410
- {
411
- provider: "github",
412
- name: "GitHub",
413
- icon: GitHubIcon
414
- },
415
- {
416
- provider: "gitlab",
417
- name: "GitLab",
418
- icon: GitLabIcon
419
- },
420
- {
421
- provider: "google",
422
- name: "Google",
423
- icon: GoogleIcon
424
- },
425
- {
426
- provider: "huggingface",
427
- name: "Hugging Face",
428
- icon: HuggingFaceIcon
429
- },
430
- {
431
- provider: "kick",
432
- name: "Kick",
433
- icon: KickIcon
434
- },
435
- {
436
- provider: "linear",
437
- name: "Linear",
438
- icon: LinearIcon
439
- },
440
- {
441
- provider: "linkedin",
442
- name: "LinkedIn",
443
- icon: LinkedInIcon
444
- },
445
- {
446
- provider: "microsoft",
447
- name: "Microsoft",
448
- icon: MicrosoftIcon
449
- },
450
- {
451
- provider: "notion",
452
- name: "Notion",
453
- icon: NotionIcon
454
- },
455
- {
456
- provider: "reddit",
457
- name: "Reddit",
458
- icon: RedditIcon
459
- },
460
- {
461
- provider: "roblox",
462
- name: "Roblox",
463
- icon: RobloxIcon
464
- },
465
- {
466
- provider: "slack",
467
- name: "Slack",
468
- icon: SlackIcon
469
- },
470
- {
471
- provider: "spotify",
472
- name: "Spotify",
473
- icon: SpotifyIcon
474
- },
475
- {
476
- provider: "tiktok",
477
- name: "TikTok",
478
- icon: TikTokIcon
479
- },
480
- {
481
- provider: "twitch",
482
- name: "Twitch",
483
- icon: TwitchIcon
484
- },
485
- {
486
- provider: "vk",
487
- name: "VK",
488
- icon: VKIcon
489
- },
490
- {
491
- provider: "twitter",
492
- name: "X",
493
- icon: XIcon
494
- },
495
- {
496
- provider: "zoom",
497
- name: "Zoom",
498
- icon: ZoomIcon
499
- }
500
- ];
501
-
502
- export {
503
- defaultAuthQueryOptions,
504
- getTranslations,
505
- resizeAndCropImage,
506
- fileToBase64,
507
- getPasswordSchema,
508
- AppleIcon,
509
- DiscordIcon,
510
- DropboxIcon,
511
- FacebookIcon,
512
- GitHubIcon,
513
- GitLabIcon,
514
- GoogleIcon,
515
- HuggingFaceIcon,
516
- KickIcon,
517
- LinearIcon,
518
- LinkedInIcon,
519
- MicrosoftIcon,
520
- NotionIcon,
521
- RedditIcon,
522
- RobloxIcon,
523
- SlackIcon,
524
- SpotifyIcon,
525
- TikTokIcon,
526
- TwitchIcon,
527
- VKIcon,
528
- XIcon,
529
- ZoomIcon,
530
- socialProviders
531
- };