@mcurros2/microm 1.1.405-0 → 1.1.406-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 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +137 -136
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -515,8 +515,11 @@ export interface StepperFormProps extends EntityFormProps {
|
|
|
515
515
|
hideNextAndBackWhenCompleted?: boolean;
|
|
516
516
|
onCompleted?: () => void;
|
|
517
517
|
onCancelSubmit?: () => void | Promise<void>;
|
|
518
|
+
onCloseCompleted?: () => void | Promise<void>;
|
|
518
519
|
cancelSubmitLabel?: ReactNode;
|
|
519
520
|
stepperProps?: Omit<Partial<StepperProps>, 'children' | 'active'>;
|
|
521
|
+
completedButtonLabel?: string;
|
|
522
|
+
showCompletedButton?: boolean;
|
|
520
523
|
}
|
|
521
524
|
export const StepperFormDefaultProps: Partial<StepperFormProps>;
|
|
522
525
|
export function StepperForm(props: StepperFormProps): JSX.Element;
|
|
@@ -1741,13 +1744,11 @@ export const CircleFilledIcon: ForwardRefExoticComponent<CircleFilledIconProps &
|
|
|
1741
1744
|
export interface ImportCompletedContentProps {
|
|
1742
1745
|
fileName: string;
|
|
1743
1746
|
result: ImpDataResult;
|
|
1744
|
-
onClose?: () => void | Promise<void>;
|
|
1745
1747
|
importedFileLabel?: string;
|
|
1746
1748
|
recordsImportedSuccessfullyLabel?: string;
|
|
1747
1749
|
recordsNotImportedDueToErrorsLabel?: string;
|
|
1748
1750
|
errorColumnTitle?: string;
|
|
1749
1751
|
rowColumnTitle?: string;
|
|
1750
|
-
closeLabel?: ReactNode;
|
|
1751
1752
|
}
|
|
1752
1753
|
export const ImportCompletedContentDefaultProps: Partial<ImportCompletedContentProps>;
|
|
1753
1754
|
export function ImportCompletedContent(props: ImportCompletedContentProps): JSX.Element;
|