plataforma-fundacao-componentes 2.23.5 → 2.23.8

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.
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ import './Icon.scss';
3
+ export declare const AddAssemblyIcon: () => JSX.Element;
@@ -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,6 +8497,7 @@ 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
8502
  .component-dropdown-item:not(:disabled) {
8501
8503
  cursor: pointer; }
@@ -8503,23 +8505,58 @@ h5 {
8503
8505
  background-color: #f3f3f3; }
8504
8506
  .component-dropdown-item:disabled {
8505
8507
  color: #cdd3cd; }
8506
- .component-dropdown-item.align-right {
8507
- justify-content: flex-end; }
8508
- .component-dropdown-item .component-dropdown-item-icon {
8508
+ .component-dropdown-item:disabled .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
- margin-right: 10px;
8512
- margin-left: unset; }
8513
- .component-dropdown-item .component-dropdown-item-icon.right {
8514
- margin-right: unset;
8515
- margin-left: 10px; }
8516
- .component-dropdown-item .component-dropdown-item-icon svg {
8517
- height: 20px;
8518
- width: 20px; }
8519
- .component-dropdown-item .component-dropdown-item-label {
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
- font-size: 15px; }
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 {
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 {
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");
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';
@@ -196,6 +197,7 @@ import useTimeElapsed from './hooks/useTimeElapsed/useTimeElapsed';
196
197
  import useToastManager from './hooks/useToastManager/useToastManager';
197
198
  import useValidatedState from './hooks/useValidatedState/useValidatedState';
198
199
  import VideoPlayer from './components/videoPlayer/VideoPlayer';
200
+ import useHTMLShare from './hooks/useHTMLShare/useHTMLShare';
199
201
  export * from './components/modal/ModalTypes';
200
202
  export * from './libraries/ActionCardThemes';
201
203
  export * from './libraries/BlobFileTypes';
@@ -218,4 +220,4 @@ export { Accordion, ActionCard, AdvancedSemiHeader, AssembleiaItem, AssembleiaPa
218
220
  /**
219
221
  * @deprecated
220
222
  */
221
- 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, 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, };