@genesislcap/blank-app-seed 3.10.2 → 3.10.4

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.
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@genesislcap/blank-app-seed-config",
3
3
  "description": "Genesis Blank App Seed Configuration",
4
- "version": "3.10.2",
4
+ "version": "3.10.4",
5
5
  "license": "Apache-2.0",
6
6
  "genxSeedConfig": {
7
7
  "exclude": [
@@ -1,5 +1,5 @@
1
1
  {
2
- "UI": "14.180.1",
2
+ "UI": "14.180.6",
3
3
  "GSF": "7.2.5",
4
4
  "Auth": "7.2.1"
5
5
  }
package/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # Changelog
2
2
 
3
+ ## [3.10.4](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v3.10.3...v3.10.4) (2024-05-22)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * overflow-wrap for long string in snackbar GENC-494 (#219) d5f4f58
9
+
10
+ ## [3.10.3](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v3.10.2...v3.10.3) (2024-05-21)
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * snackbar auto-close/stacking/height tweaks [FUI-2010](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/2010) (#217) b4d0c55
16
+
3
17
  ## [3.10.2](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v3.10.1...v3.10.2) (2024-05-21)
4
18
 
5
19
 
@@ -11,7 +11,9 @@ const defaultDateOptions: Intl.DateTimeFormatOptions = {
11
11
  export function getNumberFormatter(format: string, locale?: string) {
12
12
  return (params) => {
13
13
  // bigdecimals are sent as strings
14
- if (!(params && typeof params.value === 'number' || typeof params.value === 'string')) return '';
14
+ if (!(params && (typeof params.value === 'number' || typeof params.value === 'string'))) {
15
+ return '';
16
+ }
15
17
 
16
18
  if (locale) {
17
19
  Numeral.locale(locale);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@genesislcap/blank-app-seed",
3
3
  "description": "Genesis Blank App Seed",
4
- "version": "3.10.2",
4
+ "version": "3.10.4",
5
5
  "license": "Apache-2.0",
6
6
  "scripts": {
7
7
  "release": "semantic-release"