touchstudy-core 0.1.171 → 0.1.173
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/Print/hooks/useDeviceType.d.ts +4 -0
- package/dist/containers/Classes/configs/types.d.ts +2 -2
- package/dist/index.js +47 -41
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +47 -41
- package/dist/index.modern.js.map +1 -1
- package/dist/layouts/HeaderLink.d.ts +8 -0
- package/dist/layouts/TimerDropdown.d.ts +3 -0
- package/package.json +1 -1
@@ -155,8 +155,8 @@ export declare type TeacherQuery = {
|
|
155
155
|
sortColumnDirection: OrderBy;
|
156
156
|
};
|
157
157
|
export declare enum TeacherSortBy {
|
158
|
-
Name = "UserProfile.FullName",
|
159
|
-
Email = "UserProfile.Email"
|
158
|
+
Name = "User.UserProfile.FullName",
|
159
|
+
Email = "User.UserProfile.Email"
|
160
160
|
}
|
161
161
|
export declare enum ClassStatus {
|
162
162
|
Default = "Default",
|
package/dist/index.js
CHANGED
@@ -12980,8 +12980,8 @@ var DayOfWeek;
|
|
12980
12980
|
})(DayOfWeek || (DayOfWeek = {}));
|
12981
12981
|
var TeacherSortBy;
|
12982
12982
|
(function (TeacherSortBy) {
|
12983
|
-
TeacherSortBy["Name"] = "UserProfile.FullName";
|
12984
|
-
TeacherSortBy["Email"] = "UserProfile.Email";
|
12983
|
+
TeacherSortBy["Name"] = "User.UserProfile.FullName";
|
12984
|
+
TeacherSortBy["Email"] = "User.UserProfile.Email";
|
12985
12985
|
})(TeacherSortBy || (TeacherSortBy = {}));
|
12986
12986
|
var ClassStatus;
|
12987
12987
|
(function (ClassStatus) {
|
@@ -13259,23 +13259,29 @@ var DEFAULT_USER_FILTERS = {
|
|
13259
13259
|
|
13260
13260
|
var styles$3 = {"avatar":"_2rJkZ","date-picker":"_1iqE2","time-picker":"_20xtc","teacher-selector-wrapper":"_3L1Oj"};
|
13261
13261
|
|
13262
|
-
var _excluded$7 = ["teachers", "value"];
|
13263
13262
|
var TeacherSelector = function TeacherSelector(_ref) {
|
13264
13263
|
var teachers = _ref.teachers,
|
13265
|
-
value = _ref.value
|
13266
|
-
rest = _objectWithoutPropertiesLoose(_ref, _excluded$7);
|
13264
|
+
value = _ref.value;
|
13267
13265
|
var teacherOptions = teachers.map(function (i) {
|
13268
13266
|
return {
|
13269
13267
|
label: i.teacherName + "/" + i.teacherEmail,
|
13270
13268
|
value: i.id
|
13271
13269
|
};
|
13272
13270
|
});
|
13273
|
-
return React__default.createElement(CustomAsyncSelect,
|
13271
|
+
return React__default.createElement(CustomAsyncSelect, {
|
13274
13272
|
options: teacherOptions,
|
13275
|
-
value: value
|
13276
|
-
|
13273
|
+
value: value,
|
13274
|
+
menuPlacement: "bottom",
|
13275
|
+
styles: {
|
13276
|
+
menuPortal: function menuPortal(base) {
|
13277
|
+
return _extends({}, base, {
|
13278
|
+
zIndex: 9999
|
13279
|
+
});
|
13280
|
+
}
|
13281
|
+
},
|
13282
|
+
menuPortalTarget: document.body,
|
13277
13283
|
isClearable: true
|
13278
|
-
})
|
13284
|
+
});
|
13279
13285
|
};
|
13280
13286
|
|
13281
13287
|
var ErrorHandler = function ErrorHandler(_ref) {
|
@@ -20243,12 +20249,12 @@ function CreateNewQuestionDialog(_ref) {
|
|
20243
20249
|
});
|
20244
20250
|
}
|
20245
20251
|
|
20246
|
-
var _excluded$
|
20252
|
+
var _excluded$7 = ["children", "value", "index"];
|
20247
20253
|
var CustomTabPanel = function CustomTabPanel(props) {
|
20248
20254
|
var children = props.children,
|
20249
20255
|
value = props.value,
|
20250
20256
|
index = props.index,
|
20251
|
-
other = _objectWithoutPropertiesLoose(props, _excluded$
|
20257
|
+
other = _objectWithoutPropertiesLoose(props, _excluded$7);
|
20252
20258
|
return React__default.createElement("div", Object.assign({
|
20253
20259
|
role: "tabpanel",
|
20254
20260
|
hidden: value !== index,
|
@@ -24305,7 +24311,7 @@ var ChapterProblemSolvingResultsDialog = function ChapterProblemSolvingResultsDi
|
|
24305
24311
|
}, t("cancel"))))));
|
24306
24312
|
};
|
24307
24313
|
|
24308
|
-
var _excluded$
|
24314
|
+
var _excluded$8 = ["onChange"];
|
24309
24315
|
var StartPageDialog = function StartPageDialog(_ref) {
|
24310
24316
|
var t = _ref.t,
|
24311
24317
|
onClose = _ref.onClose,
|
@@ -24371,7 +24377,7 @@ var StartPageDialog = function StartPageDialog(_ref) {
|
|
24371
24377
|
}, t("page_to_start_with")), React__default.createElement(formik.Field, {
|
24372
24378
|
name: "startPage",
|
24373
24379
|
render: function render(_ref3) {
|
24374
|
-
var field = _objectWithoutPropertiesLoose(_ref3, _excluded$
|
24380
|
+
var field = _objectWithoutPropertiesLoose(_ref3, _excluded$8);
|
24375
24381
|
return React__default.createElement(CustomSelectOption, Object.assign({
|
24376
24382
|
maxMenuHeight: 150,
|
24377
24383
|
menuPosition: "fixed",
|
@@ -26003,10 +26009,10 @@ var DrawerTextbookResultTab = function DrawerTextbookResultTab(_ref) {
|
|
26003
26009
|
};
|
26004
26010
|
|
26005
26011
|
var _styled$1;
|
26006
|
-
var _excluded$
|
26012
|
+
var _excluded$9 = ["className"];
|
26007
26013
|
var CustomTooltip$1 = material.styled(function (_ref) {
|
26008
26014
|
var className = _ref.className,
|
26009
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
26015
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$9);
|
26010
26016
|
return React__default.createElement(material.Tooltip, Object.assign({}, props, {
|
26011
26017
|
classes: {
|
26012
26018
|
popper: className
|
@@ -27487,7 +27493,7 @@ var useTeacherList = function useTeacherList() {
|
|
27487
27493
|
};
|
27488
27494
|
};
|
27489
27495
|
|
27490
|
-
var _excluded$
|
27496
|
+
var _excluded$a = ["getStudents"],
|
27491
27497
|
_excluded2 = ["getTeachers"],
|
27492
27498
|
_excluded3 = ["getLessons"];
|
27493
27499
|
var PAGE_TITLE$4 = "classes";
|
@@ -27538,7 +27544,7 @@ var useClassDetail = function useClassDetail(_ref) {
|
|
27538
27544
|
};
|
27539
27545
|
var _useStudentClassList = useStudentClassList(classId),
|
27540
27546
|
getStudents = _useStudentClassList.getStudents,
|
27541
|
-
studentListProps = _objectWithoutPropertiesLoose(_useStudentClassList, _excluded$
|
27547
|
+
studentListProps = _objectWithoutPropertiesLoose(_useStudentClassList, _excluded$a);
|
27542
27548
|
var _useTeacherClassList = useTeacherClassList(classId),
|
27543
27549
|
getTeachers = _useTeacherClassList.getTeachers,
|
27544
27550
|
teacherListProps = _objectWithoutPropertiesLoose(_useTeacherClassList, _excluded2);
|
@@ -28926,14 +28932,14 @@ var CSV_PREFIX = "data:text/csv;charset=utf-8,";
|
|
28926
28932
|
|
28927
28933
|
var styles$8 = {"action-btn":"_1jXbz","action-btn--pencil":"_at4xP","icon-rotate-180":"_12gv9","drop-area":"_R4bn5"};
|
28928
28934
|
|
28929
|
-
var _excluded$
|
28935
|
+
var _excluded$b = ["text", "isRequired", "className"];
|
28930
28936
|
var LabelRequired = function LabelRequired(_ref) {
|
28931
28937
|
var text = _ref.text,
|
28932
28938
|
_ref$isRequired = _ref.isRequired,
|
28933
28939
|
isRequired = _ref$isRequired === void 0 ? true : _ref$isRequired,
|
28934
28940
|
_ref$className = _ref.className,
|
28935
28941
|
className = _ref$className === void 0 ? "" : _ref$className,
|
28936
|
-
rest = _objectWithoutPropertiesLoose(_ref, _excluded$
|
28942
|
+
rest = _objectWithoutPropertiesLoose(_ref, _excluded$b);
|
28937
28943
|
return React__default.createElement(material.FormLabel, Object.assign({
|
28938
28944
|
className: "fw-medium mb-1 " + className
|
28939
28945
|
}, rest), text, isRequired && React__default.createElement("span", {
|
@@ -28987,7 +28993,7 @@ var deleteUserApi = function deleteUserApi(id) {
|
|
28987
28993
|
return api["delete"](USER_URL$1 + "/delete/" + id);
|
28988
28994
|
};
|
28989
28995
|
|
28990
|
-
var _excluded$
|
28996
|
+
var _excluded$c = ["ref"],
|
28991
28997
|
_excluded2$1 = ["ref"],
|
28992
28998
|
_excluded3$1 = ["ref"],
|
28993
28999
|
_excluded4 = ["ref"],
|
@@ -29017,7 +29023,7 @@ var UserDialog = function UserDialog(_ref) {
|
|
29017
29023
|
t = _useTranslation.t;
|
29018
29024
|
var _register = register("fullName"),
|
29019
29025
|
fullNameRef = _register.ref,
|
29020
|
-
fullNameBio = _objectWithoutPropertiesLoose(_register, _excluded$
|
29026
|
+
fullNameBio = _objectWithoutPropertiesLoose(_register, _excluded$c);
|
29021
29027
|
var _register2 = register("email"),
|
29022
29028
|
emailRef = _register2.ref,
|
29023
29029
|
emailBio = _objectWithoutPropertiesLoose(_register2, _excluded2$1);
|
@@ -33088,12 +33094,12 @@ var ArticleDialog = function ArticleDialog(_ref) {
|
|
33088
33094
|
|
33089
33095
|
var styles$a = {"drawer":"_11aYm","open":"_3Ydwm","drawer-overlay":"_3SQDf","drawer-header":"_2BwOx","drawer-form":"_2Zo7R","dropdown-content-academy":"_1lzjD","dropdown-change":"_1y7K9","dropdown-academy-item":"_1Y-55","dropdown-content-language":"_1fBXY","dropdown-item-language":"_3Szun","dropdown-item-language-active":"_2HhLb","item-address":"_3WYHC","item-logout":"_2-9ix","title-address":"_1r4pn","image-academy":"_2ZozT"};
|
33090
33096
|
|
33091
|
-
var _excluded$
|
33097
|
+
var _excluded$d = ["isOpen", "onClose", "handleSaveExam"];
|
33092
33098
|
var CreateExamDrawer = function CreateExamDrawer(props) {
|
33093
33099
|
var isOpen = props.isOpen,
|
33094
33100
|
onClose = props.onClose,
|
33095
33101
|
handleSaveExam = props.handleSaveExam,
|
33096
|
-
examDetailViewProps = _objectWithoutPropertiesLoose(props, _excluded$
|
33102
|
+
examDetailViewProps = _objectWithoutPropertiesLoose(props, _excluded$d);
|
33097
33103
|
var _useTranslation = reactI18next.useTranslation(),
|
33098
33104
|
t = _useTranslation.t;
|
33099
33105
|
var theme = material.useTheme();
|
@@ -34246,12 +34252,12 @@ var useNotificationDetail = function useNotificationDetail(_ref) {
|
|
34246
34252
|
|
34247
34253
|
var styles$b = {"avatar":"_8niRT"};
|
34248
34254
|
|
34249
|
-
var _excluded$
|
34255
|
+
var _excluded$e = ["value", "disabled", "optionTypeNotification"];
|
34250
34256
|
var TypeSelector = function TypeSelector(_ref) {
|
34251
34257
|
var value = _ref.value,
|
34252
34258
|
disabled = _ref.disabled,
|
34253
34259
|
optionTypeNotification = _ref.optionTypeNotification,
|
34254
|
-
rest = _objectWithoutPropertiesLoose(_ref, _excluded$
|
34260
|
+
rest = _objectWithoutPropertiesLoose(_ref, _excluded$e);
|
34255
34261
|
return React__default.createElement(CustomAsyncSelect, Object.assign({
|
34256
34262
|
options: optionTypeNotification,
|
34257
34263
|
value: value
|
@@ -34644,11 +34650,11 @@ var useNotificationList = function useNotificationList(_ref) {
|
|
34644
34650
|
};
|
34645
34651
|
};
|
34646
34652
|
|
34647
|
-
var _excluded$
|
34653
|
+
var _excluded$f = ["value", "optionTypeNotification"];
|
34648
34654
|
var SelectFilterType = function SelectFilterType(_ref) {
|
34649
34655
|
var value = _ref.value,
|
34650
34656
|
optionTypeNotification = _ref.optionTypeNotification,
|
34651
|
-
rest = _objectWithoutPropertiesLoose(_ref, _excluded$
|
34657
|
+
rest = _objectWithoutPropertiesLoose(_ref, _excluded$f);
|
34652
34658
|
return React__default.createElement(CustomAsyncSelect, Object.assign({
|
34653
34659
|
options: optionTypeNotification,
|
34654
34660
|
value: value
|
@@ -35904,7 +35910,7 @@ var isEqual$1 = function isEqual(prev, next) {
|
|
35904
35910
|
};
|
35905
35911
|
var QuestionShortInput$1 = React.memo(QuestionShortInput, isEqual$1);
|
35906
35912
|
|
35907
|
-
var _excluded$
|
35913
|
+
var _excluded$g = ["onChange"];
|
35908
35914
|
var _$2 = _$8;
|
35909
35915
|
var BpIcon$1 = material.styled("span")(function (_ref) {
|
35910
35916
|
var theme = _ref.theme;
|
@@ -36215,7 +36221,7 @@ var QuestionBlock = function QuestionBlock(_ref2) {
|
|
36215
36221
|
name: path + ".questionTypeId",
|
36216
36222
|
render: function render(_ref5) {
|
36217
36223
|
var _ref5$field = _ref5.field,
|
36218
|
-
field = _objectWithoutPropertiesLoose(_ref5$field, _excluded$
|
36224
|
+
field = _objectWithoutPropertiesLoose(_ref5$field, _excluded$g);
|
36219
36225
|
return React__default.createElement(CustomSelectOption, Object.assign({}, field, {
|
36220
36226
|
isDisabled: disabled,
|
36221
36227
|
value: data.questionType,
|
@@ -36264,7 +36270,7 @@ var isEqual$2 = function isEqual(prev, next) {
|
|
36264
36270
|
};
|
36265
36271
|
var QuestionBlock$1 = React.memo(QuestionBlock, isEqual$2);
|
36266
36272
|
|
36267
|
-
var _excluded$
|
36273
|
+
var _excluded$h = ["data", "path", "isMath", "open", "isLoadingCategories", "isLoadingQuestionTypes", "optionKey", "categories", "questionTypes", "disabled", "onQuestioStartOrderChange", "onDelete", "onOpenSubCategoryMenu", "onOpenCategoryMenu", "onCloseCategoryMenu", "onCloseQuestionTypeMenu", "onOpenQuestionTypeMenu"];
|
36268
36274
|
var _$3 = _$8;
|
36269
36275
|
var QuestionGroupBlockBody = function QuestionGroupBlockBody(_ref) {
|
36270
36276
|
var _data$articles$3, _data$articles$3$cate, _data$articles$4, _data$articles$4$cate, _questions$2;
|
@@ -36285,7 +36291,7 @@ var QuestionGroupBlockBody = function QuestionGroupBlockBody(_ref) {
|
|
36285
36291
|
onCloseCategoryMenu = _ref.onCloseCategoryMenu,
|
36286
36292
|
onCloseQuestionTypeMenu = _ref.onCloseQuestionTypeMenu,
|
36287
36293
|
onOpenQuestionTypeMenu = _ref.onOpenQuestionTypeMenu,
|
36288
|
-
formikProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
36294
|
+
formikProps = _objectWithoutPropertiesLoose(_ref, _excluded$h);
|
36289
36295
|
var errors = formikProps.errors;
|
36290
36296
|
var startOrderRef = React.useRef(null);
|
36291
36297
|
var articles = data.articles,
|
@@ -36428,7 +36434,7 @@ var isEqual$3 = function isEqual(prev, next) {
|
|
36428
36434
|
};
|
36429
36435
|
var QuestionGroupBlockBody$1 = React.memo(QuestionGroupBlockBody, isEqual$3);
|
36430
36436
|
|
36431
|
-
var _excluded$
|
36437
|
+
var _excluded$i = ["expandedIndex", "open", "paths", "path", "isMath", "data", "categories", "isLoadingCategories", "isLoadingQuestionTypes", "questionTypes", "optionKey", "disabled", "onToggle", "onQuestionCountChange", "onDelete", "onOpenSubCategoryMenu", "onOpenCategoryMenu", "onCloseCategoryMenu", "onCopiedPrevQuestionGroup", "onCloseQuestionTypeMenu", "onOpenQuestionTypeMenu"];
|
36432
36438
|
var _$4 = _$8;
|
36433
36439
|
var QuestionGroupBlock = function QuestionGroupBlock(_ref) {
|
36434
36440
|
var _data$articles$3, _data$articles$3$cate, _data$articles$3$cate2, _data$articles$4, _data$articles$4$cate, _data$articles$4$cate2;
|
@@ -36453,7 +36459,7 @@ var QuestionGroupBlock = function QuestionGroupBlock(_ref) {
|
|
36453
36459
|
onCopiedPrevQuestionGroup = _ref.onCopiedPrevQuestionGroup,
|
36454
36460
|
onCloseQuestionTypeMenu = _ref.onCloseQuestionTypeMenu,
|
36455
36461
|
onOpenQuestionTypeMenu = _ref.onOpenQuestionTypeMenu,
|
36456
|
-
formikProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
36462
|
+
formikProps = _objectWithoutPropertiesLoose(_ref, _excluded$i);
|
36457
36463
|
var errors = formikProps.errors,
|
36458
36464
|
setFieldValue = formikProps.setFieldValue;
|
36459
36465
|
var _useTranslation = reactI18next.useTranslation(),
|
@@ -36916,7 +36922,7 @@ var QuestionGroupBlock = function QuestionGroupBlock(_ref) {
|
|
36916
36922
|
}, formikProps)))));
|
36917
36923
|
};
|
36918
36924
|
|
36919
|
-
var _excluded$
|
36925
|
+
var _excluded$j = ["path", "paths", "isMath", "isLoadingCategories", "isLoadingQuestionTypes", "optionKey", "questionGroups", "subChapters", "categories", "questionTypes", "disabled", "onDelete", "onOpenSubCategoryMenu", "onOpenCategoryMenu", "onCloseCategoryMenu", "onCopiedPrevQuestionGroup", "onCloseQuestionTypeMenu", "onOpenQuestionTypeMenu"];
|
36920
36926
|
var ChapterBlockBody = function ChapterBlockBody(_ref) {
|
36921
36927
|
var path = _ref.path,
|
36922
36928
|
paths = _ref.paths,
|
@@ -36936,7 +36942,7 @@ var ChapterBlockBody = function ChapterBlockBody(_ref) {
|
|
36936
36942
|
onCopiedPrevQuestionGroup = _ref.onCopiedPrevQuestionGroup,
|
36937
36943
|
onCloseQuestionTypeMenu = _ref.onCloseQuestionTypeMenu,
|
36938
36944
|
onOpenQuestionTypeMenu = _ref.onOpenQuestionTypeMenu,
|
36939
|
-
formikProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
36945
|
+
formikProps = _objectWithoutPropertiesLoose(_ref, _excluded$j);
|
36940
36946
|
var _useTranslation = reactI18next.useTranslation(),
|
36941
36947
|
t = _useTranslation.t;
|
36942
36948
|
var setFieldValue = formikProps.setFieldValue;
|
@@ -37115,7 +37121,7 @@ var ChapterBlockBody = function ChapterBlockBody(_ref) {
|
|
37115
37121
|
}));
|
37116
37122
|
};
|
37117
37123
|
|
37118
|
-
var _excluded$
|
37124
|
+
var _excluded$k = ["data", "expandedIndex", "open", "path", "paths", "isMath", "isLoadingCategories", "isLoadingQuestionTypes", "categories", "questionTypes", "optionKey", "disabled", "onToggle", "onDelete", "onCopiedPrevQuestionGroup", "onCloseCategoryMenu", "onOpenCategoryMenu", "onOpenSubCategoryMenu", "onOpenQuestionTypeMenu", "onCloseQuestionTypeMenu"];
|
37119
37125
|
var _$5 = _$8;
|
37120
37126
|
var ChapterBlock = function ChapterBlock(_ref) {
|
37121
37127
|
var data = _ref.data,
|
@@ -37138,7 +37144,7 @@ var ChapterBlock = function ChapterBlock(_ref) {
|
|
37138
37144
|
onOpenSubCategoryMenu = _ref.onOpenSubCategoryMenu,
|
37139
37145
|
onOpenQuestionTypeMenu = _ref.onOpenQuestionTypeMenu,
|
37140
37146
|
onCloseQuestionTypeMenu = _ref.onCloseQuestionTypeMenu,
|
37141
|
-
formikProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
37147
|
+
formikProps = _objectWithoutPropertiesLoose(_ref, _excluded$k);
|
37142
37148
|
var errors = formikProps.errors;
|
37143
37149
|
var _useTranslation = reactI18next.useTranslation(),
|
37144
37150
|
t = _useTranslation.t;
|
@@ -37829,7 +37835,7 @@ var TextbookContentsTab = function TextbookContentsTab(props) {
|
|
37829
37835
|
}));
|
37830
37836
|
};
|
37831
37837
|
|
37832
|
-
var _excluded$
|
37838
|
+
var _excluded$l = ["value"];
|
37833
37839
|
var VisuallyHiddenInput = material.styled("input")({
|
37834
37840
|
clip: "rect(0 0 0 0)",
|
37835
37841
|
clipPath: "inset(50%)",
|
@@ -37997,7 +38003,7 @@ var TextbookInfoTab = function TextbookInfoTab(_ref) {
|
|
37997
38003
|
render: function render(_ref4) {
|
37998
38004
|
var _ref4$field = _ref4.field,
|
37999
38005
|
value = _ref4$field.value,
|
38000
|
-
action = _objectWithoutPropertiesLoose(_ref4$field, _excluded$
|
38006
|
+
action = _objectWithoutPropertiesLoose(_ref4$field, _excluded$l);
|
38001
38007
|
return React__default.createElement(xDatePickers.LocalizationProvider, {
|
38002
38008
|
dateAdapter: AdapterMoment.AdapterMoment
|
38003
38009
|
}, React__default.createElement(xDatePickers.DatePicker, Object.assign({}, action, {
|
@@ -38471,7 +38477,7 @@ var TextbookOwnersTab = function TextbookOwnersTab(_ref) {
|
|
38471
38477
|
}));
|
38472
38478
|
};
|
38473
38479
|
|
38474
|
-
var _excluded$
|
38480
|
+
var _excluded$m = ["isCreatedByAdmin", "isSuperAdminUser", "isSuperAdmin", "isAdmin", "textbookId", "selected", "coverImage", "disabled", "ownersDisabled", "onChangeTab", "onUploadImage"];
|
38475
38481
|
var PreparedTextbookForm = function PreparedTextbookForm(_ref) {
|
38476
38482
|
var isCreatedByAdmin = _ref.isCreatedByAdmin,
|
38477
38483
|
isSuperAdminUser = _ref.isSuperAdminUser,
|
@@ -38484,7 +38490,7 @@ var PreparedTextbookForm = function PreparedTextbookForm(_ref) {
|
|
38484
38490
|
ownersDisabled = _ref.ownersDisabled,
|
38485
38491
|
onChangeTab = _ref.onChangeTab,
|
38486
38492
|
onUploadImage = _ref.onUploadImage,
|
38487
|
-
formikProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
38493
|
+
formikProps = _objectWithoutPropertiesLoose(_ref, _excluded$m);
|
38488
38494
|
var values = formikProps.values,
|
38489
38495
|
errors = formikProps.errors,
|
38490
38496
|
dirty = formikProps.dirty,
|