@mcurros2/microm 1.1.177-0 → 1.1.179-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 +4 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +21 -9
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2310,6 +2310,7 @@ export interface LookupFormProps {
|
|
|
2310
2310
|
helpMessage?: string;
|
|
2311
2311
|
okLabel?: string;
|
|
2312
2312
|
cancelLabel?: string;
|
|
2313
|
+
breadCrumbs?: string[];
|
|
2313
2314
|
}
|
|
2314
2315
|
export const LookupFormDefaultProps: Partial<LookupFormProps>;
|
|
2315
2316
|
export function LookupForm(props: LookupFormProps): JSX.Element;
|
|
@@ -2371,6 +2372,7 @@ export interface ModalLookupOptions {
|
|
|
2371
2372
|
enableEdit?: boolean;
|
|
2372
2373
|
enableDelete?: boolean;
|
|
2373
2374
|
enableView?: boolean;
|
|
2375
|
+
breadCrumbs?: string[];
|
|
2374
2376
|
}
|
|
2375
2377
|
export const UseLookupFormDefaultProps: Partial<ModalLookupOptions>;
|
|
2376
2378
|
export function useLookupForm(): (props: ModalLookupOptions) => Promise<void>;
|
|
@@ -2566,6 +2568,7 @@ export interface UseLookupSelectOptions {
|
|
|
2566
2568
|
lookupDefName: string;
|
|
2567
2569
|
maxItems?: number;
|
|
2568
2570
|
includeKeyInDescription?: boolean;
|
|
2571
|
+
breadCrumbs?: string[];
|
|
2569
2572
|
}
|
|
2570
2573
|
export const useLookupSelect: (props: UseLookupSelectOptions) => {
|
|
2571
2574
|
onEditClick: () => void;
|
|
@@ -2599,6 +2602,7 @@ export interface LookupSelectOptions {
|
|
|
2599
2602
|
withinPortal?: boolean;
|
|
2600
2603
|
zIndex?: number;
|
|
2601
2604
|
editButtonVariant?: ButtonVariant;
|
|
2605
|
+
breadCrumbs?: string[];
|
|
2602
2606
|
}
|
|
2603
2607
|
export const LookupSelectDefaultProps: Partial<LookupSelectOptions>;
|
|
2604
2608
|
export const LookupSelect: ForwardRefExoticComponent<LookupSelectOptions & RefAttributes<HTMLInputElement>>;
|