@customafk/lunas-ui 0.0.2-j → 0.0.2-l
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/Atoms/Button/index.d.ts +2 -2
- package/dist/Atoms/Command/index.d.ts +7 -7
- package/dist/Authentication/SignIn/index.d.ts +1 -1
- package/dist/Authentication/SignIn/index.js +99 -53
- package/dist/Authentication/SignUp/index.d.ts +1 -1
- package/dist/Authentication/SignUp/index.js +151 -89
- package/dist/Icons/index.d.ts +3 -1
- package/dist/Icons/index.js +124 -94
- package/dist/Molecules/AuthenForm/index.d.ts +4 -4
- package/dist/Organisms/Header/index.d.ts +17 -0
- package/dist/Organisms/Header/index.js +293 -206
- package/package.json +13 -1
|
@@ -4,8 +4,8 @@ import * as class_variance_authority_dist_types from 'class-variance-authority/d
|
|
|
4
4
|
import { VariantProps } from 'class-variance-authority';
|
|
5
5
|
|
|
6
6
|
declare const buttonVariants: (props?: ({
|
|
7
|
-
variant?: "
|
|
8
|
-
size?: "
|
|
7
|
+
variant?: "default" | "secondary" | "outline" | "destructive" | "destructive-secondary" | "destructive-outline" | "sort-outline" | "normal" | null | undefined;
|
|
8
|
+
size?: "default" | "base" | "large" | "small" | null | undefined;
|
|
9
9
|
} & class_variance_authority_dist_types.ClassProp) | undefined) => string;
|
|
10
10
|
|
|
11
11
|
interface ButtonProps extends ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariants> {
|
|
@@ -8,7 +8,7 @@ declare const Command: React.ForwardRefExoticComponent<Omit<{
|
|
|
8
8
|
ref?: React.Ref<HTMLDivElement>;
|
|
9
9
|
} & {
|
|
10
10
|
asChild?: boolean;
|
|
11
|
-
}, "key" | keyof React.HTMLAttributes<HTMLDivElement
|
|
11
|
+
}, "asChild" | "key" | keyof React.HTMLAttributes<HTMLDivElement>> & {
|
|
12
12
|
label?: string;
|
|
13
13
|
shouldFilter?: boolean;
|
|
14
14
|
filter?: (value: string, search: string, keywords?: string[]) => number;
|
|
@@ -26,7 +26,7 @@ declare const CommandInput: React.ForwardRefExoticComponent<Omit<Omit<Pick<Pick<
|
|
|
26
26
|
ref?: React.Ref<HTMLInputElement>;
|
|
27
27
|
} & {
|
|
28
28
|
asChild?: boolean;
|
|
29
|
-
}, "
|
|
29
|
+
}, "asChild" | "key" | keyof React.InputHTMLAttributes<HTMLInputElement>>, "type" | "value" | "onChange"> & {
|
|
30
30
|
value?: string;
|
|
31
31
|
onValueChange?: (search: string) => void;
|
|
32
32
|
} & React.RefAttributes<HTMLInputElement>, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
@@ -36,7 +36,7 @@ declare const CommandList: React.ForwardRefExoticComponent<Omit<{
|
|
|
36
36
|
ref?: React.Ref<HTMLDivElement>;
|
|
37
37
|
} & {
|
|
38
38
|
asChild?: boolean;
|
|
39
|
-
}, "key" | keyof React.HTMLAttributes<HTMLDivElement
|
|
39
|
+
}, "asChild" | "key" | keyof React.HTMLAttributes<HTMLDivElement>> & {
|
|
40
40
|
label?: string;
|
|
41
41
|
} & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
42
42
|
declare const CommandEmpty: React.ForwardRefExoticComponent<Omit<{
|
|
@@ -45,14 +45,14 @@ declare const CommandEmpty: React.ForwardRefExoticComponent<Omit<{
|
|
|
45
45
|
ref?: React.Ref<HTMLDivElement>;
|
|
46
46
|
} & {
|
|
47
47
|
asChild?: boolean;
|
|
48
|
-
}, "key" | keyof React.HTMLAttributes<HTMLDivElement
|
|
48
|
+
}, "asChild" | "key" | keyof React.HTMLAttributes<HTMLDivElement>> & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
49
49
|
declare const CommandGroup: React.ForwardRefExoticComponent<Omit<{
|
|
50
50
|
children?: React.ReactNode;
|
|
51
51
|
} & Omit<Pick<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | keyof React.HTMLAttributes<HTMLDivElement>> & {
|
|
52
52
|
ref?: React.Ref<HTMLDivElement>;
|
|
53
53
|
} & {
|
|
54
54
|
asChild?: boolean;
|
|
55
|
-
}, "key" | keyof React.HTMLAttributes<HTMLDivElement
|
|
55
|
+
}, "asChild" | "key" | keyof React.HTMLAttributes<HTMLDivElement>>, "value" | "heading"> & {
|
|
56
56
|
heading?: React.ReactNode;
|
|
57
57
|
value?: string;
|
|
58
58
|
forceMount?: boolean;
|
|
@@ -61,7 +61,7 @@ declare const CommandSeparator: React.ForwardRefExoticComponent<Omit<Pick<Pick<R
|
|
|
61
61
|
ref?: React.Ref<HTMLDivElement>;
|
|
62
62
|
} & {
|
|
63
63
|
asChild?: boolean;
|
|
64
|
-
}, "key" | keyof React.HTMLAttributes<HTMLDivElement
|
|
64
|
+
}, "asChild" | "key" | keyof React.HTMLAttributes<HTMLDivElement>> & {
|
|
65
65
|
alwaysRender?: boolean;
|
|
66
66
|
} & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
67
67
|
declare const CommandItem: React.ForwardRefExoticComponent<Omit<{
|
|
@@ -70,7 +70,7 @@ declare const CommandItem: React.ForwardRefExoticComponent<Omit<{
|
|
|
70
70
|
ref?: React.Ref<HTMLDivElement>;
|
|
71
71
|
} & {
|
|
72
72
|
asChild?: boolean;
|
|
73
|
-
}, "key" | keyof React.HTMLAttributes<HTMLDivElement
|
|
73
|
+
}, "asChild" | "key" | keyof React.HTMLAttributes<HTMLDivElement>>, "disabled" | "value" | "onSelect"> & {
|
|
74
74
|
disabled?: boolean;
|
|
75
75
|
onSelect?: (value: string) => void;
|
|
76
76
|
value?: string;
|
|
@@ -13,7 +13,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
13
13
|
}>;
|
|
14
14
|
|
|
15
15
|
interface IProps {
|
|
16
|
-
onSubmit: (values: z.infer<typeof formSchema>) => void
|
|
16
|
+
onSubmit: (values: z.infer<typeof formSchema>) => Promise<void>;
|
|
17
17
|
onForgotPassword?: () => void;
|
|
18
18
|
onSignUp?: () => void;
|
|
19
19
|
}
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
import { memo as memo7 } from "react";
|
|
3
3
|
|
|
4
4
|
// packages/Authentication/SignIn/components/Form.tsx
|
|
5
|
-
import { memo as memo5 } from "react";
|
|
5
|
+
import { memo as memo5, useState as useState2 } from "react";
|
|
6
6
|
import { useForm } from "react-hook-form";
|
|
7
7
|
|
|
8
8
|
// packages/Authentication/SignIn/validates.ts
|
|
@@ -474,7 +474,7 @@ var Lucide2MailIcon_default = Lucide2MainIcon;
|
|
|
474
474
|
|
|
475
475
|
// packages/Authentication/Atoms/EmailInput/index.tsx
|
|
476
476
|
import { jsx as jsx5, jsxs as jsxs2 } from "react/jsx-runtime";
|
|
477
|
-
var EmailInput = ({ isErrored = false, onChange }) => {
|
|
477
|
+
var EmailInput = ({ isErrored = false, onChange, onBlur }) => {
|
|
478
478
|
const containerRef = useRef(null);
|
|
479
479
|
const inputRef = useRef(null);
|
|
480
480
|
const handleFocusContainer = useCallback(() => {
|
|
@@ -512,7 +512,8 @@ var EmailInput = ({ isErrored = false, onChange }) => {
|
|
|
512
512
|
ref: inputRef,
|
|
513
513
|
type: "text",
|
|
514
514
|
placeholder: "Email ng\u01B0\u1EDDi d\xF9ng",
|
|
515
|
-
onChange
|
|
515
|
+
onChange,
|
|
516
|
+
onBlur
|
|
516
517
|
}
|
|
517
518
|
)
|
|
518
519
|
]
|
|
@@ -563,7 +564,7 @@ var ErrorMsg = ({ message = "" }) => {
|
|
|
563
564
|
className: cn(
|
|
564
565
|
"flex h-0 items-center gap-x-1 overflow-auto text-ui-small-note font-normal",
|
|
565
566
|
message && "h-4",
|
|
566
|
-
"transition-
|
|
567
|
+
"transition-none duration-300 ease-in-out",
|
|
567
568
|
"[&>p]:text-ui-destructive-600"
|
|
568
569
|
),
|
|
569
570
|
role: "alert",
|
|
@@ -683,7 +684,7 @@ var Lucide2LockIcon_default = Lucide2LockIcon;
|
|
|
683
684
|
|
|
684
685
|
// packages/Authentication/Atoms/PasswordInput/index.tsx
|
|
685
686
|
import { jsx as jsx11, jsxs as jsxs7 } from "react/jsx-runtime";
|
|
686
|
-
var PasswordInput = ({ isErrored, placeholder, onChange }) => {
|
|
687
|
+
var PasswordInput = ({ isErrored, placeholder, onChange, onBlur }) => {
|
|
687
688
|
const containerRef = useRef2(null);
|
|
688
689
|
const inputRef = useRef2(null);
|
|
689
690
|
const [showPassword, setShowPassword] = useState(false);
|
|
@@ -725,7 +726,8 @@ var PasswordInput = ({ isErrored, placeholder, onChange }) => {
|
|
|
725
726
|
ref: inputRef,
|
|
726
727
|
type: showPassword ? "text" : "password",
|
|
727
728
|
placeholder: placeholder ?? "M\u1EADt kh\u1EA9u",
|
|
728
|
-
onChange
|
|
729
|
+
onChange,
|
|
730
|
+
onBlur
|
|
729
731
|
}
|
|
730
732
|
),
|
|
731
733
|
/* @__PURE__ */ jsx11("button", { type: "button", onClick: toggleShowPassword, className: "p-2", children: showPassword ? /* @__PURE__ */ jsx11(Lucide2EyeOffIcon_default, { size: 16, color: "#9CA3AF" }) : /* @__PURE__ */ jsx11(Lucide2EyeIcon_default, { size: 16, color: "#9CA3AF" }) })
|
|
@@ -736,6 +738,35 @@ var PasswordInput = ({ isErrored, placeholder, onChange }) => {
|
|
|
736
738
|
var MemoizedPasswordInput = memo3(PasswordInput);
|
|
737
739
|
var PasswordInput_default = MemoizedPasswordInput;
|
|
738
740
|
|
|
741
|
+
// packages/Icons/Lucide2LoadingIcon.tsx
|
|
742
|
+
import { jsx as jsx12, jsxs as jsxs8 } from "react/jsx-runtime";
|
|
743
|
+
var Lucide2LoadingIcon = ({ size, color }) => {
|
|
744
|
+
return /* @__PURE__ */ jsxs8(
|
|
745
|
+
"svg",
|
|
746
|
+
{
|
|
747
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
748
|
+
width: size ?? 16,
|
|
749
|
+
height: size ?? 16,
|
|
750
|
+
viewBox: "0 0 16 16",
|
|
751
|
+
fill: color ?? "currentColor",
|
|
752
|
+
children: [
|
|
753
|
+
/* @__PURE__ */ jsx12("g", { clipPath: "url(#clip0_1948_196)", children: /* @__PURE__ */ jsx12(
|
|
754
|
+
"path",
|
|
755
|
+
{
|
|
756
|
+
d: "M8 1.33333V3.99999M10.8 5.19999L12.7333 3.26666M12 7.99999H14.6667M10.8 10.8L12.7333 12.7333M8 12V14.6667M3.26667 12.7333L5.2 10.8M1.33333 7.99999H4M3.26667 3.26666L5.2 5.19999",
|
|
757
|
+
stroke: color ?? "currentColor",
|
|
758
|
+
strokeWidth: "2",
|
|
759
|
+
strokeLinecap: "round",
|
|
760
|
+
strokeLinejoin: "round"
|
|
761
|
+
}
|
|
762
|
+
) }),
|
|
763
|
+
/* @__PURE__ */ jsx12("defs", { children: /* @__PURE__ */ jsx12("clipPath", { id: "clip0_1948_196", children: /* @__PURE__ */ jsx12("rect", { width: "16", height: "16", fill: "white" }) }) })
|
|
764
|
+
]
|
|
765
|
+
}
|
|
766
|
+
);
|
|
767
|
+
};
|
|
768
|
+
var Lucide2LoadingIcon_default = Lucide2LoadingIcon;
|
|
769
|
+
|
|
739
770
|
// packages/Layout/Flex/index.tsx
|
|
740
771
|
import { forwardRef as forwardRef4, memo as memo4, useMemo } from "react";
|
|
741
772
|
|
|
@@ -1038,7 +1069,7 @@ var commonLayout = cva4("", {
|
|
|
1038
1069
|
});
|
|
1039
1070
|
|
|
1040
1071
|
// packages/Layout/Flex/index.tsx
|
|
1041
|
-
import { jsx as
|
|
1072
|
+
import { jsx as jsx13 } from "react/jsx-runtime";
|
|
1042
1073
|
var Flex = memo4(
|
|
1043
1074
|
forwardRef4(
|
|
1044
1075
|
({
|
|
@@ -1121,7 +1152,7 @@ var Flex = memo4(
|
|
|
1121
1152
|
height: heightValue
|
|
1122
1153
|
};
|
|
1123
1154
|
}, [width, height]);
|
|
1124
|
-
return /* @__PURE__ */
|
|
1155
|
+
return /* @__PURE__ */ jsx13(
|
|
1125
1156
|
"div",
|
|
1126
1157
|
{
|
|
1127
1158
|
ref: reference,
|
|
@@ -1165,7 +1196,7 @@ var Flex_default = Flex;
|
|
|
1165
1196
|
// packages/Authentication/SignIn/components/Form.tsx
|
|
1166
1197
|
import { ErrorMessage } from "@hookform/error-message";
|
|
1167
1198
|
import { zodResolver } from "@hookform/resolvers/zod";
|
|
1168
|
-
import { jsx as
|
|
1199
|
+
import { jsx as jsx14, jsxs as jsxs9 } from "react/jsx-runtime";
|
|
1169
1200
|
var Form2 = ({ onSubmit, onForgotPassword, onSignUp }) => {
|
|
1170
1201
|
const form = useForm({
|
|
1171
1202
|
resolver: zodResolver(formSchema),
|
|
@@ -1173,70 +1204,85 @@ var Form2 = ({ onSubmit, onForgotPassword, onSignUp }) => {
|
|
|
1173
1204
|
email: "",
|
|
1174
1205
|
password: ""
|
|
1175
1206
|
},
|
|
1176
|
-
mode: "
|
|
1207
|
+
mode: "all"
|
|
1177
1208
|
});
|
|
1178
1209
|
const {
|
|
1179
1210
|
control,
|
|
1180
1211
|
handleSubmit,
|
|
1181
1212
|
formState: { errors, isDirty, isValid }
|
|
1182
1213
|
} = form;
|
|
1183
|
-
|
|
1184
|
-
|
|
1185
|
-
|
|
1186
|
-
|
|
1214
|
+
const [isSubmitting, setIsSubmitting] = useState2(false);
|
|
1215
|
+
const handelOnSubmit = (values) => {
|
|
1216
|
+
setIsSubmitting(true);
|
|
1217
|
+
onSubmit(values).finally(() => setIsSubmitting(false));
|
|
1218
|
+
};
|
|
1219
|
+
return /* @__PURE__ */ jsx14(Form, { ...form, children: /* @__PURE__ */ jsxs9("form", { onSubmit: handleSubmit(handelOnSubmit), className: "mt-6 flex w-full flex-col gap-y-6", children: [
|
|
1220
|
+
/* @__PURE__ */ jsxs9(Flex_default, { vertical: true, gapY: "4", width: "full", children: [
|
|
1221
|
+
/* @__PURE__ */ jsxs9(Flex_default, { vertical: true, width: "full", align: "start", gapY: "1", children: [
|
|
1222
|
+
/* @__PURE__ */ jsx14(
|
|
1187
1223
|
FormField,
|
|
1188
1224
|
{
|
|
1189
1225
|
name: "email",
|
|
1190
1226
|
control,
|
|
1191
|
-
render: ({ field: { onChange } }) => /* @__PURE__ */
|
|
1227
|
+
render: ({ field: { onChange } }) => /* @__PURE__ */ jsx14(EmailInput_default, { onChange })
|
|
1192
1228
|
}
|
|
1193
1229
|
),
|
|
1194
|
-
/* @__PURE__ */
|
|
1230
|
+
/* @__PURE__ */ jsx14(
|
|
1195
1231
|
ErrorMessage,
|
|
1196
1232
|
{
|
|
1197
1233
|
name: "email",
|
|
1198
1234
|
errors,
|
|
1199
|
-
render: ({ message }) => /* @__PURE__ */
|
|
1235
|
+
render: ({ message }) => /* @__PURE__ */ jsx14(ErrorMsg_default, { message })
|
|
1200
1236
|
}
|
|
1201
1237
|
)
|
|
1202
1238
|
] }),
|
|
1203
|
-
/* @__PURE__ */
|
|
1204
|
-
/* @__PURE__ */
|
|
1239
|
+
/* @__PURE__ */ jsxs9(Flex_default, { vertical: true, width: "full", align: "start", gapY: "1", children: [
|
|
1240
|
+
/* @__PURE__ */ jsx14(
|
|
1205
1241
|
FormField,
|
|
1206
1242
|
{
|
|
1207
1243
|
name: "password",
|
|
1208
1244
|
control,
|
|
1209
|
-
render: ({ field: { onChange } }) => /* @__PURE__ */
|
|
1245
|
+
render: ({ field: { onChange } }) => /* @__PURE__ */ jsx14(PasswordInput_default, { onChange })
|
|
1210
1246
|
}
|
|
1211
1247
|
),
|
|
1212
|
-
/* @__PURE__ */
|
|
1248
|
+
/* @__PURE__ */ jsx14(
|
|
1213
1249
|
ErrorMessage,
|
|
1214
1250
|
{
|
|
1215
1251
|
name: "password",
|
|
1216
1252
|
errors,
|
|
1217
|
-
render: ({ message }) => /* @__PURE__ */
|
|
1253
|
+
render: ({ message }) => /* @__PURE__ */ jsx14(ErrorMsg_default, { message })
|
|
1218
1254
|
}
|
|
1219
1255
|
)
|
|
1220
1256
|
] })
|
|
1221
1257
|
] }),
|
|
1222
|
-
/* @__PURE__ */
|
|
1223
|
-
/* @__PURE__ */
|
|
1258
|
+
/* @__PURE__ */ jsxs9(Flex_default, { vertical: true, gapY: "3", width: "full", className: "overflow-visible", children: [
|
|
1259
|
+
/* @__PURE__ */ jsxs9(
|
|
1224
1260
|
Button_default,
|
|
1225
1261
|
{
|
|
1226
|
-
disabled: !isDirty || !isValid,
|
|
1262
|
+
disabled: !isDirty || !isValid || isSubmitting,
|
|
1227
1263
|
type: "submit",
|
|
1228
|
-
className:
|
|
1229
|
-
|
|
1264
|
+
className: cn(
|
|
1265
|
+
"w-full rounded-sm px-3 py-2 text-ui-p font-bold text-ui-white",
|
|
1266
|
+
!isSubmitting && "[&_svg]:hidden",
|
|
1267
|
+
isSubmitting && "[&_span]:hidden",
|
|
1268
|
+
isSubmitting && "[&_svg]:block",
|
|
1269
|
+
isSubmitting && "[&_svg]:animate-spin",
|
|
1270
|
+
isSubmitting && "opacity-60"
|
|
1271
|
+
),
|
|
1272
|
+
children: [
|
|
1273
|
+
/* @__PURE__ */ jsx14("span", { children: "\u0110\u0103ng nh\u1EADp" }),
|
|
1274
|
+
/* @__PURE__ */ jsx14(Lucide2LoadingIcon_default, { size: 24 })
|
|
1275
|
+
]
|
|
1230
1276
|
}
|
|
1231
1277
|
),
|
|
1232
|
-
/* @__PURE__ */
|
|
1278
|
+
/* @__PURE__ */ jsxs9(
|
|
1233
1279
|
Flex_default,
|
|
1234
1280
|
{
|
|
1235
1281
|
justify: "between",
|
|
1236
1282
|
width: "full",
|
|
1237
1283
|
className: "font-medium text-ui-tertiary-400 *:text-ui-small-note",
|
|
1238
1284
|
children: [
|
|
1239
|
-
/* @__PURE__ */
|
|
1285
|
+
/* @__PURE__ */ jsx14(
|
|
1240
1286
|
"button",
|
|
1241
1287
|
{
|
|
1242
1288
|
type: "button",
|
|
@@ -1249,7 +1295,7 @@ var Form2 = ({ onSubmit, onForgotPassword, onSignUp }) => {
|
|
|
1249
1295
|
children: "Qu\xEAn m\u1EADt kh\u1EA9u"
|
|
1250
1296
|
}
|
|
1251
1297
|
),
|
|
1252
|
-
/* @__PURE__ */
|
|
1298
|
+
/* @__PURE__ */ jsx14(
|
|
1253
1299
|
"button",
|
|
1254
1300
|
{
|
|
1255
1301
|
type: "button",
|
|
@@ -1275,9 +1321,9 @@ var Form_default = MemoizedForm;
|
|
|
1275
1321
|
import { memo as memo6 } from "react";
|
|
1276
1322
|
|
|
1277
1323
|
// packages/Icons/DefaultLogoWithIcon.tsx
|
|
1278
|
-
import { jsx as
|
|
1324
|
+
import { jsx as jsx15, jsxs as jsxs10 } from "react/jsx-runtime";
|
|
1279
1325
|
var DefaultLogoWithIcon = ({ width, height }) => {
|
|
1280
|
-
return /* @__PURE__ */
|
|
1326
|
+
return /* @__PURE__ */ jsxs10(
|
|
1281
1327
|
"svg",
|
|
1282
1328
|
{
|
|
1283
1329
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1286,71 +1332,71 @@ var DefaultLogoWithIcon = ({ width, height }) => {
|
|
|
1286
1332
|
viewBox: "0 0 104 64",
|
|
1287
1333
|
fill: "none",
|
|
1288
1334
|
children: [
|
|
1289
|
-
/* @__PURE__ */
|
|
1290
|
-
/* @__PURE__ */
|
|
1335
|
+
/* @__PURE__ */ jsxs10("g", { clipPath: "url(#clip0_1154_13915)", children: [
|
|
1336
|
+
/* @__PURE__ */ jsx15(
|
|
1291
1337
|
"path",
|
|
1292
1338
|
{
|
|
1293
1339
|
d: "M12.5841 37.5876C10.8738 38.0241 9.11695 38.2524 7.35185 38.2675C5.59312 38.282 3.83825 38.1007 2.11964 37.7271C1.84921 37.6476 1.59961 37.5096 1.3886 37.3228C1.17759 37.1359 1.01036 36.9049 0.898795 36.6462C0.628835 36.1702 0.547898 35.61 0.672065 35.0771C1.1604 33.0548 1.64874 31.0673 2.13708 29.0798C2.62542 27.0924 3.09632 25.1049 3.54978 23.0826C3.35067 23.1645 3.13723 23.206 2.92192 23.2046C2.78001 23.1986 2.64197 23.1566 2.52078 23.0826C2.40711 23.0367 2.30987 22.9578 2.24173 22.8559L0.637184 20.1537L2.27661 18.9507L3.63698 17.9396L4.97992 16.911C4.9977 16.8365 4.9977 16.7588 4.97992 16.6843C4.96746 16.6034 4.96746 16.5211 4.97992 16.4402C5.25897 15.3245 5.53802 14.1738 5.79963 12.9534C6.06124 11.7331 6.35773 10.565 6.70654 9.46666C7.03627 8.28098 7.43815 7.11655 7.90995 5.97987C8.3525 4.87883 8.93896 3.84121 9.65402 2.89406C9.95051 2.52795 10.3168 2.10954 10.7528 1.65625C11.1787 1.22563 11.6527 0.845396 12.1655 0.523046C12.6371 0.223593 13.1774 0.0495608 13.7351 0.0174622C14.0374 0.00871949 14.3379 0.0666746 14.6152 0.187205C14.8926 0.307736 15.1399 0.487881 15.3397 0.714821C15.7442 1.09808 16.0444 1.5781 16.2117 2.10953C16.4227 2.67118 16.5633 3.25676 16.6303 3.85293C16.7116 4.4305 16.7524 5.01306 16.7524 5.59632V7.23511C16.6954 8.4378 16.4175 9.61973 15.9327 10.7219C15.5245 11.8633 14.9922 12.9566 14.3456 13.982C13.5735 14.9844 12.7156 15.9177 11.7818 16.7715C10.84 17.678 9.84587 18.5149 8.85175 19.3343L5.36361 33.9613C6.48902 34.0658 7.6217 34.0658 8.74711 33.9613C9.83522 33.8813 10.9113 33.6825 11.9562 33.3686L12.8282 36.9774V37.2215C12.8806 37.3784 12.7933 37.5004 12.5841 37.5876ZM11.5202 8.43806C11.1714 9.46666 10.84 10.5301 10.5435 11.611L10.84 11.1926C11.3544 10.4565 11.8205 9.68783 12.2352 8.89134C12.6368 8.07989 12.8286 7.18085 12.7933 6.27625C12.8146 6.12006 12.8146 5.96172 12.7933 5.80553C12.27 6.63168 11.8428 7.51492 11.5202 8.43806Z",
|
|
1294
1340
|
fill: "#6C70F0"
|
|
1295
1341
|
}
|
|
1296
1342
|
),
|
|
1297
|
-
/* @__PURE__ */
|
|
1343
|
+
/* @__PURE__ */ jsx15(
|
|
1298
1344
|
"path",
|
|
1299
1345
|
{
|
|
1300
1346
|
d: "M30.2165 24.0066L31.0188 24.5122C31.3603 24.715 31.6867 24.9422 31.9955 25.1921C31.4012 26.4662 30.7254 27.7008 29.9724 28.8881C29.2668 30.0478 28.4106 31.1089 27.426 32.0436C26.6476 32.8293 25.6401 33.3481 24.5483 33.5255C23.9837 33.5616 23.4187 33.4598 22.9022 33.229C22.3857 32.9982 21.933 32.6452 21.5834 32.2005C21.3708 31.9284 21.1949 31.6294 21.0602 31.3114C20.4676 32.0379 19.6905 32.5919 18.8103 32.9153C17.7856 33.2557 16.6783 33.2557 15.6536 32.9153C14.4041 32.595 13.2985 31.8644 12.5142 30.8407C11.7773 29.836 11.2712 28.6811 11.0318 27.4585C10.7679 26.1629 10.6799 24.8376 10.7702 23.5184C10.8279 22.267 10.9678 21.0207 11.1888 19.7876V19.683C11.1661 19.6211 11.1661 19.5531 11.1888 19.4912L11.5724 17.7478L12.9503 17.9396C13.5697 18.0024 14.1824 18.119 14.7815 18.2883C15.1478 18.2883 15.3571 18.6021 15.392 19.0553C15.442 19.5815 15.4007 20.1123 15.2699 20.6244V20.7116C15.2699 21.13 15.078 21.7402 14.9559 22.455C14.8445 23.2522 14.7863 24.0559 14.7815 24.8609C14.7809 25.6422 14.8746 26.4207 15.0606 27.1796C15.1081 27.4795 15.222 27.7651 15.394 28.0154C15.5659 28.2658 15.7917 28.4746 16.0547 28.6266C16.2438 28.7254 16.4507 28.7856 16.6633 28.8036C16.8759 28.8215 17.09 28.7969 17.293 28.7312C17.7383 28.6057 18.1457 28.3721 18.479 28.0513C18.8538 27.7059 19.1821 27.3132 19.4556 26.8832C19.7324 26.4686 19.9332 26.0082 20.0486 25.5233C20.0486 24.3901 20.0486 23.3267 20.0486 22.3155C20.0486 21.3043 20.0486 20.5721 20.1533 19.927L23.5019 19.003H24.1646C24.3067 19.0308 24.4426 19.084 24.5658 19.16C24.6249 19.1911 24.6731 19.2395 24.7043 19.2986C24.7354 19.3577 24.7479 19.4248 24.7402 19.4912C24.7402 19.8573 24.653 20.4326 24.5658 21.2346C24.4786 22.0366 24.4088 22.978 24.3042 23.8322C24.1995 24.6865 24.1472 25.5756 24.1123 26.4822C24.0526 27.1084 24.0526 27.7389 24.1123 28.3651C24.1123 28.7312 24.3042 28.9055 24.5134 28.8881C24.7976 28.8346 25.0556 28.6872 25.2459 28.4697C25.5687 28.1638 25.8716 27.8377 26.1529 27.4934C26.4702 27.1142 26.7671 26.7185 27.0423 26.3079C27.3214 25.9069 27.5656 25.5408 27.7574 25.2095L28.1411 24.5819C28.2113 24.4813 28.2754 24.3765 28.3329 24.2681L28.5248 23.9543C28.5916 23.8285 28.6736 23.7114 28.769 23.6056C28.8524 23.542 28.9471 23.4947 29.048 23.4661C29.1211 23.4564 29.1955 23.4639 29.2652 23.4881C29.3349 23.5123 29.3979 23.5526 29.4492 23.6056C29.6961 23.7555 29.9525 23.8894 30.2165 24.0066Z",
|
|
1301
1347
|
fill: "#6C70F0"
|
|
1302
1348
|
}
|
|
1303
1349
|
),
|
|
1304
|
-
/* @__PURE__ */
|
|
1350
|
+
/* @__PURE__ */ jsx15(
|
|
1305
1351
|
"path",
|
|
1306
1352
|
{
|
|
1307
1353
|
d: "M43.698 24.8783L44.5177 25.3664C44.8646 25.5566 45.1969 25.7722 45.5119 26.0115C44.9943 27.2442 44.4121 28.4488 43.7678 29.6203C43.1906 30.6949 42.4623 31.6812 41.6051 32.5492C40.9313 33.2454 40.0384 33.6887 39.0762 33.8045C38.521 33.7918 37.9754 33.6572 37.4781 33.4101C36.9807 33.1631 36.5439 32.8096 36.1985 32.3749C35.675 31.8658 35.3062 31.2191 35.1346 30.5094C34.9655 29.7896 34.8835 29.0521 34.8905 28.3128C34.8905 27.5457 34.8905 26.7786 34.9951 25.994C35.0452 25.2801 35.0452 24.5636 34.9951 23.8497C34.9951 23.2918 34.8207 22.978 34.5068 22.8908C34.1928 22.8036 33.844 23.1349 33.4429 23.8497C32.9097 25.0104 32.5287 26.2351 32.3093 27.4934C31.8717 29.7943 31.6151 32.126 31.5419 34.4669L27.6526 34.2752V32.2877C27.6526 30.0387 27.6526 27.6677 27.6526 25.1398C27.6526 22.6119 27.827 20.1537 28.0014 17.7827C28.0199 17.6692 28.062 17.5609 28.1251 17.4648C28.1882 17.3686 28.2709 17.2869 28.3677 17.2248C28.406 17.2075 28.4476 17.1985 28.4897 17.1985C28.5318 17.1985 28.5735 17.2075 28.6118 17.2248L32.1 17.3294C32.1 17.7304 32.1 18.1139 31.9953 18.5149C31.8907 18.9159 31.9953 19.2994 31.9953 19.7178C32.386 19.2841 32.8616 18.935 33.3925 18.6921C33.9234 18.4493 34.4986 18.3177 35.0823 18.3057C36.1688 18.3547 37.1993 18.8014 37.9775 19.5609C38.5231 20.0919 38.9148 20.7606 39.1111 21.4961C39.2998 22.2371 39.3994 22.9979 39.4076 23.7625C39.4131 24.5724 39.3665 25.3819 39.2681 26.1858C39.1804 26.9262 39.1513 27.6724 39.1809 28.4174C39.1809 28.9753 39.3204 29.1496 39.582 28.9578C39.9129 28.6855 40.1908 28.3545 40.4017 27.9815C40.7087 27.5039 40.9882 27.0091 41.2389 26.4996L41.797 25.4536C41.797 25.4536 41.9016 25.2444 41.954 25.1398C41.9882 25.0217 42.0412 24.9099 42.1109 24.8085C42.1699 24.6824 42.2462 24.565 42.3377 24.4599L42.5993 24.303C42.6751 24.2917 42.7525 24.2985 42.8252 24.3227C42.8979 24.347 42.9639 24.388 43.0178 24.4424C43.237 24.5991 43.4641 24.7446 43.698 24.8783Z",
|
|
1308
1354
|
fill: "#6C70F0"
|
|
1309
1355
|
}
|
|
1310
1356
|
),
|
|
1311
|
-
/* @__PURE__ */
|
|
1357
|
+
/* @__PURE__ */ jsx15(
|
|
1312
1358
|
"path",
|
|
1313
1359
|
{
|
|
1314
1360
|
d: "M61.5924 24.0066L62.3946 24.5121C62.7304 24.7153 63.051 24.9425 63.3539 25.1921C62.7658 26.466 62.0958 27.7006 61.3482 28.8881C60.6312 30.0446 59.7697 31.105 58.7844 32.0436C58.0106 32.826 57.0097 33.3445 55.9241 33.5255C55.3584 33.5709 54.7904 33.4734 54.2722 33.2418C53.7541 33.0103 53.3026 32.6522 52.9592 32.2005C52.4834 31.5153 52.1784 30.7262 52.0697 29.8992C51.7838 30.2286 51.4749 30.5374 51.1454 30.8232C50.8181 31.121 50.4746 31.4003 50.1164 31.6601C49.4172 32.1766 48.5919 32.4958 47.727 32.5841C46.9394 32.656 46.1465 32.5239 45.4248 32.2005C44.7292 31.8513 44.1303 31.3364 43.6808 30.7012C43.1601 29.9854 42.8029 29.1641 42.6343 28.2953C42.4729 27.4388 42.3912 26.5692 42.3902 25.6976C42.3886 24.8039 42.4999 23.9135 42.7215 23.0477C42.9241 22.1893 43.2286 21.3582 43.6284 20.5721C44.0563 19.7895 44.6102 19.0827 45.2679 18.48C45.8888 17.8634 46.6358 17.3884 47.4577 17.0874C48.2795 16.7865 49.1567 16.6668 50.0292 16.7366C51.8041 16.9247 53.4395 17.7857 54.5986 19.1425L55.1393 18.9856H55.5579C55.7054 19.0135 55.847 19.0666 55.9765 19.1425C56.0355 19.1737 56.0838 19.222 56.115 19.2811C56.1461 19.3402 56.1586 19.4074 56.1509 19.4737C56.1509 19.8398 56.0637 20.4152 55.9765 21.2171C55.8892 22.0191 55.802 22.9605 55.7148 23.8148C55.6276 24.669 55.5404 25.5582 55.523 26.4647C55.4745 27.0914 55.4745 27.7209 55.523 28.3476C55.5928 28.7195 55.7323 28.8939 55.9416 28.8706C56.2244 28.8134 56.4812 28.6667 56.6741 28.4522C56.9954 28.1503 57.2928 27.8239 57.5636 27.4759C57.9073 27.0643 58.2276 26.6335 58.5228 26.1858C58.8018 25.7848 59.0286 25.4187 59.2204 25.0875L59.6216 24.4598C59.6791 24.3515 59.7432 24.2467 59.8134 24.146C59.8695 24.0368 59.9336 23.9319 60.0052 23.8322C60.0662 23.7029 60.1488 23.585 60.2494 23.4835C60.3285 23.4233 60.4169 23.3762 60.511 23.3441C60.5869 23.3328 60.6643 23.3396 60.737 23.3639C60.8097 23.3881 60.8757 23.4291 60.9296 23.4835C61.1361 23.6754 61.3577 23.8504 61.5924 24.0066ZM50.7617 21.4438C50.5257 21.2371 50.2471 21.0848 49.9458 20.9974C49.6445 20.9101 49.3276 20.8898 49.0176 20.9382C48.681 21.0236 48.3681 21.184 48.1023 21.4074C47.8365 21.6308 47.6248 21.9115 47.4828 22.2283C47.0982 22.9202 46.8218 23.6669 46.6631 24.4424C46.4741 25.2122 46.4327 26.0108 46.541 26.796C46.5257 26.9234 46.5257 27.0521 46.541 27.1795C46.5887 27.38 46.6469 27.5779 46.7154 27.7723C46.7629 27.9466 46.8271 28.116 46.9073 28.2779C46.9073 28.4173 47.0468 28.4696 47.1515 28.3999C47.4895 28.2648 47.7933 28.0564 48.0409 27.7897C48.299 27.5406 48.538 27.2725 48.756 26.9878C50.0484 25.4287 50.7575 23.4685 50.7617 21.4438Z",
|
|
1315
1361
|
fill: "#6C70F0"
|
|
1316
1362
|
}
|
|
1317
1363
|
),
|
|
1318
|
-
/* @__PURE__ */
|
|
1364
|
+
/* @__PURE__ */ jsx15(
|
|
1319
1365
|
"path",
|
|
1320
1366
|
{
|
|
1321
1367
|
d: "M79.1899 24.0066L79.9747 24.4425C80.3163 24.6453 80.6427 24.8725 80.9514 25.1224C80.4631 26.1684 79.9224 27.197 79.3469 28.2082C78.8101 29.1571 78.1727 30.0455 77.4458 30.8581C76.7748 31.7205 76.0084 32.5042 75.1611 33.1943C74.3912 33.8101 73.5615 34.3474 72.6845 34.7982C71.7091 35.3239 70.6185 35.5995 69.5103 35.6002C68.627 35.6607 67.7458 35.4542 66.9814 35.0074C66.2096 34.5638 65.5338 33.9712 64.9932 33.264C64.4395 32.5116 64.0367 31.6591 63.8072 30.7535C63.5596 29.88 63.5178 28.9611 63.6851 28.0687L63.9642 26.7089C63.9667 26.6015 64.0033 26.4977 64.0688 26.4125C64.1362 26.3264 64.2244 26.2588 64.3251 26.2161C64.4257 26.1734 64.5356 26.157 64.6444 26.1684L65.4815 26.2904L66.7024 26.4648C67.1907 26.552 67.6965 26.6391 68.2546 26.7089C68.1298 27.1561 68.0308 27.6101 67.9581 28.0687C67.8848 28.425 67.8382 28.7864 67.8186 29.1496C67.7698 29.4323 67.7698 29.7212 67.8186 30.0039C67.9075 30.3177 68.0976 30.5935 68.3592 30.7884C68.6015 30.9728 68.8926 31.082 69.1964 31.1022C69.4923 31.1119 69.7802 31.0056 69.9987 30.8058C70.2629 30.5326 70.4391 30.1865 70.5045 29.8121C70.7113 28.9136 70.6507 27.9743 70.33 27.1098C69.9565 26.2676 69.5252 25.4521 69.0394 24.6691L68.586 23.8148C68.4386 23.5598 68.316 23.2912 68.2197 23.0129C67.6257 23.5037 66.9896 23.9412 66.3187 24.3204C65.6588 24.7027 64.9484 24.9903 64.2084 25.1747C63.4775 25.3231 62.7243 25.3231 61.9934 25.1747C61.176 25.0205 60.4092 24.6672 59.761 24.1461L61.5051 20.6593C62.219 20.8518 62.9712 20.8518 63.6851 20.6593C64.5348 20.4234 65.3456 20.0652 66.092 19.5958C67.2301 18.8549 68.2526 17.9502 69.1266 16.911C69.2105 16.8377 69.2865 16.7559 69.3534 16.6669L69.5627 16.4228L71.0277 14.6794L73.8007 16.5274C73.9206 16.6406 74.0315 16.763 74.1321 16.8936C74.1859 16.9544 74.2237 17.0278 74.2419 17.1069C74.2602 17.1861 74.2584 17.2685 74.2368 17.3468C74.1686 17.6091 74.0435 17.8531 73.8705 18.0616C73.5697 18.4381 73.2371 18.7881 72.8764 19.1077C72.4702 19.4582 72.2142 19.9512 72.1613 20.4849C72.1629 20.9803 72.2761 21.469 72.4927 21.9145C72.722 22.4204 72.9964 22.9047 73.3124 23.3615C73.6116 23.7866 73.8853 24.2291 74.1321 24.6865C74.3961 25.1595 74.6011 25.663 74.7425 26.1858C74.8688 26.7598 74.9504 27.3427 74.9867 27.9292C75.2263 27.7078 75.4425 27.4625 75.632 27.197C75.8587 26.8658 76.068 26.5345 76.2773 26.1684C76.4866 25.8023 76.6785 25.4885 76.818 25.1921C76.9123 24.9949 77.0171 24.8028 77.1319 24.6168L77.3238 24.303L77.5156 23.9892C77.5825 23.8634 77.6644 23.7463 77.7598 23.6405C77.8432 23.5769 77.9379 23.5296 78.0388 23.501C78.1119 23.4912 78.1863 23.4988 78.256 23.523C78.3257 23.5472 78.3887 23.5875 78.44 23.6405C78.6822 23.7778 78.9327 23.9001 79.1899 24.0066Z",
|
|
1322
1368
|
fill: "#6C70F0"
|
|
1323
1369
|
}
|
|
1324
1370
|
),
|
|
1325
|
-
/* @__PURE__ */
|
|
1371
|
+
/* @__PURE__ */ jsx15(
|
|
1326
1372
|
"path",
|
|
1327
1373
|
{
|
|
1328
1374
|
d: "M22.2286 49.4775L23.0309 49.9831C23.3622 50.1923 23.6762 50.4189 24.0075 50.663C23.5192 51.709 22.9785 52.7376 22.403 53.7488C21.8705 54.7004 21.2328 55.5893 20.502 56.3988C19.2274 58.0494 17.6009 59.3954 15.7406 60.3388C14.7747 60.832 13.7034 61.0833 12.6188 61.0711C11.7365 61.1458 10.8528 60.9448 10.0899 60.4957C9.31885 60.051 8.64321 59.4585 8.10162 58.7523C7.55175 58.004 7.14927 57.158 6.91566 56.2593C6.64235 55.3618 6.57675 54.4139 6.72381 53.4873L7.0203 52.1275C6.98957 52.031 6.98957 51.9275 7.0203 51.8311C7.0904 51.7436 7.18158 51.6753 7.28529 51.6326C7.38901 51.5899 7.50186 51.5742 7.61328 51.587C7.88368 51.6449 8.15746 51.6856 8.433 51.709L9.65385 51.8834C10.1422 51.988 10.648 52.0577 11.2061 52.1275C11.0812 52.5747 10.9822 53.0287 10.9096 53.4873C10.9096 53.8534 10.8049 54.2195 10.77 54.5856C10.7113 54.8674 10.7113 55.1582 10.77 55.4399C10.8517 55.7478 11.0363 56.0185 11.2933 56.207C11.5355 56.3914 11.8266 56.5005 12.1304 56.5208C12.276 56.5299 12.4219 56.5099 12.5596 56.462C12.6974 56.4141 12.8242 56.3393 12.9327 56.2419C13.2056 55.9749 13.3832 55.6258 13.4385 55.2481C13.6464 54.3497 13.5857 53.4101 13.2641 52.5459C12.9016 51.6927 12.47 50.8705 11.9735 50.0877L11.52 49.2334C11.3805 48.9545 11.2584 48.693 11.1537 48.4315C10.5628 48.9263 9.92627 49.3641 9.25271 49.739C8.66147 50.11 8.02173 50.3975 7.35167 50.5933C6.58727 50.7808 5.79038 50.7936 5.02036 50.6306C4.25033 50.4676 3.52702 50.133 2.9043 49.6518L4.64837 46.165C5.35992 46.3748 6.1169 46.3748 6.82845 46.165C7.68075 45.9366 8.4926 45.5779 9.23527 45.1016C10.3693 44.3622 11.3913 43.4639 12.2699 42.4342L12.4967 42.1901L12.706 41.946L14.171 40.2026L16.9441 42.0506L17.2929 42.4167C17.3393 42.4848 17.3711 42.5619 17.3861 42.6429C17.4011 42.724 17.3991 42.8073 17.3801 42.8875C17.3128 43.1448 17.1875 43.3833 17.0138 43.5848C16.713 43.9613 16.3804 44.3113 16.0197 44.6309C15.616 44.9885 15.3661 45.4882 15.3221 46.0256C15.3105 46.5204 15.4182 47.0107 15.636 47.4552C15.8723 47.9519 16.1463 48.4299 16.4557 48.8847C16.7605 49.3156 17.04 49.7639 17.2929 50.2272C17.549 50.7243 17.7424 51.2514 17.8684 51.7962C17.9938 52.3703 18.0754 52.9531 18.1126 53.5396L18.2172 53.435C18.4594 53.2212 18.6707 52.9747 18.8451 52.7028C19.0718 52.389 19.2811 52.0403 19.4904 51.6916C19.6997 51.3429 19.8915 51.0117 20.0311 50.7153C20.1225 50.511 20.2274 50.313 20.345 50.1225C20.4229 50.0271 20.4874 49.9215 20.5368 49.8087C20.6071 49.7081 20.6711 49.6033 20.7287 49.4949C20.7958 49.3747 20.8779 49.2634 20.9729 49.1637C21.0503 49.0875 21.1466 49.0333 21.2519 49.0068C21.3566 49.0068 21.4961 49.0068 21.653 49.1637L22.2286 49.4775Z",
|
|
1329
1375
|
fill: "#6C70F0"
|
|
1330
1376
|
}
|
|
1331
1377
|
),
|
|
1332
|
-
/* @__PURE__ */
|
|
1378
|
+
/* @__PURE__ */ jsx15(
|
|
1333
1379
|
"path",
|
|
1334
1380
|
{
|
|
1335
1381
|
d: "M30.7398 49.5299L31.5421 50.0354C31.8836 50.2383 32.21 50.4655 32.5188 50.7154C31.9607 51.9183 31.2805 53.191 30.4782 54.5508C29.7455 55.8068 28.8738 56.9764 27.8795 58.0376C27.139 58.8864 26.1609 59.4936 25.0716 59.781C24.1298 59.9786 23.2577 59.4905 22.4555 58.3166C21.9596 57.5762 21.6103 56.7476 21.4265 55.8758C21.1905 54.7914 21.0446 53.6893 20.9905 52.5808C20.9206 51.3149 20.9206 50.0461 20.9905 48.7802C20.9905 47.4203 21.1649 46.0779 21.3393 44.7181H20.4498H19.8742C19.7295 44.7363 19.583 44.7363 19.4382 44.7181L19.5254 40.9349H21.8102C21.8102 40.656 21.9148 40.2027 22.0369 39.5751C22.159 38.9475 22.2636 38.3373 22.3683 37.6922C22.4729 37.0472 22.595 36.4195 22.6996 35.8442C22.8043 35.2689 22.8566 34.833 22.8915 34.5715L27.0773 35.1992C27.0773 35.4084 26.9726 35.757 26.868 36.2975C26.7633 36.8379 26.6761 37.3958 26.5889 38.0409C26.5017 38.6859 26.3971 39.209 26.3099 39.7843C26.2227 40.3596 26.1703 40.7083 26.1529 40.9349H26.868H27.5133C27.5133 40.9349 27.7051 41.0918 27.8272 41.4928C27.943 41.9392 28.0246 42.3938 28.0714 42.8527C28.1058 43.3169 28.1058 43.7831 28.0714 44.2474C28.0714 44.6658 27.9493 44.875 27.7749 44.875H27.1993H26.9377H25.5948C25.4378 46.0256 25.2983 47.124 25.2111 48.2049C25.1239 49.2858 25.0541 50.2969 25.0367 51.2035C24.9893 51.9873 24.9893 52.7733 25.0367 53.5571C25.0551 54.0565 25.1863 54.5452 25.4204 54.9867C25.5599 55.161 25.7866 54.9867 26.1006 54.6031C26.4757 54.114 26.8194 53.6016 27.1296 53.0689C27.4784 52.4762 27.8098 51.8834 28.1237 51.3256C28.4376 50.7677 28.6295 50.3841 28.7341 50.2272C28.8061 50.1309 28.8647 50.0253 28.9085 49.9134C28.9538 49.8054 29.0062 49.7006 29.0655 49.5996C29.1368 49.4766 29.2185 49.36 29.3097 49.2509C29.3536 49.205 29.4064 49.1685 29.4649 49.1436C29.5233 49.1186 29.5862 49.1058 29.6498 49.1058C29.7133 49.1058 29.7762 49.1186 29.8347 49.1436C29.8931 49.1685 29.9459 49.205 29.9899 49.2509C30.2341 49.3586 30.4845 49.4517 30.7398 49.5299Z",
|
|
1336
1382
|
fill: "#6C70F0"
|
|
1337
1383
|
}
|
|
1338
1384
|
),
|
|
1339
|
-
/* @__PURE__ */
|
|
1385
|
+
/* @__PURE__ */ jsx15(
|
|
1340
1386
|
"path",
|
|
1341
1387
|
{
|
|
1342
1388
|
d: "M56.5345 50.297L57.0228 50.6631L56.4124 51.9009C56.2031 52.3542 55.9764 52.79 55.7497 53.2433C55.5229 53.6966 55.2439 54.1499 54.9823 54.5857L54.1975 55.8758C53.9611 56.3007 53.6867 56.7034 53.3777 57.0788C53.0812 57.4449 52.7848 57.7936 52.5057 58.1597C51.9861 58.7118 51.4003 59.1978 50.7616 59.6067C50.5064 59.7728 50.2164 59.878 49.914 59.9143C49.6116 59.9506 49.3049 59.9169 49.0176 59.8159C48.6648 59.6933 48.3406 59.5002 48.0648 59.2484C47.789 58.9967 47.5672 58.6915 47.413 58.3515C47.2562 58.1024 47.1219 57.8399 47.0119 57.5669C46.8724 57.2531 46.7503 56.9219 46.6108 56.5732C46.3276 55.5282 46.1983 54.4476 46.2271 53.3654C46.2271 52.8423 46.3143 52.3367 46.3666 51.8312C46.4189 51.3256 46.5235 50.82 46.6108 50.297C46.7427 49.3429 46.9408 48.3992 47.2037 47.4727C46.8417 47.4751 46.4859 47.3786 46.1747 47.1937C45.6995 48.1658 45.0626 49.05 44.2911 49.8088C43.5315 50.5877 42.5721 51.1426 41.5181 51.4128C40.9423 51.5265 40.3498 51.5265 39.774 51.4128C39.774 51.7963 39.774 52.1973 39.774 52.5808C39.7575 52.9897 39.7168 53.3972 39.6519 53.8012C39.4166 55.152 38.8931 56.4363 38.1171 57.5669C37.477 58.6069 36.5748 59.4605 35.501 60.0425C34.3411 60.6317 33 60.7564 31.7513 60.3912C30.8173 60.2317 29.9771 59.7278 29.3968 58.9791C29.0726 58.6356 28.8074 58.2409 28.612 57.811C28.4201 57.3926 28.2457 56.9567 28.0713 56.5035C27.8141 55.5736 27.7197 54.6063 27.7922 53.6443C27.8331 52.7157 27.9913 51.796 28.2631 50.9072C28.5216 50.3043 28.8247 49.7215 29.1701 49.1638C29.5045 48.6028 29.9024 48.0821 30.356 47.6122C31.2316 46.6628 32.3367 45.9543 33.5651 45.5549L33.3907 45.3632L33.2512 45.0668C32.9526 44.6219 32.7397 44.1253 32.6233 43.6023C32.5495 43.3165 32.5495 43.0165 32.6233 42.7306C32.6947 42.5305 32.8294 42.3591 33.007 42.2425L36.0242 40.8303L36.7916 42.5737C36.8757 42.7896 36.9747 42.9993 37.0881 43.2014C37.1928 43.3931 37.2974 43.6198 37.4369 43.8987L37.873 44.8576C38.005 45.1048 38.1692 45.3334 38.3613 45.5375C38.588 45.799 38.8148 46.0431 39.0764 46.3046C39.3217 46.5509 39.5904 46.7727 39.8786 46.9671C40.0736 47.1094 40.3017 47.1995 40.5414 47.2286C41.0433 47.0894 41.4697 46.7572 41.7274 46.3046C42.0663 45.8975 42.3372 45.4383 42.5296 44.9448C42.5723 44.8073 42.6371 44.6778 42.7215 44.5612C42.4986 44.301 42.3001 44.0209 42.1285 43.7244C41.9329 43.4168 41.7581 43.0965 41.6053 42.7655C41.3692 42.3322 41.1764 41.8767 41.0297 41.4057C40.9618 41.1309 40.9618 40.8436 41.0297 40.5688C41.1098 40.3845 41.2092 40.2092 41.3262 40.0458L44.326 38.4419C44.4656 38.9018 44.665 39.3414 44.919 39.7494C45.0465 40.0939 45.192 40.4314 45.355 40.7606C45.7643 41.6465 46.4255 42.3923 47.2561 42.905C48.1188 43.3545 49.1055 43.5077 50.064 43.3408C50.3992 43.3385 50.7313 43.4037 51.0407 43.5326C51.3175 43.7074 51.5648 43.9252 51.7732 44.1777C51.9703 44.4585 52.1178 44.771 52.2092 45.1017C52.3129 45.4009 52.3129 45.7264 52.2092 46.0257C51.9865 46.5606 51.7943 47.1077 51.6337 47.6645C51.4941 48.2223 51.3546 48.7802 51.2325 49.4078C51.0992 49.9826 51.0002 50.5647 50.936 51.1512C50.936 51.7091 50.814 52.2844 50.7442 52.8946V53.4351C50.7262 53.5331 50.7262 53.6335 50.7442 53.7315C50.7442 54.0801 50.7442 54.2545 50.936 54.2545C51.1279 54.2545 51.2325 54.1499 51.4244 53.9232L51.6686 53.4874C51.7732 53.313 51.8778 53.1387 52.0174 52.9469C52.1446 52.7592 52.2555 52.5609 52.3487 52.3542C52.4521 52.1549 52.5686 51.9627 52.6976 51.7789C52.6976 51.5871 52.8894 51.3953 52.9766 51.221C53.0756 51.0615 53.1574 50.892 53.2208 50.7154L53.3952 50.3144C53.3952 50.3144 53.4824 50.1401 53.5173 50.0703L53.6219 49.9309V49.7914C53.6261 49.7334 53.6261 49.6751 53.6219 49.6171L53.7091 49.4427C53.764 49.3195 53.8409 49.2073 53.9358 49.1115L54.2323 48.9546C54.3774 48.971 54.5157 49.0251 54.6335 49.1115C54.7106 49.1929 54.7987 49.2633 54.8951 49.3207C55.0277 49.4236 55.1676 49.5168 55.3137 49.5996L55.6974 49.8611C55.8175 49.9442 55.9461 50.0143 56.081 50.0703L56.5345 50.297ZM35.6057 51.2558C35.6128 50.635 35.4303 50.0268 35.0825 49.5125C34.7453 49.5286 34.4219 49.6506 34.1581 49.8611C33.9965 49.9411 33.8492 50.0471 33.7221 50.1749C33.5678 50.2986 33.4222 50.4326 33.2861 50.5759C33.0401 50.8875 32.813 51.2135 32.6059 51.5522C32.4332 51.8492 32.2816 52.1579 32.1524 52.4762C32.1524 52.668 32.1524 52.9992 32.0129 53.4525C31.9432 53.8856 31.9432 54.327 32.0129 54.7601C32.0469 55.1529 32.1659 55.5336 32.3617 55.8758C32.4172 56.0377 32.5348 56.1708 32.6885 56.246C32.8422 56.3212 33.0195 56.3323 33.1814 56.2768C33.4512 56.2333 33.707 56.127 33.9282 55.9665C34.1493 55.806 34.3296 55.5958 34.4546 55.3528C34.8404 54.73 35.1341 54.0547 35.3266 53.3479C35.4966 52.6638 35.5786 51.9607 35.5708 51.2558H35.6057Z",
|
|
1343
1389
|
fill: "#6C70F0"
|
|
1344
1390
|
}
|
|
1345
1391
|
),
|
|
1346
|
-
/* @__PURE__ */
|
|
1392
|
+
/* @__PURE__ */ jsx15(
|
|
1347
1393
|
"path",
|
|
1348
1394
|
{
|
|
1349
1395
|
d: "M70.2254 50.7327C69.6777 51.6952 69.035 52.6005 68.307 53.435C67.5502 54.2984 66.6541 55.0291 65.656 55.5968C64.5894 56.187 63.3868 56.4876 62.1678 56.4685C60.4695 56.5311 58.7866 56.1271 57.3019 55.3004C56.0731 54.5923 55.0556 53.5691 54.3544 52.3367C53.7285 51.2645 53.3196 50.0798 53.151 48.8499C52.9855 47.6935 52.9855 46.5195 53.151 45.3631C53.3764 44.2059 53.8268 43.1042 54.4765 42.1204C55.066 41.2563 55.88 40.5691 56.831 40.1329C57.8748 39.6057 59.0131 39.2916 60.1796 39.2089C61.0571 39.1616 61.935 39.2921 62.7608 39.5924C63.5049 39.8574 64.183 40.2796 64.7491 40.8303C65.2885 41.3519 65.7209 41.9737 66.0222 42.6608C66.3351 43.3692 66.4955 44.1354 66.4931 44.9098C66.5042 45.7492 66.3001 46.5775 65.9001 47.3157C65.534 47.9894 65.0358 48.5823 64.4351 49.0591C63.8731 49.5193 63.2359 49.879 62.5515 50.1226C61.9262 50.3555 61.2655 50.4794 60.5982 50.4887C59.7276 50.4786 58.8679 50.2948 58.0693 49.9482C58.4822 50.809 59.1446 51.5258 59.9703 52.0054C60.7591 52.4147 61.6672 52.532 62.5341 52.3367C63.5515 52.109 64.4904 51.6157 65.2548 50.9071C66.2842 49.9559 67.1348 48.8282 67.7663 47.5772C67.9592 47.2573 68.2004 46.9692 68.4814 46.7229C68.7081 46.5137 69.1092 46.6009 69.6673 46.9844C70.2254 47.368 70.3126 47.4552 70.644 47.6644C70.9225 47.8794 71.2137 48.0773 71.5161 48.2571C71.2544 48.9719 70.7661 49.7913 70.2254 50.7327ZM58.6971 43.8986C58.3444 44.3376 58.0566 44.8249 57.8425 45.3457L58.2088 45.7815C58.3325 45.9105 58.4733 46.022 58.6274 46.1127C59.0042 46.469 59.489 46.6898 60.0052 46.7404C60.1885 46.7516 60.3722 46.7266 60.5457 46.6668C60.7193 46.607 60.8794 46.5135 61.0168 46.3917C61.2813 46.1301 61.4632 45.7967 61.54 45.4328C61.6268 45.066 61.6268 44.6839 61.54 44.3171C61.4629 43.976 61.294 43.6625 61.0516 43.4105C60.9096 43.2885 60.741 43.2014 60.5594 43.156C60.3777 43.1106 60.1879 43.1082 60.0052 43.149C59.4959 43.241 59.0339 43.5058 58.6971 43.8986Z",
|
|
1350
1396
|
fill: "#6C70F0"
|
|
1351
1397
|
}
|
|
1352
1398
|
),
|
|
1353
|
-
/* @__PURE__ */
|
|
1399
|
+
/* @__PURE__ */ jsx15(
|
|
1354
1400
|
"path",
|
|
1355
1401
|
{
|
|
1356
1402
|
d: "M98.2543 29.6536L98.2543 29.6536L98.2588 29.6553C99.5162 30.1047 100.717 30.6948 101.838 31.4134C98.4983 31.6115 95.2647 32.7168 92.4923 34.6239C89.2914 36.8256 86.8694 39.9832 85.5729 43.6446C84.2758 47.3053 84.1703 51.2824 85.2716 55.0067C86.2264 58.2355 88.0458 61.1308 90.5198 63.3867C89.1948 63.2435 87.8892 62.9464 86.6298 62.5001L86.6298 62.5001L86.6235 62.498C84.4385 61.7562 82.4225 60.5881 80.6926 59.0614C78.9627 57.5346 77.5534 55.6797 76.5463 53.6043C75.5393 51.5288 74.9546 49.2742 74.8261 46.971C74.6976 44.6679 75.028 42.3622 75.798 40.1878C76.568 38.0133 77.7623 36.0133 79.3117 34.3038C80.8611 32.5943 82.7346 31.2094 84.8237 30.2295C86.9127 29.2495 89.1757 28.694 91.4812 28.5951C93.7868 28.4963 96.089 28.8561 98.2543 29.6536Z",
|
|
@@ -1358,7 +1404,7 @@ var DefaultLogoWithIcon = ({ width, height }) => {
|
|
|
1358
1404
|
stroke: "#E5E5E5"
|
|
1359
1405
|
}
|
|
1360
1406
|
),
|
|
1361
|
-
/* @__PURE__ */
|
|
1407
|
+
/* @__PURE__ */ jsx15(
|
|
1362
1408
|
"path",
|
|
1363
1409
|
{
|
|
1364
1410
|
d: "M100.694 51.6219C100.398 51.9532 97.1015 49.8785 97.1015 49.8785C97.1015 49.8785 94.1192 52.2147 93.6134 51.8834C93.1076 51.5522 94.0843 47.9434 94.0843 47.9434C94.0843 47.9434 91.1194 46.0082 91.1194 45.3108C91.1194 44.6135 95.0261 44.5612 95.0261 44.5612C95.0261 44.5612 96.1074 40.9175 96.6132 40.9175C97.119 40.9175 98.5317 44.4043 98.5317 44.4043C98.5317 44.4043 102.02 44.0556 102.491 44.7878C102.962 45.52 99.77 47.6993 99.77 47.6993C99.77 47.6993 101.008 51.2907 100.694 51.6219Z",
|
|
@@ -1366,7 +1412,7 @@ var DefaultLogoWithIcon = ({ width, height }) => {
|
|
|
1366
1412
|
}
|
|
1367
1413
|
)
|
|
1368
1414
|
] }),
|
|
1369
|
-
/* @__PURE__ */
|
|
1415
|
+
/* @__PURE__ */ jsx15("defs", { children: /* @__PURE__ */ jsx15("clipPath", { id: "clip0_1154_13915", children: /* @__PURE__ */ jsx15("rect", { width: "102.761", height: "64", fill: "white", transform: "translate(0.619629)" }) }) })
|
|
1370
1416
|
]
|
|
1371
1417
|
}
|
|
1372
1418
|
);
|
|
@@ -1375,22 +1421,22 @@ DefaultLogoWithIcon.displayName = "DefaultLogoWithIcon";
|
|
|
1375
1421
|
var DefaultLogoWithIcon_default = DefaultLogoWithIcon;
|
|
1376
1422
|
|
|
1377
1423
|
// packages/Authentication/SignIn/components/Title.tsx
|
|
1378
|
-
import { jsx as
|
|
1424
|
+
import { jsx as jsx16, jsxs as jsxs11 } from "react/jsx-runtime";
|
|
1379
1425
|
var Title = () => {
|
|
1380
|
-
return /* @__PURE__ */
|
|
1381
|
-
/* @__PURE__ */
|
|
1382
|
-
/* @__PURE__ */
|
|
1426
|
+
return /* @__PURE__ */ jsxs11(Flex_default, { vertical: true, gapY: "5", justify: "center", children: [
|
|
1427
|
+
/* @__PURE__ */ jsx16(DefaultLogoWithIcon_default, {}),
|
|
1428
|
+
/* @__PURE__ */ jsx16("h1", { className: "text-2xl font-extrabold", children: "\u0110\u0103ng Nh\u1EADp" })
|
|
1383
1429
|
] });
|
|
1384
1430
|
};
|
|
1385
1431
|
var MemoizedTitle = memo6(Title);
|
|
1386
1432
|
var Title_default = MemoizedTitle;
|
|
1387
1433
|
|
|
1388
1434
|
// packages/Authentication/SignIn/index.tsx
|
|
1389
|
-
import { jsx as
|
|
1435
|
+
import { jsx as jsx17, jsxs as jsxs12 } from "react/jsx-runtime";
|
|
1390
1436
|
var SignIn = ({ onSubmit, onForgotPassword, onSignUp }) => {
|
|
1391
|
-
return /* @__PURE__ */
|
|
1392
|
-
/* @__PURE__ */
|
|
1393
|
-
/* @__PURE__ */
|
|
1437
|
+
return /* @__PURE__ */ jsxs12(Flex_default, { vertical: true, px: "12", py: "8", width: "full", children: [
|
|
1438
|
+
/* @__PURE__ */ jsx17(Title_default, {}),
|
|
1439
|
+
/* @__PURE__ */ jsx17(Form_default, { onSubmit, onForgotPassword, onSignUp })
|
|
1394
1440
|
] });
|
|
1395
1441
|
};
|
|
1396
1442
|
var MemoizedSignIn = memo7(SignIn);
|
|
@@ -29,7 +29,7 @@ declare const SignUpSchema: z.ZodEffects<z.ZodObject<{
|
|
|
29
29
|
}>;
|
|
30
30
|
|
|
31
31
|
interface IProps {
|
|
32
|
-
onSubmit: (value: z.infer<typeof SignUpSchema>) => void
|
|
32
|
+
onSubmit: (value: z.infer<typeof SignUpSchema>) => Promise<void>;
|
|
33
33
|
onForgotPassword?: () => void;
|
|
34
34
|
onSignUp?: () => void;
|
|
35
35
|
}
|