@skalar-saas/design-system 0.1.76 → 0.1.78

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.
@@ -34,6 +34,8 @@ export interface DropdownProps {
34
34
  disabled?: boolean;
35
35
  /** Optional custom CSS classes for additional styling. */
36
36
  className?: string;
37
+ /** Optional minimum height for the dropdown menu panel. Accepts any CSS value (e.g., '200px', '10rem'). */
38
+ menuMinHeight?: string;
37
39
  /** The currently selected item ID. */
38
40
  value?: string;
39
41
  /** Callback fired when an item is selected. */
@@ -65,5 +67,5 @@ export interface DropdownProps {
65
67
  * @param {(id: string) => void} onChange - Callback fired when an item is selected.
66
68
  * @returns {JSX.Element} The rendered Dropdown element.
67
69
  */
68
- export declare const Dropdown: ({ variant, size, menuSize, label, hint, items, disabled, placeholder, className, value, onChange, id, customHeight, customRadius, customPlaceholderColor, customBackgroundColor, leadingIcon, showLeadingIcon, hintIconVariant, }: DropdownProps) => import("react/jsx-runtime").JSX.Element;
70
+ export declare const Dropdown: ({ variant, size, menuSize, label, hint, items, disabled, placeholder, className, value, onChange, id, customHeight, customRadius, customPlaceholderColor, customBackgroundColor, leadingIcon, showLeadingIcon, hintIconVariant, menuMinHeight, }: DropdownProps) => import("react/jsx-runtime").JSX.Element;
69
71
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skalar-saas/design-system",
3
- "version": "0.1.76",
3
+ "version": "0.1.78",
4
4
  "type": "module",
5
5
  "description": "Skalar Design System - UI component library",
6
6
  "author": "Skalar Team",