ar-poncho 2.0.3 → 2.0.4
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/.babelrc +4 -0
- package/.github/workflows/build-poncho.yml +71 -0
- package/.vscode/settings.json +3 -0
- package/composer.json +1 -1
- package/dist/css/argentina.css +3 -163
- package/dist/css/device-breadcrumb.css +1 -0
- package/dist/css/documentacion.css +1 -32
- package/dist/css/encode-fontface.css +1 -0
- package/dist/css/icono-arg.css +697 -13
- package/dist/css/miargentina.css +1 -1656
- package/dist/css/planilla-cud.css +1 -130
- package/dist/css/ponchito.css +1 -1
- package/dist/css/poncho-map.css +1 -0
- package/dist/css/poncho.css +4 -5830
- package/dist/css/poncho.min.css +3 -4
- package/dist/css/poncho_mobile.css +1 -3
- package/dist/css/roboto-fontface 2.css +239 -0
- package/dist/css/roboto-fontface.css +32 -0
- package/dist/fonts/EncodeSans-Bold.ttf +0 -0
- package/dist/fonts/EncodeSans-Medium.ttf +0 -0
- package/dist/fonts/EncodeSans-Regular.ttf +0 -0
- package/dist/fonts/EncodeSans-SemiBold.ttf +0 -0
- package/dist/fonts/icono-arg_55ca14c9b8a051396574195f270630d6.eot +0 -0
- package/dist/fonts/icono-arg_55ca14c9b8a051396574195f270630d6.svg +5651 -0
- package/dist/fonts/icono-arg_55ca14c9b8a051396574195f270630d6.ttf +0 -0
- package/dist/fonts/icono-arg_55ca14c9b8a051396574195f270630d6.woff +0 -0
- package/dist/fonts/icono-arg_55ca14c9b8a051396574195f270630d6.woff2 +0 -0
- package/dist/js/device-breadcrumb.js +1 -0
- package/dist/js/device-panel-menu.js +1 -0
- package/dist/js/mapa-argentina.js +1 -0
- package/dist/js/national-holidays.js +1 -0
- package/dist/js/poncho.js +6029 -373
- package/dist/js/poncho.min.js +1 -1
- package/dist/js/showdown-extensions.js +55 -0
- package/gulpfile.js +135 -0
- package/package-lock.json +10147 -0
- package/package.json +27 -5
- package/readme.md +25 -10
- package/test/color.test.js +16 -0
- package/test/gapi-sheet-data.test.js +17 -0
- package/test/html.test.js +18 -0
- package/test/poncho-gapi-legacy.test.js +7 -0
- package/test/resources/response.js +56 -0
- package/test/string.test.js +20 -0
- package/dist/css/poncho.css.map +0 -7
- package/dist/css/poncho.map +0 -7
- package/dist/css/poncho.min.css.map +0 -7
- package/dist/css/turnos.css +0 -0
- package/dist/fonts/icono-arg_220d85c68c8d4e97295d1acfea4481d1.eot +0 -0
- package/dist/fonts/icono-arg_220d85c68c8d4e97295d1acfea4481d1.svg +0 -3360
- package/dist/fonts/icono-arg_220d85c68c8d4e97295d1acfea4481d1.ttf +0 -0
- package/dist/fonts/icono-arg_220d85c68c8d4e97295d1acfea4481d1.woff +0 -0
- package/dist/fonts/icono-arg_220d85c68c8d4e97295d1acfea4481d1.woff2 +0 -0
- package/dist/icono-arg.css +0 -1182
|
@@ -1,130 +1 @@
|
|
|
1
|
-
@page {
|
|
2
|
-
size: legal portrait;
|
|
3
|
-
}
|
|
4
|
-
.page-sidebar {
|
|
5
|
-
display: none;
|
|
6
|
-
}
|
|
7
|
-
body.sticky-footer .main-footer {
|
|
8
|
-
display:none;
|
|
9
|
-
}
|
|
10
|
-
.jumbotron {
|
|
11
|
-
display:none;
|
|
12
|
-
}
|
|
13
|
-
.navbar {
|
|
14
|
-
display:none;
|
|
15
|
-
}
|
|
16
|
-
.sidebar {
|
|
17
|
-
display:none;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
@media print {
|
|
23
|
-
html, body[size=legal] {
|
|
24
|
-
margin:0px!important;
|
|
25
|
-
-webkit-print-color-adjust: exact!important;
|
|
26
|
-
width: 203,2mm!important;
|
|
27
|
-
height: 355,6mm!important;
|
|
28
|
-
|
|
29
|
-
}
|
|
30
|
-
.page-sidebar {
|
|
31
|
-
display: none;
|
|
32
|
-
}
|
|
33
|
-
.btn {
|
|
34
|
-
display:none;
|
|
35
|
-
}
|
|
36
|
-
.main-footer .container {
|
|
37
|
-
display:none;
|
|
38
|
-
}
|
|
39
|
-
.btn {
|
|
40
|
-
display:none;
|
|
41
|
-
}
|
|
42
|
-
a {
|
|
43
|
-
display:none;
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
section{
|
|
48
|
-
padding:0px!important;
|
|
49
|
-
margin:0px!important;
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
.screen-only, header{
|
|
54
|
-
display: none!important;
|
|
55
|
-
}
|
|
56
|
-
body.sticky-footer .main-footer {
|
|
57
|
-
display:none;
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
@media screen {
|
|
63
|
-
#planilla-completa{
|
|
64
|
-
max-width: 1200px;
|
|
65
|
-
margin: auto;
|
|
66
|
-
}
|
|
67
|
-
}
|
|
68
|
-
#planilla-completa{
|
|
69
|
-
width: 100%!important;
|
|
70
|
-
max-width:
|
|
71
|
-
color: black!important;
|
|
72
|
-
font-family: 'Arial', 'times'!important;
|
|
73
|
-
font-weight: bolder!important;
|
|
74
|
-
font-size: 11px!important;
|
|
75
|
-
}
|
|
76
|
-
.bajada{
|
|
77
|
-
text-transform: lowercase;
|
|
78
|
-
}
|
|
79
|
-
|
|
80
|
-
.bajada:first-letter{
|
|
81
|
-
text-transform: uppercase;
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
.planilla-header{
|
|
85
|
-
height: 100px!important;
|
|
86
|
-
background-color: black!important;
|
|
87
|
-
}
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
.planilla h2{
|
|
91
|
-
text-align: center!important;
|
|
92
|
-
letter-spacing: 2px!important;
|
|
93
|
-
font-size: 16px!important;
|
|
94
|
-
}
|
|
95
|
-
|
|
96
|
-
.planilla-header h2{
|
|
97
|
-
color: white!important;
|
|
98
|
-
padding: 5px!important;
|
|
99
|
-
text-align: center!important;
|
|
100
|
-
letter-spacing: 2px!important;
|
|
101
|
-
font-size: 16px!important;
|
|
102
|
-
}
|
|
103
|
-
|
|
104
|
-
td{
|
|
105
|
-
width: 100%;
|
|
106
|
-
|
|
107
|
-
}
|
|
108
|
-
.td-border{
|
|
109
|
-
border:1px solid #000!important;
|
|
110
|
-
}
|
|
111
|
-
.titulos{
|
|
112
|
-
text-align: center!important;
|
|
113
|
-
|
|
114
|
-
/* ... the rest of the rules ... */
|
|
115
|
-
}
|
|
116
|
-
p.titulos{
|
|
117
|
-
font-size: 14px!important;
|
|
118
|
-
}
|
|
119
|
-
p{padding:0px 10px!important; margin-top:5px!important;margin-bottom:5px!important; text-transform: uppercase;
|
|
120
|
-
}
|
|
121
|
-
.grey-fill{
|
|
122
|
-
background-color: #cccbcb!important;
|
|
123
|
-
}
|
|
124
|
-
.light-grey-fill{
|
|
125
|
-
background-color: #eaeaea!important;
|
|
126
|
-
|
|
127
|
-
}
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
}
|
|
1
|
+
@page{size:legal portrait}.page-sidebar{display:none}body.sticky-footer .main-footer{display:none}.jumbotron{display:none}.navbar{display:none}.sidebar{display:none}@media print{html,body[size=legal]{margin:0px !important;-webkit-print-color-adjust:exact !important;width:203,2mm !important;height:355,6mm !important}.page-sidebar{display:none}.btn{display:none}.main-footer .container{display:none}.btn{display:none}a{display:none}section{padding:0px !important;margin:0px !important}.screen-only,header{display:none !important}body.sticky-footer .main-footer{display:none}}@media screen{#planilla-completa{max-width:1200px;margin:auto}}#planilla-completa{width:100% !important;color:#000 !important;font-family:"Arial","times" !important;font-weight:bolder !important;font-size:11px !important}.bajada{text-transform:lowercase}.bajada:first-letter{text-transform:uppercase}.planilla-header{height:100px !important;background-color:#000 !important}.planilla h2{text-align:center !important;letter-spacing:2px !important;font-size:16px !important}.planilla-header h2{color:#fff !important;padding:5px !important;text-align:center !important;letter-spacing:2px !important;font-size:16px !important}td{width:100%}.td-border{border:1px solid #000 !important}.titulos{text-align:center !important}p.titulos{font-size:14px !important}p{padding:0px 10px !important;margin-top:5px !important;margin-bottom:5px !important;text-transform:uppercase}.grey-fill{background-color:#cccbcb !important}.light-grey-fill{background-color:#eaeaea !important}
|