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.
- package/dist/components/carouselTouchFrendly/CarouselTouchFrendly.d.ts +1 -0
- package/dist/components/input/Input.d.ts +0 -5
- package/dist/components/itemDropdownDownload/ItemDropdownDownload.d.ts +23 -23
- package/dist/components/itemDropdownDownload/ItemDropdownDownload.stories.d.ts +1 -11
- package/dist/hooks/useCallbackedState/useCallbackedState.stories.d.ts +8 -0
- package/dist/hooks/useControlledTimer/useControlledTimer.d.ts +6 -0
- package/dist/hooks/useControlledTimer/useControlledTimer.stories.d.ts +8 -0
- package/dist/hooks/useDropOpened/useDropOpened.d.ts +1 -0
- package/dist/hooks/useProgressiveCount/useProgressiveCount.stories.d.ts +8 -0
- package/dist/hooks/useTimeElapsed/useTimeElapsed.stories.d.ts +8 -0
- package/dist/hooks/useValidatedState/useValidatedState.stories.d.ts +8 -0
- package/dist/index.css +153 -147
- package/dist/index.d.ts +3 -1
- package/dist/index.js +167 -70
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +166 -71
- package/dist/index.modern.js.map +1 -1
- package/package.json +8 -9
|
@@ -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
|
-
|
|
2
|
-
|
|
3
|
-
declare
|
|
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
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
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
|
-
|
|
25
|
-
|
|
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(
|
|
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 @@
|
|
|
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;
|
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
|
-
.
|
|
11460
|
-
|
|
11461
|
-
width:
|
|
11462
|
-
|
|
11463
|
-
|
|
11464
|
-
|
|
11465
|
-
|
|
11466
|
-
|
|
11467
|
-
|
|
11468
|
-
|
|
11469
|
-
|
|
11470
|
-
|
|
11471
|
-
|
|
11472
|
-
|
|
11473
|
-
|
|
11474
|
-
|
|
11475
|
-
|
|
11476
|
-
|
|
11477
|
-
|
|
11478
|
-
|
|
11479
|
-
|
|
11480
|
-
|
|
11481
|
-
|
|
11482
|
-
|
|
11483
|
-
|
|
11484
|
-
|
|
11485
|
-
|
|
11486
|
-
|
|
11487
|
-
|
|
11488
|
-
|
|
11489
|
-
|
|
11490
|
-
|
|
11491
|
-
|
|
11492
|
-
|
|
11493
|
-
|
|
11494
|
-
|
|
11495
|
-
|
|
11496
|
-
|
|
11497
|
-
|
|
11498
|
-
|
|
11499
|
-
|
|
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
|
-
.
|
|
11692
|
-
|
|
11693
|
-
width:
|
|
11694
|
-
|
|
11695
|
-
|
|
11696
|
-
|
|
11697
|
-
|
|
11698
|
-
|
|
11699
|
-
|
|
11700
|
-
|
|
11701
|
-
|
|
11702
|
-
|
|
11703
|
-
|
|
11704
|
-
|
|
11705
|
-
|
|
11706
|
-
|
|
11707
|
-
|
|
11708
|
-
|
|
11709
|
-
|
|
11710
|
-
|
|
11711
|
-
|
|
11712
|
-
|
|
11713
|
-
|
|
11714
|
-
|
|
11715
|
-
|
|
11716
|
-
|
|
11717
|
-
.
|
|
11718
|
-
|
|
11719
|
-
|
|
11720
|
-
|
|
11721
|
-
|
|
11722
|
-
|
|
11723
|
-
|
|
11724
|
-
|
|
11725
|
-
|
|
11726
|
-
|
|
11727
|
-
|
|
11728
|
-
|
|
11729
|
-
|
|
11730
|
-
|
|
11731
|
-
|
|
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:
|
|
11923
|
-
width:
|
|
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,
|
|
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 };
|