react-luminus-components 2.0.15 → 2.0.17
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/.vite/manifest.json +34 -34
- package/dist/{FormDisabledProvider-D-ONCDP4.cjs → FormDisabledProvider-Cr4O-dM-.cjs} +1 -1
- package/dist/{FormDisabledProvider-DULB742B.js → FormDisabledProvider-CuciVC1c.js} +1 -1
- package/dist/components/CronEditor/CronEditor.d.ts +12 -0
- package/dist/components/CronEditor/comps/MultiSelect/MultiSelect.d.ts +13 -0
- package/dist/components/CronEditor/comps/index.d.ts +1 -0
- package/dist/components/CronEditor/hooks/useCronEditorConsts.d.ts +14 -0
- package/dist/components/CronEditor/hooks/useCronEditorUtils.d.ts +5 -0
- package/dist/components/CronEditor/index.d.ts +1 -0
- package/dist/components/common/BatchSet/Create/BatchSetCreate.d.ts +6 -0
- package/dist/components/common/BatchSet/Detail/BatchSetDetail.d.ts +17 -0
- package/dist/components/common/BatchSet/Detail/comps/DataForm/BatchSetDataForm.d.ts +10 -0
- package/dist/components/common/BatchSet/Detail/comps/DataForm/hooks/useBatchSetFormSchema.d.ts +36 -0
- package/dist/components/common/BatchSet/Detail/comps/Tasks/BatchSetTasks.d.ts +14 -0
- package/dist/components/common/BatchSet/Detail/comps/Tasks/comps/index.d.ts +2 -0
- package/dist/components/common/BatchSet/Detail/comps/Tasks/comps/modals/BatchSetEditTasksModal.d.ts +13 -0
- package/dist/components/common/BatchSet/Detail/comps/Tasks/comps/modals/BatchSetTaskDetailModal.d.ts +11 -0
- package/dist/components/common/BatchSet/Detail/comps/Tasks/comps/modals/hooks/useBatchSetTaskFormSchema.d.ts +18 -0
- package/dist/components/common/BatchSet/Detail/comps/index.d.ts +2 -0
- package/dist/components/common/BatchSet/Overview/BatchSetOverview.d.ts +13 -0
- package/dist/components/common/BatchSet/Overview/comps/BatchSetTable/BatchSetTable.d.ts +13 -0
- package/dist/components/common/BatchSet/Overview/comps/BatchSetTable/hooks/useBatchSetTableColumns.d.ts +9 -0
- package/dist/components/common/BatchSet/Overview/comps/index.d.ts +1 -0
- package/dist/components/common/index.d.ts +3 -0
- package/dist/contexts.cjs.js +1 -1
- package/dist/contexts.es.js +13 -13
- package/dist/hooks.cjs.js +1 -1
- package/dist/hooks.es.js +10 -10
- package/dist/layout.cjs.js +1 -1
- package/dist/layout.es.js +38 -38
- package/dist/main.cjs.js +9 -9
- package/dist/main.d.ts +2 -0
- package/dist/main.es.js +7692 -6681
- package/dist/models/api/batchSet/BatchSetModel.d.ts +12 -0
- package/dist/models/api/batchSet/BatchSetNewModel.d.ts +7 -0
- package/dist/models/api/batchSet/BatchSetTaskModel.d.ts +12 -0
- package/dist/models/api/batchSet/BatchTaskModel.d.ts +6 -0
- package/dist/models/texts/BatchSetTexts.d.ts +25 -0
- package/dist/models/texts/ComponentsContextTexts.d.ts +4 -0
- package/dist/models/texts/CronTexts.d.ts +14 -0
- package/dist/{nivo-bar-zr2I3nTw.js → nivo-bar-CZxCjOf4.js} +47 -46
- package/dist/{nivo-bar-BIIySZxC.cjs → nivo-bar-C_X0vU1-.cjs} +1 -1
- package/dist/style.css +1 -1
- package/dist/{useIsFormDirty-Bi8OFCrS.cjs → useIsFormDirty-DVXHyw3w.cjs} +1 -1
- package/dist/{useIsFormDirty-Bj1bSMzm.js → useIsFormDirty-MJrbyifK.js} +1 -1
- package/dist/{useLocalStorageState-DKlcenZY.cjs → useLocalStorageState-Cb-47swy.cjs} +1 -1
- package/dist/{useLocalStorageState-DkfHepwT.js → useLocalStorageState-n3PiEif_.js} +1 -1
- package/dist/utils/constants/CommonLuminusIconsArray.d.ts +1 -1
- package/dist/utils.cjs.js +1 -1
- package/dist/utils.es.js +14 -14
- package/package.json +1 -1
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { default as BatchSetTaskModel } from './BatchSetTaskModel';
|
|
2
|
+
|
|
3
|
+
export default interface BatchSetModel {
|
|
4
|
+
id: number;
|
|
5
|
+
name: string | null;
|
|
6
|
+
lastExecutionDate: string | null;
|
|
7
|
+
automatized: boolean;
|
|
8
|
+
interval: string | null;
|
|
9
|
+
intervalFriendly: string | null;
|
|
10
|
+
setBatchTasks: BatchSetTaskModel[];
|
|
11
|
+
durationSeconds: number;
|
|
12
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export default interface BatchSetTaskModel {
|
|
2
|
+
id: number;
|
|
3
|
+
batchTaskId: number;
|
|
4
|
+
name: string | null;
|
|
5
|
+
executionDate: string | null;
|
|
6
|
+
durationSeconds: number;
|
|
7
|
+
result: boolean;
|
|
8
|
+
errorMessage: string | null;
|
|
9
|
+
order: number;
|
|
10
|
+
active: boolean;
|
|
11
|
+
logLevel: string | null;
|
|
12
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
type BatchSetTexts = {
|
|
2
|
+
batchSetCreate: string;
|
|
3
|
+
active: string;
|
|
4
|
+
errorMessage: string;
|
|
5
|
+
taskLogLevel: string;
|
|
6
|
+
filterCollection: string;
|
|
7
|
+
noTasks: string;
|
|
8
|
+
editTasksList: string;
|
|
9
|
+
batchTasks: string;
|
|
10
|
+
save: string;
|
|
11
|
+
duration: string;
|
|
12
|
+
cronEveryText: string;
|
|
13
|
+
generalInfo: string;
|
|
14
|
+
delete: string;
|
|
15
|
+
run: string;
|
|
16
|
+
errorsNumber: string;
|
|
17
|
+
durationSeconds: string;
|
|
18
|
+
interval: string;
|
|
19
|
+
automatized: string;
|
|
20
|
+
lastExecutionDate: string;
|
|
21
|
+
name: string;
|
|
22
|
+
addBatchSet: string;
|
|
23
|
+
overview: string;
|
|
24
|
+
};
|
|
25
|
+
export default BatchSetTexts;
|
|
@@ -2,10 +2,12 @@ import { default as ApprovalTexts } from './ApprovalTexts';
|
|
|
2
2
|
import { default as AppSearchTexts } from './AppSearchTexts';
|
|
3
3
|
import { default as AuthTexts } from './AuthTexts';
|
|
4
4
|
import { default as AxiosTexts } from './AxiosTexts';
|
|
5
|
+
import { default as BatchSetTexts } from './BatchSetTexts';
|
|
5
6
|
import { default as ChartTexts } from './ChartTexts';
|
|
6
7
|
import { default as ClipboardTexts } from './ClipboardTexts';
|
|
7
8
|
import { default as ConfirmTexts } from './ConfirmTexts';
|
|
8
9
|
import { default as ContainerTexts } from './ContainerTexts';
|
|
10
|
+
import { default as CronTexts } from './CronTexts';
|
|
9
11
|
import { default as CustomSelectTexts } from './CustomSelectTexts';
|
|
10
12
|
import { default as DateTexts } from './DateTexts';
|
|
11
13
|
import { default as DocsAIChatTexts } from './DocsAIChatTexts';
|
|
@@ -58,5 +60,7 @@ type ComponentsContextTexts = {
|
|
|
58
60
|
auth: AuthTexts;
|
|
59
61
|
docsAIChat: DocsAIChatTexts;
|
|
60
62
|
gdpr: GdprTexts;
|
|
63
|
+
batchSet: BatchSetTexts;
|
|
64
|
+
cron: CronTexts;
|
|
61
65
|
};
|
|
62
66
|
export default ComponentsContextTexts;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
type CronTexts = {
|
|
2
|
+
getWeekDays: (i: number) => string;
|
|
3
|
+
getMonth: (i: number) => string;
|
|
4
|
+
intervalMustBeSet: string;
|
|
5
|
+
periodOption: (period: 'minute' | 'hour' | 'day' | 'week' | 'month' | 'year') => string;
|
|
6
|
+
select: string;
|
|
7
|
+
prefixMonths: string;
|
|
8
|
+
prefixMonthDays: string;
|
|
9
|
+
prefixWeekDays: string;
|
|
10
|
+
suffixMinutesForHourPeriod: string;
|
|
11
|
+
suffixHours: string;
|
|
12
|
+
in: string;
|
|
13
|
+
};
|
|
14
|
+
export default CronTexts;
|
|
@@ -37362,7 +37362,7 @@ export {
|
|
|
37362
37362
|
Jx as ay,
|
|
37363
37363
|
Hfe as az,
|
|
37364
37364
|
Xi as b,
|
|
37365
|
-
|
|
37365
|
+
LA as b$,
|
|
37366
37366
|
phe as b0,
|
|
37367
37367
|
Jfe as b1,
|
|
37368
37368
|
B7 as b2,
|
|
@@ -37384,22 +37384,22 @@ export {
|
|
|
37384
37384
|
Xfe as bI,
|
|
37385
37385
|
Kfe as bJ,
|
|
37386
37386
|
mhe as bK,
|
|
37387
|
-
|
|
37388
|
-
|
|
37389
|
-
|
|
37390
|
-
|
|
37391
|
-
|
|
37392
|
-
|
|
37393
|
-
|
|
37394
|
-
|
|
37395
|
-
|
|
37396
|
-
|
|
37397
|
-
|
|
37398
|
-
|
|
37399
|
-
|
|
37400
|
-
|
|
37401
|
-
|
|
37402
|
-
|
|
37387
|
+
be as bL,
|
|
37388
|
+
upe as bM,
|
|
37389
|
+
cpe as bN,
|
|
37390
|
+
lpe as bO,
|
|
37391
|
+
ohe as bP,
|
|
37392
|
+
Tj as bQ,
|
|
37393
|
+
qv as bR,
|
|
37394
|
+
X7 as bS,
|
|
37395
|
+
K7 as bT,
|
|
37396
|
+
che as bU,
|
|
37397
|
+
o4 as bV,
|
|
37398
|
+
whe as bW,
|
|
37399
|
+
FA as bX,
|
|
37400
|
+
jA as bY,
|
|
37401
|
+
Khe as bZ,
|
|
37402
|
+
y4 as b_,
|
|
37403
37403
|
mpe as ba,
|
|
37404
37404
|
lhe as bb,
|
|
37405
37405
|
NA as bc,
|
|
@@ -37427,35 +37427,36 @@ export {
|
|
|
37427
37427
|
fx as by,
|
|
37428
37428
|
YO as bz,
|
|
37429
37429
|
We as c,
|
|
37430
|
-
|
|
37431
|
-
|
|
37432
|
-
|
|
37433
|
-
|
|
37434
|
-
|
|
37435
|
-
|
|
37436
|
-
|
|
37437
|
-
|
|
37438
|
-
|
|
37439
|
-
|
|
37440
|
-
|
|
37441
|
-
|
|
37442
|
-
|
|
37443
|
-
|
|
37444
|
-
|
|
37445
|
-
|
|
37446
|
-
|
|
37447
|
-
|
|
37448
|
-
|
|
37449
|
-
|
|
37450
|
-
|
|
37451
|
-
|
|
37452
|
-
|
|
37453
|
-
|
|
37454
|
-
|
|
37455
|
-
|
|
37456
|
-
|
|
37457
|
-
|
|
37458
|
-
|
|
37430
|
+
VO as c0,
|
|
37431
|
+
qO as c1,
|
|
37432
|
+
oM as c2,
|
|
37433
|
+
sM as c3,
|
|
37434
|
+
xhe as c4,
|
|
37435
|
+
_he as c5,
|
|
37436
|
+
Che as c6,
|
|
37437
|
+
She as c7,
|
|
37438
|
+
cM as c8,
|
|
37439
|
+
The as c9,
|
|
37440
|
+
$he as ca,
|
|
37441
|
+
Ohe as cb,
|
|
37442
|
+
Mhe as cc,
|
|
37443
|
+
uM as cd,
|
|
37444
|
+
hM as ce,
|
|
37445
|
+
pM as cf,
|
|
37446
|
+
tm as cg,
|
|
37447
|
+
HO as ch,
|
|
37448
|
+
dhe as ci,
|
|
37449
|
+
j1 as cj,
|
|
37450
|
+
mM as ck,
|
|
37451
|
+
ghe as cl,
|
|
37452
|
+
vhe as cm,
|
|
37453
|
+
bhe as cn,
|
|
37454
|
+
yhe as co,
|
|
37455
|
+
aM as cp,
|
|
37456
|
+
iM as cq,
|
|
37457
|
+
Al as cr,
|
|
37458
|
+
F1 as cs,
|
|
37459
|
+
hhe as ct,
|
|
37459
37460
|
NS as d,
|
|
37460
37461
|
WS as e,
|
|
37461
37462
|
dg as f,
|