plataforma-fundacao-componentes 2.23.12 → 2.23.14

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.
@@ -2,5 +2,5 @@
2
2
  interface BigPlayIconProps {
3
3
  hideBackground?: boolean;
4
4
  }
5
- export default function BigPlayIcon(props: BigPlayIconProps): JSX.Element;
5
+ export declare const BigPlayIcon: (props: BigPlayIconProps) => JSX.Element;
6
6
  export {};
@@ -1,6 +1,4 @@
1
- import { Component } from 'react';
1
+ /// <reference types="react" />
2
2
  import './CataventoVerde.scss';
3
- declare class CataventoVerde extends Component {
4
- render(): JSX.Element;
5
- }
3
+ export declare const CataventoVerde: () => JSX.Element;
6
4
  export default CataventoVerde;
@@ -1,6 +1,6 @@
1
1
  /// <reference types="react" />
2
2
  import './LoaderIcon.scss';
3
- declare const LoaderIcon: {
3
+ export declare const LoaderIcon: {
4
4
  (props: {
5
5
  height?: string | number;
6
6
  }): JSX.Element;
@@ -5,13 +5,5 @@ interface QRCodeWhatsappProps {
5
5
  logoBackground?: string;
6
6
  logoColor?: string;
7
7
  }
8
- declare function QRCodeWhatsapp(props: QRCodeWhatsappProps): JSX.Element;
9
- declare namespace QRCodeWhatsapp {
10
- var defaultProps: {
11
- background: string;
12
- color: string;
13
- logoBackground: string;
14
- logoColor: string;
15
- };
16
- }
17
- export default QRCodeWhatsapp;
8
+ export declare const QRCodeWhatsapp: (props: QRCodeWhatsappProps) => JSX.Element;
9
+ export {};
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ import './Icon.scss';
3
+ export declare const Teste: () => JSX.Element;
@@ -5,6 +5,7 @@ interface EtiquetaProps {
5
5
  theme?: EtiquetasStyle;
6
6
  label?: string | number;
7
7
  icon?: React.ReactNode;
8
+ fitContent?: boolean;
8
9
  }
9
10
  declare function Etiqueta(props: EtiquetaProps): JSX.Element;
10
11
  declare namespace Etiqueta {
@@ -6,3 +6,4 @@ export default _default;
6
6
  export declare const Primary: () => JSX.Element;
7
7
  export declare const UpperHeader: () => JSX.Element;
8
8
  export declare const UpperHeaderWithColumnFilter: () => JSX.Element;
9
+ export declare const CollapseExample: () => JSX.Element;
@@ -0,0 +1,5 @@
1
+ import React from 'react';
2
+ import './styles.scss';
3
+ declare function Colors(): JSX.Element;
4
+ declare const _default: React.MemoExoticComponent<typeof Colors>;
5
+ export default _default;
@@ -0,0 +1,6 @@
1
+ /// <reference types="react" />
2
+ interface IProps {
3
+ icon: string;
4
+ }
5
+ declare const DynamicIcons: (props: IProps) => JSX.Element;
6
+ export default DynamicIcons;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ declare function Icones(): JSX.Element;
3
+ declare const _default: React.MemoExoticComponent<typeof Icones>;
4
+ export default _default;