@mcurros2/microm 1.1.387-0 → 1.1.388-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 +1 -14
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +3 -21
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2068,20 +2068,7 @@ export class ImportProcessDef extends EntityDefinition {
|
|
|
2068
2068
|
export class ImportProcess extends Entity<ImportProcessDef> {
|
|
2069
2069
|
constructor(client: MicroMClient, parentKeys: ValuesObject | undefined, destinationProps: ImportDataDestinationProps);
|
|
2070
2070
|
}
|
|
2071
|
-
type
|
|
2072
|
-
export type ImportDataPanelDestinationSourceProps = {
|
|
2073
|
-
/** Builds the entity that receives the imported records synchronously. */
|
|
2074
|
-
destinationEntityConstructor: NonNullable<EntityGridSourceProps['entityConstructor']>;
|
|
2075
|
-
destinationEntityLoader?: never;
|
|
2076
|
-
} | {
|
|
2077
|
-
destinationEntityConstructor?: never;
|
|
2078
|
-
/** Loads the entity that receives the imported records asynchronously. */
|
|
2079
|
-
destinationEntityLoader: NonNullable<EntityGridSourceProps['entityLoader']>;
|
|
2080
|
-
};
|
|
2081
|
-
export type ImportDataPanelProps = Omit<DataGridPanelProps, ControlledDataGridPanelProps> & ImportDataPanelDestinationSourceProps & {
|
|
2082
|
-
parentKeys?: ValuesObject;
|
|
2083
|
-
entityProcName?: string;
|
|
2084
|
-
excludedImportDestinations?: string[];
|
|
2071
|
+
export type ImportDataPanelProps = DataGridPanelProps & {
|
|
2085
2072
|
importDataLabel?: string;
|
|
2086
2073
|
downloadImportedFileLabel?: string;
|
|
2087
2074
|
};
|