ngx-dsxlibrary 2.21.71 → 2.21.73
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/README.md +51 -0
- package/fesm2022/ngx-dsxlibrary.mjs +1956 -348
- package/fesm2022/ngx-dsxlibrary.mjs.map +1 -1
- package/ngx-dsxlibrary-2.21.73.tgz +0 -0
- package/package.json +1 -1
- package/src/assets/css/primeng_dsx_table.css +5 -5
- package/src/assets/css/sweetAlert2.css +16 -0
- package/types/ngx-dsxlibrary.d.ts +672 -100
- package/ngx-dsxlibrary-2.21.71.tgz +0 -0
|
Binary file
|
package/package.json
CHANGED
|
@@ -5,10 +5,10 @@
|
|
|
5
5
|
.p-datatable.p-datatable-sm .p-datatable-thead > tr > th {
|
|
6
6
|
text-align: center !important;
|
|
7
7
|
color: #2866c4;
|
|
8
|
-
font-family: "
|
|
9
|
-
font-weight:
|
|
8
|
+
font-family: "Poppins", sans-serif;
|
|
9
|
+
font-weight: 600;
|
|
10
10
|
font-style: normal;
|
|
11
|
-
|
|
11
|
+
background-color: #505b69;
|
|
12
12
|
}
|
|
13
13
|
|
|
14
14
|
/* =========================================================================
|
|
@@ -137,7 +137,7 @@
|
|
|
137
137
|
6. PERSONALIZACIÓN E ILUMINACIÓN DE ICONOS DE ORDENACIÓN (SVG REAL)
|
|
138
138
|
========================================================================= */
|
|
139
139
|
|
|
140
|
-
.p-datatable th .p-datatable-sort-icon,
|
|
140
|
+
/* .p-datatable th .p-datatable-sort-icon,
|
|
141
141
|
.p-datatable th .p-datatable-sort-icon path {
|
|
142
142
|
fill: rgba(255, 255, 255, 0.6) !important;
|
|
143
143
|
stroke: rgba(255, 255, 255, 0.6) !important;
|
|
@@ -170,7 +170,7 @@
|
|
|
170
170
|
margin-left: 8px !important;
|
|
171
171
|
display: inline-block !important;
|
|
172
172
|
vertical-align: middle !important;
|
|
173
|
-
}
|
|
173
|
+
} */
|
|
174
174
|
|
|
175
175
|
/* =========================================================================
|
|
176
176
|
1. PERSONALIZACIÓN DE MULTISELECT (OPCIONAL)
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/* SweetAlert2 encima de PrimeNG Dialog */
|
|
2
|
+
.swal2-container {
|
|
3
|
+
z-index: 30000 !important;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.swal2-container.swal2-top,
|
|
7
|
+
.swal2-container.swal2-center,
|
|
8
|
+
.swal2-container.swal2-bottom,
|
|
9
|
+
.swal2-container.swal2-top-start,
|
|
10
|
+
.swal2-container.swal2-top-end,
|
|
11
|
+
.swal2-container.swal2-center-start,
|
|
12
|
+
.swal2-container.swal2-center-end,
|
|
13
|
+
.swal2-container.swal2-bottom-start,
|
|
14
|
+
.swal2-container.swal2-bottom-end {
|
|
15
|
+
z-index: 30000 !important;
|
|
16
|
+
}
|