@mcurros2/microm 1.1.283-0 → 1.1.284-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 +6 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2719,7 +2719,7 @@ export interface LookupSelectOptions {
|
|
|
2719
2719
|
entity: Entity<EntityDefinition>;
|
|
2720
2720
|
lookupDefName: string;
|
|
2721
2721
|
enableEdit?: boolean;
|
|
2722
|
-
selectProps?: CustomSelectProps
|
|
2722
|
+
selectProps?: Omit<CustomSelectProps, 'autoFocus'>;
|
|
2723
2723
|
editIcon?: React.ReactNode;
|
|
2724
2724
|
editIconVariant?: ActionIconVariant;
|
|
2725
2725
|
maxItems?: number;
|
|
@@ -2732,6 +2732,7 @@ export interface LookupSelectOptions {
|
|
|
2732
2732
|
breadCrumbs?: ReactNode;
|
|
2733
2733
|
maxWidth?: keyof typeof MicroMWidthSizes;
|
|
2734
2734
|
minWidth?: keyof typeof MicroMWidthSizes;
|
|
2735
|
+
autoFocus?: 'autoFocusOnAdd' | 'autoFocusOnEdit' | boolean;
|
|
2735
2736
|
}
|
|
2736
2737
|
export const LookupSelectDefaultProps: Partial<LookupSelectOptions>;
|
|
2737
2738
|
export const LookupSelect: ForwardRefExoticComponent<LookupSelectOptions & RefAttributes<HTMLInputElement>>;
|