sag_components 2.0.0-beta128 → 2.0.0-beta129
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.esm.js +342 -300
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +342 -300
- package/dist/index.js.map +1 -1
- package/dist/types/components/OverlayDropdown/OverlayDropdown.d.ts +2 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1464,7 +1464,7 @@ declare function ModalDrawer({ open, onClose, children, widthPercent }: {
|
|
|
1464
1464
|
widthPercent?: number;
|
|
1465
1465
|
}): react_jsx_runtime.JSX.Element;
|
|
1466
1466
|
|
|
1467
|
-
declare function OverlayDropdown({ data, value, onSelectClick, disabled, isDarkerBackground, required, selectedColor, hoverColor, dropdownMaxHeight, width, label, labelEmptyValue, showLabelOnTop, placeHolder, labelColor, placeHolderColor, ...props }: {
|
|
1467
|
+
declare function OverlayDropdown({ data, value, onSelectClick, disabled, isDarkerBackground, required, selectedColor, hoverColor, dropdownMaxHeight, width, height, label, labelEmptyValue, showLabelOnTop, placeHolder, labelColor, placeHolderColor, ...props }: {
|
|
1468
1468
|
[x: string]: any;
|
|
1469
1469
|
data?: any[];
|
|
1470
1470
|
value: any;
|
|
@@ -1476,6 +1476,7 @@ declare function OverlayDropdown({ data, value, onSelectClick, disabled, isDarke
|
|
|
1476
1476
|
hoverColor?: string;
|
|
1477
1477
|
dropdownMaxHeight?: string;
|
|
1478
1478
|
width?: string;
|
|
1479
|
+
height?: string;
|
|
1479
1480
|
label: any;
|
|
1480
1481
|
labelEmptyValue: any;
|
|
1481
1482
|
showLabelOnTop: any;
|