mario-core 2.9.213-release → 2.9.215-release
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/containers/Login/hooks/useLogin.d.ts +3 -0
- package/dist/containers/Login/views/block/BlockLogin.d.ts +3 -0
- package/dist/index.css +46 -0
- package/dist/index.js +8342 -261
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +8342 -261
- package/dist/index.modern.js.map +1 -1
- package/dist/services/accountService.d.ts +2 -0
- package/dist/services/weeklyQuestService.d.ts +1 -0
- package/dist/types/WeeklyQuest.d.ts +37 -0
- package/package.json +101 -101
- package/dist/containers/Login/components/ButtonLogin.d.ts +0 -3
- package/dist/containers/Login/constant/config.d.ts +0 -6
|
@@ -20,5 +20,8 @@ declare const useLogin: () => {
|
|
|
20
20
|
setIsLoginGoogle: import("react").Dispatch<import("react").SetStateAction<boolean>>;
|
|
21
21
|
googleClientId: string;
|
|
22
22
|
googleRecaptchaId: string;
|
|
23
|
+
handleCancelModelAssign: () => void;
|
|
24
|
+
openModelAssign: boolean;
|
|
25
|
+
handleAssignTeacherByCode: (teacherCode: string, setIsError: Function) => Promise<void>;
|
|
23
26
|
};
|
|
24
27
|
export default useLogin;
|
package/dist/index.css
CHANGED
|
@@ -712,6 +712,52 @@
|
|
|
712
712
|
font-size: 20px;
|
|
713
713
|
padding: 10px 20px; }
|
|
714
714
|
|
|
715
|
+
._DrSlA {
|
|
716
|
+
text-align: center;
|
|
717
|
+
background: #e5e5e5;
|
|
718
|
+
font-size: 15px;
|
|
719
|
+
color: #ad9292;
|
|
720
|
+
border-radius: 8px;
|
|
721
|
+
cursor: pointer; }
|
|
722
|
+
._DrSlA img {
|
|
723
|
+
width: 65px;
|
|
724
|
+
height: auto; }
|
|
725
|
+
|
|
726
|
+
._3Vgah {
|
|
727
|
+
padding-top: 108px;
|
|
728
|
+
padding-right: 16px; }
|
|
729
|
+
._3Vgah > div {
|
|
730
|
+
display: flex;
|
|
731
|
+
align-items: center;
|
|
732
|
+
justify-content: center;
|
|
733
|
+
font-weight: 600;
|
|
734
|
+
font-size: 16px;
|
|
735
|
+
line-height: 24px;
|
|
736
|
+
color: #242424;
|
|
737
|
+
padding: 12px 20px;
|
|
738
|
+
border: none;
|
|
739
|
+
border-radius: 8px; }
|
|
740
|
+
._1jraB > div {
|
|
741
|
+
background-color: #d9eee4; }
|
|
742
|
+
|
|
743
|
+
@media (max-width: 599.95px) {
|
|
744
|
+
._3Vgah {
|
|
745
|
+
padding-right: 8px;
|
|
746
|
+
padding-top: 72px;
|
|
747
|
+
max-width: 250px;
|
|
748
|
+
width: -webkit-fit-content;
|
|
749
|
+
width: -moz-fit-content;
|
|
750
|
+
width: fit-content; }
|
|
751
|
+
._3Vgah > div {
|
|
752
|
+
align-items: self-start;
|
|
753
|
+
font-size: 14px;
|
|
754
|
+
line-height: 20px; } }
|
|
755
|
+
|
|
756
|
+
@media (min-width: 599.95px) and (max-width: 1279.95px) {
|
|
757
|
+
._3Vgah {
|
|
758
|
+
padding-right: 8px;
|
|
759
|
+
padding-top: 88px; } }
|
|
760
|
+
|
|
715
761
|
._297lu {
|
|
716
762
|
width: 100%;
|
|
717
763
|
height: 100%; }
|