@mcurros2/microm 1.1.400-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 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,11 +1898,16 @@ 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
  }