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.
Files changed (51) hide show
  1. package/dist/.vite/manifest.json +34 -34
  2. package/dist/{FormDisabledProvider-D-ONCDP4.cjs → FormDisabledProvider-Cr4O-dM-.cjs} +1 -1
  3. package/dist/{FormDisabledProvider-DULB742B.js → FormDisabledProvider-CuciVC1c.js} +1 -1
  4. package/dist/components/CronEditor/CronEditor.d.ts +12 -0
  5. package/dist/components/CronEditor/comps/MultiSelect/MultiSelect.d.ts +13 -0
  6. package/dist/components/CronEditor/comps/index.d.ts +1 -0
  7. package/dist/components/CronEditor/hooks/useCronEditorConsts.d.ts +14 -0
  8. package/dist/components/CronEditor/hooks/useCronEditorUtils.d.ts +5 -0
  9. package/dist/components/CronEditor/index.d.ts +1 -0
  10. package/dist/components/common/BatchSet/Create/BatchSetCreate.d.ts +6 -0
  11. package/dist/components/common/BatchSet/Detail/BatchSetDetail.d.ts +17 -0
  12. package/dist/components/common/BatchSet/Detail/comps/DataForm/BatchSetDataForm.d.ts +10 -0
  13. package/dist/components/common/BatchSet/Detail/comps/DataForm/hooks/useBatchSetFormSchema.d.ts +36 -0
  14. package/dist/components/common/BatchSet/Detail/comps/Tasks/BatchSetTasks.d.ts +14 -0
  15. package/dist/components/common/BatchSet/Detail/comps/Tasks/comps/index.d.ts +2 -0
  16. package/dist/components/common/BatchSet/Detail/comps/Tasks/comps/modals/BatchSetEditTasksModal.d.ts +13 -0
  17. package/dist/components/common/BatchSet/Detail/comps/Tasks/comps/modals/BatchSetTaskDetailModal.d.ts +11 -0
  18. package/dist/components/common/BatchSet/Detail/comps/Tasks/comps/modals/hooks/useBatchSetTaskFormSchema.d.ts +18 -0
  19. package/dist/components/common/BatchSet/Detail/comps/index.d.ts +2 -0
  20. package/dist/components/common/BatchSet/Overview/BatchSetOverview.d.ts +13 -0
  21. package/dist/components/common/BatchSet/Overview/comps/BatchSetTable/BatchSetTable.d.ts +13 -0
  22. package/dist/components/common/BatchSet/Overview/comps/BatchSetTable/hooks/useBatchSetTableColumns.d.ts +9 -0
  23. package/dist/components/common/BatchSet/Overview/comps/index.d.ts +1 -0
  24. package/dist/components/common/index.d.ts +3 -0
  25. package/dist/contexts.cjs.js +1 -1
  26. package/dist/contexts.es.js +13 -13
  27. package/dist/hooks.cjs.js +1 -1
  28. package/dist/hooks.es.js +10 -10
  29. package/dist/layout.cjs.js +1 -1
  30. package/dist/layout.es.js +38 -38
  31. package/dist/main.cjs.js +9 -9
  32. package/dist/main.d.ts +2 -0
  33. package/dist/main.es.js +7692 -6681
  34. package/dist/models/api/batchSet/BatchSetModel.d.ts +12 -0
  35. package/dist/models/api/batchSet/BatchSetNewModel.d.ts +7 -0
  36. package/dist/models/api/batchSet/BatchSetTaskModel.d.ts +12 -0
  37. package/dist/models/api/batchSet/BatchTaskModel.d.ts +6 -0
  38. package/dist/models/texts/BatchSetTexts.d.ts +25 -0
  39. package/dist/models/texts/ComponentsContextTexts.d.ts +4 -0
  40. package/dist/models/texts/CronTexts.d.ts +14 -0
  41. package/dist/{nivo-bar-zr2I3nTw.js → nivo-bar-CZxCjOf4.js} +47 -46
  42. package/dist/{nivo-bar-BIIySZxC.cjs → nivo-bar-C_X0vU1-.cjs} +1 -1
  43. package/dist/style.css +1 -1
  44. package/dist/{useIsFormDirty-Bi8OFCrS.cjs → useIsFormDirty-DVXHyw3w.cjs} +1 -1
  45. package/dist/{useIsFormDirty-Bj1bSMzm.js → useIsFormDirty-MJrbyifK.js} +1 -1
  46. package/dist/{useLocalStorageState-DKlcenZY.cjs → useLocalStorageState-Cb-47swy.cjs} +1 -1
  47. package/dist/{useLocalStorageState-DkfHepwT.js → useLocalStorageState-n3PiEif_.js} +1 -1
  48. package/dist/utils/constants/CommonLuminusIconsArray.d.ts +1 -1
  49. package/dist/utils.cjs.js +1 -1
  50. package/dist/utils.es.js +14 -14
  51. 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,7 @@
1
+ export default interface BatchSetNewModel {
2
+ setId: number;
3
+ name: string | null;
4
+ auto: boolean;
5
+ interval: string | null;
6
+ taskIds: number[] | null;
7
+ }
@@ -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,6 @@
1
+ export default interface BatchTaskModel {
2
+ id: number;
3
+ name: string | null;
4
+ type: string | null;
5
+ order: number;
6
+ }
@@ -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
- VO as b$,
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
- upe as bL,
37388
- cpe as bM,
37389
- lpe as bN,
37390
- ohe as bO,
37391
- Tj as bP,
37392
- qv as bQ,
37393
- X7 as bR,
37394
- K7 as bS,
37395
- che as bT,
37396
- o4 as bU,
37397
- whe as bV,
37398
- FA as bW,
37399
- jA as bX,
37400
- Khe as bY,
37401
- y4 as bZ,
37402
- LA as b_,
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
- qO as c0,
37431
- oM as c1,
37432
- sM as c2,
37433
- xhe as c3,
37434
- _he as c4,
37435
- Che as c5,
37436
- She as c6,
37437
- cM as c7,
37438
- The as c8,
37439
- $he as c9,
37440
- Ohe as ca,
37441
- Mhe as cb,
37442
- uM as cc,
37443
- hM as cd,
37444
- pM as ce,
37445
- tm as cf,
37446
- HO as cg,
37447
- dhe as ch,
37448
- j1 as ci,
37449
- mM as cj,
37450
- ghe as ck,
37451
- vhe as cl,
37452
- bhe as cm,
37453
- yhe as cn,
37454
- aM as co,
37455
- iM as cp,
37456
- Al as cq,
37457
- F1 as cr,
37458
- hhe as cs,
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,