plataforma-fundacao-componentes 2.23.6 → 2.23.9
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/assets/icons/AddAssemblyIcon.d.ts +3 -0
- package/dist/components/dropdownItem/DropdownItem.d.ts +1 -0
- package/dist/index.css +55 -17
- package/dist/index.d.ts +2 -1
- package/dist/index.js +896 -855
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +896 -856
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
|
@@ -7,6 +7,7 @@ interface DropdownItemProps {
|
|
|
7
7
|
disabled?: boolean;
|
|
8
8
|
onClick?: (event?: any) => void;
|
|
9
9
|
alignRight?: boolean;
|
|
10
|
+
loading?: boolean;
|
|
10
11
|
}
|
|
11
12
|
declare function DropdownItem(props: DropdownItemProps): JSX.Element;
|
|
12
13
|
declare const _default: React.MemoExoticComponent<typeof DropdownItem>;
|
package/dist/index.css
CHANGED
|
@@ -4486,7 +4486,8 @@ h5 {
|
|
|
4486
4486
|
.component-big-block-button:disabled {
|
|
4487
4487
|
opacity: 0.7; }
|
|
4488
4488
|
.component-big-block-button:disabled .component-big-block-button-icon,
|
|
4489
|
-
.component-big-block-button:disabled .component-big-block-button-label
|
|
4489
|
+
.component-big-block-button:disabled .component-big-block-button-label,
|
|
4490
|
+
.component-big-block-button:disabled .component-big-block-button-subtitle {
|
|
4490
4491
|
color: #cdd3cd; }
|
|
4491
4492
|
.component-big-block-button .component-big-block-button-icon {
|
|
4492
4493
|
color: #3fa110;
|
|
@@ -8496,30 +8497,66 @@ h5 {
|
|
|
8496
8497
|
justify-content: flex-start;
|
|
8497
8498
|
border: none;
|
|
8498
8499
|
outline: none;
|
|
8500
|
+
position: relative;
|
|
8499
8501
|
transition: color 0.3s ease, background-color 0.3s ease; }
|
|
8500
|
-
.component-dropdown-item:not(:disabled) {
|
|
8502
|
+
.component-dropdown-item:not(:disabled):not(.loading) {
|
|
8501
8503
|
cursor: pointer; }
|
|
8502
|
-
.component-dropdown-item:not(:disabled):hover {
|
|
8504
|
+
.component-dropdown-item:not(:disabled):not(.loading):hover {
|
|
8503
8505
|
background-color: #f3f3f3; }
|
|
8504
|
-
.component-dropdown-item:disabled {
|
|
8506
|
+
.component-dropdown-item:disabled, .component-dropdown-item.loading {
|
|
8505
8507
|
color: #cdd3cd; }
|
|
8506
|
-
|
|
8507
|
-
|
|
8508
|
-
.component-dropdown-item .component-dropdown-item-
|
|
8508
|
+
.component-dropdown-item:disabled .component-dropdown-item-loader, .component-dropdown-item.loading .component-dropdown-item-loader {
|
|
8509
|
+
color: #828a82; }
|
|
8510
|
+
.component-dropdown-item .component-dropdown-item-content {
|
|
8511
|
+
width: 100%;
|
|
8509
8512
|
display: flex;
|
|
8510
8513
|
align-items: center;
|
|
8511
|
-
|
|
8512
|
-
|
|
8513
|
-
|
|
8514
|
-
|
|
8515
|
-
|
|
8516
|
-
|
|
8517
|
-
|
|
8518
|
-
|
|
8519
|
-
|
|
8514
|
+
justify-content: flex-start; }
|
|
8515
|
+
.component-dropdown-item .component-dropdown-item-content .component-dropdown-item-label {
|
|
8516
|
+
font-size: 15px;
|
|
8517
|
+
vertical-align: middle;
|
|
8518
|
+
text-overflow: ellipsis;
|
|
8519
|
+
text-align: left; }
|
|
8520
|
+
.component-dropdown-item .component-dropdown-item-content .component-dropdown-item-icon {
|
|
8521
|
+
display: flex;
|
|
8522
|
+
align-items: center;
|
|
8523
|
+
margin-right: 10px;
|
|
8524
|
+
margin-left: unset; }
|
|
8525
|
+
.component-dropdown-item .component-dropdown-item-content .component-dropdown-item-icon svg {
|
|
8526
|
+
height: 20px;
|
|
8527
|
+
width: 20px; }
|
|
8528
|
+
.component-dropdown-item.right .component-dropdown-item-content,
|
|
8529
|
+
.component-dropdown-item.right .component-dropdown-item-loader {
|
|
8530
|
+
flex-direction: row-reverse; }
|
|
8531
|
+
.component-dropdown-item.right .component-dropdown-item-label {
|
|
8532
|
+
text-align: left; }
|
|
8533
|
+
.component-dropdown-item.right .component-dropdown-item-icon {
|
|
8534
|
+
margin-right: unset;
|
|
8535
|
+
margin-left: 10px; }
|
|
8536
|
+
.component-dropdown-item.loading .component-dropdown-item-content {
|
|
8537
|
+
overflow: hidden; }
|
|
8538
|
+
.component-dropdown-item .component-dropdown-item-loader {
|
|
8539
|
+
width: 30px;
|
|
8520
8540
|
display: flex;
|
|
8521
8541
|
align-items: center;
|
|
8522
|
-
|
|
8542
|
+
justify-content: flex-start;
|
|
8543
|
+
overflow: hidden;
|
|
8544
|
+
transition: width 0.3s ease, opacity 0.2s ease; }
|
|
8545
|
+
.component-dropdown-item .component-dropdown-item-loader svg {
|
|
8546
|
+
height: 20px;
|
|
8547
|
+
width: 20px; }
|
|
8548
|
+
.component-dropdown-item .component-dropdown-item-loader.component-dropdown-item-fade-enter {
|
|
8549
|
+
width: 0;
|
|
8550
|
+
opacity: 0; }
|
|
8551
|
+
.component-dropdown-item .component-dropdown-item-loader.component-dropdown-item-fade-enter-active, .component-dropdown-item .component-dropdown-item-loader.component-dropdown-item-fade-enter-done {
|
|
8552
|
+
opacity: 1;
|
|
8553
|
+
width: 30px; }
|
|
8554
|
+
.component-dropdown-item .component-dropdown-item-loader.component-dropdown-item-fade-exit {
|
|
8555
|
+
opacity: 1;
|
|
8556
|
+
width: 30px; }
|
|
8557
|
+
.component-dropdown-item .component-dropdown-item-loader.component-dropdown-item-fade-exit-active, .component-dropdown-item .component-dropdown-item-loader.component-dropdown-item-fade-exit-done {
|
|
8558
|
+
opacity: 0;
|
|
8559
|
+
width: 0px; }
|
|
8523
8560
|
|
|
8524
8561
|
@import url("https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
|
|
8525
8562
|
@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,600;1,700;1,800;1,900&display=swap");
|
|
@@ -12640,6 +12677,7 @@ h5 {
|
|
|
12640
12677
|
.component-menu.component-menu-hamburger-menu {
|
|
12641
12678
|
transition: width 0.3s ease; }
|
|
12642
12679
|
.component-menu.component-menu-hamburger-menu .component-menu-close-button {
|
|
12680
|
+
z-index: +1;
|
|
12643
12681
|
position: absolute;
|
|
12644
12682
|
right: 12px;
|
|
12645
12683
|
top: 14px; }
|
package/dist/index.d.ts
CHANGED
|
@@ -7,6 +7,7 @@ import { CircleArrowLeft } from './assets/icons/CircleArrowLeft';
|
|
|
7
7
|
import { FormacaoIcon } from './assets/icons/FormacaoIcon';
|
|
8
8
|
import { PercentLoaderIcon } from './assets/icons/PercentLoaderIcon';
|
|
9
9
|
import { AddIcon } from './assets/icons/AddIcon';
|
|
10
|
+
import { AddAssemblyIcon } from './assets/icons/AddAssemblyIcon';
|
|
10
11
|
import { CircleArrowRight } from './assets/icons/CircleArrowRight';
|
|
11
12
|
import { FundacaoLogo } from './assets/icons/FundacaoLogo';
|
|
12
13
|
import { PieChartIcon } from './assets/icons/PieChartIcon';
|
|
@@ -219,4 +220,4 @@ export { Accordion, ActionCard, AdvancedSemiHeader, AssembleiaItem, AssembleiaPa
|
|
|
219
220
|
/**
|
|
220
221
|
* @deprecated
|
|
221
222
|
*/
|
|
222
|
-
Title as ModulosTitle, MoneyByMonth, MoneyMonthLineChart, NotaEdit, Notification, PageSubTitle, PageTitle, Paginator, PreviaVideo, ProgressBar, RadioButton, QRCode, Row, SearchBlocoDeNotas, Select, Switch, Table, TypedTable, TableFileNameAndAction, TableActions, TableWithOverflow, TextEditor, LeftCheckboxWithLabel, ActionsColumn, Tabs, Toast, ToastManager, Tooltip, TooltipManager, TopLoader, VideoItem, VideoPlayer, VideoModal, useCallbackedState, useCarouselBehaviour, useControlledTimer, useDraggableContainer, useHTMLShare, useDropOpened, useModalManager, useProgressiveCount, useScreenSize, useStorageState, useTimeElapsed, useToastManager, useValidatedState, AconteceuIcon, ChevronArrowRightIcon, FontIcon, PaymentIcon, AddCircleIcon, CircleArrowLeft, CopyIcon, QRCodeIcon, PrintIcon, FormacaoIcon, PercentLoaderIcon, AddIcon, CircleArrowRight, FundacaoLogo, PieChartIcon, AlignCenterIcon, ClockIcon, CalendarCheckIcon, DevicePlusIcon, NotebookIcon, AgencyIcon, FundoSocialIcon, PlayIcon, AlignJustifyIcon, CloseIcon, GlobeIcon, QRCodeWhatsapp, AlignLeftIcon, CloudDownloadIcon, GraduationIcon, RedoIcon, AlignRightIcon, CloudUploadIcon, HamburgerIcon, RefreshIcon, ArrowLeftIcon, ComitesIcon, HandUpIcon, SearchIcon, ArrowRightIcon, ComunidadeIcon, HomeIcon, SettingsIcon, AssembleiasIcon, CreditIcon, InformationIcon, SicrediLogo, ATMIcon, CrescerIcon, InvestimentIcon, SquaresIcon, BackOfficeIcon, CrescerLogo, ItalicIcon, SustentabilidadeIcon, BarChartIcon, DownloadIcon, LinkIcon, ThreeDotsLoader, BeeIcon, DraggableIcon, LinksUteisIcon, ThumbsUpIcon, BigPlayIcon, EditIcon, ListDotIcon, TimesCircleIcon, BoldIcon, EvidenciasIcon, ListIcon, TransferenciaIcon, CalendarIcon, ExclamationIcon, LoaderIcon, TrashIcon, CardsIcon, ExitIconArrowLeft, LocalIcon, TrianguloInferior, CataventoVerde, ExitIconArrowRight, LockIcon, TwoFileIcon, CheckCircleIcon, EyeIcon, MessageIcon, UnderlineIcon, CheckIcon, FilePlusIcon, MoneyFileIcon, UndoIcon, ChequeIcon, FilesIcon, NavigatorWithMouse, UserIcon, ChevronArrowDownIcon, FilterIcon, OptionsIcon, WebsiteIcon, ChevronArrowLeftIcon, FontColorIcon, ParticipantesIcon, };
|
|
223
|
+
Title as ModulosTitle, MoneyByMonth, MoneyMonthLineChart, NotaEdit, Notification, PageSubTitle, PageTitle, Paginator, PreviaVideo, ProgressBar, RadioButton, QRCode, Row, SearchBlocoDeNotas, Select, Switch, Table, TypedTable, TableFileNameAndAction, TableActions, TableWithOverflow, TextEditor, LeftCheckboxWithLabel, ActionsColumn, Tabs, Toast, ToastManager, Tooltip, TooltipManager, TopLoader, VideoItem, VideoPlayer, VideoModal, useCallbackedState, useCarouselBehaviour, useControlledTimer, useDraggableContainer, useHTMLShare, useDropOpened, useModalManager, useProgressiveCount, useScreenSize, useStorageState, useTimeElapsed, useToastManager, useValidatedState, AconteceuIcon, ChevronArrowRightIcon, FontIcon, PaymentIcon, AddCircleIcon, CircleArrowLeft, CopyIcon, QRCodeIcon, PrintIcon, FormacaoIcon, PercentLoaderIcon, AddIcon, AddAssemblyIcon, CircleArrowRight, FundacaoLogo, PieChartIcon, AlignCenterIcon, ClockIcon, CalendarCheckIcon, DevicePlusIcon, NotebookIcon, AgencyIcon, FundoSocialIcon, PlayIcon, AlignJustifyIcon, CloseIcon, GlobeIcon, QRCodeWhatsapp, AlignLeftIcon, CloudDownloadIcon, GraduationIcon, RedoIcon, AlignRightIcon, CloudUploadIcon, HamburgerIcon, RefreshIcon, ArrowLeftIcon, ComitesIcon, HandUpIcon, SearchIcon, ArrowRightIcon, ComunidadeIcon, HomeIcon, SettingsIcon, AssembleiasIcon, CreditIcon, InformationIcon, SicrediLogo, ATMIcon, CrescerIcon, InvestimentIcon, SquaresIcon, BackOfficeIcon, CrescerLogo, ItalicIcon, SustentabilidadeIcon, BarChartIcon, DownloadIcon, LinkIcon, ThreeDotsLoader, BeeIcon, DraggableIcon, LinksUteisIcon, ThumbsUpIcon, BigPlayIcon, EditIcon, ListDotIcon, TimesCircleIcon, BoldIcon, EvidenciasIcon, ListIcon, TransferenciaIcon, CalendarIcon, ExclamationIcon, LoaderIcon, TrashIcon, CardsIcon, ExitIconArrowLeft, LocalIcon, TrianguloInferior, CataventoVerde, ExitIconArrowRight, LockIcon, TwoFileIcon, CheckCircleIcon, EyeIcon, MessageIcon, UnderlineIcon, CheckIcon, FilePlusIcon, MoneyFileIcon, UndoIcon, ChequeIcon, FilesIcon, NavigatorWithMouse, UserIcon, ChevronArrowDownIcon, FilterIcon, OptionsIcon, WebsiteIcon, ChevronArrowLeftIcon, FontColorIcon, ParticipantesIcon, };
|