@dexteel/mesf-core 4.5.10 → 4.6.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 +5 -1
- package/dist/components/shared/buttons/button-with-loading.d.ts +9 -0
- package/dist/index.d.ts +2 -1
- package/dist/index.esm.js +1049 -742
- package/dist/index.esm.js.map +1 -1
- package/dist/pages/trendings/TrendingsPage.d.ts +4 -0
- package/dist/pages/trendings/components/chart/TableComponent.d.ts +1 -3
- package/dist/pages/trendings/components/chart/Trending.d.ts +0 -2
- package/dist/pages/trendings/components/chart/components/modals/addTagModal/AddTagModal.d.ts +2 -2
- package/dist/pages/trendings/components/chart/components/modals/addTagModal/TagSelectionModal.d.ts +2 -2
- package/dist/pages/trendings/components/chart/components/modals/loadView/LoadViewModal.d.ts +7 -0
- package/dist/pages/trendings/components/chart/components/modals/saveAsView/SaveAsViewModal.d.ts +7 -0
- package/dist/pages/trendings/components/chart/context/TrendingContext.d.ts +47 -0
- package/dist/pages/trendings/components/chart/hooks/useTagsDataTable.d.ts +3 -3
- package/dist/pages/trendings/components/chart/models/TrendingModels.d.ts +25 -0
- package/dist/pages/trendings/components/chart/repository/TrendingRepository.d.ts +4 -5
- package/dist/pages/trendings/components/chart/sections/trending-chart.d.ts +3 -4
- package/dist/pages/trendings/components/chart/styles/TrendingStyles.d.ts +1 -1
- package/dist/pages/trendings/components/chart/utils/areRangeSimilar.d.ts +2 -2
- package/dist/pages/trendings/index.d.ts +3 -4
- package/dist/pages/trendings/reducers/trendings.reducer.d.ts +58 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,8 @@
|
|
|
1
1
|
# CHANGELOG
|
|
2
|
+
## 4.6.1
|
|
3
|
+
- Fix manual scales
|
|
4
|
+
## 4.6.0
|
|
5
|
+
- Add Views and ViewTags functionalities to Trendings
|
|
2
6
|
## 4.5.9
|
|
3
7
|
- Add date to X Axis when day changes
|
|
4
8
|
## 4.5.8
|
|
@@ -82,4 +86,4 @@
|
|
|
82
86
|
## 2.1.5
|
|
83
87
|
- Fix exportExcel method. Now it supports when sheets structure is defined. **REQUIRES mesf-core-api@1.2.2**
|
|
84
88
|
## 2.1.3
|
|
85
|
-
- Implementation of **exportExcel** inside MESApiService. **REQUIRES mesf-core-api@1.2.0**
|
|
89
|
+
- Implementation of **exportExcel** inside MESApiService. **REQUIRES mesf-core-api@1.2.0**
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { ButtonProps } from "@material-ui/core/Button/Button";
|
|
3
|
+
import { ReactNode } from "react";
|
|
4
|
+
interface Props extends ButtonProps {
|
|
5
|
+
children: ReactNode;
|
|
6
|
+
isLoading: boolean;
|
|
7
|
+
}
|
|
8
|
+
export declare const ButtonWithLoading: ({ children, isLoading, ...props }: Props) => React.JSX.Element;
|
|
9
|
+
export {};
|
package/dist/index.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ export * from "./context/axiosInstance";
|
|
|
3
3
|
export * from "./MESFMain";
|
|
4
4
|
export * from "./components/modals/modal.mesf";
|
|
5
5
|
export * from "./components/modals/error-modal";
|
|
6
|
-
export * from "./pages/trendings";
|
|
6
|
+
export * from "./pages/trendings/TrendingsPage";
|
|
7
7
|
export * from "./configuration";
|
|
8
8
|
export * from "./context/UTLSettingContext";
|
|
9
9
|
export * from "./context/assetContext";
|
|
@@ -11,3 +11,4 @@ export * from "./context/userContext";
|
|
|
11
11
|
export * from "./controls";
|
|
12
12
|
export * from "./services";
|
|
13
13
|
export * from "./utils";
|
|
14
|
+
export * from './components/shared/buttons/button-with-loading';
|