@akinon/pz-masterpass 1.80.0 → 1.81.0-rc.1

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 CHANGED
@@ -1,5 +1,15 @@
1
1
  # @akinon/pz-masterpass
2
2
 
3
+ ## 1.81.0-rc.1
4
+
5
+ ## 1.81.0-rc.0
6
+
7
+ ### Minor Changes
8
+
9
+ - fdbf156f: ZERO-3137: Trim whitespace from account alias name input in card registration form
10
+ - 64699d3f: ZERO-2761: Fix invalid import for plugin module
11
+ - 7727ae55: ZERO-3073: Refactor basket page to use server-side data fetching and simplify component structure
12
+
3
13
  ## 1.80.0
4
14
 
5
15
  ## 1.79.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@akinon/pz-masterpass",
3
- "version": "1.80.0",
3
+ "version": "1.81.0-rc.1",
4
4
  "license": "MIT",
5
5
  "main": "src/index.ts",
6
6
  "types": "src/index.d.ts",
@@ -232,7 +232,7 @@ export const MasterpassCardRegistration = ({
232
232
  defaultTranslations.enter_card_name
233
233
  }
234
234
  onChange={(e: React.ChangeEvent<HTMLInputElement>) => {
235
- setAccountAliasName(e.target.value);
235
+ setAccountAliasName(e.target.value.trim());
236
236
  }}
237
237
  />
238
238
  <Button