@agility/plenum-ui 2.1.19-rc2 → 2.1.19-rc3

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
@@ -752,13 +752,21 @@ declare module '@agility/plenum-ui/stories/molecules/inputs/select/Select' {
752
752
  value: string;
753
753
  }
754
754
  export interface ISelectProps {
755
+ /** Label */
755
756
  label?: string;
757
+ /** Select ID prop */
756
758
  id?: string;
759
+ /** Select name prop */
757
760
  name?: string;
761
+ /** List of options to display in the select menu */
758
762
  options: ISimpleSelectOptions[];
763
+ /** Select name prop */
759
764
  onChange?(value: string): void;
765
+ /** Select disabled state */
760
766
  isDisabled?: boolean;
767
+ /** Select error state */
761
768
  isError?: boolean;
769
+ /** Select required state */
762
770
  isRequired?: boolean;
763
771
  value?: string;
764
772
  className?: string;