0.3.0 • Published 2 years ago

@windmillcode/wml-form v0.3.0

Weekly downloads
-
License
LGPL
Repository
-
Last release
2 years ago

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
0.3.0

2 years ago

0.2.1

2 years ago

0.2.0

2 years ago

0.0.7

2 years ago

0.0.6

2 years ago

0.0.5

2 years ago