DEV Community

Cover image for Form Lib 1.7 released
Volker Schukai for schukai GmbH

Posted on • Updated on

Form Lib 1.7 released

Today we have released the latest edition of our Form Lib. Our library offers us the possibility to link forms with data. In addition, we have programmed here various controls that are not available in the standard.

Only the changes are described here. The full functionality can be found in the documentation.

This release builds on Monster 1.24.0 and contains minor improvements in the handling of data sources.

In addition, you can now disable all included controls via a central disabled attribute in the form tag.

The Confirm button contains minor improvements.



gif animation confirm button

<monster-confirm-button>
   <p>Should the record be deleted?</p>
   <span slot="button">DELETE</span>
   <span slot="confirm">OK</span>
   <span slot="cancel">CANCEL</span>
</monster-confirm-button>
Enter fullscreen mode Exit fullscreen mode



Also, the button now supports the disabled attribute.

<monster-confirm-button disabled>
   <p>Should the record be deleted?</p>
   <span slot="button">DELETE</span>
   <span slot="confirm">OK</span>
   <span slot="cancel">CANCEL</span>
</monster-confirm-button>
Enter fullscreen mode Exit fullscreen mode

disabled button

hope you enjoy it!

References

Top comments (0)