@mcurros2/microm 1.1.364-0 → 1.1.366-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 +12 -7
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -394,6 +394,7 @@ export interface EntityFormProps extends PropsWithChildren {
|
|
|
394
394
|
saveBeforeLocalNavigation?: boolean;
|
|
395
395
|
saveBeforeRemoteNavigation?: boolean;
|
|
396
396
|
disableOKIfNotDirty?: boolean;
|
|
397
|
+
formHeight?: string | number;
|
|
397
398
|
}
|
|
398
399
|
export const EntityFormDefaultProps: Partial<EntityFormProps>;
|
|
399
400
|
export function EntityForm(props: EntityFormProps): JSX.Element;
|
|
@@ -1523,7 +1524,7 @@ export function useEntityUI(props: UseEntityUIProps): {
|
|
|
1523
1524
|
handleImportDataClick: () => Promise<void>;
|
|
1524
1525
|
};
|
|
1525
1526
|
export function useExecuteProc(entity: Entity<EntityDefinition>, proc: EntityProc): {
|
|
1526
|
-
execute: (values?: ValuesObject) => Promise<OperationStatus<DataResult[]> | undefined>;
|
|
1527
|
+
execute: (values?: ValuesObject, force_refresh?: boolean) => Promise<OperationStatus<DataResult[]> | undefined>;
|
|
1527
1528
|
status: OperationStatus<DataResult[]>;
|
|
1528
1529
|
abort: () => void;
|
|
1529
1530
|
};
|
|
@@ -2276,7 +2277,7 @@ export interface PinFieldProps extends Omit<PinInputProps, 'validate' | 'autoFoc
|
|
|
2276
2277
|
export const PinFieldDefaultProps: Partial<PinFieldProps>;
|
|
2277
2278
|
export function PinField(props: PinFieldProps): JSX.Element;
|
|
2278
2279
|
export function useExecuteProcess(entity: Entity<EntityDefinition>, proc: EntityProc): {
|
|
2279
|
-
execute: (values?: ValuesObject) => Promise<OperationStatus<DBStatusResult> | undefined>;
|
|
2280
|
+
execute: (values?: ValuesObject, force_refresh?: boolean) => Promise<OperationStatus<DBStatusResult> | undefined>;
|
|
2280
2281
|
status: OperationStatus<DBStatusResult>;
|
|
2281
2282
|
abort: () => void;
|
|
2282
2283
|
};
|