@vixoniccom/footbal-score 1.0.1-beta.3 → 1.0.1-beta.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.
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.4](https://gitlab.com/mandomedio/vixonic/football-score/compare/v1.0.1-beta.3...v1.0.1-beta.4) (2022-11-16)
6
+
5
7
  ### [1.0.1-beta.3](https://gitlab.com/mandomedio/vixonic/football-score/compare/v1.0.1-beta.2...v1.0.1-beta.3) (2022-11-16)
6
8
 
7
9
  ### [1.0.1-beta.2](https://gitlab.com/mandomedio/vixonic/football-score/compare/v1.0.1-beta.1...v1.0.1-beta.2) (2022-11-16)
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.3",
4
+ "version": "1.0.1-beta.4",
5
5
  "description": "Muestra resultados en vivo de fútbol.",
6
6
  "main": "main.js",
7
7
  "author": "",
@@ -26,8 +26,8 @@ export const Row = (item: any) => {
26
26
  } = parameters
27
27
  console.log("🚀 ~ file: Row.tsx ~ line 27 ~ Row ~ descriptionEnabled", descriptionEnabled)
28
28
 
29
- let gridColumns = descriptionEnabled ? `${widthTime} ${widthStatus} ${widthDescription} ${widthImage} ${widthScore} ${widthImage} ${widthDescription}` :
30
- ` ${widthTime} ${widthStatus} ${widthImage} ${widthScore} ${widthImage}`
29
+ let gridColumns = descriptionEnabled ? `${widthTime || "200px"} ${widthStatus || "200px"} ${widthDescription || "200px"} ${widthImage || "300px"} ${widthScore || "100px"} ${widthImage || "300px"} ${widthDescription || "200px"}` :
30
+ ` ${widthTime || "100px"} ${widthStatus || "100px"} ${widthImage || "300px"} ${widthScore || "100px"} ${widthImage || "300px"}`
31
31
 
32
32
 
33
33
  return (
@@ -35,11 +35,11 @@ export const Row = (item: any) => {
35
35
  style={{
36
36
  display: 'grid',
37
37
  gridTemplateColumns: `${gridColumns}`,
38
- columnGap: `${columnGap}`,
38
+ columnGap: `${columnGap || "10px"}`,
39
39
  width: '100%',
40
40
  alignItems: 'center',
41
41
  placeContent: 'center',
42
- padding: `${rowGap} 0px`,
42
+ padding: `${rowGap || "30px"} 0px`,
43
43
  justifyContent: 'center'
44
44
  }}
45
45
  >
@@ -3,13 +3,8 @@
3
3
  "urlBaseApi": "mandomedio",
4
4
  "msj0": "No hay partidos",
5
5
  "statusEnabled": true,
6
- "widthDescription" : "200px",
7
- "widthImage": "300px",
8
- "widthScore": "100px",
9
6
  "rowGap":"30px",
10
7
  "columnGap":"10px",
11
- "widthStatus": "200px",
12
- "widthTime": "200px",
13
8
  "padding": "30px 25px 80px 40px",
14
9
  "dataMode": "monthly",
15
10
  "template": "standard",