@windmillcode/wml-form
TypeScript icon, indicating that this package has built-in type declarations

0.3.0 • Public • Published

Changelog

  • v0.2.0 added ability to access the html element for the field sections as displayFields property is availabile on the WMLForm params class however when using fieldsUpdateSubj , the developer must access the displayFields in this manner (not exact manner)
updateFields(){
    this.mainForm.fieldsUpdateSubj.next(new WMLFormFieldsUpdateSubjParams({
      fields:[this.filterKeyField,this.filterValueField]
    }))
}

listenForFormUpdate(){
  return this.mainForm.fieldsUpdatedEvent
  .pipe(
    takeUntil(this.ngUnsub),
    tap(()=>{
      this.mainForm.displayFields[0].style ={
        display:"flex",

      }
    })
  )

}

listenForFormUpdate()
updateFields()
  • v0.2.1

    • fixed an issue where WMLForm#updateFields was undefined
  • v0.3.0

    • removed matcard module and used simple glassmoprhish to activate wml-card

/@windmillcode/wml-form/

    Package Sidebar

    Install

    npm i @windmillcode/wml-form

    Weekly Downloads

    0

    Version

    0.3.0

    License

    LGPL

    Unpacked Size

    42.8 kB

    Total Files

    12

    Last publish

    Collaborators

    • windmillcode