You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
***core registry:** Allow to disable individual patterns via a global window.__patternslib_patterns_blacklist array. ([2d04c6c](https://github.com/Patternslib/patterns/commit/2d04c6cc3850a46026bcd3eae5a6b32a12678870))
28
+
29
+
30
+
***pat-ajax:** Pass the URL to the pat-ajax-success event payload. ([faa0209](https://github.com/Patternslib/patterns/commit/faa020923942d8e7f1df132fb307b8299d8e2fb3))
31
+
32
+
This allows to use the URL in an event handler for certain actions.
33
+
34
+
35
+
36
+
### Bug Fixes
37
+
38
+
39
+
***pat-inject:** Fix problem with inserting table rows. ([2e70a13](https://github.com/Patternslib/patterns/commit/2e70a130ee5d5c1a31064fb9100eba74dc8374f6))
40
+
41
+
There was a problem with injecting table rows introduced in: b0f94fb058a7067e19bc9c3101a11dfa49ff8dd2
42
+
The problem occured when setting a table row as content of a temporary
43
+
<div> wrapper. But a <tr> is not a valid child node of a <div>. This
44
+
caused visually destroyed tables.
45
+
46
+
Using a <template> tag as wrapper instead of a div solved the problem.
47
+
48
+
49
+
* Remove also the previously removed polyfills-loader from the webpack config. ([f532648](https://github.com/Patternslib/patterns/commit/f532648308ced867938d4546aa56e4303c5476f9))
50
+
51
+
52
+
***styles:** Fix relative import path of SASS files. ([6a28f02](https://github.com/Patternslib/patterns/commit/6a28f02529ce1aac89d03dfb46d2d0e89cd78f30))
53
+
54
+
The SASS docs suggest to use real relative imports - we don't have a load-path definition here.
55
+
sass-migrator also wouldn't migrate with this kind of imports.
*@patternslib/dev upgrade - remove .husky directory in favor of git hooks. ([61094b8](https://github.com/Patternslib/patterns/commit/61094b8e7a0b09fa75014119ed19ec1cda5bb889))
75
+
76
+
77
+
*@patternslib/dev upgrade - remove old .eslintrc.js. ([3eceed2](https://github.com/Patternslib/patterns/commit/3eceed26fd6605c5e00bb11f42eebe9afb1ca0f5))
78
+
79
+
80
+
* Document patternslib global variables. ([25dab59](https://github.com/Patternslib/patterns/commit/25dab598352c9bba6fd3f416938925b740ce0e83))
81
+
82
+
83
+
* Early exit the SubmitEvent.submitter polyfill, if it is already available. ([93841ba](https://github.com/Patternslib/patterns/commit/93841bae6ec23f0c2b6eebbe1e0d5444791f699d))
Copy file name to clipboardExpand all lines: package.json
+1-1
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
{
2
2
"name": "@patternslib/patternslib",
3
-
"version": "9.10.1-beta.2",
3
+
"version": "9.10.1-beta.3",
4
4
"title": "Markup patterns to drive behaviour.",
5
5
"description": "Patternslib is a JavaScript library that enables designers to build rich interactive prototypes without the need for writing any Javascript. All events are triggered by classes and other attributes in the HTML, without abusing the HTML as a programming language. Accessibility, SEO and well structured HTML are core values of Patterns.",
0 commit comments