desy-html 7.3.1 → 7.4.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/docs/_macro.example-render.njk +1 -1
- package/docs/index.html +4 -0
- package/package.json +1 -1
- package/src/templates/components/accordion/_examples.accordion.njk +108 -104
- package/src/templates/components/accordion-history/_examples.accordion-history.njk +116 -112
- package/src/templates/components/alert/_examples.alert.njk +10 -6
- package/src/templates/components/breadcrumbs/_examples.breadcrumbs.njk +52 -52
- package/src/templates/components/button/_examples.button.njk +71 -71
- package/src/templates/components/button-loader/_examples.button-loader.njk +72 -72
- package/src/templates/components/card/_examples.card.njk +43 -43
- package/src/templates/components/character-count/_examples.character-count.njk +35 -33
- package/src/templates/components/checkboxes/_examples.checkboxes.njk +200 -201
- package/src/templates/components/collapsible/_examples.collapsible.njk +24 -9
- package/src/templates/components/date-input/_examples.date-input.njk +14 -14
- package/src/templates/components/description-list/_examples.description-list.njk +45 -44
- package/src/templates/components/details/_examples.details.njk +17 -16
- package/src/templates/components/dialog/_examples.dialog.njk +5 -6
- package/src/templates/components/dropdown/_examples.dropdown.njk +34 -35
- package/src/templates/components/error-message/_examples.error-message.njk +8 -2
- package/src/templates/components/error-summary/_examples.error-summary.njk +19 -19
- package/src/templates/components/fieldset/_examples.fieldset.njk +27 -25
- package/src/templates/components/file-upload/_examples.file-upload.njk +7 -7
- package/src/templates/components/footer/_examples.footer.njk +24 -24
- package/src/templates/components/header/_examples.header.njk +12 -12
- package/src/templates/components/header-mini/_examples.header-mini.njk +5 -5
- package/src/templates/components/hint/_examples.hint.njk +4 -4
- package/src/templates/components/input/_examples.input.njk +66 -64
- package/src/templates/components/input-group/_examples.input-group.njk +15 -17
- package/src/templates/components/item/_examples.item.njk +21 -20
- package/src/templates/components/label/_examples.label.njk +11 -9
- package/src/templates/components/links-list/_examples.links-list.njk +34 -34
- package/src/templates/components/listbox/_examples.listbox.njk +146 -146
- package/src/templates/components/media-object/_examples.media-object.njk +7 -7
- package/src/templates/components/menu-horizontal/_examples.menu-horizontal.njk +54 -54
- package/src/templates/components/menu-navigation/_examples.menu-navigation.njk +65 -66
- package/src/templates/components/menu-vertical/_examples.menu-vertical.njk +71 -71
- package/src/templates/components/menubar/_examples.menubar.njk +42 -42
- package/src/templates/components/modal/_examples.modal.njk +21 -15
- package/src/templates/components/modal/_template.modal.njk +5 -5
- package/src/templates/components/nav/_examples.nav.njk +66 -66
- package/src/templates/components/notification/_examples.notification.njk +14 -13
- package/src/templates/components/pagination/_examples.pagination.njk +7 -6
- package/src/templates/components/pill/_examples.pill.njk +29 -29
- package/src/templates/components/radios/_examples.radios.njk +153 -142
- package/src/templates/components/searchbar/_examples.searchbar.njk +11 -11
- package/src/templates/components/select/_examples.select.njk +63 -63
- package/src/templates/components/skip-link/_examples.skip-link.njk +4 -4
- package/src/templates/components/spinner/_examples.spinner.njk +11 -11
- package/src/templates/components/status/_examples.status.njk +4 -4
- package/src/templates/components/status-item/_examples.status-item.njk +21 -21
- package/src/templates/components/table/_examples.table.njk +58 -56
- package/src/templates/components/table-advanced/_examples.table-advanced.njk +83 -83
- package/src/templates/components/tabs/_examples.tabs.njk +30 -29
- package/src/templates/components/textarea/_examples.textarea.njk +28 -27
- package/src/templates/components/toggle/_examples.toggle.njk +10 -11
- package/src/templates/components/tooltip/_examples.tooltip.njk +9 -9
- package/src/templates/components/tree/_examples.tree.njk +58 -57
|
@@ -1,28 +1,28 @@
|
|
|
1
1
|
{% set exampleComponent = "table-advanced" %}
|
|
2
2
|
{% set examples = [
|
|
3
3
|
{
|
|
4
|
-
"name": "
|
|
4
|
+
"name": "tabla por defecto",
|
|
5
5
|
"data": {
|
|
6
6
|
"idPrefix": "table-default",
|
|
7
7
|
"caption": "Caption de la tabla",
|
|
8
8
|
"captionClasses": "sr-only mb-base font-bold text-left text-lg",
|
|
9
9
|
"head": [
|
|
10
10
|
{
|
|
11
|
-
"text": "
|
|
11
|
+
"text": "Mes de pago"
|
|
12
12
|
},
|
|
13
13
|
{
|
|
14
|
-
"text": "
|
|
14
|
+
"text": "Primer pago",
|
|
15
15
|
"classes": "text-right"
|
|
16
16
|
},
|
|
17
17
|
{
|
|
18
|
-
"text": "
|
|
18
|
+
"text": "Segundo pago",
|
|
19
19
|
"classes": "text-right"
|
|
20
20
|
}
|
|
21
21
|
],
|
|
22
22
|
"rows": [
|
|
23
23
|
[
|
|
24
24
|
{
|
|
25
|
-
"text": "
|
|
25
|
+
"text": "Enero"
|
|
26
26
|
},
|
|
27
27
|
{
|
|
28
28
|
"text": "85€",
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
],
|
|
36
36
|
[
|
|
37
37
|
{
|
|
38
|
-
"text": "
|
|
38
|
+
"text": "Febrero"
|
|
39
39
|
},
|
|
40
40
|
{
|
|
41
41
|
"text": "75€",
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
],
|
|
49
49
|
[
|
|
50
50
|
{
|
|
51
|
-
"text": "
|
|
51
|
+
"text": "Marzo"
|
|
52
52
|
},
|
|
53
53
|
{
|
|
54
54
|
"text": "165€",
|
|
@@ -64,30 +64,30 @@
|
|
|
64
64
|
}
|
|
65
65
|
},
|
|
66
66
|
{
|
|
67
|
-
"name": "
|
|
68
|
-
"description":
|
|
67
|
+
"name": "tabla con caption visible",
|
|
68
|
+
"description": 'También con <code>"firstCellIsHeader": true</code>',
|
|
69
69
|
"data": {
|
|
70
70
|
"idPrefix": "table-with-caption",
|
|
71
|
-
"caption": "Caption 1:
|
|
71
|
+
"caption": "Caption 1: Meses y pagos",
|
|
72
72
|
"captionClasses": "mb-base font-bold text-left text-lg",
|
|
73
73
|
"firstCellIsHeader": true,
|
|
74
74
|
"head": [
|
|
75
75
|
{
|
|
76
|
-
"text": "
|
|
76
|
+
"text": "Mes de pago"
|
|
77
77
|
},
|
|
78
78
|
{
|
|
79
|
-
"text": "
|
|
79
|
+
"text": "Primer pago",
|
|
80
80
|
"classes": "text-right"
|
|
81
81
|
},
|
|
82
82
|
{
|
|
83
|
-
"text": "
|
|
83
|
+
"text": "Segundo pago",
|
|
84
84
|
"classes": "text-right"
|
|
85
85
|
}
|
|
86
86
|
],
|
|
87
87
|
"rows": [
|
|
88
88
|
[
|
|
89
89
|
{
|
|
90
|
-
"text": "
|
|
90
|
+
"text": "Enero"
|
|
91
91
|
},
|
|
92
92
|
{
|
|
93
93
|
"text": "85€",
|
|
@@ -100,7 +100,7 @@
|
|
|
100
100
|
],
|
|
101
101
|
[
|
|
102
102
|
{
|
|
103
|
-
"text": "
|
|
103
|
+
"text": "Febrero"
|
|
104
104
|
},
|
|
105
105
|
{
|
|
106
106
|
"text": "75€",
|
|
@@ -113,7 +113,7 @@
|
|
|
113
113
|
],
|
|
114
114
|
[
|
|
115
115
|
{
|
|
116
|
-
"text": "
|
|
116
|
+
"text": "Marzo"
|
|
117
117
|
},
|
|
118
118
|
{
|
|
119
119
|
"text": "165€",
|
|
@@ -129,22 +129,22 @@
|
|
|
129
129
|
}
|
|
130
130
|
},
|
|
131
131
|
{
|
|
132
|
-
"name": "
|
|
133
|
-
"description": "orderBy: none
|
|
132
|
+
"name": "tabla con orderBy en columnas",
|
|
133
|
+
"description": 'Con <code>"orderBy": none</code>, <code>asc</code>, <code>desc</code>',
|
|
134
134
|
"data": {
|
|
135
135
|
"idPrefix": "table-with-orderby",
|
|
136
136
|
"head": [
|
|
137
137
|
{
|
|
138
|
-
"text": "
|
|
138
|
+
"text": "Mes de pago",
|
|
139
139
|
"orderBy": "none"
|
|
140
140
|
},
|
|
141
141
|
{
|
|
142
|
-
"text": "
|
|
142
|
+
"text": "Primer pago",
|
|
143
143
|
"orderBy": "none",
|
|
144
144
|
"classes": "text-right"
|
|
145
145
|
},
|
|
146
146
|
{
|
|
147
|
-
"text": "
|
|
147
|
+
"text": "Segundo pago",
|
|
148
148
|
"orderBy": "none",
|
|
149
149
|
"classes": "text-right"
|
|
150
150
|
}
|
|
@@ -152,7 +152,7 @@
|
|
|
152
152
|
"rows": [
|
|
153
153
|
[
|
|
154
154
|
{
|
|
155
|
-
"text": "
|
|
155
|
+
"text": "Enero"
|
|
156
156
|
},
|
|
157
157
|
{
|
|
158
158
|
"text": "85€",
|
|
@@ -165,7 +165,7 @@
|
|
|
165
165
|
],
|
|
166
166
|
[
|
|
167
167
|
{
|
|
168
|
-
"text": "
|
|
168
|
+
"text": "Febrero"
|
|
169
169
|
},
|
|
170
170
|
{
|
|
171
171
|
"text": "75€",
|
|
@@ -178,7 +178,7 @@
|
|
|
178
178
|
],
|
|
179
179
|
[
|
|
180
180
|
{
|
|
181
|
-
"text": "
|
|
181
|
+
"text": "Marzo"
|
|
182
182
|
},
|
|
183
183
|
{
|
|
184
184
|
"text": "165€",
|
|
@@ -193,23 +193,23 @@
|
|
|
193
193
|
"classes": "min-w-full"
|
|
194
194
|
}
|
|
195
195
|
},
|
|
196
|
-
|
|
197
|
-
"name": "
|
|
198
|
-
"description": "hasFilter: true
|
|
196
|
+
{
|
|
197
|
+
"name": "tabla con head y filtros",
|
|
198
|
+
"description": 'Con <code>"hasFilter": true</code> y clases <code>text-right</code> en columnas numéricas.',
|
|
199
199
|
"data": {
|
|
200
200
|
"idPrefix": "table-with-head-and-filters",
|
|
201
201
|
"head": [
|
|
202
202
|
{
|
|
203
|
-
"text": "
|
|
203
|
+
"text": "Mes de pago",
|
|
204
204
|
"hasFilter": true
|
|
205
205
|
},
|
|
206
206
|
{
|
|
207
|
-
"text": "
|
|
207
|
+
"text": "Primer pago",
|
|
208
208
|
"classes": "text-right",
|
|
209
209
|
"hasFilter": true
|
|
210
210
|
},
|
|
211
211
|
{
|
|
212
|
-
"text": "
|
|
212
|
+
"text": "Segundo pago",
|
|
213
213
|
"classes": "text-right",
|
|
214
214
|
"hasFilter": true
|
|
215
215
|
}
|
|
@@ -217,7 +217,7 @@
|
|
|
217
217
|
"rows": [
|
|
218
218
|
[
|
|
219
219
|
{
|
|
220
|
-
"text": "
|
|
220
|
+
"text": "Enero"
|
|
221
221
|
},
|
|
222
222
|
{
|
|
223
223
|
"text": "85€",
|
|
@@ -230,7 +230,7 @@
|
|
|
230
230
|
],
|
|
231
231
|
[
|
|
232
232
|
{
|
|
233
|
-
"text": "
|
|
233
|
+
"text": "Febrero"
|
|
234
234
|
},
|
|
235
235
|
{
|
|
236
236
|
"text": "75€",
|
|
@@ -243,7 +243,7 @@
|
|
|
243
243
|
],
|
|
244
244
|
[
|
|
245
245
|
{
|
|
246
|
-
"text": "
|
|
246
|
+
"text": "Marzo"
|
|
247
247
|
},
|
|
248
248
|
{
|
|
249
249
|
"text": "165€",
|
|
@@ -259,13 +259,13 @@
|
|
|
259
259
|
}
|
|
260
260
|
},
|
|
261
261
|
{
|
|
262
|
-
"name": "
|
|
263
|
-
"description":
|
|
262
|
+
"name": "tabla con head y selectores",
|
|
263
|
+
"description": 'Selectores y clases de <code>text-right</code> en columnas numéricas.',
|
|
264
264
|
"data": {
|
|
265
265
|
"idPrefix": "table-with-head-and-selects",
|
|
266
266
|
"head": [
|
|
267
267
|
{
|
|
268
|
-
"text": "
|
|
268
|
+
"text": "Mes de pago",
|
|
269
269
|
"select": {
|
|
270
270
|
"items": [
|
|
271
271
|
{
|
|
@@ -277,21 +277,21 @@
|
|
|
277
277
|
},
|
|
278
278
|
{
|
|
279
279
|
"value": 1,
|
|
280
|
-
"text": "
|
|
280
|
+
"text": "Opción 1"
|
|
281
281
|
},
|
|
282
282
|
{
|
|
283
283
|
"value": 2,
|
|
284
|
-
"text": "
|
|
284
|
+
"text": "Opción 2"
|
|
285
285
|
},
|
|
286
286
|
{
|
|
287
287
|
"value": 3,
|
|
288
|
-
"text": "
|
|
288
|
+
"text": "Opción 3"
|
|
289
289
|
}
|
|
290
290
|
]
|
|
291
291
|
}
|
|
292
292
|
},
|
|
293
293
|
{
|
|
294
|
-
"text": "
|
|
294
|
+
"text": "Primer pago",
|
|
295
295
|
"classes": "text-right",
|
|
296
296
|
"select": {
|
|
297
297
|
"items": [
|
|
@@ -304,21 +304,21 @@
|
|
|
304
304
|
},
|
|
305
305
|
{
|
|
306
306
|
"value": 1,
|
|
307
|
-
"text": "
|
|
307
|
+
"text": "Opción 1"
|
|
308
308
|
},
|
|
309
309
|
{
|
|
310
310
|
"value": 2,
|
|
311
|
-
"text": "
|
|
311
|
+
"text": "Opción 2"
|
|
312
312
|
},
|
|
313
313
|
{
|
|
314
314
|
"value": 3,
|
|
315
|
-
"text": "
|
|
315
|
+
"text": "Opción 3"
|
|
316
316
|
}
|
|
317
317
|
]
|
|
318
318
|
}
|
|
319
319
|
},
|
|
320
320
|
{
|
|
321
|
-
"text": "
|
|
321
|
+
"text": "Segundo pago",
|
|
322
322
|
"classes": "text-right",
|
|
323
323
|
"select": {
|
|
324
324
|
"items": [
|
|
@@ -331,15 +331,15 @@
|
|
|
331
331
|
},
|
|
332
332
|
{
|
|
333
333
|
"value": 1,
|
|
334
|
-
"text": "
|
|
334
|
+
"text": "Opción 1"
|
|
335
335
|
},
|
|
336
336
|
{
|
|
337
337
|
"value": 2,
|
|
338
|
-
"text": "
|
|
338
|
+
"text": "Opción 2"
|
|
339
339
|
},
|
|
340
340
|
{
|
|
341
341
|
"value": 3,
|
|
342
|
-
"text": "
|
|
342
|
+
"text": "Opción 3"
|
|
343
343
|
}
|
|
344
344
|
]
|
|
345
345
|
}
|
|
@@ -348,7 +348,7 @@
|
|
|
348
348
|
"rows": [
|
|
349
349
|
[
|
|
350
350
|
{
|
|
351
|
-
"text": "
|
|
351
|
+
"text": "Enero"
|
|
352
352
|
},
|
|
353
353
|
{
|
|
354
354
|
"text": "85€",
|
|
@@ -361,7 +361,7 @@
|
|
|
361
361
|
],
|
|
362
362
|
[
|
|
363
363
|
{
|
|
364
|
-
"text": "
|
|
364
|
+
"text": "Febrero"
|
|
365
365
|
},
|
|
366
366
|
{
|
|
367
367
|
"text": "75€",
|
|
@@ -374,7 +374,7 @@
|
|
|
374
374
|
],
|
|
375
375
|
[
|
|
376
376
|
{
|
|
377
|
-
"text": "
|
|
377
|
+
"text": "Marzo"
|
|
378
378
|
},
|
|
379
379
|
{
|
|
380
380
|
"text": "165€",
|
|
@@ -390,27 +390,27 @@
|
|
|
390
390
|
}
|
|
391
391
|
},
|
|
392
392
|
{
|
|
393
|
-
"name": "
|
|
393
|
+
"name": "tabla con checkboxes",
|
|
394
394
|
"data": {
|
|
395
395
|
"idPrefix": "table-with-checkboxes",
|
|
396
396
|
"hasCheckboxes": true,
|
|
397
397
|
"head": [
|
|
398
398
|
{
|
|
399
|
-
"text": "
|
|
399
|
+
"text": "Mes de pago"
|
|
400
400
|
},
|
|
401
401
|
{
|
|
402
|
-
"text": "
|
|
402
|
+
"text": "Primer pago",
|
|
403
403
|
"classes": "text-right"
|
|
404
404
|
},
|
|
405
405
|
{
|
|
406
|
-
"text": "
|
|
406
|
+
"text": "Segundo pago",
|
|
407
407
|
"classes": "text-right"
|
|
408
408
|
}
|
|
409
409
|
],
|
|
410
410
|
"rows": [
|
|
411
411
|
[
|
|
412
412
|
{
|
|
413
|
-
"text": "
|
|
413
|
+
"text": "Enero"
|
|
414
414
|
},
|
|
415
415
|
{
|
|
416
416
|
"text": "85€",
|
|
@@ -423,7 +423,7 @@
|
|
|
423
423
|
],
|
|
424
424
|
[
|
|
425
425
|
{
|
|
426
|
-
"text": "
|
|
426
|
+
"text": "Febrero"
|
|
427
427
|
},
|
|
428
428
|
{
|
|
429
429
|
"text": "75€",
|
|
@@ -436,7 +436,7 @@
|
|
|
436
436
|
],
|
|
437
437
|
[
|
|
438
438
|
{
|
|
439
|
-
"text": "
|
|
439
|
+
"text": "Marzo"
|
|
440
440
|
},
|
|
441
441
|
{
|
|
442
442
|
"text": "165€",
|
|
@@ -452,23 +452,23 @@
|
|
|
452
452
|
}
|
|
453
453
|
},
|
|
454
454
|
{
|
|
455
|
-
"name": "
|
|
456
|
-
"description": "orderBy
|
|
455
|
+
"name": "tabla con todo",
|
|
456
|
+
"description": "Con <code>orderBy</code>, <code>hasCheckboxes</code>, <code>hasFilter</code>, selectores y <code>firstCellIsHeader</code>",
|
|
457
457
|
"data": {
|
|
458
458
|
"idPrefix": "table-with-all",
|
|
459
459
|
"hasCheckboxes": true,
|
|
460
460
|
"firstCellIsHeader": true,
|
|
461
461
|
"head": [
|
|
462
462
|
{
|
|
463
|
-
"text": "
|
|
463
|
+
"text": "Número de fila"
|
|
464
464
|
},
|
|
465
465
|
{
|
|
466
|
-
"text": "
|
|
466
|
+
"text": "Mes de pago",
|
|
467
467
|
"orderBy": "none",
|
|
468
468
|
"hasFilter": true
|
|
469
469
|
},
|
|
470
470
|
{
|
|
471
|
-
"text": "
|
|
471
|
+
"text": "Primer pago",
|
|
472
472
|
"orderBy": "none",
|
|
473
473
|
"classes": "text-right",
|
|
474
474
|
"select": {
|
|
@@ -482,21 +482,21 @@
|
|
|
482
482
|
},
|
|
483
483
|
{
|
|
484
484
|
"value": 1,
|
|
485
|
-
"text": "
|
|
485
|
+
"text": "Opción 1"
|
|
486
486
|
},
|
|
487
487
|
{
|
|
488
488
|
"value": 2,
|
|
489
|
-
"text": "
|
|
489
|
+
"text": "Opción 2"
|
|
490
490
|
},
|
|
491
491
|
{
|
|
492
492
|
"value": 3,
|
|
493
|
-
"text": "
|
|
493
|
+
"text": "Opción 3"
|
|
494
494
|
}
|
|
495
495
|
]
|
|
496
496
|
}
|
|
497
497
|
},
|
|
498
498
|
{
|
|
499
|
-
"text": "
|
|
499
|
+
"text": "Segundo pago",
|
|
500
500
|
"orderBy": "none",
|
|
501
501
|
"classes": "text-right",
|
|
502
502
|
"hasFilter": true,
|
|
@@ -511,15 +511,15 @@
|
|
|
511
511
|
},
|
|
512
512
|
{
|
|
513
513
|
"value": 1,
|
|
514
|
-
"text": "
|
|
514
|
+
"text": "Opción 1"
|
|
515
515
|
},
|
|
516
516
|
{
|
|
517
517
|
"value": 2,
|
|
518
|
-
"text": "
|
|
518
|
+
"text": "Opción 2"
|
|
519
519
|
},
|
|
520
520
|
{
|
|
521
521
|
"value": 3,
|
|
522
|
-
"text": "
|
|
522
|
+
"text": "Opción 3"
|
|
523
523
|
}
|
|
524
524
|
]
|
|
525
525
|
}
|
|
@@ -528,10 +528,10 @@
|
|
|
528
528
|
"rows": [
|
|
529
529
|
[
|
|
530
530
|
{
|
|
531
|
-
"text": "
|
|
531
|
+
"text": "Primera fila"
|
|
532
532
|
},
|
|
533
533
|
{
|
|
534
|
-
"text": "
|
|
534
|
+
"text": "Enero"
|
|
535
535
|
},
|
|
536
536
|
{
|
|
537
537
|
"text": "85€",
|
|
@@ -544,10 +544,10 @@
|
|
|
544
544
|
],
|
|
545
545
|
[
|
|
546
546
|
{
|
|
547
|
-
"text": "
|
|
547
|
+
"text": "Segunda fila"
|
|
548
548
|
},
|
|
549
549
|
{
|
|
550
|
-
"text": "
|
|
550
|
+
"text": "Febrero"
|
|
551
551
|
},
|
|
552
552
|
{
|
|
553
553
|
"text": "75€",
|
|
@@ -560,10 +560,10 @@
|
|
|
560
560
|
],
|
|
561
561
|
[
|
|
562
562
|
{
|
|
563
|
-
"text": "
|
|
563
|
+
"text": "Tercera fila"
|
|
564
564
|
},
|
|
565
565
|
{
|
|
566
|
-
"text": "
|
|
566
|
+
"text": "Marzo"
|
|
567
567
|
},
|
|
568
568
|
{
|
|
569
569
|
"text": "165€",
|
|
@@ -579,8 +579,8 @@
|
|
|
579
579
|
}
|
|
580
580
|
},
|
|
581
581
|
{
|
|
582
|
-
"name": "
|
|
583
|
-
"description":
|
|
582
|
+
"name": "tabla con columnas sticky",
|
|
583
|
+
"description": 'Con <code>orderBy</code>, <code>hasCheckboxes</code>, <code>hasFilter</code> y <code>firstCellIsHeader</code>',
|
|
584
584
|
"data": {
|
|
585
585
|
"idPrefix": "table-with-sticky-columns",
|
|
586
586
|
"hasCheckboxes": true,
|
|
@@ -592,18 +592,18 @@
|
|
|
592
592
|
"classes": "sticky left-16 z-10 w-60 bg-white"
|
|
593
593
|
},
|
|
594
594
|
{
|
|
595
|
-
"text": "
|
|
595
|
+
"text": "Mes de pago",
|
|
596
596
|
"orderBy": "none",
|
|
597
597
|
"hasFilter": true
|
|
598
598
|
},
|
|
599
599
|
{
|
|
600
|
-
"text": "
|
|
600
|
+
"text": "Primer pago",
|
|
601
601
|
"orderBy": "none",
|
|
602
602
|
"classes": "text-right",
|
|
603
603
|
"hasFilter": true
|
|
604
604
|
},
|
|
605
605
|
{
|
|
606
|
-
"text": "
|
|
606
|
+
"text": "Segundo pago",
|
|
607
607
|
"orderBy": "none",
|
|
608
608
|
"classes": "text-right",
|
|
609
609
|
"hasFilter": true
|
|
@@ -646,7 +646,7 @@
|
|
|
646
646
|
"classes": "sticky left-16 z-10 w-60 bg-white"
|
|
647
647
|
},
|
|
648
648
|
{
|
|
649
|
-
"text": "
|
|
649
|
+
"text": "Enero"
|
|
650
650
|
},
|
|
651
651
|
{
|
|
652
652
|
"text": "85€",
|
|
@@ -683,7 +683,7 @@
|
|
|
683
683
|
"classes": "sticky left-16 z-10 w-60 bg-white"
|
|
684
684
|
},
|
|
685
685
|
{
|
|
686
|
-
"text": "
|
|
686
|
+
"text": "Febrero"
|
|
687
687
|
},
|
|
688
688
|
{
|
|
689
689
|
"text": "75€",
|
|
@@ -720,7 +720,7 @@
|
|
|
720
720
|
"classes": "sticky left-16 z-10 w-60 bg-white"
|
|
721
721
|
},
|
|
722
722
|
{
|
|
723
|
-
"text": "
|
|
723
|
+
"text": "Marzo"
|
|
724
724
|
},
|
|
725
725
|
{
|
|
726
726
|
"text": "165€",
|