@plitzi/sdk-event-bridge 0.35.1 → 0.35.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +29 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,34 @@
|
|
|
1
1
|
# @plitzi/sdk-event-bridge
|
|
2
2
|
|
|
3
|
+
## 0.35.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 0211dc4: A form speaks the site's language when it refuses a value.
|
|
8
|
+
|
|
9
|
+
- **Every rule of a `formControl` can say what it wants to say.** `requiredMessage`, `minLengthMessage`,
|
|
10
|
+
`maxLengthMessage` and `formatMessage` join `patternMessage` and `matchesMessage`; left empty, each falls back to
|
|
11
|
+
the English sentence it said before. `formatMessage` is said when the value does not have the shape the control's
|
|
12
|
+
type asks for — an address, for an `email` — one attribute for every type that has a shape. Offered in the builder under the rule they belong to.
|
|
13
|
+
- **A `form` can turn the browser's own checks off (`noValidate`, "Skip Browser Validation" in the builder).** Left on
|
|
14
|
+
— the default, as before — the browser answers first for a blank required field and a malformed address, in a
|
|
15
|
+
bubble no style reaches and in the browser's language, while every other rule answers under the control. Turned
|
|
16
|
+
on, the form's rules are the only ones, and all of them answer under the control.
|
|
17
|
+
- **An `email` control checks the address itself,** by the same definition the browser uses, so the format is still
|
|
18
|
+
asked for when the browser's checks are off.
|
|
19
|
+
|
|
20
|
+
- Updated dependencies [0211dc4]
|
|
21
|
+
- @plitzi/sdk-shared@0.35.3
|
|
22
|
+
|
|
23
|
+
## 0.35.2
|
|
24
|
+
|
|
25
|
+
### Patch Changes
|
|
26
|
+
|
|
27
|
+
- v0.35.2
|
|
28
|
+
- Updated dependencies
|
|
29
|
+
- Updated dependencies [470aaf8]
|
|
30
|
+
- @plitzi/sdk-shared@0.35.2
|
|
31
|
+
|
|
3
32
|
## 0.35.1
|
|
4
33
|
|
|
5
34
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@plitzi/sdk-event-bridge",
|
|
3
|
-
"version": "0.35.
|
|
3
|
+
"version": "0.35.3",
|
|
4
4
|
"license": "AGPL-3.0",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist"
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"type": "module",
|
|
46
46
|
"sideEffects": false,
|
|
47
47
|
"dependencies": {
|
|
48
|
-
"@plitzi/sdk-shared": "0.35.
|
|
48
|
+
"@plitzi/sdk-shared": "0.35.3",
|
|
49
49
|
"prop-types": "^15.8.1"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|