@vixoniccom/footbal-score 1.0.1-beta.2 → 1.0.1-beta.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.
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.3](https://gitlab.com/mandomedio/vixonic/football-score/compare/v1.0.1-beta.2...v1.0.1-beta.3) (2022-11-16)
6
+
5
7
  ### [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)
6
8
 
7
9
  ### [1.0.1-beta.1](https://gitlab.com/mandomedio/vixonic/football-score/compare/v1.0.1-beta.0...v1.0.1-beta.1) (2022-11-15)
package/build.zip CHANGED
Binary file
@@ -96,14 +96,21 @@
96
96
  "type": "text-input",
97
97
  "required": false,
98
98
  "label": "Ancho columna fecha partido",
99
- "description": "Agregar en px, ejemplo 100px. (Por defecto son 200px)"
99
+ "description": "Agregar en px, ejemplo 100px. (Por defecto son 200px)",
100
+ "defaultValue":"200px"
101
+ },
102
+ {
103
+ "type": "text-format",
104
+ "id": "statusFormat",
105
+ "label": "Formato Status"
100
106
  },
101
107
  {
102
108
  "id": "widthStatus",
103
109
  "type": "text-input",
104
110
  "required": false,
105
111
  "label": "Ancho columna Status Partido",
106
- "description": "Agregar en px, ejemplo 100px. (Por defecto son 200px)"
112
+ "description": "Agregar en px, ejemplo 100px. (Por defecto son 200px)",
113
+ "defaultValue":"200px"
107
114
  },
108
115
  {
109
116
  "type": "text-format",
@@ -115,7 +122,8 @@
115
122
  "type": "text-input",
116
123
  "required": false,
117
124
  "label": "Ancho columna Goles",
118
- "description": "Agregar en px, ejemplo 100px. (Por defecto son 100px)"
125
+ "description": "Agregar en px, ejemplo 100px. (Por defecto son 100px)",
126
+ "defaultValue":"200px"
119
127
  },
120
128
  {
121
129
  "type": "switch",
@@ -135,7 +143,8 @@
135
143
  "required": false,
136
144
  "label": "Ancho columna Nombre Equipo",
137
145
  "show": "{{descriptionEnabled}} === true",
138
- "description": "Agregar en px, ejemplo 100px. (Por defecto son 200px)"
146
+ "description": "Agregar en px, ejemplo 100px. (Por defecto son 200px)",
147
+ "defaultValue":"200px"
139
148
  },
140
149
  {
141
150
  "type": "label",
@@ -153,7 +162,8 @@
153
162
  "type": "text-input",
154
163
  "required": false,
155
164
  "label": "Ancho columna Bandera",
156
- "description": "Agregar en px, ejemplo 100px. (Por defecto son 300px)"
165
+ "description": "Agregar en px, ejemplo 100px. (Por defecto son 300px)",
166
+ "defaultValue":"300px"
157
167
  }
158
168
  ]
159
169
  }
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.2",
4
+ "version": "1.0.1-beta.3",
5
5
  "description": "Muestra resultados en vivo de fútbol.",
6
6
  "main": "main.js",
7
7
  "author": "",
@@ -24,6 +24,7 @@ export const Row = (item: any) => {
24
24
  widthStatus,
25
25
  widthTime,
26
26
  } = parameters
27
+ console.log("🚀 ~ file: Row.tsx ~ line 27 ~ Row ~ descriptionEnabled", descriptionEnabled)
27
28
 
28
29
  let gridColumns = descriptionEnabled ? `${widthTime} ${widthStatus} ${widthDescription} ${widthImage} ${widthScore} ${widthImage} ${widthDescription}` :
29
30
  ` ${widthTime} ${widthStatus} ${widthImage} ${widthScore} ${widthImage}`
@@ -57,7 +57,7 @@ const INITIAL_STATE: VixonicData = {
57
57
  dateMargin: "",
58
58
  separator: false,
59
59
  widthDescription: "200px",
60
- widthImage: "1000px",
60
+ widthImage: "300px",
61
61
  widthScore: "100px",
62
62
  columnGap: "10px",
63
63
  rowGap: "30px",