@vixoniccom/footbal-score 1.0.3 → 1.1.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
@@ -2,6 +2,15 @@
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.1.1](https://bitbucket.org/vixonic_dev/football-score/compare/v1.1.0-beta.0...v1.1.1) (2024-06-21)
6
+
7
+ ## [1.1.0-beta.0](https://bitbucket.org/vixonic_dev/football-score/compare/v1.0.3...v1.1.0-beta.0) (2024-06-21)
8
+
9
+
10
+ ### Features
11
+
12
+ * ISC license was added to the project ([333b381](https://bitbucket.org/vixonic_dev/football-score/commit/333b381a3da9d8b1a002502fcc721fe6adb333bb))
13
+
5
14
  ### [1.0.3](https://bitbucket.org/vixonic_dev/football-score/compare/v1.0.3-beta.2...v1.0.3) (2024-05-09)
6
15
 
7
16
  ### [1.0.3-beta.2](https://bitbucket.org/vixonic_dev/football-score/compare/v1.0.3-beta.1...v1.0.3-beta.2) (2024-04-30)
package/LICENSE.md ADDED
@@ -0,0 +1,15 @@
1
+ ISC License
2
+
3
+ Copyright 2024 Vixonic
4
+
5
+ Permission to use, copy, modify, and/or distribute this software for any
6
+ purpose with or without fee is hereby granted, provided that the above
7
+ copyright notice and this permission notice appear in all copies.
8
+
9
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15
+ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
package/build.zip CHANGED
Binary file
@@ -24,6 +24,10 @@
24
24
  {
25
25
  "label": "Copa América",
26
26
  "value": "9"
27
+ },
28
+ {
29
+ "label": "Euro Copa",
30
+ "value": "4"
27
31
  }
28
32
  ]
29
33
  },
@@ -209,6 +213,20 @@
209
213
  "required": false,
210
214
  "label": "Márgenes",
211
215
  "description": "CSS para dar espacio arriba/derecha/abajo/izquieda."
216
+ },
217
+ {
218
+ "id": "columnGap",
219
+ "type": "text-input",
220
+ "required": false,
221
+ "label": "Separación entre columnas",
222
+ "description": "Agregar en px, ejemplo 100px. (Por defecto son 10px)"
223
+ },
224
+ {
225
+ "id": "rowGap",
226
+ "type": "text-input",
227
+ "required": false,
228
+ "label": "Separación entre filas",
229
+ "description": "Agregar en px, ejemplo 100px. (Por defecto son 30px)"
212
230
  }
213
231
  ]
214
232
  },
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.3",
4
+ "version": "1.1.1",
5
5
  "description": "Muestra resultados en vivo de fútbol.",
6
6
  "main": "main.js",
7
7
  "author": "",
package/src/App.tsx CHANGED
@@ -59,7 +59,6 @@ export const App = ({ data, start }: Props) => {
59
59
 
60
60
  useEffect(() =>{
61
61
  if (league !== data.parameters.league) {
62
- console.log('league', league)
63
62
  setLeague(data.parameters.league!)
64
63
  localforage.clear()
65
64
  getData()
@@ -3,7 +3,6 @@ const axios = require("axios");
3
3
 
4
4
  export const getFixture = async (league: string) => {
5
5
  const today = moment().format('YYYY-MM-DD')
6
- console.log("🚀 ~ getFixture ~ today:", today)
7
6
  const year = moment().format('YYYY')
8
7
  const timezone = Intl.DateTimeFormat().resolvedOptions().timeZone
9
8
  const options = {