v0.2.3

ProofOfHumanPBC/roundtable-jsv0.2.3Aug 30, 2024by timshell

AI Summary

This release introduces a new DropdownSelect element that allows users to create dropdown menus with customizable options, text, and required validation.

Key Highlights

  • New DropdownSelect element for creating dropdown menus
  • Supports id, text, options, and required properties
  • Options can include countries or any custom list

New Features

  • DropdownSelect element

Full Release Notes

**DropdownSelect**
There is a new element called DropdownSelect

```
const dropdownSelect = new DropdownSelect({
    id: 'country',
    text: 'Select your country of residence',
    options: ['United States', 'Canada', 'United Kingdom', 'Australia', 'Germany', 'France', 'Japan', 'Other'],
    required: true
});
```