@charlesgomes/leafcode-shared-lib-react 1.0.4 → 1.0.6
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/dist/index.css +4 -0
- package/dist/index.js +1 -0
- package/dist/index.mjs +1 -0
- package/dist/styles/table.css +13 -9
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -273,6 +273,10 @@ th {
|
|
|
273
273
|
color: #ffffff;
|
|
274
274
|
padding: 6px;
|
|
275
275
|
margin-left: 4px;
|
|
276
|
+
width: 1.5rem;
|
|
277
|
+
height: 1.5rem;
|
|
278
|
+
margin-left: 4px;
|
|
279
|
+
border-radius: 5rem;
|
|
276
280
|
}
|
|
277
281
|
[aria-sort=ascending] .p-sortable-column-icon,
|
|
278
282
|
[aria-sort=descending] .p-sortable-column-icon {
|
package/dist/index.js
CHANGED
|
@@ -908,6 +908,7 @@ var SelectFilterTemplate = (options, isLanguagePtBr = true) => {
|
|
|
908
908
|
isClearable: false,
|
|
909
909
|
isSearchable: false,
|
|
910
910
|
className: "custom-select-filtro",
|
|
911
|
+
classNamePrefix: "custom-select-filtro",
|
|
911
912
|
styles: {
|
|
912
913
|
control: (baseStyles, state) => ({
|
|
913
914
|
...baseStyles,
|
package/dist/index.mjs
CHANGED
|
@@ -863,6 +863,7 @@ var SelectFilterTemplate = (options, isLanguagePtBr = true) => {
|
|
|
863
863
|
isClearable: false,
|
|
864
864
|
isSearchable: false,
|
|
865
865
|
className: "custom-select-filtro",
|
|
866
|
+
classNamePrefix: "custom-select-filtro",
|
|
866
867
|
styles: {
|
|
867
868
|
control: (baseStyles, state) => ({
|
|
868
869
|
...baseStyles,
|
package/dist/styles/table.css
CHANGED
|
@@ -174,7 +174,7 @@ th {
|
|
|
174
174
|
font-weight: bold;
|
|
175
175
|
}
|
|
176
176
|
|
|
177
|
-
.p-datatable .p-datatable-tbody
|
|
177
|
+
.p-datatable .p-datatable-tbody>tr {
|
|
178
178
|
background: #fff;
|
|
179
179
|
color: #000;
|
|
180
180
|
font-family: "roboto", sans-serif;
|
|
@@ -204,14 +204,13 @@ th {
|
|
|
204
204
|
left: -2px;
|
|
205
205
|
}
|
|
206
206
|
|
|
207
|
-
.p-checkbox:not(.p-disabled):has(.p-checkbox-input:hover).p-highlight
|
|
208
|
-
.p-checkbox-box {
|
|
207
|
+
.p-checkbox:not(.p-disabled):has(.p-checkbox-input:hover).p-highlight .p-checkbox-box {
|
|
209
208
|
border-color: #094394;
|
|
210
209
|
background: #094394;
|
|
211
210
|
color: #ffffff;
|
|
212
211
|
}
|
|
213
212
|
|
|
214
|
-
.p-datatable .p-datatable-tbody
|
|
213
|
+
.p-datatable .p-datatable-tbody>tr.p-highlight {
|
|
215
214
|
background: #fafbfc;
|
|
216
215
|
}
|
|
217
216
|
|
|
@@ -323,6 +322,10 @@ th {
|
|
|
323
322
|
color: #ffffff;
|
|
324
323
|
padding: 6px;
|
|
325
324
|
margin-left: 4px;
|
|
325
|
+
width: 1.5rem;
|
|
326
|
+
height: 1.5rem;
|
|
327
|
+
margin-left: 4px;
|
|
328
|
+
border-radius: 5rem;
|
|
326
329
|
}
|
|
327
330
|
|
|
328
331
|
[aria-sort="ascending"] .p-sortable-column-icon,
|
|
@@ -356,7 +359,7 @@ th {
|
|
|
356
359
|
padding: 10px 0;
|
|
357
360
|
}
|
|
358
361
|
|
|
359
|
-
.p-column-filter-add-button
|
|
362
|
+
.p-column-filter-add-button>svg {
|
|
360
363
|
width: 12px;
|
|
361
364
|
height: 12px;
|
|
362
365
|
}
|
|
@@ -400,7 +403,7 @@ th {
|
|
|
400
403
|
padding: 10px 0 0 0;
|
|
401
404
|
}
|
|
402
405
|
|
|
403
|
-
.p-column-filter-remove-button
|
|
406
|
+
.p-column-filter-remove-button>svg {
|
|
404
407
|
width: 12px;
|
|
405
408
|
height: 12px;
|
|
406
409
|
}
|
|
@@ -413,8 +416,8 @@ th {
|
|
|
413
416
|
z-index: 99;
|
|
414
417
|
}
|
|
415
418
|
|
|
416
|
-
.NextPage
|
|
417
|
-
.PrevPage
|
|
419
|
+
.NextPage>svg,
|
|
420
|
+
.PrevPage>svg {
|
|
418
421
|
fill: #fff;
|
|
419
422
|
}
|
|
420
423
|
|
|
@@ -535,6 +538,7 @@ th {
|
|
|
535
538
|
}
|
|
536
539
|
|
|
537
540
|
@media (max-width: 567px) {
|
|
541
|
+
|
|
538
542
|
.disablePagination,
|
|
539
543
|
.paginatorLeft {
|
|
540
544
|
display: grid;
|
|
@@ -544,4 +548,4 @@ th {
|
|
|
544
548
|
.custom-select {
|
|
545
549
|
min-width: 100%;
|
|
546
550
|
}
|
|
547
|
-
}
|
|
551
|
+
}
|