@mcurros2/microm 1.1.399-0 → 1.1.401-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 +16 -4
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +28881 -28764
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1798,6 +1798,14 @@ export interface ImportSummaryStepProps {
|
|
|
1798
1798
|
}
|
|
1799
1799
|
export const ImportSummaryStepDefaultProps: Partial<ImportSummaryStepProps>;
|
|
1800
1800
|
export function ImportSummaryStep(props: ImportSummaryStepProps): JSX.Element | null;
|
|
1801
|
+
export const ACTDeleteHistoryDefaultProps: {
|
|
1802
|
+
deleteHistoryLabel: string;
|
|
1803
|
+
deleteHistoryTitle: string;
|
|
1804
|
+
deleteHistoryConfirmationLabel: string;
|
|
1805
|
+
selectedRecordsLabel: string;
|
|
1806
|
+
deleteLabel: string;
|
|
1807
|
+
};
|
|
1808
|
+
export const ACTDeleteHistory: EntityClientAction;
|
|
1801
1809
|
export const ACTDownloadImportedFileDefaultProps: {
|
|
1802
1810
|
downloadImportedFileLabel: string;
|
|
1803
1811
|
downloadImportedFileErrorLabel: string;
|
|
@@ -1861,10 +1869,6 @@ export interface openEntityFormProps<T extends FormOptions<Entity<EntityDefiniti
|
|
|
1861
1869
|
formProps: T;
|
|
1862
1870
|
}
|
|
1863
1871
|
export function openEntityForm<T extends FormOptions<Entity<EntityDefinition>>>({ modals, title, element, handleModalCancel, handleModalSaved, modalFormSize, formProps, handleModalClosed, withModalFullscreenButton }: openEntityFormProps<T>): Promise<void>;
|
|
1864
|
-
export const ACTImportDataDefaultProps: {
|
|
1865
|
-
importDataLabel: string;
|
|
1866
|
-
};
|
|
1867
|
-
export const ACTImportData: EntityClientAction;
|
|
1868
1872
|
export class ImportProcessDef extends EntityDefinition {
|
|
1869
1873
|
destinationProps: ImportDataDestinationProps;
|
|
1870
1874
|
columns: {
|
|
@@ -1894,16 +1898,22 @@ export class ImportProcessDef extends EntityDefinition {
|
|
|
1894
1898
|
};
|
|
1895
1899
|
clientActions: {
|
|
1896
1900
|
ACTImportData: _EntityClientAction1;
|
|
1901
|
+
ACTDeleteHistory: _EntityClientAction1;
|
|
1897
1902
|
ACTDownloadImportedFile: _EntityClientAction1;
|
|
1898
1903
|
ACTViewImportErrors: _EntityClientAction1;
|
|
1899
1904
|
};
|
|
1900
1905
|
constructor(destinationProps: ImportDataDestinationProps);
|
|
1901
1906
|
}
|
|
1907
|
+
export const ACTImportDataDefaultProps: {
|
|
1908
|
+
importDataLabel: string;
|
|
1909
|
+
};
|
|
1910
|
+
export const ACTImportData: EntityClientAction;
|
|
1902
1911
|
export class ImportProcess extends Entity<ImportProcessDef> {
|
|
1903
1912
|
constructor(client: MicroMClient, parentKeys: ValuesObject | undefined, destinationProps: ImportDataDestinationProps);
|
|
1904
1913
|
}
|
|
1905
1914
|
export type ImportDataPanelProps = DataGridPanelProps & {
|
|
1906
1915
|
importFileStepProps?: ImportFileStepCustomizationProps;
|
|
1916
|
+
stepperProps?: StepperFormProps['stepperProps'];
|
|
1907
1917
|
};
|
|
1908
1918
|
export const ImportDataPanelDefaultProps: Partial<ImportDataPanelProps>;
|
|
1909
1919
|
export function ImportDataPanel(props: ImportDataPanelProps): JSX.Element;
|
|
@@ -1980,6 +1990,7 @@ export interface ImportEntityDataFormProps extends FormOptions<ImportEntityData>
|
|
|
1980
1990
|
entityProcName?: string;
|
|
1981
1991
|
excludedImportDestinations?: string[];
|
|
1982
1992
|
importFileStepProps?: ImportFileStepCustomizationProps;
|
|
1993
|
+
stepperProps?: StepperFormProps['stepperProps'];
|
|
1983
1994
|
onImportSuccess?: () => Promise<void>;
|
|
1984
1995
|
instructionsStepLabel?: string;
|
|
1985
1996
|
instructionsStepDescription?: string;
|
|
@@ -2043,6 +2054,7 @@ export interface ImportDataDestinationProps {
|
|
|
2043
2054
|
entityProcName?: string;
|
|
2044
2055
|
excludedImportDestinations?: string[];
|
|
2045
2056
|
importFileStepProps?: ImportFileStepCustomizationProps;
|
|
2057
|
+
stepperProps?: StepperFormProps['stepperProps'];
|
|
2046
2058
|
}
|
|
2047
2059
|
export interface ModalFormOptions {
|
|
2048
2060
|
entity: Entity<EntityDefinition>;
|