@agility/plenum-ui 2.1.18 → 2.1.19-rc2

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