capibara 1.1.54 → 1.1.56
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/config.js +125 -6
- package/data.js +114 -2758
- package/dist/cuarteles.html +29 -81
- package/dist/index.html +27 -81
- package/dist/index.js +32 -8
- package/dist/index.js.map +1 -1
- package/dist/minimal.html +19 -81
- package/package.json +1 -1
- package/src/scss/components/_floatbox.scss +61 -2
- package/src/scss/components/_input_nav.scss +15 -8
- package/src/scss/components/_light.scss +8 -0
- package/src/scss/layout/_detail_day.scss +8 -0
- package/src/scss/layout/_nav.scss +7 -4
- package/src/scss/themes/_color_themes.scss +4 -0
- package/src/scss/themes/_themes.scss +10 -6
- package/src/util/tableElements.js +503 -169
- package/src/util/utils.js +5 -7
package/config.js
CHANGED
|
@@ -79,6 +79,76 @@ var config = {
|
|
|
79
79
|
color: "c-brown",
|
|
80
80
|
},
|
|
81
81
|
],
|
|
82
|
+
|
|
83
|
+
rowDots: [
|
|
84
|
+
[
|
|
85
|
+
{
|
|
86
|
+
varName: "aplicaciones_count.insecticida_real",
|
|
87
|
+
color: "#795548",
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
varName: "aplicaciones_count.insecticida_prog",
|
|
91
|
+
color: "#795548",
|
|
92
|
+
shape:"rounded"
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
varName: "aplicaciones_count.insecticida_proy",
|
|
96
|
+
color: "#795548",
|
|
97
|
+
shape:"outlined-rounded"
|
|
98
|
+
},
|
|
99
|
+
],
|
|
100
|
+
[
|
|
101
|
+
|
|
102
|
+
{
|
|
103
|
+
varName: "aplicaciones_count.herbicida_real",
|
|
104
|
+
color: "#ffc107",
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
varName: "aplicaciones_count.herbicida_prog",
|
|
108
|
+
color: "#ffc107",
|
|
109
|
+
shape:"rounded"
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
varName: "aplicaciones_count.herbicida_proy",
|
|
113
|
+
color: "#ffc107",
|
|
114
|
+
shape:"outlined-rounded"
|
|
115
|
+
},
|
|
116
|
+
],
|
|
117
|
+
[
|
|
118
|
+
|
|
119
|
+
{
|
|
120
|
+
varName: "aplicaciones_count.fungicida_real",
|
|
121
|
+
color: "#1976d2",
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
varName: "aplicaciones_count.fungicida_prog",
|
|
125
|
+
color: "#1976d2",
|
|
126
|
+
shape:"rounded"
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
varName: "aplicaciones_count.fungicida_proy",
|
|
130
|
+
color: "#1976d2",
|
|
131
|
+
shape:"outlined-rounded"
|
|
132
|
+
},
|
|
133
|
+
],
|
|
134
|
+
[
|
|
135
|
+
|
|
136
|
+
{
|
|
137
|
+
varName: "aplicaciones_count.foliar_real",
|
|
138
|
+
color: "#2e7d32",
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
varName: "aplicaciones_count.foliar_prog",
|
|
142
|
+
color: "#2e7d32",
|
|
143
|
+
shape:"rounded"
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
varName: "aplicaciones_count.foliar_proy",
|
|
147
|
+
color: "#2e7d32",
|
|
148
|
+
shape:"outlined-rounded"
|
|
149
|
+
},
|
|
150
|
+
],
|
|
151
|
+
],
|
|
82
152
|
dots: [
|
|
83
153
|
{
|
|
84
154
|
varName: "scholander.value",
|
|
@@ -104,10 +174,6 @@ var config = {
|
|
|
104
174
|
varName: "sensorHumedad",
|
|
105
175
|
color: "c-deep-purple",
|
|
106
176
|
},
|
|
107
|
-
{
|
|
108
|
-
varName: "aplicaciones",
|
|
109
|
-
color: "c-brown",
|
|
110
|
-
},
|
|
111
177
|
],
|
|
112
178
|
},
|
|
113
179
|
inputs: [
|
|
@@ -130,6 +196,59 @@ var config = {
|
|
|
130
196
|
key: "con_fertilizacion",
|
|
131
197
|
varName: "values.con_fertilizacion",
|
|
132
198
|
},
|
|
199
|
+
{
|
|
200
|
+
label: "test button",
|
|
201
|
+
type: "button",
|
|
202
|
+
key: "con_fertilizacion",
|
|
203
|
+
onClick(){
|
|
204
|
+
alert("test button on click");
|
|
205
|
+
}
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
label: "fertilización",
|
|
209
|
+
type: "list",
|
|
210
|
+
key: "fertilizacion_list",
|
|
211
|
+
showIf: "con_fertilizacion",
|
|
212
|
+
varName: "values.fertilizacion",
|
|
213
|
+
inputs: [
|
|
214
|
+
{
|
|
215
|
+
id: 1,
|
|
216
|
+
label: "Producto numero 1 con un nombre largo",
|
|
217
|
+
tooltip: "Producto numero 1 con un nombre largo ______",
|
|
218
|
+
key: "producto_1",
|
|
219
|
+
},
|
|
220
|
+
{
|
|
221
|
+
id: 2,
|
|
222
|
+
label: "P 2",
|
|
223
|
+
key: "producto_2",
|
|
224
|
+
},
|
|
225
|
+
{
|
|
226
|
+
id: 3,
|
|
227
|
+
label: "P 3",
|
|
228
|
+
key: "producto_3",
|
|
229
|
+
},
|
|
230
|
+
{
|
|
231
|
+
id: 4,
|
|
232
|
+
label: "P 3",
|
|
233
|
+
key: "producto_3",
|
|
234
|
+
},
|
|
235
|
+
{
|
|
236
|
+
id: 5,
|
|
237
|
+
label: "P 3",
|
|
238
|
+
key: "producto_3",
|
|
239
|
+
},
|
|
240
|
+
{
|
|
241
|
+
id: 6,
|
|
242
|
+
label: "P 3",
|
|
243
|
+
key: "producto_3",
|
|
244
|
+
},
|
|
245
|
+
{
|
|
246
|
+
id: 7,
|
|
247
|
+
label: "P 3",
|
|
248
|
+
key: "producto_3",
|
|
249
|
+
},
|
|
250
|
+
],
|
|
251
|
+
},
|
|
133
252
|
{
|
|
134
253
|
label: "fertilización",
|
|
135
254
|
type: "input-box",
|
|
@@ -2993,8 +3112,8 @@ var config = {
|
|
|
2993
3112
|
},
|
|
2994
3113
|
},
|
|
2995
3114
|
day: {
|
|
2996
|
-
width:
|
|
2997
|
-
height:
|
|
3115
|
+
width: 60,
|
|
3116
|
+
height: 60,
|
|
2998
3117
|
mobile: {
|
|
2999
3118
|
width: 30,
|
|
3000
3119
|
height: 35,
|