Skip to content

Commit b1b5c04

Browse files
committed
Release new version.
1 parent d3650b7 commit b1b5c04

File tree

2 files changed

+41
-1
lines changed

2 files changed

+41
-1
lines changed

CHANGES.md

+40
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,46 @@ See the [history](./docs/history/index.md) for older changelog entries.
44

55

66

7+
## [9.9.0-beta.1](https://github.com/Patternslib/patterns/compare/9.9.0-beta.0...9.9.0-beta.1) (2023-05-17)
8+
9+
10+
### Bug Fixes
11+
12+
13+
* **pat display time:** Default to locale-formatted output. ([c77d01a](https://github.com/Patternslib/patterns/commit/c77d01a4fcf592b45bce3950d2dab5b386aa2f0e))
14+
15+
Default to formatted output according to the current locale.
16+
This fixes a regression since 4.1.0 which came with the date picker's
17+
styled behavior but let display time output an ISO date instead of a
18+
formatted date when not output format was set.
19+
20+
21+
* **pat inject:** Allow to use a scroll container other than the injection target. ([efde472](https://github.com/Patternslib/patterns/commit/efde472b7f286363a90a08a5d3b6ef4f90ea14f1))
22+
23+
This fixes a problem when the content should scroll to an element which
24+
is within a scroll container below the injection target. Until now the
25+
scroll container could only be a parent of the injection target. Now it
26+
can be a parent of the scroll-target.
27+
28+
29+
* **pat inject:** Fix scrolling behavior, where the scrolling target could not be found. ([911b8b8](https://github.com/Patternslib/patterns/commit/911b8b8660197d44291c7d5a9537bbb496df1a38))
30+
31+
32+
* **pat validation:** Do not disable input elements with formnovalidate. ([f30af14](https://github.com/Patternslib/patterns/commit/f30af1473b4c5b1cfbba62dc53d4a8c363a85783))
33+
34+
Do not disable input elements with the `formnovalidate` attribute set
35+
when form validation fails.
36+
E.g. a cancel button: `<button formnovalidate>Cancel</button>`.
37+
38+
Fixes #1132.
39+
closes [#1132](https://github.com/Patternslib/patterns/issues/1132)
40+
41+
42+
### Maintenance
43+
44+
45+
* **pat inject:** Give tests a individual number to allow easier selectively testing individual tests. ([e819b84](https://github.com/Patternslib/patterns/commit/e819b84f0f272ea5d4e118d195e0b8a8355611ef))
46+
747
## [9.9.0-beta.0](https://github.com/Patternslib/patterns/compare/9.9.0-alpha.5...9.9.0-beta.0) (2023-05-11)
848

949

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@patternslib/patternslib",
3-
"version": "9.9.0-beta.0",
3+
"version": "9.9.0-beta.1",
44
"title": "Markup patterns to drive behaviour.",
55
"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.",
66
"license": "BSD-3-Clause",

0 commit comments

Comments
 (0)