plataforma-fundacao-componentes 2.23.13 → 2.23.15

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;
@@ -1,11 +1,5 @@
1
1
  import React from 'react';
2
2
  import './AssembleiaItem.scss';
3
- export declare enum AssembleiaModo {
4
- Presencial = 1,
5
- TabletDigital = 2,
6
- AgenciaDigital = 3,
7
- Digital = 4
8
- }
9
3
  interface AssembleiaItemProps {
10
4
  nomeCooperativa: string;
11
5
  presencial?: {
@@ -15,7 +9,7 @@ interface AssembleiaItemProps {
15
9
  };
16
10
  dataInicio?: string;
17
11
  dataTermino?: string;
18
- modo?: AssembleiaModo;
12
+ modo?: number;
19
13
  onClick?: (evt: any) => void;
20
14
  language: {
21
15
  dataInicio: string;
@@ -10,11 +10,13 @@ export interface CalendarProps {
10
10
  referencia?: Date;
11
11
  disabledNextMonth?: boolean;
12
12
  disabledPrevMonth?: boolean;
13
+ disabledPrevAddButton?: boolean;
13
14
  highlightWeekends?: boolean;
14
15
  showAddButton?: boolean;
15
16
  onAddButtonClick?: (day: Date, evt: MouseEvent<HTMLButtonElement | HTMLDivElement>) => void;
16
17
  showPlusIcon?: boolean;
17
18
  onPlusButtonClick?: (day: Date, evt: MouseEvent<HTMLButtonElement | HTMLDivElement>) => void;
19
+ onDateClick?: (day: Date, evt: MouseEvent<HTMLButtonElement | HTMLDivElement>) => void;
18
20
  }
19
21
  declare function Calendar(props: CalendarProps): JSX.Element;
20
22
  declare namespace Calendar {
@@ -13,9 +13,11 @@ interface CalendarDaysProps {
13
13
  highlightWeekends: boolean;
14
14
  loading: boolean;
15
15
  showAddButton?: boolean;
16
+ disabledPrevAddButton?: boolean;
16
17
  onAddButtonClick?: (day: Date, evt: MouseEvent<HTMLButtonElement | HTMLDivElement>) => void;
17
18
  showPlusIcon?: boolean;
18
19
  onPlusButtonClick?: (day: Date, evt: MouseEvent<HTMLButtonElement | HTMLDivElement>) => void;
20
+ onDateClick?: (day: Date, evt: MouseEvent<HTMLButtonElement | HTMLDivElement>) => void;
19
21
  }
20
22
  declare function CalendarDays(props: CalendarDaysProps): JSX.Element;
21
23
  declare const _default: React.MemoExoticComponent<typeof CalendarDays>;
@@ -7,11 +7,13 @@ export interface CalendarMonthDayProps {
7
7
  pocket?: boolean;
8
8
  isToday?: boolean;
9
9
  disabled?: boolean;
10
+ disabledPrevAddButton?: boolean;
10
11
  language: CalendarLanguage;
11
12
  eventos?: CalendarEventProps[];
12
13
  showAddButton?: boolean;
13
14
  onAddButtonClick?: (day: Date, evt: MouseEvent<HTMLButtonElement | HTMLDivElement>) => void;
14
15
  onPlusButtonClick?: (day: Date, evt: MouseEvent<HTMLButtonElement | HTMLDivElement>) => void;
16
+ onDateClick?: (day: Date, evt: MouseEvent<HTMLButtonElement | HTMLDivElement>) => void;
15
17
  showPlusIcon?: boolean;
16
18
  highlightWeekends: boolean;
17
19
  }
@@ -0,0 +1 @@
1
+ export {};
@@ -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;