plataforma-fundacao-componentes 2.21.2 → 2.21.5

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.
@@ -3,6 +3,6 @@ import './Banner.scss';
3
3
  export interface BannerProps {
4
4
  imgUrl: string;
5
5
  text: string;
6
- onClick: () => void;
6
+ onClick?: () => void;
7
7
  }
8
8
  export default function Banner(props: BannerProps): JSX.Element;
@@ -4,15 +4,10 @@ import './Input.scss';
4
4
  export interface InputProps extends InputHTMLAttributes<HTMLInputElement> {
5
5
  'tooltip-position'?: TooltipPositionTypes;
6
6
  'tooltip-text'?: string;
7
- onChange?: (event: React.ChangeEvent<HTMLInputElement>) => void;
8
- value?: string | number;
9
7
  loading?: boolean;
10
- disabled?: boolean;
11
8
  error?: boolean;
12
9
  helperText?: string;
13
10
  label?: string;
14
- placeholder?: string;
15
- type?: string;
16
11
  counter?: boolean;
17
12
  maxLength?: number;
18
13
  rightObject?: React.ReactNode;
@@ -1,25 +1,25 @@
1
- declare var _default: React.MemoExoticComponent<typeof ItemDropdownDownload>;
2
- export default _default;
3
- declare function ItemDropdownDownload(props: any): JSX.Element;
1
+ import React, { ButtonHTMLAttributes } from 'react';
2
+ import './ItemDropdownDownload.scss';
3
+ export declare type DownloadItem = {
4
+ id?: string;
5
+ label: string;
6
+ loading?: boolean;
7
+ onClick: (evt: React.MouseEvent<HTMLButtonElement>) => void;
8
+ };
9
+ export interface ItemDropdownDownloadProps extends ButtonHTMLAttributes<HTMLButtonElement> {
10
+ label: string;
11
+ opened: boolean;
12
+ setOpened: (val: boolean) => void;
13
+ closeOnOutClick: boolean;
14
+ closeOnEsc: boolean;
15
+ downloads: DownloadItem[];
16
+ }
17
+ declare function ItemDropdownDownload(props: ItemDropdownDownloadProps): JSX.Element;
4
18
  declare namespace ItemDropdownDownload {
5
- export namespace propTypes {
6
- export const label: PropTypes.Requireable<string>;
7
- export const opened: PropTypes.Requireable<boolean>;
8
- export const setOpened: PropTypes.Requireable<(...args: any[]) => any>;
9
- export const closeOnOutClick: PropTypes.Requireable<boolean>;
10
- export const closeOnEsc: PropTypes.Requireable<boolean>;
11
- export const downloads: PropTypes.Requireable<(PropTypes.InferProps<{
12
- label: PropTypes.Requireable<string>;
13
- loading: PropTypes.Requireable<boolean>;
14
- onClick: PropTypes.Requireable<(...args: any[]) => any>;
15
- }> | null | undefined)[]>;
16
- }
17
- export namespace defaultProps {
18
- const closeOnOutClick_1: boolean;
19
- export { closeOnOutClick_1 as closeOnOutClick };
20
- const closeOnEsc_1: boolean;
21
- export { closeOnEsc_1 as closeOnEsc };
22
- }
19
+ var defaultProps: {
20
+ closeOnOutClick: boolean;
21
+ closeOnEsc: boolean;
22
+ };
23
23
  }
24
- import React from "react";
25
- import PropTypes from "prop-types";
24
+ declare const _default: React.MemoExoticComponent<typeof ItemDropdownDownload>;
25
+ export default _default;
@@ -3,15 +3,5 @@ declare namespace _default {
3
3
  export { ItemDropdownDownload as component };
4
4
  }
5
5
  export default _default;
6
- export function FirstExample(args: any): JSX.Element;
7
- export namespace FirstExample {
8
- export namespace args {
9
- export const label: string;
10
- export const downloads: {
11
- label: string;
12
- loading: boolean;
13
- onClick: () => void;
14
- }[];
15
- }
16
- }
6
+ export function FirstExample(): JSX.Element;
17
7
  import ItemDropdownDownload from "./ItemDropdownDownload";
@@ -3,7 +3,7 @@ import './ModulosTitle.scss';
3
3
  interface ModulosTitleProps {
4
4
  children: any;
5
5
  showBackButton?: boolean;
6
- onBackClick: (event?: any) => void;
6
+ onBackClick?: (event?: any) => void;
7
7
  }
8
8
  declare function ModulosTitle(props: ModulosTitleProps): JSX.Element;
9
9
  declare namespace ModulosTitle {
@@ -0,0 +1,8 @@
1
+ /// <reference types="react" />
2
+ import useCallbackedState from './useCallbackedState';
3
+ declare const _default: {
4
+ title: string;
5
+ component: typeof useCallbackedState;
6
+ };
7
+ export default _default;
8
+ export declare const Callbacked: () => JSX.Element;
@@ -0,0 +1,6 @@
1
+ interface useControlledTimerProps {
2
+ timeout: number;
3
+ callbackTrigger: () => void;
4
+ }
5
+ export default function useControlledTimer(props: useControlledTimerProps): void;
6
+ export {};
@@ -0,0 +1 @@
1
+ export default function useDropOpened<R>(initialState?: R | undefined): [R | undefined, (reference: R, value: boolean) => void];
@@ -0,0 +1,8 @@
1
+ /// <reference types="react" />
2
+ import useProgressiveCount from './useProgressiveCount';
3
+ declare const _default: {
4
+ title: string;
5
+ component: typeof useProgressiveCount;
6
+ };
7
+ export default _default;
8
+ export declare const ProgressiveCount: () => JSX.Element;
@@ -0,0 +1,8 @@
1
+ /// <reference types="react" />
2
+ import useTimeElapsed from './useTimeElapsed';
3
+ declare const _default: {
4
+ title: string;
5
+ component: typeof useTimeElapsed;
6
+ };
7
+ export default _default;
8
+ export declare const ElapsedWithCallback: () => JSX.Element;
@@ -0,0 +1,8 @@
1
+ /// <reference types="react" />
2
+ import useValidatedState from './useValidatedState';
3
+ declare const _default: {
4
+ title: string;
5
+ component: typeof useValidatedState;
6
+ };
7
+ export default _default;
8
+ export declare const Validate: () => JSX.Element;
package/dist/index.css CHANGED
@@ -11456,110 +11456,47 @@ h5 {
11456
11456
  .scroll-white::-webkit-scrollbar-thumb:hover {
11457
11457
  background-color: #bfc7bf; }
11458
11458
 
11459
- .component-item-dropdown-download-outer {
11460
- position: relative;
11461
- width: 100%; }
11462
- .component-item-dropdown-download-outer .component-item-dropdown-download {
11463
- background-color: #fefefe;
11464
- height: 44px;
11465
- border-radius: 8px;
11466
- display: flex;
11467
- align-items: center;
11468
- justify-content: space-between;
11469
- padding: 8px 16px;
11470
- width: 100%;
11471
- cursor: pointer;
11472
- outline: none;
11473
- border: none; }
11474
- .component-item-dropdown-download-outer .component-item-dropdown-download .component-item-dropdown-download-label {
11475
- -webkit-user-select: none;
11476
- -moz-user-select: none;
11477
- -ms-user-select: none;
11478
- user-select: none;
11479
- font-size: 16px;
11480
- font-weight: 600;
11481
- color: #323c32;
11482
- max-width: calc(100% - 30px);
11483
- overflow: hidden;
11484
- text-overflow: ellipsis; }
11485
- .component-item-dropdown-download-outer .component-item-dropdown-download .component-item-dropdown-download-arrow {
11486
- display: flex;
11487
- align-items: center;
11488
- justify-content: center;
11489
- color: #3fa110;
11490
- transition: 0.3s ease;
11491
- padding: 4px 0 0 0;
11492
- background-color: rgba(0, 0, 0, 0); }
11493
- .component-item-dropdown-download-outer .component-item-dropdown-download .component-item-dropdown-download-arrow.up {
11494
- transform: rotateZ(180deg); }
11495
- .component-item-dropdown-download-outer .component-item-dropdown-download-panel {
11496
- width: 100%;
11497
- box-shadow: 0 1px 2px 0 rgba(90, 100, 90, 0.3);
11498
- border-radius: 8px;
11499
- padding: 8px 0;
11500
- margin-top: 6px;
11501
- background-color: #fefefe; }
11502
- .component-item-dropdown-download-outer .component-item-dropdown-download-panel .component-item-dropdown-download-item {
11503
- -webkit-appearance: none;
11504
- width: 100%;
11505
- display: flex;
11506
- align-items: center;
11507
- justify-content: space-between;
11508
- -webkit-user-select: none;
11509
- -moz-user-select: none;
11510
- -ms-user-select: none;
11511
- user-select: none;
11512
- transition: background-color 0.3s ease;
11513
- cursor: pointer;
11514
- padding: 4px 14px;
11515
- border: none;
11516
- outline: none;
11517
- background-color: #fefefe; }
11518
- .component-item-dropdown-download-outer .component-item-dropdown-download-panel .component-item-dropdown-download-item:hover, .component-item-dropdown-download-outer .component-item-dropdown-download-panel .component-item-dropdown-download-item:focus {
11519
- background-color: #f8f9f7; }
11520
- .component-item-dropdown-download-outer .component-item-dropdown-download-panel .component-item-dropdown-download-item .component-item-dropdown-download-item-label {
11521
- transform: scale(1);
11522
- display: flex;
11523
- align-items: center;
11524
- justify-content: flex-start;
11525
- transition: transform 0.3s ease;
11526
- font-size: 16px;
11527
- padding-bottom: 2px;
11528
- text-align: left;
11529
- transform-origin: right center; }
11530
- .component-item-dropdown-download-outer .component-item-dropdown-download-panel .component-item-dropdown-download-item .component-item-dropdown-download-download-icon {
11531
- transition: transform 0.3s ease;
11532
- color: #3fa110;
11533
- display: flex;
11534
- align-items: center;
11535
- justify-content: center;
11536
- transform-origin: left center; }
11537
- .component-item-dropdown-download-outer .component-item-dropdown-download-panel .component-item-dropdown-download-item .component-item-dropdown-download-download-icon svg {
11538
- width: 24px;
11539
- height: 24px; }
11540
- .component-item-dropdown-download-outer .component-item-dropdown-download-panel .component-item-dropdown-download-item:active .component-item-dropdown-download-download-icon,
11541
- .component-item-dropdown-download-outer .component-item-dropdown-download-panel .component-item-dropdown-download-item:active .component-item-dropdown-download-item-label {
11542
- transform: scale(0.9); }
11543
- .component-item-dropdown-download-outer .component-item-dropdown-download-panel.panel-fade-enter {
11544
- transition: transform 0.3s ease, opacity 0.3s ease;
11545
- transform: translateY(10px);
11546
- opacity: 0; }
11547
- .component-item-dropdown-download-outer .component-item-dropdown-download-panel.panel-fade-enter-active {
11548
- opacity: 1;
11549
- transform: translateY(0); }
11550
- .component-item-dropdown-download-outer .component-item-dropdown-download-panel.panel-fade-enter-done {
11551
- opacity: 1;
11552
- transform: translateY(0); }
11553
- .component-item-dropdown-download-outer .component-item-dropdown-download-panel.panel-fade-exit {
11554
- transition: transform 0.3s ease, opacity 0.3s ease;
11555
- opacity: 1;
11556
- transform: translateY(0); }
11557
- .component-item-dropdown-download-outer .component-item-dropdown-download-panel.panel-fade-exit-active {
11558
- transform: translateY(10px);
11559
- opacity: 0; }
11560
- .component-item-dropdown-download-outer .component-item-dropdown-download-panel.panel-fade-exit-done {
11561
- transform: translateY(10px);
11562
- opacity: 0; }
11459
+ .percent-loader-icon {
11460
+ fill: currentColor;
11461
+ width: 1em;
11462
+ height: 1em;
11463
+ display: inline-block;
11464
+ font-size: 1.5rem;
11465
+ flex-shrink: 0;
11466
+ -webkit-user-select: none;
11467
+ -moz-user-select: none;
11468
+ -ms-user-select: none;
11469
+ user-select: none;
11470
+ fill: none;
11471
+ stroke-width: 6;
11472
+ transform: rotateZ(-90deg); }
11473
+ .percent-loader-icon circle:first-of-type {
11474
+ stroke: #cdd3cd; }
11475
+ .percent-loader-icon circle:last-of-type {
11476
+ stroke-linecap: round;
11477
+ stroke-dasharray: 264;
11478
+ transition: stroke-dashoffset 0.3s ease, stroke-dasharray 0.3s ease; }
11479
+ .percent-loader-icon path {
11480
+ stroke-linecap: round;
11481
+ stroke-linejoin: round;
11482
+ transform: translate(390px, -676px) rotateZ(90deg);
11483
+ transition: stroke-dashoffset 0.3s ease, stroke-dasharray 0.3s ease; }
11484
+
11485
+ .percent-loader-icon.indefinido {
11486
+ -webkit-animation: spinNoventa 0.6s linear infinite;
11487
+ animation: spinNoventa 0.6s linear infinite; }
11488
+
11489
+ @-webkit-keyframes spinNoventa {
11490
+ 0% {
11491
+ transform: rotateZ(-90deg); }
11492
+ 100% {
11493
+ transform: rotateZ(270deg); } }
11494
+
11495
+ @keyframes spinNoventa {
11496
+ 0% {
11497
+ transform: rotateZ(-90deg); }
11498
+ 100% {
11499
+ transform: rotateZ(270deg); } }
11563
11500
 
11564
11501
  @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");
11565
11502
  @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");
@@ -11688,47 +11625,112 @@ h5 {
11688
11625
  .scroll-white::-webkit-scrollbar-thumb:hover {
11689
11626
  background-color: #bfc7bf; }
11690
11627
 
11691
- .percent-loader-icon {
11692
- fill: currentColor;
11693
- width: 1em;
11694
- height: 1em;
11695
- display: inline-block;
11696
- font-size: 1.5rem;
11697
- flex-shrink: 0;
11698
- -webkit-user-select: none;
11699
- -moz-user-select: none;
11700
- -ms-user-select: none;
11701
- user-select: none;
11702
- fill: none;
11703
- stroke-width: 6;
11704
- transform: rotateZ(-90deg); }
11705
- .percent-loader-icon circle:first-of-type {
11706
- stroke: #cdd3cd; }
11707
- .percent-loader-icon circle:last-of-type {
11708
- stroke-linecap: round;
11709
- stroke-dasharray: 264;
11710
- transition: stroke-dashoffset 0.3s ease, stroke-dasharray 0.3s ease; }
11711
- .percent-loader-icon path {
11712
- stroke-linecap: round;
11713
- stroke-linejoin: round;
11714
- transform: translate(390px, -676px) rotateZ(90deg);
11715
- transition: stroke-dashoffset 0.3s ease, stroke-dasharray 0.3s ease; }
11716
-
11717
- .percent-loader-icon.indefinido {
11718
- -webkit-animation: spinNoventa 0.6s linear infinite;
11719
- animation: spinNoventa 0.6s linear infinite; }
11720
-
11721
- @-webkit-keyframes spinNoventa {
11722
- 0% {
11723
- transform: rotateZ(-90deg); }
11724
- 100% {
11725
- transform: rotateZ(270deg); } }
11726
-
11727
- @keyframes spinNoventa {
11728
- 0% {
11729
- transform: rotateZ(-90deg); }
11730
- 100% {
11731
- transform: rotateZ(270deg); } }
11628
+ .component-item-dropdown-download-outer {
11629
+ position: relative;
11630
+ width: 100%; }
11631
+ .component-item-dropdown-download-outer .component-item-dropdown-download {
11632
+ background-color: #fefefe;
11633
+ height: 44px;
11634
+ border-radius: 8px;
11635
+ display: flex;
11636
+ align-items: center;
11637
+ justify-content: space-between;
11638
+ padding: 8px 16px;
11639
+ width: 100%;
11640
+ cursor: pointer;
11641
+ outline: none;
11642
+ border: none; }
11643
+ .component-item-dropdown-download-outer .component-item-dropdown-download .component-item-dropdown-download-label {
11644
+ -webkit-user-select: none;
11645
+ -moz-user-select: none;
11646
+ -ms-user-select: none;
11647
+ user-select: none;
11648
+ font-size: 16px;
11649
+ font-weight: 600;
11650
+ color: #323c32;
11651
+ max-width: calc(100% - 30px);
11652
+ overflow: hidden;
11653
+ text-overflow: ellipsis; }
11654
+ .component-item-dropdown-download-outer .component-item-dropdown-download .component-item-dropdown-download-arrow {
11655
+ display: flex;
11656
+ align-items: center;
11657
+ justify-content: center;
11658
+ color: #3fa110;
11659
+ transition: 0.3s ease;
11660
+ padding: 4px 0 0 0;
11661
+ background-color: rgba(0, 0, 0, 0); }
11662
+ .component-item-dropdown-download-outer .component-item-dropdown-download .component-item-dropdown-download-arrow.up {
11663
+ transform: rotateZ(180deg); }
11664
+ .component-item-dropdown-download-outer .component-item-dropdown-download-panel {
11665
+ width: 100%;
11666
+ box-shadow: 0 1px 2px 0 rgba(90, 100, 90, 0.3);
11667
+ border-radius: 8px;
11668
+ padding: 8px 0;
11669
+ margin-top: 6px;
11670
+ background-color: #fefefe;
11671
+ position: absolute;
11672
+ z-index: 987; }
11673
+ .component-item-dropdown-download-outer .component-item-dropdown-download-panel .component-item-dropdown-download-item {
11674
+ -webkit-appearance: none;
11675
+ width: 100%;
11676
+ display: flex;
11677
+ align-items: center;
11678
+ justify-content: space-between;
11679
+ -webkit-user-select: none;
11680
+ -moz-user-select: none;
11681
+ -ms-user-select: none;
11682
+ user-select: none;
11683
+ transition: background-color 0.3s ease;
11684
+ cursor: pointer;
11685
+ padding: 4px 14px;
11686
+ border: none;
11687
+ outline: none;
11688
+ background-color: #fefefe; }
11689
+ .component-item-dropdown-download-outer .component-item-dropdown-download-panel .component-item-dropdown-download-item:hover, .component-item-dropdown-download-outer .component-item-dropdown-download-panel .component-item-dropdown-download-item:focus {
11690
+ background-color: #f8f9f7; }
11691
+ .component-item-dropdown-download-outer .component-item-dropdown-download-panel .component-item-dropdown-download-item .component-item-dropdown-download-item-label {
11692
+ transform: scale(1);
11693
+ display: flex;
11694
+ align-items: center;
11695
+ justify-content: flex-start;
11696
+ transition: transform 0.3s ease;
11697
+ font-size: 16px;
11698
+ padding-bottom: 2px;
11699
+ text-align: left;
11700
+ transform-origin: right center; }
11701
+ .component-item-dropdown-download-outer .component-item-dropdown-download-panel .component-item-dropdown-download-item .component-item-dropdown-download-download-icon {
11702
+ transition: transform 0.3s ease;
11703
+ color: #3fa110;
11704
+ display: flex;
11705
+ align-items: center;
11706
+ justify-content: center;
11707
+ transform-origin: left center; }
11708
+ .component-item-dropdown-download-outer .component-item-dropdown-download-panel .component-item-dropdown-download-item .component-item-dropdown-download-download-icon svg {
11709
+ width: 24px;
11710
+ height: 24px; }
11711
+ .component-item-dropdown-download-outer .component-item-dropdown-download-panel .component-item-dropdown-download-item:active .component-item-dropdown-download-download-icon,
11712
+ .component-item-dropdown-download-outer .component-item-dropdown-download-panel .component-item-dropdown-download-item:active .component-item-dropdown-download-item-label {
11713
+ transform: scale(0.9); }
11714
+ .component-item-dropdown-download-outer .component-item-dropdown-download-panel.panel-fade-enter {
11715
+ transition: transform 0.3s ease, opacity 0.3s ease;
11716
+ transform: translateY(10px);
11717
+ opacity: 0; }
11718
+ .component-item-dropdown-download-outer .component-item-dropdown-download-panel.panel-fade-enter-active {
11719
+ opacity: 1;
11720
+ transform: translateY(0); }
11721
+ .component-item-dropdown-download-outer .component-item-dropdown-download-panel.panel-fade-enter-done {
11722
+ opacity: 1;
11723
+ transform: translateY(0); }
11724
+ .component-item-dropdown-download-outer .component-item-dropdown-download-panel.panel-fade-exit {
11725
+ transition: transform 0.3s ease, opacity 0.3s ease;
11726
+ opacity: 1;
11727
+ transform: translateY(0); }
11728
+ .component-item-dropdown-download-outer .component-item-dropdown-download-panel.panel-fade-exit-active {
11729
+ transform: translateY(10px);
11730
+ opacity: 0; }
11731
+ .component-item-dropdown-download-outer .component-item-dropdown-download-panel.panel-fade-exit-done {
11732
+ transform: translateY(10px);
11733
+ opacity: 0; }
11732
11734
 
11733
11735
  @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");
11734
11736
  @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");
@@ -11919,8 +11921,8 @@ h5 {
11919
11921
  .component-menu-item-sub-item .component-menu-item-sub-item-icon,
11920
11922
  .component-menu-item-sub-item .component-menu-item-icon {
11921
11923
  transition: color 0.3s ease;
11922
- min-width: 54px;
11923
- width: 54px;
11924
+ min-width: 46px;
11925
+ width: 46px;
11924
11926
  color: #323c32;
11925
11927
  display: flex;
11926
11928
  justify-content: center;
@@ -16866,6 +16868,8 @@ h5 {
16866
16868
  height: 8px;
16867
16869
  width: 100%;
16868
16870
  background-color: rgba(255, 255, 255, 0.1); }
16871
+ .component-toast .component-toast-bar.hide {
16872
+ opacity: 0; }
16869
16873
  .component-toast .component-toast-bar .component-toast-fill {
16870
16874
  position: absolute;
16871
16875
  bottom: 0;
package/dist/index.d.ts CHANGED
@@ -82,6 +82,7 @@ import VideoPlayer from './components/videoPlayer/VideoPlayer';
82
82
  import useCallbackedState from './hooks/useCallbackedState/useCallbackedState';
83
83
  import useCarouselBehaviour from './hooks/useCarouselBehaviour/useCarouselBehaviour';
84
84
  import useDraggableContainer from './hooks/useDraggableContainer/useDraggableContainer';
85
+ import useDropOpened from './hooks/useDropOpened/useDropOpened';
85
86
  import useModalManager from './hooks/useModalManager/useModalManager';
86
87
  import useProgressiveCount from './hooks/useProgressiveCount/useProgressiveCount';
87
88
  import useTimeElapsed from './hooks/useTimeElapsed/useTimeElapsed';
@@ -102,4 +103,4 @@ export * from './libraries/RadioButtonTheme';
102
103
  export * from './libraries/SicrediLogoThemes';
103
104
  export * from './libraries/Toast';
104
105
  export * from './libraries/Tooltips';
105
- export { Accordion, AdvancedSemiHeader, AssembleiaItem, AssembleiaPauta, Aconteceu, AnimatedLink, Banner, BannerAssembleia, BannerPesquisaCpfCnpj, BigBlockButton, BlocoDeNotas, BreadCrumb, Button, ButtonFileUpload, BlocoMinhasAssembleias, BottomNavigation, Card, Carousel, CarouselPersona, CarouselTouchFrendly, Checkbox, Col, Collapse, Container, DatePicker, Doughnut, DoughnutSquare, DropdownItem, DropdownMenu, EditableVideoItem, ElementPaginator, Etapas, Etiqueta, FileLoader, FileUpload, FooterSicredi, FullHeightContainer, Header, HeaderSeparator, HeaderSearchField, IconButton, IconButtonWithLabel, Information, Input, InputArea, ItemDropdownDownload, InformativoAssembleiasComImagem, InformativoAssembleiasComVideo, Menu, MenuItem, Modal, ModalManager, ModulosTitle, MoneyByMonth, MoneyMonthLineChart, NotaEdit, Notification, PageSubTitle, PageTitle, Paginator, PreviaVideo, ProgressBar, RadioButton, Row, SearchBlocoDeNotas, Select, Switch, Table, TypedTable, TableFileNameAndAction, TableActions, TableWithOverflow, TextEditor, LeftCheckboxWithLabel, ActionsColumn, Toast, ToastManager, Tooltip, TooltipManager, TopLoader, VideoItem, VideoPlayer, VideoModal, useProgressiveCount, useCarouselBehaviour, useDraggableContainer, useTimeElapsed, useModalManager, useToastManager, useCallbackedState, useValidatedState };
106
+ export { Accordion, AdvancedSemiHeader, AssembleiaItem, AssembleiaPauta, Aconteceu, AnimatedLink, Banner, BannerAssembleia, BannerPesquisaCpfCnpj, BigBlockButton, BlocoDeNotas, BreadCrumb, Button, ButtonFileUpload, BlocoMinhasAssembleias, BottomNavigation, Card, Carousel, CarouselPersona, CarouselTouchFrendly, Checkbox, Col, Collapse, Container, DatePicker, Doughnut, DoughnutSquare, DropdownItem, DropdownMenu, EditableVideoItem, ElementPaginator, Etapas, Etiqueta, FileLoader, FileUpload, FooterSicredi, FullHeightContainer, Header, HeaderSeparator, HeaderSearchField, IconButton, IconButtonWithLabel, Information, Input, InputArea, ItemDropdownDownload, InformativoAssembleiasComImagem, InformativoAssembleiasComVideo, Menu, MenuItem, Modal, ModalManager, ModulosTitle, MoneyByMonth, MoneyMonthLineChart, NotaEdit, Notification, PageSubTitle, PageTitle, Paginator, PreviaVideo, ProgressBar, RadioButton, Row, SearchBlocoDeNotas, Select, Switch, Table, TypedTable, TableFileNameAndAction, TableActions, TableWithOverflow, TextEditor, LeftCheckboxWithLabel, ActionsColumn, Toast, ToastManager, Tooltip, TooltipManager, TopLoader, VideoItem, VideoPlayer, VideoModal, useCallbackedState, useCarouselBehaviour, useDraggableContainer, useDropOpened, useModalManager, useProgressiveCount, useTimeElapsed, useToastManager, useValidatedState };