@mcurros2/microm 1.1.248-0 → 1.1.249-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 +10 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +16 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -441,6 +441,14 @@ export type latLng = {
|
|
|
441
441
|
lat: number;
|
|
442
442
|
lng: number;
|
|
443
443
|
};
|
|
444
|
+
export const MicroMWidthSizes: {
|
|
445
|
+
xs: string;
|
|
446
|
+
sm: string;
|
|
447
|
+
md: string;
|
|
448
|
+
lg: string;
|
|
449
|
+
xl: string;
|
|
450
|
+
auto: string;
|
|
451
|
+
};
|
|
444
452
|
export interface EntityError extends Error {
|
|
445
453
|
Errors: DBStatus[];
|
|
446
454
|
}
|
|
@@ -2700,6 +2708,8 @@ export interface LookupSelectOptions {
|
|
|
2700
2708
|
zIndex?: number;
|
|
2701
2709
|
editButtonVariant?: ButtonVariant;
|
|
2702
2710
|
breadCrumbs?: ReactNode;
|
|
2711
|
+
maxWidth?: keyof typeof MicroMWidthSizes;
|
|
2712
|
+
minWidth?: keyof typeof MicroMWidthSizes;
|
|
2703
2713
|
}
|
|
2704
2714
|
export const LookupSelectDefaultProps: Partial<LookupSelectOptions>;
|
|
2705
2715
|
export const LookupSelect: ForwardRefExoticComponent<LookupSelectOptions & RefAttributes<HTMLInputElement>>;
|