@dexteel/mesf-core 4.7.8 → 4.7.10
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 +2 -0
- package/dist/index.esm.js +316 -72
- package/dist/index.esm.js.map +1 -1
- package/dist/pages/trendings/components/chart/components/modals/deleteViewModal/DeleteViewModal.d.ts +9 -0
- package/dist/pages/trendings/components/chart/components/modals/editViewModal/EditViewModal.d.ts +9 -0
- package/dist/pages/trendings/components/chart/components/modals/loadView/LoadViewModal.d.ts +2 -1
- package/dist/pages/trendings/components/chart/styles/TagsTableStyles.d.ts +1 -1
- package/dist/pages/trendings/components/chart/styles/TrendingStyles.d.ts +1 -1
- package/package.json +1 -1
package/dist/pages/trendings/components/chart/components/modals/deleteViewModal/DeleteViewModal.d.ts
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { View } from '../../../models/TrendingModels';
|
|
3
|
+
interface Props {
|
|
4
|
+
open: boolean;
|
|
5
|
+
handleClose: (shouldUpdate: boolean) => void;
|
|
6
|
+
view: View | null;
|
|
7
|
+
}
|
|
8
|
+
export declare const DeleteViewModal: ({ open, handleClose, view }: Props) => React.JSX.Element;
|
|
9
|
+
export {};
|
package/dist/pages/trendings/components/chart/components/modals/editViewModal/EditViewModal.d.ts
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { View } from '../../../models/TrendingModels';
|
|
3
|
+
interface Props {
|
|
4
|
+
open: boolean;
|
|
5
|
+
handleClose: (shouldUpdate: boolean) => void;
|
|
6
|
+
view: View | null;
|
|
7
|
+
}
|
|
8
|
+
export declare const EditViewModal: ({ open, handleClose, view }: Props) => React.JSX.Element;
|
|
9
|
+
export {};
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
interface Props {
|
|
3
|
+
getTagsFromAPI: Function;
|
|
3
4
|
open: boolean;
|
|
4
5
|
handleClose: (shouldUpdate: boolean) => void;
|
|
5
6
|
}
|
|
6
|
-
export declare const LoadViewModal: ({ open, handleClose }: Props) => React.JSX.Element;
|
|
7
|
+
export declare const LoadViewModal: ({ open, handleClose, getTagsFromAPI }: Props) => React.JSX.Element;
|
|
7
8
|
export {};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const useTagsTableStyles: (props?: any) => import("@material-ui/styles").ClassNameMap<"checkbox" | "color" | "scale" | "visible" | "rowHover" | "topTitles" | "bottomTitlesRow" | "doubleInput" | "inputCol" | "autoScale" | "unit" | "xStats">;
|
|
1
|
+
export declare const useTagsTableStyles: (props?: any) => import("@material-ui/styles").ClassNameMap<"checkbox" | "color" | "scale" | "visible" | "rowHover" | "topTitles" | "bottomTitlesRow" | "doubleInput" | "inputCol" | "aliasCol" | "autoScale" | "unit" | "numberInput" | "xStats">;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const useTrendingStyles: (props?: any) => import("@material-ui/styles").ClassNameMap<"datetimePicker" | "select" | "labelOptions" | "isPublicCheckbox" | "navigatorButton">;
|
|
1
|
+
export declare const useTrendingStyles: (props?: any) => import("@material-ui/styles").ClassNameMap<"datetimePicker" | "select" | "labelOptions" | "isPublicCheckbox" | "navigatorButton" | "iconContainer" | "optionContainer" | "optionLabel" | "inputCustom">;
|