@mcurros2/microm 1.1.306-0 → 1.1.308-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 +2 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +30 -10
- package/dist/index.js.map +1 -1
- package/package.json +4 -3
package/dist/index.d.ts
CHANGED
|
@@ -799,7 +799,7 @@ export interface ToggleActionIconOptions {
|
|
|
799
799
|
title?: string;
|
|
800
800
|
}
|
|
801
801
|
export const ToggleActionIcon: ForwardRefExoticComponent<ToggleActionIconOptions & RefAttributes<HTMLButtonElement>>;
|
|
802
|
-
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[]>;
|
|
803
803
|
export function useDebugProps<T>(propsObject: T, dependencies: any[], componentName: string): void;
|
|
804
804
|
export function useEnterAsTab<T extends HTMLElement>(): MutableRefObject<T | null>;
|
|
805
805
|
export interface useLoginType {
|
|
@@ -2916,6 +2916,7 @@ export interface MenuItem {
|
|
|
2916
2916
|
canShowAsShortcut?: boolean;
|
|
2917
2917
|
menuPath?: string;
|
|
2918
2918
|
menuPathDescription?: string;
|
|
2919
|
+
parentKeys?: ValuesObject;
|
|
2919
2920
|
}
|
|
2920
2921
|
export interface NavigationState {
|
|
2921
2922
|
navigated: boolean;
|