@dexteel/mesf-core 7.19.0 → 7.19.1
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/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [7.19.1](https://github.com/dexteel/mesf-core-frontend/compare/@dexteel/mesf-core-v7.19.0...@dexteel/mesf-core-v7.19.1) (2026-04-17)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* **Jobs Page:** add moment-duration-format dependency ([ce54111](https://github.com/dexteel/mesf-core-frontend/commit/ce54111b6d755ca3638cde9ec4194f54b5f11633))
|
|
9
|
+
|
|
3
10
|
## [7.19.0](https://github.com/dexteel/mesf-core-frontend/compare/@dexteel/mesf-core-v7.18.0...@dexteel/mesf-core-v7.19.0) (2026-04-15)
|
|
4
11
|
|
|
5
12
|
|
package/dist/index.esm.js
CHANGED
|
@@ -50,7 +50,6 @@ import RefreshIcon from '@mui/icons-material/Refresh';
|
|
|
50
50
|
import ReplayIcon from '@mui/icons-material/Replay';
|
|
51
51
|
import ToggleOfIcon from '@mui/icons-material/ToggleOff';
|
|
52
52
|
import ToggleOnIcon from '@mui/icons-material/ToggleOn';
|
|
53
|
-
import 'moment-duration-format';
|
|
54
53
|
import { useComplexState } from 'use-complex-state';
|
|
55
54
|
import { createSlice } from '@reduxjs/toolkit';
|
|
56
55
|
import CheckBoxIcon from '@mui/icons-material/CheckBox';
|
|
@@ -74,6 +73,7 @@ import PersonPinCircleIcon from '@mui/icons-material/PersonPinCircle';
|
|
|
74
73
|
import Dialog from '@mui/material/Dialog';
|
|
75
74
|
import Typography from '@mui/material/Typography';
|
|
76
75
|
import { format, fromZonedTime, formatInTimeZone } from 'date-fns-tz';
|
|
76
|
+
import momentDurationFormatSetup from 'moment-duration-format';
|
|
77
77
|
import { findIana } from 'windows-iana';
|
|
78
78
|
import Code from '@mui/icons-material/Code';
|
|
79
79
|
import Square from '@mui/icons-material/Square';
|
|
@@ -1472,6 +1472,7 @@ const useAssetActions = ({ asset, selectedNodes, setSelectedNodes, isCtrlPressin
|
|
|
1472
1472
|
return { handleDrop, handleCtrlClick, handleDragEnd, handleDragStart };
|
|
1473
1473
|
};
|
|
1474
1474
|
|
|
1475
|
+
momentDurationFormatSetup(moment$h);
|
|
1475
1476
|
class TimeService {
|
|
1476
1477
|
constructor() {
|
|
1477
1478
|
this.timeZone = Intl.DateTimeFormat().resolvedOptions().timeZone;
|