@mcurros2/microm 1.1.382-0 → 1.1.384-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
@@ -2068,15 +2068,15 @@ export class ImportProcessDef extends EntityDefinition {
2068
2068
  export class ImportProcess extends Entity<ImportProcessDef> {
2069
2069
  constructor(client: MicroMClient, parentKeys?: ValuesObject);
2070
2070
  }
2071
- type ControlledDataGridPanelProps = 'entityConstructor' | 'entityLoader' | 'parentKeys' | 'enableImport' | 'entityProcName' | 'excludedImportDestinations' | 'clientActionOthers' | 'enableAdd' | 'enableEdit' | 'enableDelete' | 'enableView' | 'formMode' | 'selectionMode' | 'showActions' | 'showActionsToolbar' | 'doubleClickAction' | 'autoSelectFirstRow' | 'showSelectRowsButton' | 'initialSelectRowsToggle';
2071
+ type ControlledDataGridPanelProps = 'entityConstructor' | 'entityLoader' | 'parentKeys' | 'enableImport' | 'entityProcName' | 'excludedImportDestinations' | 'clientActionOthers' | 'enableAdd' | 'enableEdit' | 'enableDelete' | 'enableView' | 'selectionMode' | 'showActions' | 'showActionsToolbar' | 'doubleClickAction' | 'autoSelectFirstRow' | 'showSelectRowsButton' | 'initialSelectRowsToggle';
2072
2072
  export type ImportDataPanelDestinationSourceProps = {
2073
2073
  /** Builds the entity that receives the imported records synchronously. */
2074
- destinationEntityConstructor: NonNullable<EntitySourceProps['entityConstructor']>;
2074
+ destinationEntityConstructor: NonNullable<EntityGridSourceProps['entityConstructor']>;
2075
2075
  destinationEntityLoader?: never;
2076
2076
  } | {
2077
2077
  destinationEntityConstructor?: never;
2078
2078
  /** Loads the entity that receives the imported records asynchronously. */
2079
- destinationEntityLoader: NonNullable<EntitySourceProps['entityLoader']>;
2079
+ destinationEntityLoader: NonNullable<EntityGridSourceProps['entityLoader']>;
2080
2080
  };
2081
2081
  export type ImportDataPanelProps = Omit<DataGridPanelProps, ControlledDataGridPanelProps> & ImportDataPanelDestinationSourceProps & {
2082
2082
  parentKeys?: ValuesObject;