plataforma-fundacao-componentes 2.21.4 → 2.21.7

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,7 @@ import './CarouselTouchFrendly.scss';
3
3
  interface CarouselTouchFrendlyProps {
4
4
  className?: string;
5
5
  slides?: React.ReactNode[];
6
+ timeout?: number;
6
7
  }
7
8
  declare function CarouselTouchFrendly(props: CarouselTouchFrendlyProps): JSX.Element;
8
9
  declare const _default: React.MemoExoticComponent<typeof CarouselTouchFrendly>;
@@ -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";
@@ -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): (action: 'play' | 'pause' | 'restart' | 'stop') => void;
6
+ export {};
@@ -0,0 +1,8 @@
1
+ /// <reference types="react" />
2
+ import useControlledTimer from './useControlledTimer';
3
+ declare const _default: {
4
+ title: string;
5
+ component: typeof useControlledTimer;
6
+ };
7
+ export default _default;
8
+ export declare const FirstExample: () => JSX.Element;
@@ -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
@@ -2769,12 +2769,14 @@ h5 {
2769
2769
  margin: 0;
2770
2770
  width: 100%;
2771
2771
  height: 20vw;
2772
+ max-height: 320px;
2772
2773
  border-radius: 8px; }
2773
2774
  .component-banner.clickable {
2774
2775
  cursor: pointer; }
2775
2776
  @media screen and (max-width: 767.98px) {
2776
2777
  .component-banner {
2777
2778
  height: 80vw !important;
2779
+ max-height: 80vw;
2778
2780
  flex-direction: column; }
2779
2781
  .component-banner .component-banner-side {
2780
2782
  width: 100% !important; }
@@ -11456,110 +11458,47 @@ h5 {
11456
11458
  .scroll-white::-webkit-scrollbar-thumb:hover {
11457
11459
  background-color: #bfc7bf; }
11458
11460
 
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; }
11461
+ .percent-loader-icon {
11462
+ fill: currentColor;
11463
+ width: 1em;
11464
+ height: 1em;
11465
+ display: inline-block;
11466
+ font-size: 1.5rem;
11467
+ flex-shrink: 0;
11468
+ -webkit-user-select: none;
11469
+ -moz-user-select: none;
11470
+ -ms-user-select: none;
11471
+ user-select: none;
11472
+ fill: none;
11473
+ stroke-width: 6;
11474
+ transform: rotateZ(-90deg); }
11475
+ .percent-loader-icon circle:first-of-type {
11476
+ stroke: #cdd3cd; }
11477
+ .percent-loader-icon circle:last-of-type {
11478
+ stroke-linecap: round;
11479
+ stroke-dasharray: 264;
11480
+ transition: stroke-dashoffset 0.3s ease, stroke-dasharray 0.3s ease; }
11481
+ .percent-loader-icon path {
11482
+ stroke-linecap: round;
11483
+ stroke-linejoin: round;
11484
+ transform: translate(390px, -676px) rotateZ(90deg);
11485
+ transition: stroke-dashoffset 0.3s ease, stroke-dasharray 0.3s ease; }
11486
+
11487
+ .percent-loader-icon.indefinido {
11488
+ -webkit-animation: spinNoventa 0.6s linear infinite;
11489
+ animation: spinNoventa 0.6s linear infinite; }
11490
+
11491
+ @-webkit-keyframes spinNoventa {
11492
+ 0% {
11493
+ transform: rotateZ(-90deg); }
11494
+ 100% {
11495
+ transform: rotateZ(270deg); } }
11496
+
11497
+ @keyframes spinNoventa {
11498
+ 0% {
11499
+ transform: rotateZ(-90deg); }
11500
+ 100% {
11501
+ transform: rotateZ(270deg); } }
11563
11502
 
11564
11503
  @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
11504
  @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 +11627,112 @@ h5 {
11688
11627
  .scroll-white::-webkit-scrollbar-thumb:hover {
11689
11628
  background-color: #bfc7bf; }
11690
11629
 
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); } }
11630
+ .component-item-dropdown-download-outer {
11631
+ position: relative;
11632
+ width: 100%; }
11633
+ .component-item-dropdown-download-outer .component-item-dropdown-download {
11634
+ background-color: #fefefe;
11635
+ height: 44px;
11636
+ border-radius: 8px;
11637
+ display: flex;
11638
+ align-items: center;
11639
+ justify-content: space-between;
11640
+ padding: 8px 16px;
11641
+ width: 100%;
11642
+ cursor: pointer;
11643
+ outline: none;
11644
+ border: none; }
11645
+ .component-item-dropdown-download-outer .component-item-dropdown-download .component-item-dropdown-download-label {
11646
+ -webkit-user-select: none;
11647
+ -moz-user-select: none;
11648
+ -ms-user-select: none;
11649
+ user-select: none;
11650
+ font-size: 16px;
11651
+ font-weight: 600;
11652
+ color: #323c32;
11653
+ max-width: calc(100% - 30px);
11654
+ overflow: hidden;
11655
+ text-overflow: ellipsis; }
11656
+ .component-item-dropdown-download-outer .component-item-dropdown-download .component-item-dropdown-download-arrow {
11657
+ display: flex;
11658
+ align-items: center;
11659
+ justify-content: center;
11660
+ color: #3fa110;
11661
+ transition: 0.3s ease;
11662
+ padding: 4px 0 0 0;
11663
+ background-color: rgba(0, 0, 0, 0); }
11664
+ .component-item-dropdown-download-outer .component-item-dropdown-download .component-item-dropdown-download-arrow.up {
11665
+ transform: rotateZ(180deg); }
11666
+ .component-item-dropdown-download-outer .component-item-dropdown-download-panel {
11667
+ width: 100%;
11668
+ box-shadow: 0 1px 2px 0 rgba(90, 100, 90, 0.3);
11669
+ border-radius: 8px;
11670
+ padding: 8px 0;
11671
+ margin-top: 6px;
11672
+ background-color: #fefefe;
11673
+ position: absolute;
11674
+ z-index: 987; }
11675
+ .component-item-dropdown-download-outer .component-item-dropdown-download-panel .component-item-dropdown-download-item {
11676
+ -webkit-appearance: none;
11677
+ width: 100%;
11678
+ display: flex;
11679
+ align-items: center;
11680
+ justify-content: space-between;
11681
+ -webkit-user-select: none;
11682
+ -moz-user-select: none;
11683
+ -ms-user-select: none;
11684
+ user-select: none;
11685
+ transition: background-color 0.3s ease;
11686
+ cursor: pointer;
11687
+ padding: 4px 14px;
11688
+ border: none;
11689
+ outline: none;
11690
+ background-color: #fefefe; }
11691
+ .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 {
11692
+ background-color: #f8f9f7; }
11693
+ .component-item-dropdown-download-outer .component-item-dropdown-download-panel .component-item-dropdown-download-item .component-item-dropdown-download-item-label {
11694
+ transform: scale(1);
11695
+ display: flex;
11696
+ align-items: center;
11697
+ justify-content: flex-start;
11698
+ transition: transform 0.3s ease;
11699
+ font-size: 16px;
11700
+ padding-bottom: 2px;
11701
+ text-align: left;
11702
+ transform-origin: right center; }
11703
+ .component-item-dropdown-download-outer .component-item-dropdown-download-panel .component-item-dropdown-download-item .component-item-dropdown-download-download-icon {
11704
+ transition: transform 0.3s ease;
11705
+ color: #3fa110;
11706
+ display: flex;
11707
+ align-items: center;
11708
+ justify-content: center;
11709
+ transform-origin: left center; }
11710
+ .component-item-dropdown-download-outer .component-item-dropdown-download-panel .component-item-dropdown-download-item .component-item-dropdown-download-download-icon svg {
11711
+ width: 24px;
11712
+ height: 24px; }
11713
+ .component-item-dropdown-download-outer .component-item-dropdown-download-panel .component-item-dropdown-download-item:active .component-item-dropdown-download-download-icon,
11714
+ .component-item-dropdown-download-outer .component-item-dropdown-download-panel .component-item-dropdown-download-item:active .component-item-dropdown-download-item-label {
11715
+ transform: scale(0.9); }
11716
+ .component-item-dropdown-download-outer .component-item-dropdown-download-panel.panel-fade-enter {
11717
+ transition: transform 0.3s ease, opacity 0.3s ease;
11718
+ transform: translateY(10px);
11719
+ opacity: 0; }
11720
+ .component-item-dropdown-download-outer .component-item-dropdown-download-panel.panel-fade-enter-active {
11721
+ opacity: 1;
11722
+ transform: translateY(0); }
11723
+ .component-item-dropdown-download-outer .component-item-dropdown-download-panel.panel-fade-enter-done {
11724
+ opacity: 1;
11725
+ transform: translateY(0); }
11726
+ .component-item-dropdown-download-outer .component-item-dropdown-download-panel.panel-fade-exit {
11727
+ transition: transform 0.3s ease, opacity 0.3s ease;
11728
+ opacity: 1;
11729
+ transform: translateY(0); }
11730
+ .component-item-dropdown-download-outer .component-item-dropdown-download-panel.panel-fade-exit-active {
11731
+ transform: translateY(10px);
11732
+ opacity: 0; }
11733
+ .component-item-dropdown-download-outer .component-item-dropdown-download-panel.panel-fade-exit-done {
11734
+ transform: translateY(10px);
11735
+ opacity: 0; }
11732
11736
 
11733
11737
  @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
11738
  @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 +11923,8 @@ h5 {
11919
11923
  .component-menu-item-sub-item .component-menu-item-sub-item-icon,
11920
11924
  .component-menu-item-sub-item .component-menu-item-icon {
11921
11925
  transition: color 0.3s ease;
11922
- min-width: 54px;
11923
- width: 54px;
11926
+ min-width: 46px;
11927
+ width: 46px;
11924
11928
  color: #323c32;
11925
11929
  display: flex;
11926
11930
  justify-content: center;
@@ -16866,6 +16870,8 @@ h5 {
16866
16870
  height: 8px;
16867
16871
  width: 100%;
16868
16872
  background-color: rgba(255, 255, 255, 0.1); }
16873
+ .component-toast .component-toast-bar.hide {
16874
+ opacity: 0; }
16869
16875
  .component-toast .component-toast-bar .component-toast-fill {
16870
16876
  position: absolute;
16871
16877
  bottom: 0;
package/dist/index.d.ts CHANGED
@@ -81,7 +81,9 @@ import VideoModal from './components/videoModal/VideoModal';
81
81
  import VideoPlayer from './components/videoPlayer/VideoPlayer';
82
82
  import useCallbackedState from './hooks/useCallbackedState/useCallbackedState';
83
83
  import useCarouselBehaviour from './hooks/useCarouselBehaviour/useCarouselBehaviour';
84
+ import useControlledTimer from './hooks/useControlledTimer/useControlledTimer';
84
85
  import useDraggableContainer from './hooks/useDraggableContainer/useDraggableContainer';
86
+ import useDropOpened from './hooks/useDropOpened/useDropOpened';
85
87
  import useModalManager from './hooks/useModalManager/useModalManager';
86
88
  import useProgressiveCount from './hooks/useProgressiveCount/useProgressiveCount';
87
89
  import useTimeElapsed from './hooks/useTimeElapsed/useTimeElapsed';
@@ -102,4 +104,4 @@ export * from './libraries/RadioButtonTheme';
102
104
  export * from './libraries/SicrediLogoThemes';
103
105
  export * from './libraries/Toast';
104
106
  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 };
107
+ 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, useControlledTimer, useDraggableContainer, useDropOpened, useModalManager, useProgressiveCount, useTimeElapsed, useToastManager, useValidatedState };