@dxs-ts/eveli-ide 0.0.368 → 0.0.370
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.
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { BatchApi } from '../api-batch';
|
|
3
|
+
export interface BatchViewHeadersProps {
|
|
4
|
+
batch: BatchApi.Batch;
|
|
5
|
+
instanceSectionWidth: string;
|
|
6
|
+
stepSectionWidth: string;
|
|
7
|
+
}
|
|
8
|
+
export declare const BatchViewHeaders: React.FC<BatchViewHeadersProps>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './BatchViewHeaders';
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { BatchViewHeadersProps } from './BatchViewHeaders';
|
|
2
|
+
export declare const MUI_NAME = "BatchViewHeaders";
|
|
3
|
+
export type BatchViewHeadersClassKey = keyof BatchViewHeadersClasses;
|
|
4
|
+
export interface BatchViewHeadersClasses {
|
|
5
|
+
root: string;
|
|
6
|
+
stepSection: string;
|
|
7
|
+
}
|
|
8
|
+
export declare const useUtilityClasses: () => Record<"title" | "root" | "stepSection" | "instanceSection", string>;
|
|
9
|
+
export declare const BatchViewHeadersRoot: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & {
|
|
10
|
+
ownerState: BatchViewHeadersProps;
|
|
11
|
+
}, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').ClassAttributes<HTMLDivElement> | keyof import('react').HTMLAttributes<HTMLDivElement>>, {}>;
|