@vixoniccom/footbal-score 1.0.1-beta.0
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 +5 -0
- package/README.md +92 -0
- package/build.zip +0 -0
- package/configuration.json +110 -0
- package/icon.png +0 -0
- package/package.json +39 -0
- package/src/App.tsx +94 -0
- package/src/components/FontLoader.tsx +58 -0
- package/src/components/FormattedText.tsx +86 -0
- package/src/components/table-fixture/Results.tsx +21 -0
- package/src/components/table-fixture/Row.tsx +58 -0
- package/src/components/table-fixture/Table.tsx +27 -0
- package/src/components/table-fixture/TeamItems.tsx +34 -0
- package/src/components/table-fixture/Time.tsx +24 -0
- package/src/contex/configureContext/ConfigureContext.tsx +9 -0
- package/src/contex/configureContext/ConfigureProvider.tsx +81 -0
- package/src/contex/configureContext/configureReducer.ts +53 -0
- package/src/helpers/getEmployees.ts +21 -0
- package/src/helpers/getFixture.ts +20 -0
- package/src/helpers/parseMonthAndDay.ts +38 -0
- package/src/helpers/setToken.ts +71 -0
- package/src/helpers/utils.ts +52 -0
- package/src/hooks/useFetch.ts +47 -0
- package/src/index.html +11 -0
- package/src/main.tsx +40 -0
- package/src/model/income.ts +129 -0
- package/src/parameters.d.ts +101 -0
- package/src/soccer_field.png +0 -0
- package/src/sprite.svg +1 -0
- package/src/style.css +677 -0
- package/src/test/downloads/4a9bcc4e-f398-4317-9f0f-afa8bcef1a4f.png +0 -0
- package/src/test/downloads/7953953c-7029-4730-ae4d-cff4abd5288f.ttf +0 -0
- package/src/test/downloads/Roboto-Bold.ttf +0 -0
- package/src/test/downloads/Spring in May.ttf +0 -0
- package/src/test/downloads/c705a739-312e-4334-9231-e73a05e9d382.ttf +0 -0
- package/src/test/downloads/cumples.png +0 -0
- package/src/test/downloads/d1093778-f3c9-42c8-9b07-9f8736390aeb/Foto prueba.jpg +0 -0
- package/src/test/downloads/d1093778-f3c9-42c8-9b07-9f8736390aeb/foto1.jpg +0 -0
- package/src/test/downloads/d1093778-f3c9-42c8-9b07-9f8736390aeb.zip +0 -0
- package/src/test/downloads/fondopasto.jpg +0 -0
- package/src/test/parameters.json +93 -0
- package/tsconfig.json +38 -0
- package/tslint.json +6 -0
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
{
|
|
2
|
+
"parameters": {
|
|
3
|
+
"urlBaseApi": "mandomedio",
|
|
4
|
+
"msj0": "No hay partidos",
|
|
5
|
+
"padding": "30px 25px 80px 40px",
|
|
6
|
+
"dataMode": "monthly",
|
|
7
|
+
"template": "standard",
|
|
8
|
+
"dateStyle": "circle",
|
|
9
|
+
"photosZip": {
|
|
10
|
+
"id": "d1093778-f3c9-42c8-9b07-9f8736390aeb",
|
|
11
|
+
"filename": "d1093778-f3c9-42c8-9b07-9f8736390aeb.zip",
|
|
12
|
+
"__isAsset": true,
|
|
13
|
+
"extension": "zip"
|
|
14
|
+
},
|
|
15
|
+
"imageStyle": "circle",
|
|
16
|
+
"nameFormat": {
|
|
17
|
+
"font": {
|
|
18
|
+
"id": "7953953c-7029-4730-ae4d-cff4abd5288f",
|
|
19
|
+
"filename": "7953953c-7029-4730-ae4d-cff4abd5288f.ttf",
|
|
20
|
+
"__isAsset": true
|
|
21
|
+
},
|
|
22
|
+
"fontSize": 3.8,
|
|
23
|
+
"alignment": {
|
|
24
|
+
"horizontal": "left"
|
|
25
|
+
},
|
|
26
|
+
"fontColor": "#585858"
|
|
27
|
+
},
|
|
28
|
+
"photosMode": "zip",
|
|
29
|
+
"updateTime": 600000,
|
|
30
|
+
"dateEnabled": true,
|
|
31
|
+
"excludePast": false,
|
|
32
|
+
"itemMargins": "5px",
|
|
33
|
+
"orientation": "h",
|
|
34
|
+
"datePosition": 1,
|
|
35
|
+
"imageEnabled": true,
|
|
36
|
+
"textPosition": 3,
|
|
37
|
+
"animationMode": "fade",
|
|
38
|
+
"animationTime": "5",
|
|
39
|
+
"containerRows": "3",
|
|
40
|
+
"dateAlignment": "center",
|
|
41
|
+
"dateDayFormat": {
|
|
42
|
+
"font": {
|
|
43
|
+
"id": "c705a739-312e-4334-9231-e73a05e9d382",
|
|
44
|
+
"filename": "c705a739-312e-4334-9231-e73a05e9d382.ttf",
|
|
45
|
+
"__isAsset": true
|
|
46
|
+
},
|
|
47
|
+
"fontSize": 55,
|
|
48
|
+
"alignment": {
|
|
49
|
+
"horizontal": "center"
|
|
50
|
+
},
|
|
51
|
+
"fontColor": "#ffffff"
|
|
52
|
+
},
|
|
53
|
+
"imagePosition": 2,
|
|
54
|
+
"textAlignment": "center",
|
|
55
|
+
"animationOrder": false,
|
|
56
|
+
"animationSpeed": 1.5,
|
|
57
|
+
"imageAlignment": "center",
|
|
58
|
+
"backgroundImage": {
|
|
59
|
+
"id": "",
|
|
60
|
+
"filename": "",
|
|
61
|
+
"__isAsset": true
|
|
62
|
+
},
|
|
63
|
+
"dateMonthFormat": {
|
|
64
|
+
"font": {
|
|
65
|
+
"id": "7953953c-7029-4730-ae4d-cff4abd5288f",
|
|
66
|
+
"filename": "7953953c-7029-4730-ae4d-cff4abd5288f.ttf",
|
|
67
|
+
"__isAsset": true
|
|
68
|
+
},
|
|
69
|
+
"fontSize": 20,
|
|
70
|
+
"alignment": {
|
|
71
|
+
"horizontal": "center"
|
|
72
|
+
},
|
|
73
|
+
"fontColor": "#ffffff"
|
|
74
|
+
},
|
|
75
|
+
"containerColumns": "1",
|
|
76
|
+
"containerRowsGap": "5",
|
|
77
|
+
"datePrimaryColor": "#d13139",
|
|
78
|
+
"abbreviatedMonths": false,
|
|
79
|
+
"descriptionFormat": {
|
|
80
|
+
"font": {
|
|
81
|
+
"id": "7953953c-7029-4730-ae4d-cff4abd5288f",
|
|
82
|
+
"filename": "7953953c-7029-4730-ae4d-cff4abd5288f.ttf",
|
|
83
|
+
"__isAsset": true
|
|
84
|
+
},
|
|
85
|
+
"fontSize": 3.8,
|
|
86
|
+
"alignment": {
|
|
87
|
+
"horizontal": "left"
|
|
88
|
+
},
|
|
89
|
+
"fontColor": "#585858"
|
|
90
|
+
},
|
|
91
|
+
"descriptionEnabled": true
|
|
92
|
+
}
|
|
93
|
+
}
|
package/tsconfig.json
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
{
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
"target": "es2015",
|
|
4
|
+
"module": "es2015",
|
|
5
|
+
"moduleResolution": "node",
|
|
6
|
+
"jsx": "preserve",
|
|
7
|
+
"allowJs": true,
|
|
8
|
+
"checkJs": true,
|
|
9
|
+
"allowSyntheticDefaultImports": true,
|
|
10
|
+
"emitDecoratorMetadata": true,
|
|
11
|
+
"experimentalDecorators": true,
|
|
12
|
+
"downlevelIteration": true,
|
|
13
|
+
"strict": true,
|
|
14
|
+
"forceConsistentCasingInFileNames": true,
|
|
15
|
+
"noFallthroughCasesInSwitch": true,
|
|
16
|
+
"noImplicitReturns": true,
|
|
17
|
+
"noImplicitAny": true,
|
|
18
|
+
"noImplicitThis": true,
|
|
19
|
+
"noUnusedLocals": true,
|
|
20
|
+
"noUnusedParameters": true,
|
|
21
|
+
"sourceMap": true,
|
|
22
|
+
"skipLibCheck": true,
|
|
23
|
+
"keyofStringsOnly": true,
|
|
24
|
+
"types": [
|
|
25
|
+
"node"
|
|
26
|
+
],
|
|
27
|
+
"typeRoots": [
|
|
28
|
+
"./node_modules/@types",
|
|
29
|
+
"./src"
|
|
30
|
+
]
|
|
31
|
+
},
|
|
32
|
+
"include": [
|
|
33
|
+
"./src/**/*"
|
|
34
|
+
],
|
|
35
|
+
"exclude": [
|
|
36
|
+
"./node_modules/**/*"
|
|
37
|
+
]
|
|
38
|
+
}
|