@vixoniccom/footbal-score 1.0.1-beta.8 → 1.0.1-beta.9

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
@@ -2,6 +2,8 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ### [1.0.1-beta.9](https://gitlab.com/mandomedio/vixonic/football-score/compare/v1.0.1-beta.8...v1.0.1-beta.9) (2022-11-21)
6
+
5
7
  ### [1.0.1-beta.8](https://gitlab.com/mandomedio/vixonic/football-score/compare/v1.0.1-beta.7...v1.0.1-beta.8) (2022-11-21)
6
8
 
7
9
  ### [1.0.1-beta.6](https://gitlab.com/mandomedio/vixonic/football-score/compare/v1.0.1-beta.7...v1.0.1-beta.6) (2022-11-21)
package/build.zip CHANGED
Binary file
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@vixoniccom/footbal-score",
3
3
  "alias": "Resultados Deportivos",
4
- "version": "1.0.1-beta.8",
4
+ "version": "1.0.1-beta.9",
5
5
  "description": "Muestra resultados en vivo de fútbol.",
6
6
  "main": "main.js",
7
7
  "author": "",
@@ -22,8 +22,11 @@ export const Row = (item: any) => {
22
22
  columnGap,
23
23
  rowGap,
24
24
  widthStatus,
25
- widthTime
25
+ widthTime,
26
+ goalsFormat
26
27
  } = parameters
28
+ console.log("🚀 ~ file: Row.tsx ~ line 28 ~ Row ~ descriptionFormat", descriptionFormat)
29
+ console.log("🚀 ~ file: Row.tsx ~ line 28 ~ Row ~ goalsFormat", goalsFormat)
27
30
 
28
31
  let gridColumns = descriptionEnabled ? `${widthTime || "200px"} ${widthStatus || "200px"} ${widthDescription || "200px"} ${widthImage || "300px"} ${widthScore || "100px"} ${widthImage || "300px"} ${widthDescription || "200px"}` :
29
32
  ` ${widthTime || "100px"} ${widthStatus || "100px"} ${widthImage || "300px"} ${widthScore || "100px"} ${widthImage || "300px"}`
@@ -69,9 +72,9 @@ export const Row = (item: any) => {
69
72
  display: 'flex',
70
73
  justifyContent: 'center',
71
74
  }}>
72
- <FormattedText text={goals.home ? goals.home : 0} format={descriptionFormat} />
73
- <FormattedText text={"-"} format={descriptionFormat} />
74
- <FormattedText text={goals.away ? goals.away : 0} format={descriptionFormat} />
75
+ <FormattedText text={goals.home ? goals.home : 0} format={goalsFormat} />
76
+ <FormattedText text={"-"} format={goalsFormat} />
77
+ <FormattedText text={goals.away ? goals.away : 0} format={goalsFormat} />
75
78
  </div>
76
79
 
77
80
  <div