Skip to content

Releases: Patternslib/Patterns

Release 9.9.16

21 Aug 11:39
Compare
Choose a tag to compare

9.9.16 (2024-08-21)

Maintenance

  • Update dependencies with newer patch-level versions. (118f031)

Release 9.9.15

20 Aug 15:31
Compare
Choose a tag to compare

9.9.15 (2024-08-20)

Bug Fixes

  • pat-tiptap: Upgrade pat-tiptap to 4.9.4 to fix a problem with adding colums to tables. (5a0281e)

Release 9.9.14

19 Aug 12:22
Compare
Choose a tag to compare

9.9.14 (2024-08-19)

Bug Fixes

  • core dom: Avoid circular imports. (962d5f2)

    Remove BBB export "add_event_listener" and "remove_event_listener" to avoid circular imports.
    This fixes a test-run problem in pat-tiptap and was long overdue anyways.

Release 9.9.13

19 Aug 12:05
Compare
Choose a tag to compare

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 to node_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

  • pat-inject: Fix some test method names. (e9a5257)

  • pat-inject: Rework _rebaseHTML to non-JQuery code as preparation to fix a failing test with recent @patternslib/dev. (df710a2)

  • Update GitHub Actions workflow. (a413e26)

  • Upgrade devDependencies. (bda3cf1)

Release 9.9.12

23 Jul 11:01
Compare
Choose a tag to compare

9.9.12 (2024-07-23)

Release 9.9.10

27 Nov 11:44
Compare
Choose a tag to compare

9.9.10 (2023-11-27)

Release 9.9.10-alpha.4

23 Nov 00:27
Compare
Choose a tag to compare
Pre-release

9.9.10-alpha.4 (2023-11-23)

Features

Bug Fixes

  • Upgrade node version for GitHub Actions. (1cf4d6a)

Release 9.9.10-alpha.3

17 Nov 19:01
Compare
Choose a tag to compare
Pre-release

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

10 Nov 11:07
Compare
Choose a tag to compare
Pre-release

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

09 Nov 23:30
Compare
Choose a tag to compare
Pre-release

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.

Maintenance

  • pat autosubmit: Improve debug messages. (8c01058)

  • pat inject: Add more debug messages. (fddb3b6)