mario-education 2.4.55-admin → 2.4.55-beta
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/MarioFramework.Education/ClientApp/src/components/Questions/QuestionList.d.ts +1 -0
- package/dist/MarioFramework.Education/ClientApp/src/components/Questions/QuestionSelector.d.ts +1 -0
- package/dist/MarioFramework.Education/ClientApp/src/components/Select/SelectFilter.d.ts +1 -1
- package/dist/MarioFramework.Education/ClientApp/src/containers/AdminTraining/hooks/useAdminTraning.d.ts +4 -0
- package/dist/MarioFramework.Education/ClientApp/src/containers/AdminTraining/views/AdminTraining.d.ts +3 -0
- package/dist/MarioFramework.Education/ClientApp/src/containers/AssignAssistant/components/AssignAssistantModal.d.ts +4 -0
- package/dist/MarioFramework.Education/ClientApp/src/containers/AssignAssistant/hooks/useAssignAssistant.d.ts +18 -0
- package/dist/MarioFramework.Education/ClientApp/src/containers/AssignAssistant/utils/constants.d.ts +3 -0
- package/dist/MarioFramework.Education/ClientApp/src/containers/AssignAssistant/utils/type.interface.d.ts +45 -0
- package/dist/MarioFramework.Education/ClientApp/src/containers/AssignAssistant/views/AssignAssistantList.d.ts +3 -0
- package/dist/MarioFramework.Education/ClientApp/src/containers/Dashboard/components/AreaChart.d.ts +1 -0
- package/dist/MarioFramework.Education/ClientApp/src/containers/Dashboard/components/BarAndAreaChart.d.ts +1 -0
- package/dist/MarioFramework.Education/ClientApp/src/containers/Dashboard/components/BarChart.d.ts +1 -0
- package/dist/MarioFramework.Education/ClientApp/src/containers/Dashboard/components/ColumnChartAndPercent.d.ts +1 -0
- package/dist/MarioFramework.Education/ClientApp/src/containers/Dashboard/components/HeaderChart/HeaderChart.d.ts +1 -0
- package/dist/MarioFramework.Education/ClientApp/src/containers/Dashboard/components/LearningStrategiesTable.d.ts +13 -0
- package/dist/MarioFramework.Education/ClientApp/src/containers/Dashboard/components/LineChart.d.ts +1 -0
- package/dist/MarioFramework.Education/ClientApp/src/containers/Dashboard/configs/constants.d.ts +1 -0
- package/dist/MarioFramework.Education/ClientApp/src/containers/Dashboard/configs/types.d.ts +3 -0
- package/dist/MarioFramework.Education/ClientApp/src/containers/Dashboard/configs/utils.d.ts +3 -3
- package/dist/MarioFramework.Education/ClientApp/src/containers/Dashboard/hooks/useChartDatas.d.ts +19 -2
- package/dist/MarioFramework.Education/ClientApp/src/containers/Dashboard/hooks/useDashboard.d.ts +10 -0
- package/dist/MarioFramework.Education/ClientApp/src/containers/QuestionBank/hooks/useQuestionDetail.d.ts +1 -0
- package/dist/MarioFramework.Education/ClientApp/src/containers/TemplateSurvey/components/TemplateCateModal.d.ts +3 -0
- package/dist/MarioFramework.Education/ClientApp/src/containers/TemplateSurvey/hooks/useTemplateCateDetail.d.ts +35 -0
- package/dist/MarioFramework.Education/ClientApp/src/containers/TemplateSurvey/hooks/useTemplateCateList.d.ts +9 -0
- package/dist/MarioFramework.Education/ClientApp/src/containers/TemplateSurvey/views/TemplateSurveyList.d.ts +3 -0
- package/dist/MarioFramework.Education/ClientApp/src/containers/Training/hooks/useTrainingLink.d.ts +1 -0
- package/dist/MarioFramework.Education/ClientApp/src/index.d.ts +3 -1
- package/dist/MarioFramework.Education/ClientApp/src/services/dashboardService.d.ts +1 -0
- package/dist/MarioFramework.Education/ClientApp/src/services/questionCategoryService.d.ts +5 -0
- package/dist/MarioFramework.Education/ClientApp/src/services/userService.d.ts +4 -0
- package/dist/MarioFramework.Education/ClientApp/src/utils/constants.d.ts +8 -8
- package/dist/index.css +22 -6
- package/dist/index.js +3155 -1662
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +3155 -1664
- package/dist/index.modern.js.map +1 -1
- package/package.json +3 -5
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import { PROPS_FILTERS_COMPONENT } from "../../utils/type";
|
|
3
2
|
import "react-datepicker/dist/react-datepicker.css";
|
|
3
|
+
import { PROPS_FILTERS_COMPONENT } from "../../utils/type";
|
|
4
4
|
declare const SelectFilter: ({ studentUserId, studentId, studentDefault, handleChangeFilters, name, icon, option, onChangeFilters, btnStyle, filter, teacherUserId, changeCurrentTeacherUserId }: PROPS_FILTERS_COMPONENT) => JSX.Element;
|
|
5
5
|
export default SelectFilter;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { IOptions, IStudentWithoutAssistantItem } from "../utils/type.interface";
|
|
3
|
+
declare const useAssignAssistant: () => {
|
|
4
|
+
userList: IStudentWithoutAssistantItem[];
|
|
5
|
+
totalItems: number;
|
|
6
|
+
filters: import("mario-core").Filter;
|
|
7
|
+
changeFilters: (updatedFilters: any) => void;
|
|
8
|
+
modal: import("react").MutableRefObject<any>;
|
|
9
|
+
userChoiced: IStudentWithoutAssistantItem;
|
|
10
|
+
options: IOptions[];
|
|
11
|
+
changeAssistantId: (id: number) => void;
|
|
12
|
+
assistantChangeId: number;
|
|
13
|
+
handleAssign: () => Promise<void>;
|
|
14
|
+
resetData: () => void;
|
|
15
|
+
choiceUser: (userChoiced: IStudentWithoutAssistantItem) => void;
|
|
16
|
+
isChecked: boolean;
|
|
17
|
+
};
|
|
18
|
+
export default useAssignAssistant;
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
export interface IOptions {
|
|
2
|
+
label: string;
|
|
3
|
+
value: number;
|
|
4
|
+
}
|
|
5
|
+
export declare type USER_CHOICE = {
|
|
6
|
+
id: string;
|
|
7
|
+
studentName: string;
|
|
8
|
+
emailStudent: string;
|
|
9
|
+
assistantId: string;
|
|
10
|
+
emailAssistant: string;
|
|
11
|
+
assistantName: string;
|
|
12
|
+
};
|
|
13
|
+
export declare type Assistant = {
|
|
14
|
+
id: string;
|
|
15
|
+
assistantId: number;
|
|
16
|
+
firstName: string;
|
|
17
|
+
lastName: string;
|
|
18
|
+
fullName: string;
|
|
19
|
+
email: string;
|
|
20
|
+
};
|
|
21
|
+
export interface IAssignAssistantModal {
|
|
22
|
+
header: string;
|
|
23
|
+
onAssign: () => Promise<void>;
|
|
24
|
+
resetData: () => void;
|
|
25
|
+
userChoiced: IStudentWithoutAssistantItem;
|
|
26
|
+
options: IOptions[];
|
|
27
|
+
assistantChangeId: number;
|
|
28
|
+
setAssistantChangeId: (value: any) => void;
|
|
29
|
+
isChecked: boolean;
|
|
30
|
+
}
|
|
31
|
+
export interface IStudentWithoutAssistantItem {
|
|
32
|
+
id: number;
|
|
33
|
+
emailStudent: string;
|
|
34
|
+
studentName: string;
|
|
35
|
+
teacherId?: number;
|
|
36
|
+
dateOfBirth: string;
|
|
37
|
+
createdAt: string;
|
|
38
|
+
}
|
|
39
|
+
export declare type TypeStudentWithoutAssistantData = {
|
|
40
|
+
currentPage: number;
|
|
41
|
+
pageSize: number;
|
|
42
|
+
totalItems: number;
|
|
43
|
+
totalPages: number;
|
|
44
|
+
items: IStudentWithoutAssistantItem[];
|
|
45
|
+
};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { DashboardFilter } from "../configs/types";
|
|
3
|
+
interface PropsType {
|
|
4
|
+
isOpen: boolean;
|
|
5
|
+
onClosed: () => void;
|
|
6
|
+
filter: any;
|
|
7
|
+
data: any;
|
|
8
|
+
getData: () => void;
|
|
9
|
+
changeFilter: (updatedFilter: any) => void;
|
|
10
|
+
filterDashboard: DashboardFilter;
|
|
11
|
+
}
|
|
12
|
+
declare const LearningStrategiesTable: ({ isOpen, onClosed, filter, data, getData, changeFilter, filterDashboard }: PropsType) => JSX.Element;
|
|
13
|
+
export default LearningStrategiesTable;
|
package/dist/MarioFramework.Education/ClientApp/src/containers/Dashboard/configs/constants.d.ts
CHANGED
|
@@ -33,6 +33,7 @@ export declare const INITIAl_STUDENT_DASHBOARD: {
|
|
|
33
33
|
totalOneToOne: number;
|
|
34
34
|
totalTimeConference: number;
|
|
35
35
|
totalTimeOneToOne: number;
|
|
36
|
+
totalCheckIn: number;
|
|
36
37
|
};
|
|
37
38
|
export declare const INITIAL_AVG: number[];
|
|
38
39
|
export declare const COLOR_CHART_AND_PERCENTS: string[];
|
|
@@ -156,6 +156,8 @@ export interface IResultQuestion {
|
|
|
156
156
|
export interface IOverviewQuestionChoice {
|
|
157
157
|
month: string;
|
|
158
158
|
resultQuestion: IResultQuestion[];
|
|
159
|
+
endDate: string;
|
|
160
|
+
startDate: string;
|
|
159
161
|
}
|
|
160
162
|
export interface IColumnChartAndPercent {
|
|
161
163
|
overviewQuestionChoice: IOverviewQuestionChoice[];
|
|
@@ -190,6 +192,7 @@ export interface IDashboardToTalStudent {
|
|
|
190
192
|
totalOneToOne: number;
|
|
191
193
|
totalTimeConference: number;
|
|
192
194
|
totalTimeOneToOne: number;
|
|
195
|
+
totalCheckIn: number;
|
|
193
196
|
}
|
|
194
197
|
export declare enum FILTER_YEAR {
|
|
195
198
|
THIS_YEAR = 0,
|
|
@@ -102,9 +102,9 @@ export declare const convertDataToSeriesBullderChart: (data: IReadinessToLearnin
|
|
|
102
102
|
name: string;
|
|
103
103
|
data: import("react").ReactText[][];
|
|
104
104
|
}[];
|
|
105
|
-
export declare const optionColumnChartAndPercents: (months: string[], activeData: boolean[], isRidgeCharts: boolean) => ApexOptions;
|
|
106
|
-
export declare const optionLineChart: (months: string[], activeData: boolean[]) => ApexOptions;
|
|
107
|
-
export declare const optionBarChartAndArea: (months: string[], activeData: boolean[], newseries?: any) => ApexOptions;
|
|
105
|
+
export declare const optionColumnChartAndPercents: (months: string[], activeData: boolean[], isRidgeCharts: boolean, dayOfWeek: string[]) => ApexOptions;
|
|
106
|
+
export declare const optionLineChart: (months: string[], activeData: boolean[], dayOfWeek: string[]) => ApexOptions;
|
|
107
|
+
export declare const optionBarChartAndArea: (months: string[], activeData: boolean[], dayOfWeek: string[], newseries?: any) => ApexOptions;
|
|
108
108
|
export declare const convertDataToDataChart: (data: IOverviewQuestionChoice[]) => string[];
|
|
109
109
|
export declare const convertToSeriesColumnChartAndPercent: (dataCharts: string[], data: IOverviewQuestionChoice[]) => {
|
|
110
110
|
name: string;
|
package/dist/MarioFramework.Education/ClientApp/src/containers/Dashboard/hooks/useChartDatas.d.ts
CHANGED
|
@@ -2,7 +2,17 @@ import React from "react";
|
|
|
2
2
|
import { PROPS_FILTERS_COMPONENT } from "../../../utils/type";
|
|
3
3
|
import { TYPECHART } from "../configs/types";
|
|
4
4
|
declare const useChartDatas: () => {
|
|
5
|
-
chartDashBoards: {
|
|
5
|
+
chartDashBoards: ({
|
|
6
|
+
chartIndex: number;
|
|
7
|
+
id: string;
|
|
8
|
+
label: string;
|
|
9
|
+
children: (_: TYPECHART) => JSX.Element;
|
|
10
|
+
isShowChangeChart: boolean;
|
|
11
|
+
options: never[];
|
|
12
|
+
contentTooltip: string;
|
|
13
|
+
handleClickOpenTable: () => void;
|
|
14
|
+
} | {
|
|
15
|
+
chartIndex: number;
|
|
6
16
|
id: string;
|
|
7
17
|
label: string;
|
|
8
18
|
children: (typeChart: TYPECHART, isPDF?: boolean | undefined) => JSX.Element;
|
|
@@ -12,7 +22,8 @@ declare const useChartDatas: () => {
|
|
|
12
22
|
value: TYPECHART;
|
|
13
23
|
}[];
|
|
14
24
|
contentTooltip: string;
|
|
15
|
-
|
|
25
|
+
handleClickOpenTable?: undefined;
|
|
26
|
+
})[];
|
|
16
27
|
user: any;
|
|
17
28
|
filter: import("../configs/types").DashboardFilter;
|
|
18
29
|
LIST_FILTERS_LEFT: PROPS_FILTERS_COMPONENT[];
|
|
@@ -55,5 +66,11 @@ declare const useChartDatas: () => {
|
|
|
55
66
|
dataConvertedSafety: string[];
|
|
56
67
|
activeColumnSafety: boolean[];
|
|
57
68
|
avgSafety: number[];
|
|
69
|
+
learningStrategiesData: any;
|
|
70
|
+
openLearningStrategiesTable: boolean;
|
|
71
|
+
handleOpenCloseLearningStrategiesTable: () => void;
|
|
72
|
+
filterLearningStrategiesTable: any;
|
|
73
|
+
changeFiltersLearningStrategiesTable: (updatedFilter: any) => void;
|
|
74
|
+
getLearningStrategiesTableData: () => Promise<void>;
|
|
58
75
|
};
|
|
59
76
|
export default useChartDatas;
|
package/dist/MarioFramework.Education/ClientApp/src/containers/Dashboard/hooks/useDashboard.d.ts
CHANGED
|
@@ -53,5 +53,15 @@ declare const useDashboard: () => {
|
|
|
53
53
|
dataConvertedSafety: string[];
|
|
54
54
|
monthsSafety: string[];
|
|
55
55
|
activeColumnSafety: boolean[];
|
|
56
|
+
learningStrategiesData: any;
|
|
57
|
+
openLearningStrategiesTable: boolean;
|
|
58
|
+
handleOpenCloseLearningStrategiesTable: () => void;
|
|
59
|
+
filterLearningStrategiesTable: any;
|
|
60
|
+
changeFiltersLearningStrategiesTable: (updatedFilter: any) => void;
|
|
61
|
+
getLearningStrategiesTableData: () => Promise<void>;
|
|
62
|
+
dayOfWeekOneToOne: string[];
|
|
63
|
+
dayOfWeekConference: string[];
|
|
64
|
+
dayOfWeekReflection: string[];
|
|
65
|
+
dayOfWeekSafety: string[];
|
|
56
66
|
};
|
|
57
67
|
export default useDashboard;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
declare type questionCateDetail = {
|
|
3
|
+
name: string;
|
|
4
|
+
questionIds?: number[];
|
|
5
|
+
};
|
|
6
|
+
declare type TemplateQuestion = {
|
|
7
|
+
id: number;
|
|
8
|
+
text: string;
|
|
9
|
+
};
|
|
10
|
+
declare const useTemplateCateDetail: () => {
|
|
11
|
+
id: number;
|
|
12
|
+
setId: import("react").Dispatch<import("react").SetStateAction<number>>;
|
|
13
|
+
questionCateDetail: questionCateDetail;
|
|
14
|
+
confirmData: (values: any, cb: any) => Promise<void>;
|
|
15
|
+
initValue: questionCateDetail;
|
|
16
|
+
reset: () => void;
|
|
17
|
+
edited: boolean;
|
|
18
|
+
setEdited: import("react").Dispatch<import("react").SetStateAction<boolean>>;
|
|
19
|
+
setEditedTrue: () => Promise<void>;
|
|
20
|
+
setEditedFalse: () => Promise<void>;
|
|
21
|
+
categoryId: number;
|
|
22
|
+
setCategoryId: import("react").Dispatch<import("react").SetStateAction<number>>;
|
|
23
|
+
questionSelectorValue: {
|
|
24
|
+
id: number;
|
|
25
|
+
value: number;
|
|
26
|
+
label: string;
|
|
27
|
+
text: string;
|
|
28
|
+
} | null;
|
|
29
|
+
setTemporaryQuestion: import("react").Dispatch<import("react").SetStateAction<TemplateQuestion | null>>;
|
|
30
|
+
addQuestion: () => void;
|
|
31
|
+
listQuestions: TemplateQuestion[];
|
|
32
|
+
setListQuestions: import("react").Dispatch<import("react").SetStateAction<TemplateQuestion[]>>;
|
|
33
|
+
removeQuestion: (questionId: number) => void;
|
|
34
|
+
};
|
|
35
|
+
export default useTemplateCateDetail;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
declare const useTemplateCateList: () => {
|
|
2
|
+
questionCateList: any;
|
|
3
|
+
totalItems: any;
|
|
4
|
+
filters: import("mario-core").Filter;
|
|
5
|
+
changeFilters: (updatedFilters: any) => void;
|
|
6
|
+
getData: () => Promise<void>;
|
|
7
|
+
removeData: (id: number) => void;
|
|
8
|
+
};
|
|
9
|
+
export default useTemplateCateList;
|
|
@@ -29,4 +29,6 @@ import CompareTeacher from "./containers/CompareTeacher/views/CompareTeacher";
|
|
|
29
29
|
import Dashboard from "./containers/Dashboard/views/Dashboard";
|
|
30
30
|
import SessionTemplateList from "./containers/SessionTemplate/views/SessionTemplateList";
|
|
31
31
|
import SessionTemplateGeneralClassList from "./containers/SessionTemplateGeneralClass/views/SessionTemplateGeneralClassList";
|
|
32
|
-
|
|
32
|
+
import LoadLanguage from "./components/Loading/LoadLanguage";
|
|
33
|
+
import AdminTraining from "./containers/AdminTraining/views/AdminTraining";
|
|
34
|
+
export { ClassList, ConferenceRubricList, ConferenceRubricDetail, SuggestionList, LearningStrategyList, SetupContainer, QuestionBankList, ReflectionFormList, ReflectionContainer, QuestionDetail, SubjectList, LearningSupportCategoryList, BadgeList, GoalExampleList, TutorialScreenContainer, FeedbackList, AssessmentList, QuestionBankContainer, QuestionCategoryList, AssignmentList, AssessmentAssignmentContainer, SessionTemplateContainer, SessionTemplateDetail, SessionTemplateGeneralClassDetail, CustomAlertList, CertificateContainer, CompareTeacher, AssetLog, SessionTemplateList, SessionTemplateGeneralClassList, Dashboard, LoadLanguage, AdminTraining };
|
|
@@ -18,3 +18,4 @@ export declare const getStudentByAge: (filter: any) => Promise<import("axios").A
|
|
|
18
18
|
export declare const getStudentByGender: (filter: any) => Promise<import("axios").AxiosResponse<any>>;
|
|
19
19
|
export declare const getGrades: (studentUserId: string) => Promise<import("axios").AxiosResponse<any>>;
|
|
20
20
|
export declare const getBandScore: () => Promise<import("axios").AxiosResponse<any>>;
|
|
21
|
+
export declare const getLearningStrategiesTableApi: (filter: any) => Promise<import("axios").AxiosResponse<any>>;
|
|
@@ -4,3 +4,8 @@ export declare const getById: (id: number) => Promise<import("axios").AxiosRespo
|
|
|
4
4
|
export declare const create: (data: any) => Promise<import("axios").AxiosResponse<any>>;
|
|
5
5
|
export declare const update: (data: any) => Promise<import("axios").AxiosResponse<any>>;
|
|
6
6
|
export declare const remove: (id: number) => Promise<import("axios").AxiosResponse<any>>;
|
|
7
|
+
export declare const getSurvey: (filter: Filter) => Promise<import("axios").AxiosResponse<any>>;
|
|
8
|
+
export declare const getSurveyById: (id: number) => Promise<import("axios").AxiosResponse<any>>;
|
|
9
|
+
export declare const createSurvey: (data: any) => Promise<import("axios").AxiosResponse<any>>;
|
|
10
|
+
export declare const updateSurvey: (data: any) => Promise<import("axios").AxiosResponse<any>>;
|
|
11
|
+
export declare const removeSurvey: (id: number) => Promise<import("axios").AxiosResponse<any>>;
|
|
@@ -1,7 +1,11 @@
|
|
|
1
|
+
import { TypeStudentWithoutAssistantData } from "../containers/AssignAssistant/utils/type.interface";
|
|
1
2
|
import { TypeStudentAssistantData } from "../containers/SwitchAssistant/utils/type.interface";
|
|
2
3
|
import { IStudentWidthAssistant } from "../utils/serviceType.interface";
|
|
3
4
|
export declare const getStudentAssistant: (data: IStudentWidthAssistant) => Promise<import("axios").AxiosResponse<TypeStudentAssistantData>>;
|
|
5
|
+
export declare const getStudentWithoutAssistant: (data: IStudentWidthAssistant) => Promise<import("axios").AxiosResponse<TypeStudentWithoutAssistantData>>;
|
|
4
6
|
export declare const getAssistant: () => Promise<import("axios").AxiosResponse<any>>;
|
|
5
7
|
export declare const getAssistantByStudentId: (studentId: number) => Promise<import("axios").AxiosResponse<any>>;
|
|
8
|
+
export declare const getAssistants: () => Promise<import("axios").AxiosResponse<any>>;
|
|
6
9
|
export declare const changeAssistantOfStudent: (id: number, assistantUserId: string) => Promise<import("axios").AxiosResponse<any>>;
|
|
10
|
+
export declare const assignAssistantOfStudent: (studentId: number, teacherId: number, assistantId: number) => Promise<import("axios").AxiosResponse<any>>;
|
|
7
11
|
export declare const removeAssistantForStudent: (studentId: number) => Promise<import("axios").AxiosResponse<any>>;
|
|
@@ -7,12 +7,12 @@ export declare const CONFERENCE_RUBRIC_TYPES: {
|
|
|
7
7
|
};
|
|
8
8
|
export declare const GENDER_FILTER: string[];
|
|
9
9
|
export declare enum FILTER_NAME {
|
|
10
|
-
Calendar = "
|
|
11
|
-
Gender = "
|
|
12
|
-
Grade = "
|
|
13
|
-
BandScore = "
|
|
14
|
-
StudentName = "
|
|
15
|
-
TeacherName = "
|
|
16
|
-
StartDate = "
|
|
17
|
-
EndDate = "
|
|
10
|
+
Calendar = "calendar",
|
|
11
|
+
Gender = "gender",
|
|
12
|
+
Grade = "grade",
|
|
13
|
+
BandScore = "current_grade",
|
|
14
|
+
StudentName = "student_name",
|
|
15
|
+
TeacherName = "teacher_name",
|
|
16
|
+
StartDate = "start_date",
|
|
17
|
+
EndDate = "end_date"
|
|
18
18
|
}
|
package/dist/index.css
CHANGED
|
@@ -183,6 +183,18 @@ tbody._b-AXV tr {
|
|
|
183
183
|
._I8kqz {
|
|
184
184
|
position: absolute;
|
|
185
185
|
z-index: 999;
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
._3xuSa {
|
|
189
|
+
display: flex;
|
|
190
|
+
align-items: center;
|
|
191
|
+
justify-content: flex-end;
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
._15ep6 {
|
|
195
|
+
display: flex;
|
|
196
|
+
width: 40%;
|
|
197
|
+
padding-bottom: 10px;
|
|
186
198
|
}
|
|
187
199
|
._3DVMZ {
|
|
188
200
|
display: flex;
|
|
@@ -510,23 +522,27 @@ h6._3zOGW {
|
|
|
510
522
|
}
|
|
511
523
|
|
|
512
524
|
._3H5Ly {
|
|
513
|
-
padding: 6px 12px;
|
|
525
|
+
padding: 6px 12px 6px 0px;
|
|
514
526
|
border-radius: 0 4px 4px 0;
|
|
515
|
-
background: #
|
|
516
|
-
color: #
|
|
527
|
+
background: #336DDA;
|
|
528
|
+
color: #fff;
|
|
517
529
|
}
|
|
518
530
|
|
|
519
531
|
._J_n-D {
|
|
520
|
-
padding: 6px;
|
|
532
|
+
padding: 5px 8px 7px 6px;
|
|
521
533
|
border-radius: 4px 0 0 4px;
|
|
522
|
-
background: #
|
|
534
|
+
background: #336DDA;
|
|
523
535
|
}
|
|
524
536
|
|
|
525
537
|
._2vtSi ._3AALV {
|
|
526
538
|
font-size: 16px;
|
|
527
539
|
}
|
|
528
540
|
|
|
529
|
-
.
|
|
541
|
+
._11Xjn {
|
|
542
|
+
cursor: pointer;
|
|
543
|
+
}
|
|
544
|
+
|
|
545
|
+
._2vtSi ._2htKu {
|
|
530
546
|
cursor: pointer;
|
|
531
547
|
}
|
|
532
548
|
|