Vonage / vivid-react

Typescript friendly Reactjs :atom: wrappers/bindings for Vonage's web UI 🎨 toolbelt
https://www.npmjs.com/package/@vonage/vivid-react
5 stars 3 forks source link

DatePicker #33

Open adam-trojanowski opened 3 years ago

adam-trojanowski commented 3 years ago

When using the latest vivid datepicker (2.8.0) using wrapped components the date/time picker shows only an empty shadow. If vanilla vivid components are used in the same place, proper time selection inputs appear.

<div>
  // this works as expected
  <vwc-datepicker enableTime noCalendar dateFormat='H:i'>
    <vwc-textfield dense icon='calendar' placeholder='Datepicker'></vwc-textfield>
  </vwc-datepicker>

  // this doesn't work
  <VwcDatepicker enableTime noCalendar dateFormat='H:i'>
    <VwcTextField dense icon='calendar' placeholder='Datepicker'></VwcTextField>
  </VwcDatepicker>
</div>