@plitzi/sdk-navigation 0.35.2 → 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.
Files changed (2) hide show
  1. package/CHANGELOG.md +20 -0
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -1,5 +1,25 @@
1
1
  # @plitzi/sdk-navigation
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
+
3
23
  ## 0.35.2
4
24
 
5
25
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plitzi/sdk-navigation",
3
- "version": "0.35.2",
3
+ "version": "0.35.3",
4
4
  "license": "AGPL-3.0",
5
5
  "files": [
6
6
  "dist"
@@ -51,6 +51,6 @@
51
51
  },
52
52
  "dependencies": {
53
53
  "@plitzi/plitzi-ui": "^1.6.21",
54
- "@plitzi/sdk-shared": "0.35.2"
54
+ "@plitzi/sdk-shared": "0.35.3"
55
55
  }
56
56
  }