@mcurros2/microm 1.1.399-0 → 1.1.400-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/dist/index.d.ts +3 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +19 -9
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1904,6 +1904,7 @@ export class ImportProcess extends Entity<ImportProcessDef> {
|
|
|
1904
1904
|
}
|
|
1905
1905
|
export type ImportDataPanelProps = DataGridPanelProps & {
|
|
1906
1906
|
importFileStepProps?: ImportFileStepCustomizationProps;
|
|
1907
|
+
stepperProps?: StepperFormProps['stepperProps'];
|
|
1907
1908
|
};
|
|
1908
1909
|
export const ImportDataPanelDefaultProps: Partial<ImportDataPanelProps>;
|
|
1909
1910
|
export function ImportDataPanel(props: ImportDataPanelProps): JSX.Element;
|
|
@@ -1980,6 +1981,7 @@ export interface ImportEntityDataFormProps extends FormOptions<ImportEntityData>
|
|
|
1980
1981
|
entityProcName?: string;
|
|
1981
1982
|
excludedImportDestinations?: string[];
|
|
1982
1983
|
importFileStepProps?: ImportFileStepCustomizationProps;
|
|
1984
|
+
stepperProps?: StepperFormProps['stepperProps'];
|
|
1983
1985
|
onImportSuccess?: () => Promise<void>;
|
|
1984
1986
|
instructionsStepLabel?: string;
|
|
1985
1987
|
instructionsStepDescription?: string;
|
|
@@ -2043,6 +2045,7 @@ export interface ImportDataDestinationProps {
|
|
|
2043
2045
|
entityProcName?: string;
|
|
2044
2046
|
excludedImportDestinations?: string[];
|
|
2045
2047
|
importFileStepProps?: ImportFileStepCustomizationProps;
|
|
2048
|
+
stepperProps?: StepperFormProps['stepperProps'];
|
|
2046
2049
|
}
|
|
2047
2050
|
export interface ModalFormOptions {
|
|
2048
2051
|
entity: Entity<EntityDefinition>;
|