@mcurros2/microm 1.1.305-0 → 1.1.307-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 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +46 -18
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -293,6 +293,7 @@ export function clearValues(columns: ColumnsObject, useColumnDefaultValue?: bool
|
|
|
293
293
|
export function fillParentKeys(columns: ColumnsObject, parentKeys: ColumnsObject, ignoreEmptyParentKeys?: boolean, filters?: ColumnsFilter | null): void;
|
|
294
294
|
export function namesOf<T>(): { [P in keyof T]: P; };
|
|
295
295
|
export function copyValuesObject(obj: ValuesObject): ValuesObject;
|
|
296
|
+
export function mergeValuesObject(source?: ValuesObject, mergeAndOverride?: ValuesObject): ValuesObject;
|
|
296
297
|
export type ValidationRule = (value: unknown, values?: Record<string, unknown>) => string | number | true | ReactElement<any, string | JSXElementConstructor<any>> | Iterable<ReactNode> | null;
|
|
297
298
|
export type ValidatorFunction = (...args: any[]) => ValidationRule;
|
|
298
299
|
export const isURL: ValidatorFunction;
|
|
@@ -798,7 +799,7 @@ export interface ToggleActionIconOptions {
|
|
|
798
799
|
title?: string;
|
|
799
800
|
}
|
|
800
801
|
export const ToggleActionIcon: ForwardRefExoticComponent<ToggleActionIconOptions & RefAttributes<HTMLButtonElement>>;
|
|
801
|
-
export function useExecuteView(entity?: Entity<EntityDefinition>, values?: ValuesObject, viewName?: string, search?: string[] | undefined, limit?: string | null, refresh?: boolean, filters?: ValuesObject): OperationStatus<DataResult[]>;
|
|
802
|
+
export function useExecuteView(entity?: Entity<EntityDefinition>, values?: ValuesObject, viewName?: string, search?: string[] | undefined, limit?: string | null, refresh?: boolean, filters?: ValuesObject, enabled?: boolean): OperationStatus<DataResult[]>;
|
|
802
803
|
export function useDebugProps<T>(propsObject: T, dependencies: any[], componentName: string): void;
|
|
803
804
|
export function useEnterAsTab<T extends HTMLElement>(): MutableRefObject<T | null>;
|
|
804
805
|
export interface useLoginType {
|
|
@@ -2915,6 +2916,7 @@ export interface MenuItem {
|
|
|
2915
2916
|
canShowAsShortcut?: boolean;
|
|
2916
2917
|
menuPath?: string;
|
|
2917
2918
|
menuPathDescription?: string;
|
|
2919
|
+
parentKeys?: ValuesObject;
|
|
2918
2920
|
}
|
|
2919
2921
|
export interface NavigationState {
|
|
2920
2922
|
navigated: boolean;
|