@kingsimba/nc-ui 0.1.35 → 0.1.36

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 CHANGED
@@ -384,7 +384,10 @@ export declare function ComboBox({ value, onChange, placeholder, options, candid
384
384
  export declare type ComboBoxOption = {
385
385
  label: string;
386
386
  value: string;
387
+ /** Marks this option as the default selection when no value is provided. */
387
388
  default?: boolean;
389
+ /** When true, the option is rendered as disabled and cannot be selected via click, Enter, or arrow navigation. */
390
+ disabled?: boolean;
388
391
  };
389
392
 
390
393
  export declare interface ComboBoxProps {