Skip to content

Latest commit

 

History

History
48 lines (36 loc) · 1.49 KB

File metadata and controls

48 lines (36 loc) · 1.49 KB

Next

Fixed

  • Paginator crash on rapid clicks

Added

  • ConfirmationDialog.cancel()

Changed

  • ValuedField to ValuedField<T>
  • RangeBasedField<T>: SingleValuedField<T> to RangeField<T>: ValuedField<T>
  • SelectMany to use kollections.List instead of kotlin.collections.List
  • ConfirmationDialog.ui to ConfirmationDialog.state

Removed

  • SingleValuedField in favour of ValuedField<T>
  • ConfirmationState in favour of LazyState<Unit>
  • kotlinx.collections.interoperable infavour of kollections

Next

  • Localized presenters-geo & presenters-krono test into their respective modules
  • Add a list of countries with the easy information you can find
  • Add location input

2022-08-30

  • Migrate dropdown into a ValuedField
  • Create a form (with custom params) with every possible field and test it out
  • Let form submit values with context. Currently, every thing is being treated as a string
    • Submit multi select as a pure list
    • Offer params to form which expect multiple selected items

2022-08-29

  • MultiSelectInput field should have methods for toggling selection of a specific item

2022-08-28

  • Created a multi select input field
    • Wrote the damn class
    • Wrote its Field builders
    • Tested for multi selection
  • Created a single select input field
    • Wrote the damn class
    • Wrote its Field builders