plataforma-fundacao-componentes 2.25.1 → 2.25.3
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/components/etiqueta/Etiqueta.d.ts +1 -0
- package/dist/components/pagination/Pagination.d.ts +1 -0
- package/dist/index.css +70 -63
- package/dist/index.js +408 -405
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +408 -405
- package/dist/index.modern.js.map +1 -1
- package/dist/libraries/EtiquetasThemes.d.ts +2 -1
- package/package.json +2 -2
package/dist/index.css
CHANGED
|
@@ -3485,7 +3485,7 @@ max-width 100% 540px 720px 960px 1140px
|
|
|
3485
3485
|
warningLight: #ffeb98;
|
|
3486
3486
|
warningDark: #765f00; }
|
|
3487
3487
|
|
|
3488
|
-
.etiqueta {
|
|
3488
|
+
.component-etiqueta {
|
|
3489
3489
|
display: flex;
|
|
3490
3490
|
align-items: center;
|
|
3491
3491
|
justify-content: center;
|
|
@@ -3493,7 +3493,7 @@ max-width 100% 540px 720px 960px 1140px
|
|
|
3493
3493
|
border: 1px solid rgba(0, 0, 0, 0);
|
|
3494
3494
|
border-radius: 20px;
|
|
3495
3495
|
padding: 0 10px; }
|
|
3496
|
-
.etiqueta .etiqueta-text {
|
|
3496
|
+
.component-etiqueta .component-etiqueta-text {
|
|
3497
3497
|
white-space: nowrap;
|
|
3498
3498
|
font-size: 14px;
|
|
3499
3499
|
font-weight: 700;
|
|
@@ -3506,7 +3506,7 @@ max-width 100% 540px 720px 960px 1140px
|
|
|
3506
3506
|
text-overflow: ellipsis;
|
|
3507
3507
|
text-align: center;
|
|
3508
3508
|
vertical-align: middle; }
|
|
3509
|
-
.etiqueta .etiqueta-icon {
|
|
3509
|
+
.component-etiqueta .component-etiqueta-icon {
|
|
3510
3510
|
display: flex;
|
|
3511
3511
|
align-items: center;
|
|
3512
3512
|
justify-content: center;
|
|
@@ -3515,79 +3515,84 @@ max-width 100% 540px 720px 960px 1140px
|
|
|
3515
3515
|
user-select: none;
|
|
3516
3516
|
margin-right: 8px;
|
|
3517
3517
|
margin-bottom: 1px; }
|
|
3518
|
-
.etiqueta .etiqueta-icon svg {
|
|
3518
|
+
.component-etiqueta .component-etiqueta-icon svg {
|
|
3519
3519
|
height: 14px;
|
|
3520
3520
|
width: 14px; }
|
|
3521
|
-
.etiqueta.fit-content {
|
|
3521
|
+
.component-etiqueta.fit-content {
|
|
3522
3522
|
width: -moz-fit-content;
|
|
3523
3523
|
width: fit-content;
|
|
3524
3524
|
padding: 8px 12px; }
|
|
3525
3525
|
|
|
3526
|
-
.etiqueta.programas {
|
|
3526
|
+
.component-etiqueta.programas {
|
|
3527
3527
|
background-color: rgba(0, 0, 0, 0);
|
|
3528
3528
|
color: #3fa110;
|
|
3529
3529
|
border-color: #3fa110; }
|
|
3530
3530
|
|
|
3531
|
-
.etiqueta.em-edicao {
|
|
3531
|
+
.component-etiqueta.em-edicao {
|
|
3532
3532
|
background-color: #d7e6c8;
|
|
3533
3533
|
color: #33820d;
|
|
3534
3534
|
border-color: #d7e6c8; }
|
|
3535
3535
|
|
|
3536
|
-
.etiqueta.em-revisao {
|
|
3536
|
+
.component-etiqueta.em-revisao {
|
|
3537
3537
|
background-color: #cbe5fd;
|
|
3538
3538
|
color: #2b517b;
|
|
3539
3539
|
border-color: #cbe5fd; }
|
|
3540
3540
|
|
|
3541
|
-
.etiqueta.em-aprovacao {
|
|
3541
|
+
.component-etiqueta.em-aprovacao {
|
|
3542
3542
|
background-color: #ffcd00;
|
|
3543
3543
|
color: #765f00;
|
|
3544
3544
|
border-color: #ffcd00; }
|
|
3545
3545
|
|
|
3546
|
-
.etiqueta.finalizado {
|
|
3546
|
+
.component-etiqueta.finalizado {
|
|
3547
3547
|
background-color: #cdd3cd;
|
|
3548
3548
|
color: #5a645a;
|
|
3549
3549
|
border-color: #cdd3cd; }
|
|
3550
3550
|
|
|
3551
|
-
.etiqueta.aprovado {
|
|
3551
|
+
.component-etiqueta.aprovado {
|
|
3552
3552
|
background-color: #3fa110;
|
|
3553
3553
|
color: #fefefe;
|
|
3554
3554
|
border-color: #3fa110; }
|
|
3555
3555
|
|
|
3556
|
-
.etiqueta.reprovado {
|
|
3556
|
+
.component-etiqueta.reprovado {
|
|
3557
3557
|
background-color: #e60000;
|
|
3558
3558
|
color: #fefefe;
|
|
3559
3559
|
border-color: #e60000; }
|
|
3560
3560
|
|
|
3561
|
-
.etiqueta.cancelado {
|
|
3561
|
+
.component-etiqueta.cancelado {
|
|
3562
3562
|
background-color: rgba(0, 0, 0, 0);
|
|
3563
3563
|
color: #ab4745;
|
|
3564
3564
|
border-color: #ab4745; }
|
|
3565
3565
|
|
|
3566
|
-
.etiqueta.outline-primary {
|
|
3566
|
+
.component-etiqueta.outline-primary {
|
|
3567
3567
|
background-color: rgba(0, 0, 0, 0);
|
|
3568
3568
|
color: #3fa110;
|
|
3569
3569
|
border-color: #3fa110; }
|
|
3570
3570
|
|
|
3571
|
-
.etiqueta.outline-danger {
|
|
3571
|
+
.component-etiqueta.outline-danger {
|
|
3572
3572
|
background-color: rgba(0, 0, 0, 0);
|
|
3573
3573
|
color: #ab4745;
|
|
3574
3574
|
border-color: #ab4745; }
|
|
3575
3575
|
|
|
3576
|
-
.etiqueta.outline-blue {
|
|
3576
|
+
.component-etiqueta.outline-blue {
|
|
3577
3577
|
background-color: rgba(0, 0, 0, 0);
|
|
3578
3578
|
color: #2b517b;
|
|
3579
3579
|
border-color: #2b517b; }
|
|
3580
3580
|
|
|
3581
|
-
.etiqueta.outline-dark {
|
|
3581
|
+
.component-etiqueta.outline-dark {
|
|
3582
3582
|
background-color: rgba(0, 0, 0, 0);
|
|
3583
3583
|
color: #323c32;
|
|
3584
3584
|
border-color: #323c32; }
|
|
3585
3585
|
|
|
3586
|
-
.etiqueta.outline-warning-dark {
|
|
3586
|
+
.component-etiqueta.outline-warning-dark {
|
|
3587
3587
|
background-color: rgba(0, 0, 0, 0);
|
|
3588
3588
|
color: #765f00;
|
|
3589
3589
|
border-color: #765f00; }
|
|
3590
3590
|
|
|
3591
|
+
.component-etiqueta.yellow {
|
|
3592
|
+
background-color: #ffeb98;
|
|
3593
|
+
color: #765f00;
|
|
3594
|
+
border-color: #ffeb98; }
|
|
3595
|
+
|
|
3591
3596
|
:export {
|
|
3592
3597
|
widthXs: 575.98px;
|
|
3593
3598
|
widthSm: 767.98px;
|
|
@@ -5317,6 +5322,8 @@ header.component-header {
|
|
|
5317
5322
|
justify-content: center;
|
|
5318
5323
|
align-items: center;
|
|
5319
5324
|
-webkit-appearance: none;
|
|
5325
|
+
-moz-appearance: none;
|
|
5326
|
+
appearance: none;
|
|
5320
5327
|
border: none;
|
|
5321
5328
|
outline: none;
|
|
5322
5329
|
background-color: rgba(0, 0, 0, 0);
|
|
@@ -5486,62 +5493,62 @@ h5 {
|
|
|
5486
5493
|
.scroll-white::-webkit-scrollbar-thumb:hover {
|
|
5487
5494
|
background-color: #bfc7bf; }
|
|
5488
5495
|
|
|
5489
|
-
.
|
|
5496
|
+
.pagination-component {
|
|
5490
5497
|
display: flex;
|
|
5491
5498
|
align-items: center;
|
|
5492
5499
|
justify-content: center;
|
|
5493
5500
|
width: 100%;
|
|
5494
5501
|
list-style: none; }
|
|
5495
5502
|
@media (max-width: 575.98px) {
|
|
5496
|
-
.
|
|
5503
|
+
.pagination-component.oneOf {
|
|
5497
5504
|
justify-content: center;
|
|
5498
5505
|
flex-direction: row-reverse;
|
|
5499
5506
|
flex-direction: column; } }
|
|
5500
|
-
.
|
|
5507
|
+
.pagination-component p {
|
|
5501
5508
|
font-family: 'Nunito', sans-serif !important;
|
|
5502
5509
|
color: #323c32;
|
|
5503
5510
|
margin: 0; }
|
|
5504
|
-
.
|
|
5511
|
+
.pagination-component > div > div {
|
|
5505
5512
|
width: -moz-fit-content;
|
|
5506
5513
|
width: fit-content;
|
|
5507
5514
|
display: flex;
|
|
5508
5515
|
gap: 8px;
|
|
5509
5516
|
position: relative; }
|
|
5510
|
-
.
|
|
5517
|
+
.pagination-component.hasLeftItem {
|
|
5511
5518
|
justify-content: space-between; }
|
|
5512
|
-
.
|
|
5519
|
+
.pagination-component .paginationLeftContainer {
|
|
5513
5520
|
display: flex;
|
|
5514
5521
|
align-items: center; }
|
|
5515
5522
|
@media (max-width: 767.98px) {
|
|
5516
|
-
.
|
|
5523
|
+
.pagination-component .paginationLeftContainer.oneOf {
|
|
5517
5524
|
width: 100%;
|
|
5518
5525
|
justify-content: flex-start; } }
|
|
5519
5526
|
@media (max-width: 575.98px) {
|
|
5520
|
-
.
|
|
5527
|
+
.pagination-component .paginationLeftContainer.oneOf {
|
|
5521
5528
|
justify-content: center;
|
|
5522
5529
|
margin-bottom: 16px; } }
|
|
5523
5530
|
@media (max-width: 767.98px) {
|
|
5524
|
-
.
|
|
5531
|
+
.pagination-component .paginationLeftContainer.both {
|
|
5525
5532
|
width: 100%;
|
|
5526
5533
|
justify-content: space-between;
|
|
5527
5534
|
margin-bottom: 12px; } }
|
|
5528
|
-
.
|
|
5535
|
+
.pagination-component .linesPerPage {
|
|
5529
5536
|
display: flex;
|
|
5530
5537
|
align-items: center;
|
|
5531
5538
|
-webkit-user-select: none;
|
|
5532
5539
|
-moz-user-select: none;
|
|
5533
5540
|
user-select: none; }
|
|
5534
|
-
.
|
|
5541
|
+
.pagination-component .linesPerPage :not(:last-child) > svg {
|
|
5535
5542
|
margin-bottom: -3px;
|
|
5536
5543
|
max-width: 6px;
|
|
5537
5544
|
margin-right: 8px; }
|
|
5538
|
-
.
|
|
5545
|
+
.pagination-component .linesPerPage .wrapper {
|
|
5539
5546
|
display: flex;
|
|
5540
5547
|
align-items: center;
|
|
5541
5548
|
padding-top: 3px;
|
|
5542
5549
|
gap: 6px;
|
|
5543
5550
|
cursor: default; }
|
|
5544
|
-
.
|
|
5551
|
+
.pagination-component .linesPerPage .wrapper > div {
|
|
5545
5552
|
display: flex;
|
|
5546
5553
|
align-items: center;
|
|
5547
5554
|
cursor: pointer;
|
|
@@ -5549,46 +5556,46 @@ h5 {
|
|
|
5549
5556
|
border-bottom: 2px solid #d7e6c8;
|
|
5550
5557
|
transition: 0.3s;
|
|
5551
5558
|
border-radius: 0px 0px 4px 4px; }
|
|
5552
|
-
.
|
|
5559
|
+
.pagination-component .linesPerPage .wrapper > div:hover {
|
|
5553
5560
|
border-color: #3fa110; }
|
|
5554
|
-
.
|
|
5561
|
+
.pagination-component .linesPerPage .wrapper > div > div {
|
|
5555
5562
|
display: flex; }
|
|
5556
|
-
.
|
|
5563
|
+
.pagination-component .linesPerPage .wrapper > div > div:nth-child(2) button {
|
|
5557
5564
|
min-width: unset !important; }
|
|
5558
|
-
.
|
|
5565
|
+
.pagination-component .linesPerPage .wrapper > div > div > div {
|
|
5559
5566
|
display: flex;
|
|
5560
5567
|
align-items: center;
|
|
5561
5568
|
margin-top: 4px;
|
|
5562
5569
|
margin-bottom: 2px; }
|
|
5563
|
-
.
|
|
5570
|
+
.pagination-component .linesPerPage .wrapper.disabled {
|
|
5564
5571
|
pointer-events: none;
|
|
5565
5572
|
-webkit-user-select: none;
|
|
5566
5573
|
-moz-user-select: none;
|
|
5567
5574
|
user-select: none; }
|
|
5568
|
-
.
|
|
5575
|
+
.pagination-component .linesPerPage .wrapper.disabled > div {
|
|
5569
5576
|
border-color: #828a82 !important;
|
|
5570
5577
|
opacity: 0.45; }
|
|
5571
|
-
.
|
|
5578
|
+
.pagination-component .linesPerPage .wrapper.disabled > div svg {
|
|
5572
5579
|
color: #828a82; }
|
|
5573
|
-
.
|
|
5580
|
+
.pagination-component .linesPerPage .drop {
|
|
5574
5581
|
margin: 0;
|
|
5575
5582
|
padding: 0;
|
|
5576
5583
|
padding-top: 7px; }
|
|
5577
|
-
.
|
|
5584
|
+
.pagination-component .linesPerPage .drop p {
|
|
5578
5585
|
-webkit-user-select: none;
|
|
5579
5586
|
-moz-user-select: none;
|
|
5580
5587
|
user-select: none;
|
|
5581
5588
|
margin-left: 4px;
|
|
5582
5589
|
margin-right: 8px;
|
|
5583
5590
|
color: #323c32; }
|
|
5584
|
-
.
|
|
5591
|
+
.pagination-component .linesPerPage .drop svg {
|
|
5585
5592
|
width: 14px;
|
|
5586
5593
|
color: #3fa110;
|
|
5587
5594
|
transition: 0.3s;
|
|
5588
5595
|
transform: rotate(0deg); }
|
|
5589
|
-
.
|
|
5596
|
+
.pagination-component .linesPerPage .drop.active svg {
|
|
5590
5597
|
transform: rotate(-180deg); }
|
|
5591
|
-
.
|
|
5598
|
+
.pagination-component .paginationContainer {
|
|
5592
5599
|
display: flex;
|
|
5593
5600
|
align-items: center;
|
|
5594
5601
|
list-style-type: none;
|
|
@@ -5597,7 +5604,7 @@ h5 {
|
|
|
5597
5604
|
margin: 0;
|
|
5598
5605
|
padding: 0;
|
|
5599
5606
|
position: relative; }
|
|
5600
|
-
.
|
|
5607
|
+
.pagination-component .paginationContainer .paginationItem {
|
|
5601
5608
|
display: flex;
|
|
5602
5609
|
align-items: center;
|
|
5603
5610
|
justify-content: center;
|
|
@@ -5611,30 +5618,30 @@ h5 {
|
|
|
5611
5618
|
-moz-user-select: none;
|
|
5612
5619
|
user-select: none;
|
|
5613
5620
|
transition: 0.3s ease-in-out; }
|
|
5614
|
-
.
|
|
5621
|
+
.pagination-component .paginationContainer .paginationItem:hover {
|
|
5615
5622
|
cursor: pointer; }
|
|
5616
|
-
.
|
|
5623
|
+
.pagination-component .paginationContainer .paginationItem.dots {
|
|
5617
5624
|
display: flex;
|
|
5618
5625
|
-webkit-user-select: none;
|
|
5619
5626
|
-moz-user-select: none;
|
|
5620
5627
|
user-select: none;
|
|
5621
5628
|
pointer-events: none; }
|
|
5622
|
-
.
|
|
5629
|
+
.pagination-component .paginationContainer .paginationItem.dots svg {
|
|
5623
5630
|
color: #3fa110;
|
|
5624
5631
|
width: 18px;
|
|
5625
5632
|
margin-bottom: 1px; }
|
|
5626
|
-
.
|
|
5633
|
+
.pagination-component .paginationContainer .paginationItem.dots:hover {
|
|
5627
5634
|
background-color: transparent;
|
|
5628
5635
|
cursor: default; }
|
|
5629
|
-
.
|
|
5636
|
+
.pagination-component .paginationContainer .paginationItem:hover {
|
|
5630
5637
|
cursor: pointer;
|
|
5631
5638
|
color: #33820d; }
|
|
5632
|
-
.
|
|
5639
|
+
.pagination-component .paginationContainer .paginationItem.selected {
|
|
5633
5640
|
width: 100%;
|
|
5634
5641
|
color: #33820d;
|
|
5635
5642
|
position: relative;
|
|
5636
5643
|
transition: 0.3s ease-in-out; }
|
|
5637
|
-
.
|
|
5644
|
+
.pagination-component .paginationContainer .paginationItem.selected.nonLoader::after {
|
|
5638
5645
|
content: '';
|
|
5639
5646
|
bottom: -2px;
|
|
5640
5647
|
position: absolute;
|
|
@@ -5644,29 +5651,29 @@ h5 {
|
|
|
5644
5651
|
border-radius: 2px;
|
|
5645
5652
|
transition: 0.3s ease-in-out;
|
|
5646
5653
|
z-index: -1; }
|
|
5647
|
-
.
|
|
5654
|
+
.pagination-component .paginationContainer .paginationItem:active {
|
|
5648
5655
|
transform: scale(0.9); }
|
|
5649
|
-
.
|
|
5656
|
+
.pagination-component .paginationContainer .paginationItem.disabled {
|
|
5650
5657
|
pointer-events: none;
|
|
5651
5658
|
color: #828a82;
|
|
5652
5659
|
opacity: 0.75; }
|
|
5653
|
-
.
|
|
5660
|
+
.pagination-component .paginationContainer .paginationItem.disabled svg {
|
|
5654
5661
|
color: #828a82;
|
|
5655
5662
|
opacity: 0.25; }
|
|
5656
|
-
.
|
|
5663
|
+
.pagination-component .paginationContainer .paginationItem.disabled.selected {
|
|
5657
5664
|
pointer-events: none;
|
|
5658
5665
|
width: 100%;
|
|
5659
5666
|
color: #828a82;
|
|
5660
5667
|
position: relative;
|
|
5661
5668
|
transition: 0.3s ease-in-out; }
|
|
5662
|
-
.
|
|
5669
|
+
.pagination-component .paginationContainer .paginationItem.disabled.selected::after {
|
|
5663
5670
|
display: none; }
|
|
5664
|
-
.
|
|
5671
|
+
.pagination-component .paginationContainer .paginationItem.disabled:hover {
|
|
5665
5672
|
background-color: transparent;
|
|
5666
5673
|
cursor: default; }
|
|
5667
|
-
.
|
|
5674
|
+
.pagination-component .paginationContainer .arrows svg {
|
|
5668
5675
|
max-height: 16px; }
|
|
5669
|
-
.
|
|
5676
|
+
.pagination-component .paginationContainerLoader {
|
|
5670
5677
|
display: flex;
|
|
5671
5678
|
align-items: center;
|
|
5672
5679
|
justify-content: center;
|
|
@@ -5677,14 +5684,14 @@ h5 {
|
|
|
5677
5684
|
height: 100%;
|
|
5678
5685
|
background-color: #f8f9f7;
|
|
5679
5686
|
opacity: 1; }
|
|
5680
|
-
.
|
|
5687
|
+
.pagination-component .paginationContainerLoader.enter {
|
|
5681
5688
|
opacity: 0; }
|
|
5682
|
-
.
|
|
5689
|
+
.pagination-component .paginationContainerLoader.enterActive {
|
|
5683
5690
|
transition: 0.3s ease;
|
|
5684
5691
|
opacity: 1; }
|
|
5685
|
-
.
|
|
5692
|
+
.pagination-component .paginationContainerLoader.exit {
|
|
5686
5693
|
opacity: 1; }
|
|
5687
|
-
.
|
|
5694
|
+
.pagination-component .paginationContainerLoader.exitActive {
|
|
5688
5695
|
transition: 0.3s ease;
|
|
5689
5696
|
opacity: 0; }
|
|
5690
5697
|
|