mario-education 2.4.511-feedback → 2.4.511-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/components/layouts/hooks/useHeaderSideBar.d.ts +1 -0
- package/dist/containers/MarioAi/components/ChatContent.d.ts +2 -2
- package/dist/containers/MarioAi/hooks/useHistoryPrompt.d.ts +1 -0
- package/dist/index.css +496 -2
- package/dist/index.d.ts +5 -1
- package/dist/index.js +1616 -74
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +1596 -58
- package/dist/index.modern.js.map +1 -1
- package/package.json +5 -3
|
@@ -28,5 +28,6 @@ declare const useHeaderSideBar: (_navigations: any) => {
|
|
|
28
28
|
renderNavigationItem: (navigation: any, isSubItem?: boolean | undefined) => JSX.Element;
|
|
29
29
|
goToSettings: () => void;
|
|
30
30
|
t: import("i18next").TFunction;
|
|
31
|
+
isEnableMarioAi: any;
|
|
31
32
|
};
|
|
32
33
|
export default useHeaderSideBar;
|
|
@@ -4,9 +4,9 @@ interface ChatContentProps {
|
|
|
4
4
|
theme: string;
|
|
5
5
|
chats: IChat[];
|
|
6
6
|
getBracketedText: Function;
|
|
7
|
-
submitPromptMessage
|
|
7
|
+
submitPromptMessage?: Function;
|
|
8
8
|
inputString: string;
|
|
9
|
-
setInputString
|
|
9
|
+
setInputString?: Function;
|
|
10
10
|
onSelectOption?: Function;
|
|
11
11
|
}
|
|
12
12
|
declare const ChatContent: FC<ChatContentProps>;
|
package/dist/index.css
CHANGED
|
@@ -126,8 +126,6 @@ tbody._b-AXV tr {
|
|
|
126
126
|
}
|
|
127
127
|
|
|
128
128
|
._2VZin ._2M0vR {
|
|
129
|
-
font-family: 'Roboto';
|
|
130
|
-
font-style: normal;
|
|
131
129
|
font-weight: 400;
|
|
132
130
|
font-size: 13px;
|
|
133
131
|
}
|
|
@@ -13469,6 +13467,7 @@ p._1YLGi {
|
|
|
13469
13467
|
justify-content: space-between;
|
|
13470
13468
|
flex-direction: column;
|
|
13471
13469
|
flex: 1;
|
|
13470
|
+
position: relative;
|
|
13472
13471
|
width: 100%; }
|
|
13473
13472
|
|
|
13474
13473
|
._12ysw {
|
|
@@ -13616,6 +13615,501 @@ p._1YLGi {
|
|
|
13616
13615
|
._1XXX_ {
|
|
13617
13616
|
margin-left: 280px; } }
|
|
13618
13617
|
|
|
13618
|
+
._1hAN- {
|
|
13619
|
+
width: 100%;
|
|
13620
|
+
height: 100%;
|
|
13621
|
+
padding-bottom: 32px; }
|
|
13622
|
+
._1hAN- ._U4585 {
|
|
13623
|
+
background: linear-gradient(90deg, rgba(52, 109, 218, 0.08) 0%, rgba(132, 77, 225, 0.08) 100%), #FFFFFF;
|
|
13624
|
+
width: 100%;
|
|
13625
|
+
height: 100%;
|
|
13626
|
+
border-radius: 16px;
|
|
13627
|
+
display: flex;
|
|
13628
|
+
flex-direction: column;
|
|
13629
|
+
gap: 24px;
|
|
13630
|
+
padding: 48px 48px 0 48px;
|
|
13631
|
+
overflow: hidden;
|
|
13632
|
+
position: relative;
|
|
13633
|
+
background-size: cover; }
|
|
13634
|
+
._1hAN- ._U4585 ._3H3TX {
|
|
13635
|
+
z-index: 1; }
|
|
13636
|
+
._1hAN- ._U4585 ._3H3TX ._2wizn {
|
|
13637
|
+
font-size: 16px;
|
|
13638
|
+
font-weight: 400;
|
|
13639
|
+
line-height: 24px;
|
|
13640
|
+
-webkit-text-decoration-skip-ink: none;
|
|
13641
|
+
text-decoration-skip-ink: none;
|
|
13642
|
+
color: #242424;
|
|
13643
|
+
opacity: 56%;
|
|
13644
|
+
margin-bottom: 8px; }
|
|
13645
|
+
._1hAN- ._U4585 ._3H3TX ._1uejP {
|
|
13646
|
+
background: linear-gradient(90deg, #346DDA 0%, #844DE1 100%);
|
|
13647
|
+
-webkit-background-clip: text;
|
|
13648
|
+
-webkit-text-fill-color: transparent;
|
|
13649
|
+
font-family: 'Montserrat';
|
|
13650
|
+
font-size: 36px;
|
|
13651
|
+
font-weight: 700;
|
|
13652
|
+
line-height: 44px;
|
|
13653
|
+
width: -webkit-fit-content;
|
|
13654
|
+
width: -moz-fit-content;
|
|
13655
|
+
width: fit-content;
|
|
13656
|
+
-webkit-text-decoration-skip-ink: none;
|
|
13657
|
+
text-decoration-skip-ink: none; }
|
|
13658
|
+
._1hAN- ._U4585 ._3H3TX ._wXhYW {
|
|
13659
|
+
display: flex;
|
|
13660
|
+
gap: 16px;
|
|
13661
|
+
overflow: auto;
|
|
13662
|
+
scrollbar-width: none;
|
|
13663
|
+
-ms-overflow-style: none;
|
|
13664
|
+
padding: 32px;
|
|
13665
|
+
margin: 0 -32px;
|
|
13666
|
+
flex-wrap: wrap; }
|
|
13667
|
+
._1hAN- ._U4585 ._3H3TX ._wXhYW ._3F1f0 {
|
|
13668
|
+
flex: 1;
|
|
13669
|
+
border: 1px solid #D3D3D3;
|
|
13670
|
+
background: #fff;
|
|
13671
|
+
transition: all 0.3s ease-in-out;
|
|
13672
|
+
border-radius: 16px;
|
|
13673
|
+
padding: 24px;
|
|
13674
|
+
height: 140px;
|
|
13675
|
+
width: 100%;
|
|
13676
|
+
position: relative;
|
|
13677
|
+
cursor: pointer;
|
|
13678
|
+
text-align: left;
|
|
13679
|
+
max-width: 333px; }
|
|
13680
|
+
._1hAN- ._U4585 ._3H3TX ._wXhYW ._3F1f0:hover {
|
|
13681
|
+
box-shadow: #000dff33 0px 8px 24px; }
|
|
13682
|
+
._1hAN- ._U4585 ._3H3TX ._wXhYW ._3F1f0 ._cB_eW {
|
|
13683
|
+
display: flex;
|
|
13684
|
+
flex-direction: column;
|
|
13685
|
+
gap: 4px;
|
|
13686
|
+
width: 276px; }
|
|
13687
|
+
._1hAN- ._U4585 ._3H3TX ._wXhYW ._3F1f0 ._cB_eW ._30saB {
|
|
13688
|
+
font-size: 18px;
|
|
13689
|
+
font-weight: 600;
|
|
13690
|
+
line-height: 24px; }
|
|
13691
|
+
._1hAN- ._U4585 ._3H3TX ._wXhYW ._3F1f0 ._cB_eW ._6m3YS > p,
|
|
13692
|
+
._1hAN- ._U4585 ._3H3TX ._wXhYW ._3F1f0 ._cB_eW ._6m3YS {
|
|
13693
|
+
font-size: 14px;
|
|
13694
|
+
font-weight: 400;
|
|
13695
|
+
line-height: 20px;
|
|
13696
|
+
opacity: 0.56; }
|
|
13697
|
+
._1hAN- ._U4585 ._3H3TX ._wXhYW ._3F1f0 ._gG2mp {
|
|
13698
|
+
position: absolute;
|
|
13699
|
+
top: 8px;
|
|
13700
|
+
right: 8px;
|
|
13701
|
+
border-radius: 12px;
|
|
13702
|
+
width: 48px;
|
|
13703
|
+
height: 48px;
|
|
13704
|
+
display: flex;
|
|
13705
|
+
justify-content: center;
|
|
13706
|
+
align-items: center;
|
|
13707
|
+
background: #F6F6F6; }
|
|
13708
|
+
._1hAN- ._U4585 ._3H3TX ._wXhYW ._3F1f0 ._1tJEn {
|
|
13709
|
+
position: absolute;
|
|
13710
|
+
bottom: 8px;
|
|
13711
|
+
right: 8px; }
|
|
13712
|
+
._1hAN- ._U4585 ._1O09T {
|
|
13713
|
+
display: flex;
|
|
13714
|
+
flex-direction: column;
|
|
13715
|
+
flex: 1;
|
|
13716
|
+
width: 50%;
|
|
13717
|
+
position: relative; }
|
|
13718
|
+
@media (max-width: 1023px) {
|
|
13719
|
+
._1hAN- ._U4585 ._1O09T {
|
|
13720
|
+
width: 100%; } }
|
|
13721
|
+
@media (max-width: 767px) {
|
|
13722
|
+
._1hAN- ._U4585 ._1O09T {
|
|
13723
|
+
width: 100%; } }
|
|
13724
|
+
._1hAN- ._U4585 ._1O09T ._1lK2v {
|
|
13725
|
+
display: flex;
|
|
13726
|
+
justify-content: space-between;
|
|
13727
|
+
align-items: center;
|
|
13728
|
+
margin-bottom: 12px; }
|
|
13729
|
+
._1hAN- ._U4585 ._1O09T ._1lK2v ._30saB {
|
|
13730
|
+
font-size: 18px;
|
|
13731
|
+
font-weight: 600;
|
|
13732
|
+
line-height: 24px;
|
|
13733
|
+
text-align: left; }
|
|
13734
|
+
._1hAN- ._U4585 ._1O09T ._1lK2v ._1Qk2i {
|
|
13735
|
+
display: flex;
|
|
13736
|
+
justify-content: flex-end;
|
|
13737
|
+
align-items: center;
|
|
13738
|
+
gap: 8px;
|
|
13739
|
+
cursor: pointer;
|
|
13740
|
+
border: none;
|
|
13741
|
+
outline: none;
|
|
13742
|
+
background: transparent; }
|
|
13743
|
+
._1hAN- ._U4585 ._1O09T ._1lK2v ._1Qk2i ._3qcYP {
|
|
13744
|
+
font-size: 14px;
|
|
13745
|
+
font-weight: 600;
|
|
13746
|
+
line-height: 22px;
|
|
13747
|
+
text-align: left;
|
|
13748
|
+
color: #316CD9; }
|
|
13749
|
+
._1hAN- ._U4585 ._1O09T ._2DkM3 {
|
|
13750
|
+
flex: 1;
|
|
13751
|
+
display: flex;
|
|
13752
|
+
flex-direction: column;
|
|
13753
|
+
gap: 8px;
|
|
13754
|
+
width: 100%;
|
|
13755
|
+
overflow: auto;
|
|
13756
|
+
scrollbar-width: none;
|
|
13757
|
+
-ms-overflow-style: none;
|
|
13758
|
+
padding-bottom: 60px; }
|
|
13759
|
+
._1hAN- ._U4585 ._1O09T ._2DkM3::-webkit-scrollbar {
|
|
13760
|
+
display: none; }
|
|
13761
|
+
._1hAN- ._U4585 ._1O09T ._2DkM3 ._1FFC5 {
|
|
13762
|
+
display: flex;
|
|
13763
|
+
gap: 16px;
|
|
13764
|
+
border-radius: 8px;
|
|
13765
|
+
position: relative;
|
|
13766
|
+
background: #fff; }
|
|
13767
|
+
._1hAN- ._U4585 ._1O09T ._2DkM3 ._1FFC5 ._rGovp {
|
|
13768
|
+
width: 100%;
|
|
13769
|
+
height: 100%;
|
|
13770
|
+
background: #fff;
|
|
13771
|
+
z-index: 1;
|
|
13772
|
+
position: absolute;
|
|
13773
|
+
border-radius: 8px;
|
|
13774
|
+
opacity: 0.56; }
|
|
13775
|
+
._1hAN- ._U4585 ._1O09T ._2DkM3 ._1FFC5 ._1X7t2 {
|
|
13776
|
+
display: flex;
|
|
13777
|
+
gap: 16px;
|
|
13778
|
+
flex: 1;
|
|
13779
|
+
justify-content: flex-start;
|
|
13780
|
+
align-items: center;
|
|
13781
|
+
z-index: 2; }
|
|
13782
|
+
._1hAN- ._U4585 ._1O09T ._2DkM3 ._1FFC5 ._1X7t2 ._gG2mp {
|
|
13783
|
+
width: 36px;
|
|
13784
|
+
height: 36px;
|
|
13785
|
+
display: flex;
|
|
13786
|
+
justify-content: center;
|
|
13787
|
+
align-items: center;
|
|
13788
|
+
background: #fff;
|
|
13789
|
+
border-radius: 6px;
|
|
13790
|
+
padding: 6px;
|
|
13791
|
+
margin: 4px;
|
|
13792
|
+
z-index: 1; }
|
|
13793
|
+
._1hAN- ._U4585 ._1O09T ._2DkM3 ._1FFC5 ._1X7t2 ._3qcYP {
|
|
13794
|
+
flex: 1;
|
|
13795
|
+
font-size: 14px;
|
|
13796
|
+
font-weight: 600;
|
|
13797
|
+
line-height: 20px;
|
|
13798
|
+
text-align: left;
|
|
13799
|
+
white-space: nowrap;
|
|
13800
|
+
overflow: hidden;
|
|
13801
|
+
text-overflow: ellipsis;
|
|
13802
|
+
min-width: 198px;
|
|
13803
|
+
max-width: 40%; }
|
|
13804
|
+
@media (max-width: 1020px) {
|
|
13805
|
+
._1hAN- ._U4585 ._1O09T ._2DkM3 ._1FFC5 ._1X7t2 ._3qcYP {
|
|
13806
|
+
min-width: 120px; } }
|
|
13807
|
+
._1hAN- ._U4585 ._1O09T ._2DkM3 ._1FFC5 ._1w2YZ {
|
|
13808
|
+
z-index: 2;
|
|
13809
|
+
display: flex;
|
|
13810
|
+
justify-content: space-between;
|
|
13811
|
+
align-items: center;
|
|
13812
|
+
flex: 1; }
|
|
13813
|
+
._1hAN- ._U4585 ._1O09T ._2DkM3 ._1FFC5 ._1w2YZ ._3qcYP {
|
|
13814
|
+
font-size: 12px;
|
|
13815
|
+
font-weight: 400;
|
|
13816
|
+
line-height: 18px;
|
|
13817
|
+
text-align: left;
|
|
13818
|
+
color: #24242456; }
|
|
13819
|
+
._1hAN- ._U4585 ._1O09T ._2DkM3 ._1FFC5 ._1w2YZ ._gG2mp {
|
|
13820
|
+
padding: 8px 16px;
|
|
13821
|
+
border-radius: 8px;
|
|
13822
|
+
border: none;
|
|
13823
|
+
outline: none;
|
|
13824
|
+
background: transparent; }
|
|
13825
|
+
._1hAN- ._U4585 ._1O09T ._4kmno {
|
|
13826
|
+
height: 74px;
|
|
13827
|
+
bottom: 0;
|
|
13828
|
+
background: linear-gradient(360deg, #edeefc 0%, #dfe5f300 100%);
|
|
13829
|
+
position: absolute;
|
|
13830
|
+
left: -50px;
|
|
13831
|
+
right: -50px;
|
|
13832
|
+
z-index: 2; }
|
|
13833
|
+
._1hAN- ._U4585 ._6K7Pz {
|
|
13834
|
+
position: absolute;
|
|
13835
|
+
width: 227px;
|
|
13836
|
+
height: 227px;
|
|
13837
|
+
border-radius: 50%;
|
|
13838
|
+
opacity: 0.32;
|
|
13839
|
+
background: #FF8AB4;
|
|
13840
|
+
filter: blur(80px); }
|
|
13841
|
+
._1hAN- ._U4585 ._3mOqe {
|
|
13842
|
+
top: -100px;
|
|
13843
|
+
left: -100px; }
|
|
13844
|
+
._1hAN- ._U4585 ._1LVOo {
|
|
13845
|
+
bottom: -25px;
|
|
13846
|
+
right: -50px; }
|
|
13847
|
+
|
|
13848
|
+
._2eGy1 {
|
|
13849
|
+
position: absolute;
|
|
13850
|
+
top: 0;
|
|
13851
|
+
left: 0;
|
|
13852
|
+
width: 100%;
|
|
13853
|
+
height: 100%; }
|
|
13854
|
+
._1_oTD {
|
|
13855
|
+
position: fixed;
|
|
13856
|
+
top: 64px;
|
|
13857
|
+
height: 56px;
|
|
13858
|
+
background: #eeeeee;
|
|
13859
|
+
display: flex;
|
|
13860
|
+
justify-content: space-between;
|
|
13861
|
+
align-items: center;
|
|
13862
|
+
padding: 8px;
|
|
13863
|
+
width: calc(100% - 280px);
|
|
13864
|
+
z-index: 1; }
|
|
13865
|
+
@media screen and (-webkit-min-device-pixel-ratio: 1.1), screen and (-moz-min-device-pixel-ratio: 1.1) {
|
|
13866
|
+
._1_oTD {
|
|
13867
|
+
width: calc(100% - 260px); } }
|
|
13868
|
+
@media screen and (-webkit-min-device-pixel-ratio: 1.2), screen and (-moz-min-device-pixel-ratio: 1.2) {
|
|
13869
|
+
._1_oTD {
|
|
13870
|
+
width: calc(100% - 240px); } }
|
|
13871
|
+
._1_oTD ._u-oqg {
|
|
13872
|
+
background: #fff;
|
|
13873
|
+
width: 40px;
|
|
13874
|
+
height: 40px;
|
|
13875
|
+
border-radius: 8px;
|
|
13876
|
+
border: none;
|
|
13877
|
+
outline: none;
|
|
13878
|
+
color: #242424;
|
|
13879
|
+
cursor: pointer;
|
|
13880
|
+
display: flex;
|
|
13881
|
+
justify-content: center;
|
|
13882
|
+
align-items: center; }
|
|
13883
|
+
._1_oTD ._u-oqg:hover {
|
|
13884
|
+
box-shadow: #201c3d 0px 2px 4px 0px, #201c3d 0px 2px 16px 0px; }
|
|
13885
|
+
._1_oTD ._PBH_Y {
|
|
13886
|
+
font-size: 14px;
|
|
13887
|
+
font-weight: 600;
|
|
13888
|
+
line-height: 22px;
|
|
13889
|
+
color: #242424; }
|
|
13890
|
+
._1_oTD ._31WqA {
|
|
13891
|
+
display: flex;
|
|
13892
|
+
justify-content: center;
|
|
13893
|
+
align-items: center;
|
|
13894
|
+
gap: 4px;
|
|
13895
|
+
padding: 4px;
|
|
13896
|
+
background: #D3D3D366;
|
|
13897
|
+
border-radius: 8px;
|
|
13898
|
+
z-index: 2;
|
|
13899
|
+
transition: all 0.3s ease-in-out;
|
|
13900
|
+
cursor: pointer;
|
|
13901
|
+
border: none;
|
|
13902
|
+
outline: none; }
|
|
13903
|
+
._1_oTD ._31WqA:hover {
|
|
13904
|
+
box-shadow: #201c3d 0px 2px 4px 0px, #201c3d 0px 2px 16px 0px; }
|
|
13905
|
+
._1_oTD ._31WqA ._1FFC5 {
|
|
13906
|
+
display: flex;
|
|
13907
|
+
width: 32px;
|
|
13908
|
+
height: 32px;
|
|
13909
|
+
border-radius: 4px;
|
|
13910
|
+
display: flex;
|
|
13911
|
+
justify-content: center;
|
|
13912
|
+
align-items: center; }
|
|
13913
|
+
._1_oTD ._31WqA ._3Zheb {
|
|
13914
|
+
background: #fff; }
|
|
13915
|
+
._1_oTD ._31WqA ._7T1lB {
|
|
13916
|
+
background: transparent; }
|
|
13917
|
+
.__lhBc {
|
|
13918
|
+
background: #201c3d;
|
|
13919
|
+
color: #fff; }
|
|
13920
|
+
.__lhBc ._u-oqg {
|
|
13921
|
+
background: #3a3653;
|
|
13922
|
+
color: #fff; }
|
|
13923
|
+
.__lhBc ._u-oqg:hover {
|
|
13924
|
+
box-shadow: #fff 0px 2px 4px 0px, #fff 0px 2px 16px 0px; }
|
|
13925
|
+
.__lhBc ._PBH_Y {
|
|
13926
|
+
color: #fff; }
|
|
13927
|
+
.__lhBc ._31WqA {
|
|
13928
|
+
background: #3b3754; }
|
|
13929
|
+
.__lhBc ._31WqA:hover {
|
|
13930
|
+
box-shadow: #fff 0px 2px 4px 0px, #fff 0px 2px 16px 0px; }
|
|
13931
|
+
._2h1fv {
|
|
13932
|
+
width: 100%;
|
|
13933
|
+
height: 100%;
|
|
13934
|
+
overflow: auto;
|
|
13935
|
+
background: #f6f6f6;
|
|
13936
|
+
padding-top: 56px;
|
|
13937
|
+
padding-bottom: 32px;
|
|
13938
|
+
scrollbar-width: none;
|
|
13939
|
+
-ms-overflow-style: none; }
|
|
13940
|
+
@media (max-width: 1020px) {
|
|
13941
|
+
._2h1fv {
|
|
13942
|
+
padding-bottom: 80px; } }
|
|
13943
|
+
@media (max-width: 767px) {
|
|
13944
|
+
._2h1fv {
|
|
13945
|
+
padding-bottom: 120px; } }
|
|
13946
|
+
._2h1fv ._3kxy- {
|
|
13947
|
+
width: 60%;
|
|
13948
|
+
position: relative;
|
|
13949
|
+
margin: auto;
|
|
13950
|
+
margin-top: 24px;
|
|
13951
|
+
display: flex;
|
|
13952
|
+
flex-direction: column;
|
|
13953
|
+
gap: 8px;
|
|
13954
|
+
height: 100%; }
|
|
13955
|
+
@media (max-width: 1020px) {
|
|
13956
|
+
._2h1fv ._3kxy- {
|
|
13957
|
+
width: 80%; } }
|
|
13958
|
+
@media (max-width: 767px) {
|
|
13959
|
+
._2h1fv ._3kxy- {
|
|
13960
|
+
width: 96%; } }
|
|
13961
|
+
._2h1fv ._3kxy- ._3gjP5 {
|
|
13962
|
+
width: 100%;
|
|
13963
|
+
display: flex;
|
|
13964
|
+
align-items: flex-start;
|
|
13965
|
+
justify-content: flex-start;
|
|
13966
|
+
gap: 10px; }
|
|
13967
|
+
._2h1fv ._3kxy- ._2x_-F {
|
|
13968
|
+
max-width: 60%;
|
|
13969
|
+
min-width: 120px;
|
|
13970
|
+
position: relative;
|
|
13971
|
+
display: flex;
|
|
13972
|
+
flex-direction: column;
|
|
13973
|
+
gap: 5px; }
|
|
13974
|
+
._2h1fv ._3kxy- ._2x_-F ._2bqyW {
|
|
13975
|
+
font-size: 16px;
|
|
13976
|
+
font-weight: 600;
|
|
13977
|
+
line-height: 24px;
|
|
13978
|
+
text-align: left; }
|
|
13979
|
+
._2h1fv ._3kxy- ._2x_-F ._1N1T3 {
|
|
13980
|
+
background: linear-gradient(90deg, rgba(52, 109, 218, 0.12) 0%, rgba(132, 77, 225, 0.12) 100%);
|
|
13981
|
+
border-radius: 16px;
|
|
13982
|
+
border-bottom-left-radius: 0;
|
|
13983
|
+
padding: 14px 16px 24px 16px; }
|
|
13984
|
+
._2h1fv ._3kxy- ._2x_-F ._1N1T3 > div,
|
|
13985
|
+
._2h1fv ._3kxy- ._2x_-F ._1N1T3 > div > p {
|
|
13986
|
+
margin-bottom: 0; }
|
|
13987
|
+
._2h1fv ._3kxy- ._2x_-F ._1N1T3 ._31bf9 {
|
|
13988
|
+
display: flex;
|
|
13989
|
+
flex-wrap: wrap;
|
|
13990
|
+
gap: 8px;
|
|
13991
|
+
margin-top: 8px;
|
|
13992
|
+
transition: all 0.2s ease-in-out; }
|
|
13993
|
+
._2h1fv ._3kxy- ._2x_-F ._1N1T3 ._7cV8X {
|
|
13994
|
+
display: flex;
|
|
13995
|
+
justify-content: center;
|
|
13996
|
+
align-items: center;
|
|
13997
|
+
padding: 4px 16px;
|
|
13998
|
+
border-radius: 888px;
|
|
13999
|
+
background: #fff;
|
|
14000
|
+
cursor: pointer;
|
|
14001
|
+
transition: all 0.2s ease-in-out;
|
|
14002
|
+
border: none;
|
|
14003
|
+
outline: none; }
|
|
14004
|
+
._2h1fv ._3kxy- ._2x_-F ._1N1T3 ._7cV8X:hover {
|
|
14005
|
+
background: linear-gradient(90deg, #346DDA 0%, #844DE1 100%);
|
|
14006
|
+
color: #fff;
|
|
14007
|
+
transition: all 0.2s ease-in-out;
|
|
14008
|
+
box-shadow: 0px 6px 32px 0px #C09FF8B8; }
|
|
14009
|
+
._2h1fv ._3kxy- ._2x_-F ._1N1T3 ._2YD7M {
|
|
14010
|
+
align-items: center;
|
|
14011
|
+
display: flex;
|
|
14012
|
+
justify-content: center; }
|
|
14013
|
+
._2h1fv ._3kxy- ._2x_-F ._1N1T3 ._23N4j {
|
|
14014
|
+
-webkit-animation: _3St_4 ease-in-out 1s infinite;
|
|
14015
|
+
animation: _3St_4 ease-in-out 1s infinite;
|
|
14016
|
+
background-color: grey;
|
|
14017
|
+
display: inline-block;
|
|
14018
|
+
height: 8px;
|
|
14019
|
+
margin: 4px;
|
|
14020
|
+
width: 8px;
|
|
14021
|
+
border-radius: 50%; }
|
|
14022
|
+
._2h1fv ._3kxy- ._2x_-F ._1N1T3 ._23N4j:nth-of-type(2) {
|
|
14023
|
+
-webkit-animation-delay: 0.3s;
|
|
14024
|
+
animation-delay: 0.3s; }
|
|
14025
|
+
._2h1fv ._3kxy- ._2x_-F ._1N1T3 ._23N4j:nth-of-type(3) {
|
|
14026
|
+
-webkit-animation-delay: 0.5s;
|
|
14027
|
+
animation-delay: 0.5s; }
|
|
14028
|
+
|
|
14029
|
+
@-webkit-keyframes _3St_4 {
|
|
14030
|
+
0% {
|
|
14031
|
+
background-color: #939FE316;
|
|
14032
|
+
transform: scale(1); }
|
|
14033
|
+
50% {
|
|
14034
|
+
background-color: #939FE3;
|
|
14035
|
+
transform: scale(1.3); }
|
|
14036
|
+
100% {
|
|
14037
|
+
background-color: #939FE316;
|
|
14038
|
+
transform: scale(1); } }
|
|
14039
|
+
|
|
14040
|
+
@keyframes _3St_4 {
|
|
14041
|
+
0% {
|
|
14042
|
+
background-color: #939FE316;
|
|
14043
|
+
transform: scale(1); }
|
|
14044
|
+
50% {
|
|
14045
|
+
background-color: #939FE3;
|
|
14046
|
+
transform: scale(1.3); }
|
|
14047
|
+
100% {
|
|
14048
|
+
background-color: #939FE316;
|
|
14049
|
+
transform: scale(1); } }
|
|
14050
|
+
._2h1fv ._3kxy- ._2x_-F ._CjCyy {
|
|
14051
|
+
font-size: 12px;
|
|
14052
|
+
font-weight: 400;
|
|
14053
|
+
line-height: 16px;
|
|
14054
|
+
color: #a2a2a2;
|
|
14055
|
+
color: #6e6b80;
|
|
14056
|
+
text-align: right;
|
|
14057
|
+
padding: 0 15px; }
|
|
14058
|
+
._2h1fv ._3kxy- ._ZC3ml ._1N1T3 {
|
|
14059
|
+
border-radius: 16px;
|
|
14060
|
+
border-bottom-right-radius: 0;
|
|
14061
|
+
background: #fff; }
|
|
14062
|
+
._2h1fv ._3kxy- ._ZC3ml ._CjCyy {
|
|
14063
|
+
text-align: left; }
|
|
14064
|
+
._2h1fv ._3kxy- ._2oBqf {
|
|
14065
|
+
justify-content: flex-end; }
|
|
14066
|
+
._1r1Jl {
|
|
14067
|
+
background: #0D082C;
|
|
14068
|
+
color: #fff; }
|
|
14069
|
+
._1r1Jl ._2x_-F ._1N1T3 {
|
|
14070
|
+
background: linear-gradient(90deg, #346DDA 0%, #844DE1 100%) !important; }
|
|
14071
|
+
._1r1Jl ._2x_-F ._1N1T3 ._7cV8X:hover {
|
|
14072
|
+
outline: 1px solid #fff;
|
|
14073
|
+
background: transparent !important; }
|
|
14074
|
+
._1r1Jl ._ZC3ml ._1N1T3 {
|
|
14075
|
+
background: #1D1748 !important; }
|
|
14076
|
+
|
|
14077
|
+
._2o38p {
|
|
14078
|
+
padding-left: 0;
|
|
14079
|
+
padding-top: 8px;
|
|
14080
|
+
padding-bottom: 8px;
|
|
14081
|
+
margin-bottom: 0; }
|
|
14082
|
+
._2o38p ._1IcP8 {
|
|
14083
|
+
padding: 16px 24px;
|
|
14084
|
+
font-size: 16px;
|
|
14085
|
+
font-weight: 400;
|
|
14086
|
+
list-style: none;
|
|
14087
|
+
font-family: "Poppins-Regular";
|
|
14088
|
+
border-bottom: 1px solid transparent;
|
|
14089
|
+
border-top: 1px solid transparent;
|
|
14090
|
+
cursor: pointer; }
|
|
14091
|
+
._2o38p ._1IcP8:hover {
|
|
14092
|
+
color: #316CD9;
|
|
14093
|
+
background: #EFF3FC;
|
|
14094
|
+
border-color: #D3D3D3; }
|
|
14095
|
+
|
|
14096
|
+
._206DV {
|
|
14097
|
+
width: 100%;
|
|
14098
|
+
padding: 10px 20px; }
|
|
14099
|
+
|
|
14100
|
+
._1A9xm {
|
|
14101
|
+
width: calc(100% - 25px);
|
|
14102
|
+
position: absolute;
|
|
14103
|
+
bottom: 10px; }
|
|
14104
|
+
|
|
14105
|
+
._1Lwom {
|
|
14106
|
+
font-size: 25px !important;
|
|
14107
|
+
margin-left: 20px;
|
|
14108
|
+
cursor: pointer; }
|
|
14109
|
+
|
|
14110
|
+
._1Lwom:hover {
|
|
14111
|
+
color: #346dda; }
|
|
14112
|
+
|
|
13619
14113
|
._32YVh {
|
|
13620
14114
|
height: calc(-200px + 100vh);
|
|
13621
14115
|
display: flex;
|
package/dist/index.d.ts
CHANGED
|
@@ -54,5 +54,9 @@ import MainLayoutAdmin from "./layouts/MainLayoutAdmin";
|
|
|
54
54
|
import SyncData from "./containers/SyncData/views/SyncData";
|
|
55
55
|
import SummarizeQuestion from "./containers/Dashboard/views/SummarizeQuestion";
|
|
56
56
|
import SurveyQuestion from "./containers/QuestionBank/views/SurveyQuestion";
|
|
57
|
+
import MarioAi from "./containers/MarioAi/views/MarioAi";
|
|
58
|
+
import AIMario from "./containers/MarioAi/views/AIMario";
|
|
59
|
+
import ChatWithAI from "./containers/MarioAi/views/ChatWithAI";
|
|
60
|
+
import ViewHistoryPrompt from "./containers/MarioAi/views/ViewHistoryPrompt";
|
|
57
61
|
import SurveyPortal from "./containers/SurveyDashboard/views/SurveyPortal";
|
|
58
|
-
export { ClassList, ConferenceRubricList, ConferenceRubricDetail, SuggestionList, LearningStrategyList, SetupContainer, QuestionBankList, ReflectionFormList, ReflectionContainer, QuestionDetail, SubjectList, LearningSupportCategoryList, BadgeList, GoalExampleList, TutorialScreenContainer, FeedbackList, AssessmentList, QuestionBankContainer, SurveyQuestionContainer, QuestionCategoryList, AssignmentList, AssessmentAssignmentContainer, SessionTemplateContainer, SessionTemplateDetail, SessionTemplateGeneralClassDetail, CustomAlertList, CertificateContainer, CompareTeacher, AssetLog, SessionTemplateList, SessionTemplateGeneralClassList, Dashboard, AdminTraining, TemplateContainer, OneRosterContainer, SandboxContainer, TemplateBuilderPage, TemplateStartBuild, SurveyDashboardContainer, RevertUser, FixDataStudent, CustomQuestionAlert, SurveyDetailAdmin, SurveyStudentFlagListAdmin, SurveyResultAdmin, SurveyIndexAdmin, CreateSurveyAdmin, PreviewSurveyAdmin, ExternalApi, WeeklyQuest, SettingWeeklyQuest, HomePage, MainLayoutAdmin, SyncData, SummarizeQuestion, SurveyQuestion, SurveyPortal };
|
|
62
|
+
export { ClassList, ConferenceRubricList, ConferenceRubricDetail, SuggestionList, LearningStrategyList, SetupContainer, QuestionBankList, ReflectionFormList, ReflectionContainer, QuestionDetail, SubjectList, LearningSupportCategoryList, BadgeList, GoalExampleList, TutorialScreenContainer, FeedbackList, AssessmentList, QuestionBankContainer, SurveyQuestionContainer, QuestionCategoryList, AssignmentList, AssessmentAssignmentContainer, SessionTemplateContainer, SessionTemplateDetail, SessionTemplateGeneralClassDetail, CustomAlertList, CertificateContainer, CompareTeacher, AssetLog, SessionTemplateList, SessionTemplateGeneralClassList, Dashboard, AdminTraining, TemplateContainer, OneRosterContainer, SandboxContainer, TemplateBuilderPage, TemplateStartBuild, SurveyDashboardContainer, RevertUser, FixDataStudent, CustomQuestionAlert, SurveyDetailAdmin, SurveyStudentFlagListAdmin, SurveyResultAdmin, SurveyIndexAdmin, CreateSurveyAdmin, PreviewSurveyAdmin, ExternalApi, WeeklyQuest, SettingWeeklyQuest, HomePage, MainLayoutAdmin, SyncData, SummarizeQuestion, SurveyQuestion, MarioAi, AIMario, ChatWithAI, ViewHistoryPrompt, SurveyPortal };
|