aq-fe-framework 0.1.241 → 0.1.243
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/EmailConfig-JHRl7zGL.d.mts +12 -0
- package/dist/{chunk-TQCEVAOM.mjs → chunk-TSQB7TIU.mjs} +357 -171
- package/dist/components/index.d.mts +19 -1
- package/dist/components/index.mjs +6 -2
- package/dist/interfaces/index.d.mts +491 -0
- package/dist/interfaces/index.mjs +0 -0
- package/dist/modules-features/index.d.mts +1 -9
- package/dist/modules-features/index.mjs +12 -10
- package/package.json +5 -1
@@ -344,6 +344,12 @@ interface IDateInput extends DateInputProps {
|
|
344
344
|
}
|
345
345
|
declare function MyDateInput({ label, ...rest }: IDateInput): react_jsx_runtime.JSX.Element;
|
346
346
|
|
347
|
+
interface MyDayOfWeekPickerProps {
|
348
|
+
value?: number[];
|
349
|
+
onChange?: (val: number[]) => void;
|
350
|
+
}
|
351
|
+
declare function MyDayOfWeekPicker({ value, onChange }: MyDayOfWeekPickerProps): react_jsx_runtime.JSX.Element;
|
352
|
+
|
347
353
|
interface IFieldset extends FieldsetProps {
|
348
354
|
children?: ReactNode;
|
349
355
|
title: string;
|
@@ -387,6 +393,18 @@ interface IMyTextInput extends TextInputProps {
|
|
387
393
|
}
|
388
394
|
declare function MyTextInput({ label, defaultValue, isPhoneNumber, ...rest }: IMyTextInput): react_jsx_runtime.JSX.Element;
|
389
395
|
|
396
|
+
interface IWeeklySession {
|
397
|
+
dayOfWeek: number;
|
398
|
+
startPeriod: number;
|
399
|
+
numberOfPeriods: number;
|
400
|
+
durationMinutes: number;
|
401
|
+
}
|
402
|
+
interface WeeklySessionSchedulerProps {
|
403
|
+
value?: IWeeklySession[];
|
404
|
+
onChange?: (val: IWeeklySession[]) => void;
|
405
|
+
}
|
406
|
+
declare function MyWeeklySessionSchedulerPicker({ value, onChange, }: WeeklySessionSchedulerProps): react_jsx_runtime.JSX.Element;
|
407
|
+
|
390
408
|
interface I$2 {
|
391
409
|
moduleCode?: string;
|
392
410
|
moduleName?: string;
|
@@ -521,4 +539,4 @@ interface IMySkeletonTable extends SkeletonProps {
|
|
521
539
|
}
|
522
540
|
declare function MySkeletonTable({ h }: IMySkeletonTable): react_jsx_runtime.JSX.Element;
|
523
541
|
|
524
|
-
export { AQButtonCreateByImportFile, AQButtonExportData, AQCard, AQSelectTableByOpenModal, AQStatCard1, Boxes, FaviconSetter, HeaderMegaMenu, type IAQCardProps, type IMyTextEditor, I_BasicAppShell_LinkItem, MyActionIcon, MyActionIconCheck, MyActionIconDelete, MyActionIconDownloadPDF, MyActionIconModal, MyActionIconUpdate, MyActionIconUpload, MyActionIconViewPDF, MyAnchorViewPDF, MyAppSpotlight, MyBoxesBackground, MyBoxesCore, MyButton, MyButtonCreate, MyButtonDeleteList, MyButtonImport, MyButtonModal, MyButtonPrintPDF, MyButtonPrintTablePDF, MyButtonRouterBack, MyButtonViewPDF, MyCalendar, MyCardInformation, MyCardioLoader, MyCenterFull, MyCheckbox, MyContainer, MyDataTable, MyDataTableSelect, MyDateInput, MyFieldset, MyFileInput, MyFlexColumn, MyFlexEnd, MyFlexRow, MyHtmlWrapper, MyIconText, MyKeyLabel, MyNumberFormatter, MyNumberInput, MyPageContent, MyScheduleX, MySelect, MySelectAPIGet, MySkeletonTable, MySwitchTheme, MyTab, MyTextArea, MyTextEditor, MyTextInput, SelectFieldModal, SelectFileModal, type SelectFileModalProps, useHeaderMegaMenuStore, useS_BasicAppShell, useS_ButtonImport };
|
542
|
+
export { AQButtonCreateByImportFile, AQButtonExportData, AQCard, AQSelectTableByOpenModal, AQStatCard1, Boxes, FaviconSetter, HeaderMegaMenu, type IAQCardProps, type IMyTextEditor, type IWeeklySession, I_BasicAppShell_LinkItem, MyActionIcon, MyActionIconCheck, MyActionIconDelete, MyActionIconDownloadPDF, MyActionIconModal, MyActionIconUpdate, MyActionIconUpload, MyActionIconViewPDF, MyAnchorViewPDF, MyAppSpotlight, MyBoxesBackground, MyBoxesCore, MyButton, MyButtonCreate, MyButtonDeleteList, MyButtonImport, MyButtonModal, MyButtonPrintPDF, MyButtonPrintTablePDF, MyButtonRouterBack, MyButtonViewPDF, MyCalendar, MyCardInformation, MyCardioLoader, MyCenterFull, MyCheckbox, MyContainer, MyDataTable, MyDataTableSelect, MyDateInput, MyDayOfWeekPicker, MyFieldset, MyFileInput, MyFlexColumn, MyFlexEnd, MyFlexRow, MyHtmlWrapper, MyIconText, MyKeyLabel, MyNumberFormatter, MyNumberInput, MyPageContent, MyScheduleX, MySelect, MySelectAPIGet, MySkeletonTable, MySwitchTheme, MyTab, MyTextArea, MyTextEditor, MyTextInput, MyWeeklySessionSchedulerPicker, SelectFieldModal, SelectFileModal, type SelectFileModalProps, type WeeklySessionSchedulerProps, useHeaderMegaMenuStore, useS_BasicAppShell, useS_ButtonImport };
|
@@ -39,6 +39,7 @@ import {
|
|
39
39
|
MyDataTable,
|
40
40
|
MyDataTableSelect,
|
41
41
|
MyDateInput,
|
42
|
+
MyDayOfWeekPicker,
|
42
43
|
MyFieldset,
|
43
44
|
MyFileInput,
|
44
45
|
MyFlexColumn,
|
@@ -59,6 +60,7 @@ import {
|
|
59
60
|
MyTextArea,
|
60
61
|
MyTextEditor,
|
61
62
|
MyTextInput,
|
63
|
+
MyWeeklySessionSchedulerPicker,
|
62
64
|
SelectFieldModal,
|
63
65
|
SelectFileModal,
|
64
66
|
groupToTwoLevels,
|
@@ -66,11 +68,11 @@ import {
|
|
66
68
|
useS_BasicAppShell,
|
67
69
|
useS_ButtonImport,
|
68
70
|
utils_layout_getItemsWithoutLinks
|
69
|
-
} from "../chunk-
|
71
|
+
} from "../chunk-TSQB7TIU.mjs";
|
70
72
|
import "../chunk-HMRYQTJT.mjs";
|
71
|
-
import "../chunk-Y3YGC5IH.mjs";
|
72
73
|
import "../chunk-5U2JSHSJ.mjs";
|
73
74
|
import "../chunk-7ZCOFATU.mjs";
|
75
|
+
import "../chunk-Y3YGC5IH.mjs";
|
74
76
|
import "../chunk-FWCSY2DS.mjs";
|
75
77
|
export {
|
76
78
|
AQButtonCreateByImportFile,
|
@@ -113,6 +115,7 @@ export {
|
|
113
115
|
MyDataTable,
|
114
116
|
MyDataTableSelect,
|
115
117
|
MyDateInput,
|
118
|
+
MyDayOfWeekPicker,
|
116
119
|
MyFieldset,
|
117
120
|
MyFileInput,
|
118
121
|
MyFlexColumn,
|
@@ -133,6 +136,7 @@ export {
|
|
133
136
|
MyTextArea,
|
134
137
|
MyTextEditor,
|
135
138
|
MyTextInput,
|
139
|
+
MyWeeklySessionSchedulerPicker,
|
136
140
|
SelectFieldModal,
|
137
141
|
SelectFileModal,
|
138
142
|
groupToTwoLevels,
|
@@ -0,0 +1,491 @@
|
|
1
|
+
export { a as IAQModule, I as IBaseEntity } from '../IAQModule-CIu1JdT0.mjs';
|
2
|
+
export { I as IEmailConfig } from '../EmailConfig-JHRl7zGL.mjs';
|
3
|
+
|
4
|
+
interface IAcademicYear {
|
5
|
+
id?: number;
|
6
|
+
code?: string | undefined;
|
7
|
+
name?: string | undefined;
|
8
|
+
concurrencyStamp?: string | undefined;
|
9
|
+
isEnabled?: boolean;
|
10
|
+
numberOfSemester?: number;
|
11
|
+
isCurrent?: boolean | undefined;
|
12
|
+
}
|
13
|
+
|
14
|
+
interface IAQSSO {
|
15
|
+
studentCode?: string | undefined;
|
16
|
+
falcutyName?: string | undefined;
|
17
|
+
falcutyId?: string | undefined;
|
18
|
+
majorsName?: string | undefined;
|
19
|
+
majorsId?: string | undefined;
|
20
|
+
fullname?: string | undefined;
|
21
|
+
dateOfBirth?: string | undefined;
|
22
|
+
email?: string | undefined;
|
23
|
+
classId?: string | undefined;
|
24
|
+
className?: string | undefined;
|
25
|
+
}
|
26
|
+
|
27
|
+
interface IAQSyncData {
|
28
|
+
aqFacultyIds?: number[] | undefined;
|
29
|
+
aqClassIds?: number[] | undefined;
|
30
|
+
pageNumber?: number;
|
31
|
+
pageSize?: number;
|
32
|
+
}
|
33
|
+
|
34
|
+
interface IChangePassWord {
|
35
|
+
userId?: number;
|
36
|
+
currentPassWord?: string | undefined;
|
37
|
+
newPassWord?: string | undefined;
|
38
|
+
}
|
39
|
+
|
40
|
+
interface IComplaintProccess {
|
41
|
+
id?: number;
|
42
|
+
note?: string | undefined;
|
43
|
+
status?: number;
|
44
|
+
newPoint?: number | undefined;
|
45
|
+
}
|
46
|
+
|
47
|
+
interface ICreateAccount {
|
48
|
+
id?: number;
|
49
|
+
isEnabled?: boolean;
|
50
|
+
isBlocked?: boolean;
|
51
|
+
roleId?: number | undefined;
|
52
|
+
userName?: string | undefined;
|
53
|
+
passwordHash?: string | undefined;
|
54
|
+
passWord?: string | undefined;
|
55
|
+
code?: string | undefined;
|
56
|
+
email?: string | undefined;
|
57
|
+
phoneNumber?: string | undefined;
|
58
|
+
address?: string | undefined;
|
59
|
+
avatarPath?: string | undefined;
|
60
|
+
fullName?: string | undefined;
|
61
|
+
lockoutEnd?: Date | undefined;
|
62
|
+
securityStamp?: string | undefined;
|
63
|
+
expiresDate?: Date | undefined;
|
64
|
+
facultyId?: number | undefined;
|
65
|
+
majorsId?: number | undefined;
|
66
|
+
classId?: number | undefined;
|
67
|
+
workingUnitId?: number | undefined;
|
68
|
+
}
|
69
|
+
|
70
|
+
interface IFile {
|
71
|
+
fileName?: string | undefined;
|
72
|
+
fileExtension?: string | undefined;
|
73
|
+
fileBase64String?: string | undefined;
|
74
|
+
}
|
75
|
+
|
76
|
+
interface IDocument {
|
77
|
+
id?: number;
|
78
|
+
code?: string | undefined;
|
79
|
+
name?: string | undefined;
|
80
|
+
concurrencyStamp?: string | undefined;
|
81
|
+
isEnabled?: boolean;
|
82
|
+
path?: string | undefined;
|
83
|
+
orderBy?: number;
|
84
|
+
documentType?: number;
|
85
|
+
promulgateDate?: Date | undefined;
|
86
|
+
decisionCode?: string | undefined;
|
87
|
+
departmentName?: string | undefined;
|
88
|
+
description?: string | undefined;
|
89
|
+
startDate?: Date | undefined;
|
90
|
+
endDate?: Date | undefined;
|
91
|
+
conclusion?: string | undefined;
|
92
|
+
note?: string | undefined;
|
93
|
+
documentAttributeId?: number | undefined;
|
94
|
+
documentAttributeName?: string | undefined;
|
95
|
+
isCycleCheck?: boolean | undefined;
|
96
|
+
meetingDate?: Date | undefined;
|
97
|
+
fileDetail?: IFile;
|
98
|
+
}
|
99
|
+
|
100
|
+
interface IDocumentAttribute {
|
101
|
+
id?: number;
|
102
|
+
isEnabled?: boolean;
|
103
|
+
name?: string | undefined;
|
104
|
+
code?: string | undefined;
|
105
|
+
createdWhen?: Date | undefined;
|
106
|
+
createdBy?: number | undefined;
|
107
|
+
modifiedWhen?: Date | undefined;
|
108
|
+
modifiedBy?: number | undefined;
|
109
|
+
concurrencyStamp?: string | undefined;
|
110
|
+
documentType?: number | undefined;
|
111
|
+
}
|
112
|
+
|
113
|
+
interface IEvent {
|
114
|
+
id?: number;
|
115
|
+
code?: string | undefined;
|
116
|
+
name?: string | undefined;
|
117
|
+
concurrencyStamp?: string | undefined;
|
118
|
+
isEnabled?: boolean;
|
119
|
+
host?: number | undefined;
|
120
|
+
startDate?: Date | undefined;
|
121
|
+
endDate?: Date | undefined;
|
122
|
+
maxPoint?: number | undefined;
|
123
|
+
minPoint?: number | undefined;
|
124
|
+
standardId?: number | undefined;
|
125
|
+
note?: string | undefined;
|
126
|
+
isNoted?: boolean | undefined;
|
127
|
+
address?: number | undefined;
|
128
|
+
quantity?: number;
|
129
|
+
facultyId?: number | undefined;
|
130
|
+
isRequired?: boolean;
|
131
|
+
isCompleted?: boolean;
|
132
|
+
completedBy?: number | undefined;
|
133
|
+
reviewdBy?: number | undefined;
|
134
|
+
session?: number | undefined;
|
135
|
+
isTemplate?: boolean | undefined;
|
136
|
+
parentEventId?: number | undefined;
|
137
|
+
futurePlanId?: number | undefined;
|
138
|
+
eventGroupId?: number | undefined;
|
139
|
+
}
|
140
|
+
|
141
|
+
interface IEventComplaint {
|
142
|
+
id?: number;
|
143
|
+
code?: string | undefined;
|
144
|
+
name?: string | undefined;
|
145
|
+
concurrencyStamp?: string | undefined;
|
146
|
+
isEnabled?: boolean;
|
147
|
+
eventCode?: string | undefined;
|
148
|
+
description?: string | undefined;
|
149
|
+
status?: number;
|
150
|
+
path?: string | undefined;
|
151
|
+
studentId?: number;
|
152
|
+
point?: number;
|
153
|
+
complaintPoint?: number;
|
154
|
+
newPoint?: number | undefined;
|
155
|
+
note?: string | undefined;
|
156
|
+
fileDetail?: IFile;
|
157
|
+
}
|
158
|
+
|
159
|
+
interface IEventFillter {
|
160
|
+
standardId?: number | undefined;
|
161
|
+
host?: number | undefined;
|
162
|
+
searchText?: string | undefined;
|
163
|
+
facultyId?: number | undefined;
|
164
|
+
startDate?: Date | undefined;
|
165
|
+
endDate?: Date | undefined;
|
166
|
+
isOrganization?: boolean | undefined;
|
167
|
+
pageNumber?: number | undefined;
|
168
|
+
pageSize?: number | undefined;
|
169
|
+
}
|
170
|
+
|
171
|
+
interface IImportStudentPaticipation {
|
172
|
+
studentCode?: string | undefined;
|
173
|
+
enrollName?: string | undefined;
|
174
|
+
enrollPoint?: number;
|
175
|
+
}
|
176
|
+
|
177
|
+
interface IPagePermission {
|
178
|
+
pageId?: number;
|
179
|
+
isCreate?: boolean;
|
180
|
+
isUpdate?: boolean;
|
181
|
+
isDelete?: boolean;
|
182
|
+
isRead?: boolean;
|
183
|
+
isPrint?: boolean;
|
184
|
+
isExport?: boolean;
|
185
|
+
}
|
186
|
+
|
187
|
+
interface IRolePermission {
|
188
|
+
roleId?: number;
|
189
|
+
pagePermissions?: IPagePermission[] | undefined;
|
190
|
+
}
|
191
|
+
|
192
|
+
interface IScientificProfileProjectUser {
|
193
|
+
id?: number;
|
194
|
+
code?: string | undefined;
|
195
|
+
name?: string | undefined;
|
196
|
+
concurrencyStamp?: string | undefined;
|
197
|
+
isEnabled?: boolean;
|
198
|
+
projectId?: number | undefined;
|
199
|
+
userId?: number | undefined;
|
200
|
+
isLeader?: boolean | undefined;
|
201
|
+
role?: string | undefined;
|
202
|
+
linkFileId?: number | undefined;
|
203
|
+
}
|
204
|
+
|
205
|
+
interface IScientificProfileResearchGroup {
|
206
|
+
id?: number;
|
207
|
+
code?: string | undefined;
|
208
|
+
name?: string | undefined;
|
209
|
+
concurrencyStamp?: string | undefined;
|
210
|
+
isEnabled?: boolean;
|
211
|
+
nameEnglish?: string | undefined;
|
212
|
+
abbreviation?: string | undefined;
|
213
|
+
strategicObjective?: string | undefined;
|
214
|
+
fieldOfExpertiseId?: number | undefined;
|
215
|
+
researchGroupType?: string | undefined;
|
216
|
+
}
|
217
|
+
|
218
|
+
interface IScientificProfileResearchGroupUser {
|
219
|
+
id?: number;
|
220
|
+
code?: string | undefined;
|
221
|
+
name?: string | undefined;
|
222
|
+
concurrencyStamp?: string | undefined;
|
223
|
+
isEnabled?: boolean;
|
224
|
+
userId?: number | undefined;
|
225
|
+
isGroupLeader?: boolean | undefined;
|
226
|
+
researchGroupId?: number | undefined;
|
227
|
+
isCollaborator?: boolean | undefined;
|
228
|
+
}
|
229
|
+
|
230
|
+
interface IScientificProfileResearchProject {
|
231
|
+
id?: number;
|
232
|
+
code?: string | undefined;
|
233
|
+
name?: string | undefined;
|
234
|
+
concurrencyStamp?: string | undefined;
|
235
|
+
isEnabled?: boolean;
|
236
|
+
fileLinks?: string[] | undefined;
|
237
|
+
isPublished?: boolean | undefined;
|
238
|
+
projectLevel?: string | undefined;
|
239
|
+
leadUnit?: string | undefined;
|
240
|
+
managingUnit?: string | undefined;
|
241
|
+
startDate?: Date | undefined;
|
242
|
+
endDate?: Date | undefined;
|
243
|
+
funding?: number | undefined;
|
244
|
+
researchGroupId?: number | undefined;
|
245
|
+
}
|
246
|
+
|
247
|
+
interface ISignIn {
|
248
|
+
userName?: string | undefined;
|
249
|
+
passWord?: string | undefined;
|
250
|
+
}
|
251
|
+
|
252
|
+
interface ISRMUserinfo {
|
253
|
+
id?: number;
|
254
|
+
code?: string | undefined;
|
255
|
+
name?: string | undefined;
|
256
|
+
concurrencyStamp?: string | undefined;
|
257
|
+
isEnabled?: boolean;
|
258
|
+
userId?: number;
|
259
|
+
isEmailVerified?: boolean | undefined;
|
260
|
+
isExternal?: boolean | undefined;
|
261
|
+
isBlocked?: boolean | undefined;
|
262
|
+
isLocked?: boolean | undefined;
|
263
|
+
gender?: number | undefined;
|
264
|
+
birthDate?: Date | undefined;
|
265
|
+
birthPlace?: string | undefined;
|
266
|
+
hometown?: string | undefined;
|
267
|
+
ethnicity?: string | undefined;
|
268
|
+
highestDegree?: string | undefined;
|
269
|
+
degreeYear?: number | undefined;
|
270
|
+
degreeCountry?: string | undefined;
|
271
|
+
highestScientificTitle?: string | undefined;
|
272
|
+
scientificTitleAppointmentYear?: number | undefined;
|
273
|
+
workingTitle?: string | undefined;
|
274
|
+
woringPlace?: string | undefined;
|
275
|
+
officePhoneNumber?: string | undefined;
|
276
|
+
personalPhoneNumber?: string | undefined;
|
277
|
+
mobilePhoneNumber?: string | undefined;
|
278
|
+
fax?: string | undefined;
|
279
|
+
nationalId?: string | undefined;
|
280
|
+
idIssueDate?: Date | undefined;
|
281
|
+
idIssuePlace?: string | undefined;
|
282
|
+
contactAddress?: string | undefined;
|
283
|
+
}
|
284
|
+
|
285
|
+
interface ISystemCatalogAcademicYear {
|
286
|
+
id?: number;
|
287
|
+
code?: string | undefined;
|
288
|
+
name?: string | undefined;
|
289
|
+
concurrencyStamp?: string | undefined;
|
290
|
+
isEnabled?: boolean;
|
291
|
+
administrativeYearStart?: Date | undefined;
|
292
|
+
administrativeYearEnd?: Date | undefined;
|
293
|
+
academicYearStart?: Date | undefined;
|
294
|
+
academicYearEnd?: Date | undefined;
|
295
|
+
isCurrent?: boolean;
|
296
|
+
}
|
297
|
+
|
298
|
+
interface ISystemCatalogDomainCategory {
|
299
|
+
id?: number;
|
300
|
+
code?: string | undefined;
|
301
|
+
name?: string | undefined;
|
302
|
+
concurrencyStamp?: string | undefined;
|
303
|
+
isEnabled?: boolean;
|
304
|
+
notes?: string | undefined;
|
305
|
+
}
|
306
|
+
|
307
|
+
interface ISystemCatalogProjectLevelCategory {
|
308
|
+
id?: number;
|
309
|
+
code?: string | undefined;
|
310
|
+
name?: string | undefined;
|
311
|
+
concurrencyStamp?: string | undefined;
|
312
|
+
isEnabled?: boolean;
|
313
|
+
notes?: string | undefined;
|
314
|
+
}
|
315
|
+
|
316
|
+
interface ISystemCatalogProjectTypeCategory {
|
317
|
+
id?: number;
|
318
|
+
code?: string | undefined;
|
319
|
+
name?: string | undefined;
|
320
|
+
concurrencyStamp?: string | undefined;
|
321
|
+
isEnabled?: boolean;
|
322
|
+
notes?: string | undefined;
|
323
|
+
}
|
324
|
+
|
325
|
+
interface ISystemCatalogRoleActivity {
|
326
|
+
id?: number;
|
327
|
+
code?: string | undefined;
|
328
|
+
name?: string | undefined;
|
329
|
+
concurrencyStamp?: string | undefined;
|
330
|
+
isEnabled?: boolean;
|
331
|
+
notes?: string | undefined;
|
332
|
+
}
|
333
|
+
|
334
|
+
interface ISystemCatalogTaskCategory {
|
335
|
+
id?: number;
|
336
|
+
code?: string | undefined;
|
337
|
+
name?: string | undefined;
|
338
|
+
concurrencyStamp?: string | undefined;
|
339
|
+
isEnabled?: boolean;
|
340
|
+
notes?: string | undefined;
|
341
|
+
}
|
342
|
+
|
343
|
+
interface ISystemManagementAcademicHistory {
|
344
|
+
id?: number;
|
345
|
+
code?: string | undefined;
|
346
|
+
name?: string | undefined;
|
347
|
+
concurrencyStamp?: string | undefined;
|
348
|
+
isEnabled?: boolean;
|
349
|
+
userId?: number;
|
350
|
+
degreeEducationLevel?: string | undefined;
|
351
|
+
degreeInstitution?: string | undefined;
|
352
|
+
degreeFieldOfStudy?: string | undefined;
|
353
|
+
degreeCountry?: string | undefined;
|
354
|
+
degreeGraduationYear?: number | undefined;
|
355
|
+
degreeSecondBachelor?: string | undefined;
|
356
|
+
degreeSecondBachelorGraduationYear?: number | undefined;
|
357
|
+
masterSpecializedThesis?: string | undefined;
|
358
|
+
masterGraduationYear?: number | undefined;
|
359
|
+
masterInstitution?: string | undefined;
|
360
|
+
doctoralSpecializedThesis?: string | undefined;
|
361
|
+
doctoralGraduationYear?: number | undefined;
|
362
|
+
doctoralInstitution?: string | undefined;
|
363
|
+
doctoralThesisTitle?: string | undefined;
|
364
|
+
foreignLanguage1?: string | undefined;
|
365
|
+
foreignLanguage1UsageLevel?: string | undefined;
|
366
|
+
foreignLanguage2?: string | undefined;
|
367
|
+
foreignLanguage2UsageLevel?: string | undefined;
|
368
|
+
foreignLanguage3?: string | undefined;
|
369
|
+
foreignLanguage3UsageLevel?: string | undefined;
|
370
|
+
}
|
371
|
+
|
372
|
+
interface ISystemManagementProfessionalWorkHistory {
|
373
|
+
id?: number;
|
374
|
+
code?: string | undefined;
|
375
|
+
name?: string | undefined;
|
376
|
+
concurrencyStamp?: string | undefined;
|
377
|
+
isEnabled?: boolean;
|
378
|
+
userId?: number | undefined;
|
379
|
+
timePeriod?: string | undefined;
|
380
|
+
workPlace?: string | undefined;
|
381
|
+
responsibilities?: string | undefined;
|
382
|
+
}
|
383
|
+
|
384
|
+
interface ISystemManagementPublishedScientificWork {
|
385
|
+
id?: number;
|
386
|
+
code?: string | undefined;
|
387
|
+
name?: string | undefined;
|
388
|
+
concurrencyStamp?: string | undefined;
|
389
|
+
isEnabled?: boolean;
|
390
|
+
userId?: number;
|
391
|
+
projectName?: string | undefined;
|
392
|
+
publicationYear?: string | undefined;
|
393
|
+
journalName?: string | undefined;
|
394
|
+
}
|
395
|
+
|
396
|
+
interface ISystemManagementRoleGroup {
|
397
|
+
id?: number;
|
398
|
+
code?: string | undefined;
|
399
|
+
name?: string | undefined;
|
400
|
+
concurrencyStamp?: string | undefined;
|
401
|
+
isEnabled?: boolean;
|
402
|
+
roleGroupName?: string | undefined;
|
403
|
+
description?: string | undefined;
|
404
|
+
}
|
405
|
+
|
406
|
+
interface ISystemManagementRoleGroupMenuPermission {
|
407
|
+
id?: number;
|
408
|
+
code?: string | undefined;
|
409
|
+
name?: string | undefined;
|
410
|
+
concurrencyStamp?: string | undefined;
|
411
|
+
isEnabled?: boolean;
|
412
|
+
roleGroupId?: number;
|
413
|
+
menuId?: number;
|
414
|
+
isRead?: boolean | undefined;
|
415
|
+
isAdd?: boolean | undefined;
|
416
|
+
isUpdate?: boolean | undefined;
|
417
|
+
isPrint?: boolean | undefined;
|
418
|
+
isExport?: boolean | undefined;
|
419
|
+
isDelete?: boolean | undefined;
|
420
|
+
}
|
421
|
+
|
422
|
+
interface ISystemManagementScientificResearchProject {
|
423
|
+
id?: number;
|
424
|
+
code?: string | undefined;
|
425
|
+
name?: string | undefined;
|
426
|
+
concurrencyStamp?: string | undefined;
|
427
|
+
isEnabled?: boolean;
|
428
|
+
userId?: number;
|
429
|
+
projectName?: string | undefined;
|
430
|
+
startYear?: string | undefined;
|
431
|
+
endYear?: string | undefined;
|
432
|
+
projectLevel?: string | undefined;
|
433
|
+
responsibilities?: string | undefined;
|
434
|
+
}
|
435
|
+
|
436
|
+
interface ISystemManagementUserMenuPermission {
|
437
|
+
id?: number;
|
438
|
+
code?: string | undefined;
|
439
|
+
name?: string | undefined;
|
440
|
+
concurrencyStamp?: string | undefined;
|
441
|
+
isEnabled?: boolean;
|
442
|
+
userId?: number;
|
443
|
+
menuId?: number;
|
444
|
+
isRead?: boolean | undefined;
|
445
|
+
isAdd?: boolean | undefined;
|
446
|
+
isUpdate?: boolean | undefined;
|
447
|
+
isPrint?: boolean | undefined;
|
448
|
+
isExport?: boolean | undefined;
|
449
|
+
isDelete?: boolean | undefined;
|
450
|
+
}
|
451
|
+
|
452
|
+
interface IUpdateAccount {
|
453
|
+
isBlocked?: boolean;
|
454
|
+
id?: number;
|
455
|
+
isEnabled?: boolean;
|
456
|
+
fullName?: string | undefined;
|
457
|
+
code?: string | undefined;
|
458
|
+
email?: string | undefined;
|
459
|
+
phoneNumber?: string | undefined;
|
460
|
+
address?: string | undefined;
|
461
|
+
concurrencyStamp?: string | undefined;
|
462
|
+
workingUnitId?: number | undefined;
|
463
|
+
}
|
464
|
+
|
465
|
+
interface IUser {
|
466
|
+
isBlocked: boolean;
|
467
|
+
roleId?: number | undefined;
|
468
|
+
userName: string;
|
469
|
+
passwordHash: string;
|
470
|
+
email?: string | undefined;
|
471
|
+
phoneNumber?: string | undefined;
|
472
|
+
address?: string | undefined;
|
473
|
+
avatarPath?: string | undefined;
|
474
|
+
fullName?: string | undefined;
|
475
|
+
lockoutEnd?: Date | undefined;
|
476
|
+
securityStamp: string;
|
477
|
+
expiresDate?: Date | undefined;
|
478
|
+
facultyId?: number | undefined;
|
479
|
+
majorsId?: number | undefined;
|
480
|
+
classId?: number | undefined;
|
481
|
+
signInWrongCount?: number | undefined;
|
482
|
+
isLocked?: boolean | undefined;
|
483
|
+
workingUnitId?: number | undefined;
|
484
|
+
}
|
485
|
+
|
486
|
+
interface IUserPermission {
|
487
|
+
userId?: number;
|
488
|
+
pagePermissions?: IPagePermission[] | undefined;
|
489
|
+
}
|
490
|
+
|
491
|
+
export type { IAQSSO, IAQSyncData, IAcademicYear, IChangePassWord, IComplaintProccess, ICreateAccount, IDocument, IDocumentAttribute, IEvent, IEventComplaint, IEventFillter, IFile, IImportStudentPaticipation, IPagePermission, IRolePermission, ISRMUserinfo, IScientificProfileProjectUser, IScientificProfileResearchGroup, IScientificProfileResearchGroupUser, IScientificProfileResearchProject, ISignIn, ISystemCatalogAcademicYear, ISystemCatalogDomainCategory, ISystemCatalogProjectLevelCategory, ISystemCatalogProjectTypeCategory, ISystemCatalogRoleActivity, ISystemCatalogTaskCategory, ISystemManagementAcademicHistory, ISystemManagementProfessionalWorkHistory, ISystemManagementPublishedScientificWork, ISystemManagementRoleGroup, ISystemManagementRoleGroupMenuPermission, ISystemManagementScientificResearchProject, ISystemManagementUserMenuPermission, IUpdateAccount, IUser, IUserPermission };
|
File without changes
|
@@ -2,6 +2,7 @@ import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
2
|
import { SelectProps } from '@mantine/core';
|
3
3
|
import { I as I_BasicAppShell_LinkItem } from '../BasicAppShell-CGKvZ5wV.mjs';
|
4
4
|
import { I as IBaseEntity, a as IAQModule } from '../IAQModule-CIu1JdT0.mjs';
|
5
|
+
import { I as IEmailConfig } from '../EmailConfig-JHRl7zGL.mjs';
|
5
6
|
import { ReactNode } from 'react';
|
6
7
|
|
7
8
|
declare function F_core12196({ FormTypeId }: {
|
@@ -355,15 +356,6 @@ declare function F_core64229_Delete({ values }: {
|
|
355
356
|
values: IBaseEntity;
|
356
357
|
}): react_jsx_runtime.JSX.Element;
|
357
358
|
|
358
|
-
interface IEmailConfig extends IBaseEntity {
|
359
|
-
emailModule?: number;
|
360
|
-
hostMailServer?: string;
|
361
|
-
outgoingPort?: number;
|
362
|
-
incomingPort?: number;
|
363
|
-
sll?: boolean;
|
364
|
-
userName?: string;
|
365
|
-
}
|
366
|
-
|
367
359
|
interface I$6 extends IEmailConfig {
|
368
360
|
password?: string;
|
369
361
|
}
|
@@ -20,20 +20,17 @@ import {
|
|
20
20
|
MySelect,
|
21
21
|
MyTab,
|
22
22
|
MyTextInput,
|
23
|
-
OBJECT_COlORS,
|
24
23
|
groupToTwoLevels,
|
24
|
+
object_colors,
|
25
25
|
useS_BasicAppShell,
|
26
26
|
useS_authenticate,
|
27
27
|
utils_layout_getItemsWithoutLinks
|
28
|
-
} from "../chunk-
|
28
|
+
} from "../chunk-TSQB7TIU.mjs";
|
29
29
|
import {
|
30
30
|
baseAxios_default,
|
31
31
|
useQ_AQ_GetAQModule,
|
32
32
|
useQ_SkillCenter_GetAll
|
33
33
|
} from "../chunk-HMRYQTJT.mjs";
|
34
|
-
import {
|
35
|
-
createGenericStore
|
36
|
-
} from "../chunk-Y3YGC5IH.mjs";
|
37
34
|
import {
|
38
35
|
U0DateToDDMMYYYString,
|
39
36
|
U0MyValidateEmail,
|
@@ -46,6 +43,9 @@ import "../chunk-5U2JSHSJ.mjs";
|
|
46
43
|
import {
|
47
44
|
utils_notification_show
|
48
45
|
} from "../chunk-7ZCOFATU.mjs";
|
46
|
+
import {
|
47
|
+
createGenericStore
|
48
|
+
} from "../chunk-Y3YGC5IH.mjs";
|
49
49
|
import {
|
50
50
|
__objRest,
|
51
51
|
__spreadProps,
|
@@ -752,6 +752,9 @@ function F_core18256() {
|
|
752
752
|
] });
|
753
753
|
}
|
754
754
|
|
755
|
+
// src/modules-features/admin/core/core26965/F_core26965.tsx
|
756
|
+
import { Paper as Paper2, Space as Space2 } from "@mantine/core";
|
757
|
+
|
755
758
|
// src/modules-features/admin/core/core26965/F_core26965_Create.tsx
|
756
759
|
import { useForm as useForm7 } from "@mantine/form";
|
757
760
|
import { jsx as jsx16, jsxs as jsxs12 } from "react/jsx-runtime";
|
@@ -1039,7 +1042,6 @@ function SubRead2({
|
|
1039
1042
|
}
|
1040
1043
|
|
1041
1044
|
// src/modules-features/admin/core/core26965/F_core26965.tsx
|
1042
|
-
import { Paper as Paper2, Space as Space2 } from "@mantine/core";
|
1043
1045
|
import { jsx as jsx20, jsxs as jsxs15 } from "react/jsx-runtime";
|
1044
1046
|
function F_core26965({ RegulationsTypeId }) {
|
1045
1047
|
return /* @__PURE__ */ jsxs15(Paper2, { p: "md", children: [
|
@@ -1716,7 +1718,7 @@ function F_core38677_ViewMenuPermissions({ menuData: menuData2 }) {
|
|
1716
1718
|
Table.Td,
|
1717
1719
|
{
|
1718
1720
|
colSpan: 7,
|
1719
|
-
bg:
|
1721
|
+
bg: object_colors.mantineBackgroundBlueLight,
|
1720
1722
|
children: /* @__PURE__ */ jsx29(Text, { fs: "oblique", size: "sm", fw: "bold", children: item.label })
|
1721
1723
|
}
|
1722
1724
|
) }, item.label),
|
@@ -1841,7 +1843,7 @@ function F_core38677({ menuData: menuData2 }) {
|
|
1841
1843
|
return /* @__PURE__ */ jsxs22(Grid2, { children: [
|
1842
1844
|
/* @__PURE__ */ jsx30(Grid2.Col, { span: { base: 12, sm: 5 }, children: /* @__PURE__ */ jsx30(ScrollArea2.Autosize, { children: /* @__PURE__ */ jsx30(F_core38677_ReadUser, {}) }) }),
|
1843
1845
|
/* @__PURE__ */ jsx30(Grid2.Col, { span: { base: 12, sm: 7 }, children: /* @__PURE__ */ jsxs22(MyFlexColumn, { h: "80vh", flex: 1, children: [
|
1844
|
-
/* @__PURE__ */ jsx30(ScrollArea2.Autosize, { h: "100%", children: /* @__PURE__ */ jsx30(Paper4, { p: "md", bg:
|
1846
|
+
/* @__PURE__ */ jsx30(ScrollArea2.Autosize, { h: "100%", children: /* @__PURE__ */ jsx30(Paper4, { p: "md", bg: object_colors.mantineBackgroundSecondary, children: /* @__PURE__ */ jsx30(F_core38677_ViewMenuPermissions, { menuData: menuData2 }) }) }),
|
1845
1847
|
/* @__PURE__ */ jsx30(F_core38677_Save, {})
|
1846
1848
|
] }) })
|
1847
1849
|
] });
|
@@ -3320,7 +3322,7 @@ function F_core83092_ViewMenuPermissions({ menuData: menuData2 }) {
|
|
3320
3322
|
Table3.Td,
|
3321
3323
|
{
|
3322
3324
|
colSpan: 7,
|
3323
|
-
bg:
|
3325
|
+
bg: object_colors.mantineBackgroundBlueLight,
|
3324
3326
|
children: /* @__PURE__ */ jsx60(Text2, { fs: "oblique", size: "sm", fw: "bold", children: item.label })
|
3325
3327
|
}
|
3326
3328
|
) }, item.label),
|
@@ -3445,7 +3447,7 @@ function F_core83092({ menuData: menuData2 }) {
|
|
3445
3447
|
return /* @__PURE__ */ jsxs39(Grid4, { children: [
|
3446
3448
|
/* @__PURE__ */ jsx61(Grid4.Col, { span: { base: 12, sm: 5 }, children: /* @__PURE__ */ jsx61(ScrollArea4.Autosize, { children: /* @__PURE__ */ jsx61(F_core83092_ReadUser, {}) }) }),
|
3447
3449
|
/* @__PURE__ */ jsx61(Grid4.Col, { span: { base: 12, sm: 7 }, children: /* @__PURE__ */ jsxs39(MyFlexColumn, { h: "80vh", flex: 1, children: [
|
3448
|
-
/* @__PURE__ */ jsx61(ScrollArea4.Autosize, { h: "100%", children: /* @__PURE__ */ jsx61(Paper6, { p: "md", bg:
|
3450
|
+
/* @__PURE__ */ jsx61(ScrollArea4.Autosize, { h: "100%", children: /* @__PURE__ */ jsx61(Paper6, { p: "md", bg: object_colors.mantineBackgroundSecondary, children: /* @__PURE__ */ jsx61(F_core83092_ViewMenuPermissions, { menuData: menuData2 }) }) }),
|
3449
3451
|
/* @__PURE__ */ jsx61(F_core83092_Save, {})
|
3450
3452
|
] }) })
|
3451
3453
|
] });
|
package/package.json
CHANGED
@@ -20,9 +20,13 @@
|
|
20
20
|
"./hooks": {
|
21
21
|
"import": "./dist/hooks/index.mjs",
|
22
22
|
"types": "./dist/hooks/index.d.mts"
|
23
|
+
},
|
24
|
+
"./interfaces": {
|
25
|
+
"import": "./dist/interfaces/index.mjs",
|
26
|
+
"types": "./dist/interfaces/index.d.mts"
|
23
27
|
}
|
24
28
|
},
|
25
|
-
"version": "0.1.
|
29
|
+
"version": "0.1.243",
|
26
30
|
"private": false,
|
27
31
|
"files": [
|
28
32
|
"dist"
|