@dexteel/mesf-core 6.0.5 → 6.1.0
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/.github/workflows/release-please-v6.yml +0 -12
- package/.release-please-manifest.json +1 -1
- package/CHANGELOG.md +25 -0
- package/dist/configuration/pages/log/components/Filters/codeFilter.d.ts +2 -2
- package/dist/configuration/pages/log/data/LogTypeCodes.d.ts +5 -4
- package/dist/index.d.ts +3 -0
- package/dist/index.esm.js +57 -20
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
|
@@ -49,15 +49,3 @@ jobs:
|
|
|
49
49
|
git add .
|
|
50
50
|
git commit -m "chore: update versions and CHANGELOG for ${{ steps.release.outputs.version }}" || echo "No changes to commit"
|
|
51
51
|
git push
|
|
52
|
-
|
|
53
|
-
- name: Create Release
|
|
54
|
-
if: ${{ steps.release.outputs.release_created }}
|
|
55
|
-
uses: actions/create-release@v1
|
|
56
|
-
env:
|
|
57
|
-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
58
|
-
with:
|
|
59
|
-
tag_name: ${{ steps.release.outputs.tag_name }}
|
|
60
|
-
release_name: Release ${{ steps.release.outputs.version }}
|
|
61
|
-
body: ${{ steps.release.outputs.changelog }}
|
|
62
|
-
draft: false
|
|
63
|
-
prerelease: false
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,28 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## [6.1.0](https://github.com/dexteel/mesf-core-frontend/compare/@dexteel/mesf-core-v6.0.5...@dexteel/mesf-core-v6.1.0) (2025-10-13)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* **asset:** export CRUD dialogs for reuse across projects ([#503](https://github.com/dexteel/mesf-core-frontend/issues/503)) ([d1b94bf](https://github.com/dexteel/mesf-core-frontend/commit/d1b94bf20020c5906179fc27ffd86bb455eba2c7))
|
|
9
|
+
* **Code Filter:** Improve type handling and display logic ([d98401c](https://github.com/dexteel/mesf-core-frontend/commit/d98401c7f6790e136186a4ddc8d625ca00923dca))
|
|
10
|
+
* **Table Logs:** Update log type handling and add 'Debug' log type ([0b7ad35](https://github.com/dexteel/mesf-core-frontend/commit/0b7ad35325fd07d52758173e8101a0b4413ec2a1))
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* **Logbook:** adjust Asset column to display complete data with text wrapping ([#502](https://github.com/dexteel/mesf-core-frontend/issues/502)) ([e539a25](https://github.com/dexteel/mesf-core-frontend/commit/e539a2508aee1a36008959ce9bba787cb596249d))
|
|
16
|
+
* **Table Jobs:** Update context menu id ([3b41af5](https://github.com/dexteel/mesf-core-frontend/commit/3b41af57b5130da6dd8b92d860cc3a0fcd5adc23))
|
|
17
|
+
* **Table Jobs:** Update context menu id ([40718d8](https://github.com/dexteel/mesf-core-frontend/commit/40718d8d855dbffc9e8d4692b500f8983f48c3f7))
|
|
18
|
+
* **Table Jobs:** Use onRowClicked instead of onRowSelected ([127de26](https://github.com/dexteel/mesf-core-frontend/commit/127de2678903219e727ef9b85ccf03a55599d102))
|
|
19
|
+
* **Table Jobs:** Use onRowClicked instead of onRowSelected ([5e1b15e](https://github.com/dexteel/mesf-core-frontend/commit/5e1b15e9645ee024510e447974787f9fda1d14e4))
|
|
20
|
+
* Update release-please-v6.yml ([e61411c](https://github.com/dexteel/mesf-core-frontend/commit/e61411c04211a3ee1875709ab09451035b7f89e5))
|
|
21
|
+
|
|
22
|
+
## [6.0.5] - 2025-10-02
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
1
26
|
# Changelog
|
|
2
27
|
|
|
3
28
|
## [6.0.5](https://github.com/dexteel/mesf-core-frontend/compare/@dexteel/mesf-core-v6.0.4...@dexteel/mesf-core-v6.0.5) (2025-10-02)
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import React from "react";
|
|
2
2
|
type Props = {
|
|
3
|
-
LogTypeCode:
|
|
4
|
-
setLogTypeCodeFilter: (logTypeCode:
|
|
3
|
+
LogTypeCode: string[];
|
|
4
|
+
setLogTypeCodeFilter: (logTypeCode: string[]) => void;
|
|
5
5
|
};
|
|
6
6
|
export declare const CodeFilter: ({ LogTypeCode, setLogTypeCodeFilter }: Props) => React.JSX.Element;
|
|
7
7
|
export {};
|
|
@@ -1,8 +1,4 @@
|
|
|
1
1
|
export declare const LOG_TYPE_CODES: {
|
|
2
|
-
A: {
|
|
3
|
-
id: string;
|
|
4
|
-
description: string;
|
|
5
|
-
};
|
|
6
2
|
I: {
|
|
7
3
|
id: string;
|
|
8
4
|
color: string;
|
|
@@ -18,4 +14,9 @@ export declare const LOG_TYPE_CODES: {
|
|
|
18
14
|
color: string;
|
|
19
15
|
description: string;
|
|
20
16
|
};
|
|
17
|
+
D: {
|
|
18
|
+
id: string;
|
|
19
|
+
color: string;
|
|
20
|
+
description: string;
|
|
21
|
+
};
|
|
21
22
|
};
|
package/dist/index.d.ts
CHANGED
|
@@ -8,6 +8,9 @@ export * from "./components/shared/buttons/button-with-loading";
|
|
|
8
8
|
export * from "./configuration";
|
|
9
9
|
export { searchAssets } from "./configuration/pages/asset/components/TreeAsset";
|
|
10
10
|
export { AssetTreePicker } from "./controls/asset-tree-picker/AssetTreePicker";
|
|
11
|
+
export { CreateNewAssetDialog } from "./configuration/pages/asset/components/dialogs/create-new-asset-dialog";
|
|
12
|
+
export { EditAssetDialog } from "./configuration/pages/asset/components/dialogs/edit-asset-dialog";
|
|
13
|
+
export { RemoveAssetDialog } from "./configuration/pages/asset/components/dialogs/remove-asset-dialog";
|
|
11
14
|
export * from "./configuration/pages/users/models/User";
|
|
12
15
|
export * from "./configuration/pages/users/repositories/UsersRepository";
|
|
13
16
|
export * from "./context/assetContext";
|
package/dist/index.esm.js
CHANGED
|
@@ -2077,7 +2077,7 @@ var TableJobs = function () {
|
|
|
2077
2077
|
},
|
|
2078
2078
|
};
|
|
2079
2079
|
}, []);
|
|
2080
|
-
var
|
|
2080
|
+
var onRowClicked = function (event) {
|
|
2081
2081
|
var cell = gridApi === null || gridApi === void 0 ? void 0 : gridApi.getFocusedCell();
|
|
2082
2082
|
if ((cell === null || cell === void 0 ? void 0 : cell.column.getColId()) !== "-" && event.node.isSelected()) {
|
|
2083
2083
|
setJobSelected(event.data);
|
|
@@ -2101,7 +2101,7 @@ var TableJobs = function () {
|
|
|
2101
2101
|
var getContextMenuItems = function (params) {
|
|
2102
2102
|
var _a, _b;
|
|
2103
2103
|
var data = (_a = params.node) === null || _a === void 0 ? void 0 : _a.data;
|
|
2104
|
-
showContextMenu(event, data, "
|
|
2104
|
+
showContextMenu(event, data, "jobsContext");
|
|
2105
2105
|
if (data) {
|
|
2106
2106
|
params.api.deselectAll();
|
|
2107
2107
|
(_b = params.node) === null || _b === void 0 ? void 0 : _b.setSelected(true);
|
|
@@ -2180,7 +2180,7 @@ var TableJobs = function () {
|
|
|
2180
2180
|
React.createElement(Grid, { container: true, justifyContent: "flex-start", alignItems: "center", className: classes.root, style: { width: "100%", padding: "0 10px" }, spacing: 2 },
|
|
2181
2181
|
React.createElement(Grid, { item: true, md: 6, xs: 12 },
|
|
2182
2182
|
React.createElement(Paper, { elevation: 2, style: { height: "70vh", width: "100%" } },
|
|
2183
|
-
React.createElement(AgGridReact, { loading: isLoading, rowData: rows, columnDefs: columnDefs, defaultColDef: defaultColDef, getContextMenuItems: getContextMenuItems, loadingOverlayComponent: CenteredLazyLoading, rowHeight: 34, headerHeight: 34, animateRows: true, rowSelection: "single", onGridReady: function (params) { return setGridApi(params.api); }, getRowId: function (params) { return "".concat(params.data.JobId); },
|
|
2183
|
+
React.createElement(AgGridReact, { loading: isLoading, rowData: rows, columnDefs: columnDefs, defaultColDef: defaultColDef, getContextMenuItems: getContextMenuItems, loadingOverlayComponent: CenteredLazyLoading, rowHeight: 34, headerHeight: 34, animateRows: true, rowSelection: "single", onGridReady: function (params) { return setGridApi(params.api); }, getRowId: function (params) { return "".concat(params.data.JobId); }, onRowClicked: onRowClicked, onCellKeyDown: onCellKeyDown, gridOptions: {
|
|
2184
2184
|
theme: themeDXT,
|
|
2185
2185
|
statusBar: {
|
|
2186
2186
|
statusPanels: [
|
|
@@ -2289,20 +2289,51 @@ var JobsPage = function (props) {
|
|
|
2289
2289
|
};
|
|
2290
2290
|
|
|
2291
2291
|
var LOG_TYPE_CODES = {
|
|
2292
|
-
A: { id: "A", description: "All" },
|
|
2293
2292
|
I: { id: "I", color: "#3f51b5", description: "Info" },
|
|
2294
2293
|
E: { id: "E", color: "#f44336", description: "Error" },
|
|
2295
2294
|
W: { id: "W", color: "#E69C00", description: "Warning" },
|
|
2295
|
+
D: { id: "D", color: "#FF79C6", description: "Debug" },
|
|
2296
2296
|
};
|
|
2297
2297
|
|
|
2298
2298
|
var CodeFilter = function (_a) {
|
|
2299
2299
|
var LogTypeCode = _a.LogTypeCode, setLogTypeCodeFilter = _a.setLogTypeCodeFilter;
|
|
2300
|
+
var getDisplayValue = function (selected) {
|
|
2301
|
+
var sorted = __spreadArray([], selected, true).sort();
|
|
2302
|
+
// For 'Info', 'Warning' and 'Error' show 'All'
|
|
2303
|
+
if (sorted.length === 3 &&
|
|
2304
|
+
sorted.includes("I") &&
|
|
2305
|
+
sorted.includes("W") &&
|
|
2306
|
+
sorted.includes("E")) {
|
|
2307
|
+
return "All";
|
|
2308
|
+
}
|
|
2309
|
+
// For 'Info', 'Warning', 'Error' and 'Debug' show 'All + Debug'
|
|
2310
|
+
if (sorted.length === 4 &&
|
|
2311
|
+
sorted.includes("I") &&
|
|
2312
|
+
sorted.includes("W") &&
|
|
2313
|
+
sorted.includes("E") &&
|
|
2314
|
+
sorted.includes("D")) {
|
|
2315
|
+
return "All + Debug";
|
|
2316
|
+
}
|
|
2317
|
+
// For others, show the descriptions joined with " + "
|
|
2318
|
+
return selected
|
|
2319
|
+
.map(function (code) {
|
|
2320
|
+
var _a;
|
|
2321
|
+
return ((_a = LOG_TYPE_CODES[code]) === null || _a === void 0 ? void 0 : _a.description) ||
|
|
2322
|
+
code;
|
|
2323
|
+
})
|
|
2324
|
+
.join(" + ");
|
|
2325
|
+
};
|
|
2300
2326
|
return (React__default.createElement("div", { style: { marginTop: 6, borderTopLeftRadius: 3, borderTopRightRadius: 3 } },
|
|
2301
2327
|
React__default.createElement(InputLabel, { id: "demo-simple-select-label", style: { fontSize: 10, marginBottom: 0 } }, "Type"),
|
|
2302
|
-
React__default.createElement(Select, { labelId: "
|
|
2303
|
-
|
|
2304
|
-
|
|
2305
|
-
|
|
2328
|
+
React__default.createElement(Select, { labelId: "code-filter-select-label", id: "code-filter-select", multiple: true, value: LogTypeCode, onChange: function (newLogTypeCode) {
|
|
2329
|
+
var newValue = newLogTypeCode.target.value;
|
|
2330
|
+
if (newValue.length > 0) {
|
|
2331
|
+
setLogTypeCodeFilter(newValue);
|
|
2332
|
+
}
|
|
2333
|
+
}, renderValue: function (selected) { return getDisplayValue(selected); }, style: { minWidth: "100%" } }, Object.values(LOG_TYPE_CODES).map(function (log) {
|
|
2334
|
+
return (React__default.createElement(MenuItem, { key: "logId-".concat(log.id), value: log.id, style: { padding: "0px 8px" } },
|
|
2335
|
+
React__default.createElement(Checkbox, { checked: LogTypeCode.includes(log.id), size: "small", color: "primary" }),
|
|
2336
|
+
React__default.createElement(ListItemText, { primary: log.description })));
|
|
2306
2337
|
}))));
|
|
2307
2338
|
};
|
|
2308
2339
|
|
|
@@ -2546,7 +2577,7 @@ var TableLogs = function () {
|
|
|
2546
2577
|
var _b = useState(moment$8().hour(23).minute(59).second(59).toDate()), endDate = _b[0], setEndDate = _b[1];
|
|
2547
2578
|
var _c = useState("UTC"), timezone = _c[0], setTimezone = _c[1];
|
|
2548
2579
|
var _d = useState(""), search = _d[0], setSearch = _d[1];
|
|
2549
|
-
var _e = useState("
|
|
2580
|
+
var _e = useState(["I", "W", "E"]), logTypeCode = _e[0], setLogTypeCode = _e[1];
|
|
2550
2581
|
var _f = useState(false), autoRefresh = _f[0], setAutoRefresh = _f[1];
|
|
2551
2582
|
var _g = useState(null), gridAPI = _g[0], setGridAPI = _g[1];
|
|
2552
2583
|
var _h = useState(""), error = _h[0], setError = _h[1];
|
|
@@ -2555,7 +2586,7 @@ var TableLogs = function () {
|
|
|
2555
2586
|
var _l = searchLogs({
|
|
2556
2587
|
startDate: startDate,
|
|
2557
2588
|
endDate: endDate,
|
|
2558
|
-
logTypeCode: logTypeCode,
|
|
2589
|
+
logTypeCode: logTypeCode.join(","),
|
|
2559
2590
|
autoRefresh: autoRefresh,
|
|
2560
2591
|
}), rows = _l.data, isLoading = _l.isLoading, refetch = _l.refetch, isError = _l.isError, e = _l.error;
|
|
2561
2592
|
var onGridReady = function (params) {
|
|
@@ -2596,7 +2627,7 @@ var TableLogs = function () {
|
|
|
2596
2627
|
setEndDate(moment$8().hour(23).minute(59).second(59).toDate());
|
|
2597
2628
|
setSearch("");
|
|
2598
2629
|
gridAPI === null || gridAPI === void 0 ? void 0 : gridAPI.setGridOption("quickFilterText", "");
|
|
2599
|
-
setLogTypeCode("
|
|
2630
|
+
setLogTypeCode(["I", "W", "E"]);
|
|
2600
2631
|
refetch();
|
|
2601
2632
|
setError("");
|
|
2602
2633
|
};
|
|
@@ -2606,7 +2637,7 @@ var TableLogs = function () {
|
|
|
2606
2637
|
setEndDate(moment$8().hour(23).minute(59).second(59).toDate());
|
|
2607
2638
|
setSearch("");
|
|
2608
2639
|
gridAPI === null || gridAPI === void 0 ? void 0 : gridAPI.setGridOption("quickFilterText", "");
|
|
2609
|
-
setLogTypeCode("
|
|
2640
|
+
setLogTypeCode(["I", "W", "E"]);
|
|
2610
2641
|
setSelectedLog(undefined);
|
|
2611
2642
|
};
|
|
2612
2643
|
var rowClicked = function (rowClickedEvent) {
|
|
@@ -2649,19 +2680,21 @@ var TableLogs = function () {
|
|
|
2649
2680
|
React.createElement(Card, { className: classes.card },
|
|
2650
2681
|
React.createElement(CardContent, { style: { padding: "6px !important", width: "100%" } },
|
|
2651
2682
|
React.createElement(Grid, { container: true, alignItems: "center", direction: "row", spacing: 1 },
|
|
2652
|
-
React.createElement(Grid, { item: true,
|
|
2683
|
+
React.createElement(Grid, { item: true, style: { width: "fit-content" } },
|
|
2653
2684
|
React.createElement(DateFilter, { label: "From", date: startDate, setDate: function (date) {
|
|
2654
2685
|
return setStartDate(date || new Date());
|
|
2655
2686
|
}, maxDate: endDate !== null && endDate !== void 0 ? endDate : undefined })),
|
|
2656
|
-
React.createElement(Grid, { item: true,
|
|
2687
|
+
React.createElement(Grid, { item: true, style: { width: "fit-content" } },
|
|
2657
2688
|
React.createElement(DateFilter, { label: "To", date: endDate, setDate: function (date) {
|
|
2658
2689
|
if (date) {
|
|
2659
2690
|
setEndDate(date);
|
|
2660
2691
|
setAutoRefresh(false);
|
|
2661
2692
|
}
|
|
2662
2693
|
}, minDate: startDate })),
|
|
2663
|
-
React.createElement(Grid, { item: true, md:
|
|
2664
|
-
React.createElement(CodeFilter, { LogTypeCode: logTypeCode, setLogTypeCodeFilter:
|
|
2694
|
+
React.createElement(Grid, { item: true, md: 2, xs: 12 },
|
|
2695
|
+
React.createElement(CodeFilter, { LogTypeCode: logTypeCode, setLogTypeCodeFilter: function (logTypeCodes) {
|
|
2696
|
+
return setLogTypeCode(logTypeCodes);
|
|
2697
|
+
} })),
|
|
2665
2698
|
React.createElement(Grid, { item: true, md: 1, xs: 12 },
|
|
2666
2699
|
React.createElement(TimezoneSelector, { value: timezone, onChange: setTimezone })),
|
|
2667
2700
|
React.createElement(Grid, { item: true, md: 1, xs: 12 },
|
|
@@ -2674,7 +2707,7 @@ var TableLogs = function () {
|
|
|
2674
2707
|
}
|
|
2675
2708
|
setAutoRefresh(checked);
|
|
2676
2709
|
} })),
|
|
2677
|
-
React.createElement(Grid, { item: true, md:
|
|
2710
|
+
React.createElement(Grid, { item: true, md: 3, xs: 12 },
|
|
2678
2711
|
React.createElement(SearchFilter, { search: search, setSearch: function (search) {
|
|
2679
2712
|
setSearch(search);
|
|
2680
2713
|
gridAPI === null || gridAPI === void 0 ? void 0 : gridAPI.setGridOption("quickFilterText", search);
|
|
@@ -14842,8 +14875,10 @@ var useTableData$1 = function (_a) {
|
|
|
14842
14875
|
field: "AssetName",
|
|
14843
14876
|
headerName: "Asset",
|
|
14844
14877
|
sortable: true,
|
|
14845
|
-
flex:
|
|
14878
|
+
flex: 2,
|
|
14846
14879
|
minWidth: 70,
|
|
14880
|
+
wrapText: true,
|
|
14881
|
+
autoHeight: true,
|
|
14847
14882
|
},
|
|
14848
14883
|
]
|
|
14849
14884
|
: []), true), [
|
|
@@ -16876,8 +16911,10 @@ var useTableData = function (_a) {
|
|
|
16876
16911
|
field: "AssetName",
|
|
16877
16912
|
headerName: "Asset",
|
|
16878
16913
|
sortable: true,
|
|
16879
|
-
flex:
|
|
16914
|
+
flex: 2,
|
|
16880
16915
|
minWidth: 70,
|
|
16916
|
+
wrapText: true,
|
|
16917
|
+
autoHeight: true,
|
|
16881
16918
|
},
|
|
16882
16919
|
]
|
|
16883
16920
|
: []), true), [
|
|
@@ -17638,5 +17675,5 @@ var areaSelector = /*#__PURE__*/Object.freeze({
|
|
|
17638
17675
|
AreaSelector: AreaSelector
|
|
17639
17676
|
});
|
|
17640
17677
|
|
|
17641
|
-
export { Account, AssetProvider, AssetTreePicker, AuthContext, AuthProvider, BarChartControl, ButtonWithLoading, ChangePassword, CheckBoxControl, Configuration$1 as Configuration, ContextMenu$1 as ContextMenu, ContextMenuMESFProvider, CurrencyFormatter, DataGridControl, DateFormatter, DateTimeFormatter, ErrorModal, FetchError, FilterPanel, GenericPanel, GenericTable, GetCrewColor, GetShiftColor, HelmetDexteel, IntegerFormatter, LogbookSettingsInitialState, LogbookSettingsProvider, Login, Logout, LongFilterPanel, MESApiService, MESFLogbookEntry, MESFLogbookReport, MESFMain, MESSAGE_API, MESSAGE_ERRORS, MasterDetailPanel, MesfModal, ModalTreeFilterControl, MultipleSelectorControl, NumberFormatter, ShiftDayNavigatorControl, ShiftNavigatorProvider, ShiftPeriodNavigatorControl, SimplePasswordControl, SimpleSelectorControl, TimeAndUserMenu, TimeFormatter, TimeService, TreePickerControl, TreePickerControlV2, TrendingsPage, USER_LABELS, UTLSettingsProvider, UserProvider, axiosInstance, deleteUser, dxtServerTimeZone, dxtToLocalServerTime, dxtToUTC, formatNumber, getAuthTypes, getCrewStyle, getDataUser, getError, getMomentTz, getShiftByParameters, getShiftStyle, getShiftsRangeByParameters, getTokenFromLS, getUserPermissionsFromAPI, getUsers, logbookNavbar, logbookRoutesMESF, renewToken, routeLogbookEntry, routeLogbookReport, searchAssets, searchSeries, searchTagsTree, searchViewTags, searchViews, setPassword, setProfilesToUser, themeDXT, themeMESF, upsertUser, useAssetContext, useContextMenuMESF, useHasPermission, useHasProfile, useLogbookSettings, useMesfRealtime, useShiftNavigator, useShiftNavigatorManager, useStyles$i as useStyles, useToken, useUTLSettingsContext, useUserContext };
|
|
17678
|
+
export { Account, AssetProvider, AssetTreePicker, AuthContext, AuthProvider, BarChartControl, ButtonWithLoading, ChangePassword, CheckBoxControl, Configuration$1 as Configuration, ContextMenu$1 as ContextMenu, ContextMenuMESFProvider, CreateNewAssetDialog, CurrencyFormatter, DataGridControl, DateFormatter, DateTimeFormatter, EditAssetDialog, ErrorModal, FetchError, FilterPanel, GenericPanel, GenericTable, GetCrewColor, GetShiftColor, HelmetDexteel, IntegerFormatter, LogbookSettingsInitialState, LogbookSettingsProvider, Login, Logout, LongFilterPanel, MESApiService, MESFLogbookEntry, MESFLogbookReport, MESFMain, MESSAGE_API, MESSAGE_ERRORS, MasterDetailPanel, MesfModal, ModalTreeFilterControl, MultipleSelectorControl, NumberFormatter, RemoveAssetDialog, ShiftDayNavigatorControl, ShiftNavigatorProvider, ShiftPeriodNavigatorControl, SimplePasswordControl, SimpleSelectorControl, TimeAndUserMenu, TimeFormatter, TimeService, TreePickerControl, TreePickerControlV2, TrendingsPage, USER_LABELS, UTLSettingsProvider, UserProvider, axiosInstance, deleteUser, dxtServerTimeZone, dxtToLocalServerTime, dxtToUTC, formatNumber, getAuthTypes, getCrewStyle, getDataUser, getError, getMomentTz, getShiftByParameters, getShiftStyle, getShiftsRangeByParameters, getTokenFromLS, getUserPermissionsFromAPI, getUsers, logbookNavbar, logbookRoutesMESF, renewToken, routeLogbookEntry, routeLogbookReport, searchAssets, searchSeries, searchTagsTree, searchViewTags, searchViews, setPassword, setProfilesToUser, themeDXT, themeMESF, upsertUser, useAssetContext, useContextMenuMESF, useHasPermission, useHasProfile, useLogbookSettings, useMesfRealtime, useShiftNavigator, useShiftNavigatorManager, useStyles$i as useStyles, useToken, useUTLSettingsContext, useUserContext };
|
|
17642
17679
|
//# sourceMappingURL=index.esm.js.map
|