Releases: Patternslib/Patterns
Release 9.9.16
Release 9.9.15
Release 9.9.14
Release 9.9.13
9.9.13 (2024-08-19)
Bug Fixes
-
Build: Apply "npm pkg fix" to correct the repository URL. (cfec736)
-
Fix reference to 3rd party styles in stylesheets. (d00253d)
Since latest scss build tools which became available in
@patternslib/dev
version 3.6 references tonode_modules
need to be
left out. The build tool searches in node_modules anyways. This is now
fixed. -
pat-carousel: Fix SASS compilation warnings. (e4e2dae)
Upgrade to a version of slick.js where the compilation warnings are fixed.
-
pat-inject: Fix failing test. (1472b06)
Recent Jest/jsDOM stopped working with uppercase tag selectors.
This is now fixed without making compromises to production code, as the
new result is more readable.
Maintenance
Release 9.9.12
9.9.12 (2024-07-23)
Release 9.9.10
9.9.10 (2023-11-27)
Release 9.9.10-alpha.4
9.9.10-alpha.4 (2023-11-23)
Features
- Upgrade dependencies. (a896a80)
Bug Fixes
- Upgrade node version for GitHub Actions. (1cf4d6a)
Release 9.9.10-alpha.3
9.9.10-alpha.3 (2023-11-17)
Bug Fixes
-
core dom find_form, pat autosubmit: Add support for pat-subform. (bd19154)
Subform was recently lost when introducing dom.find_form.
Now subform support is back in pat-autosubmit. -
pat subform: Correctly unregister the submit event on Pattern destroy. (8252014)
Maintenance
- pat subform: Modernize code. (dc7c0ff)
Release 9.9.10-alpha.2
9.9.10-alpha.2 (2023-11-10)
Maintenance
- pat autosubmit: Improve the code to find the related form for an input. (445fe69)
Release 9.9.10-alpha.1
9.9.10-alpha.1 (2023-11-09)
Features
-
core dom: find_form - find a related form element. (01b348d)
Add a function to find a related form element. If called on any element
it would first try to get a input element and get it's associated form -
which can be different and as a last resort to find the element's
enclosing form. Otherwise return undefined.
Bug Fixes
-
pat autosubmit: Re-add support for autosubmit on non form elements. (a2530f3)
Fix a problem introduces in Patternslib 9.9.7 where pat-autosubmit did
not work when not defined on a form or input element.
As a side effect, the submit event is now always invoked on the related
or nearest form of the element where pat-autosubmit was defined on. If
that element is not a form element a related (input.form) or the nearest
parent form is searched and the submit event invoked upon.