plataforma-fundacao-componentes 2.21.13 → 2.21.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.
@@ -3,13 +3,5 @@ declare namespace _default {
3
3
  export { AnimatedLink 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 animated: boolean;
10
- export const children: string;
11
- export const href: string;
12
- export const target: string;
13
- }
14
- }
6
+ export function FirstExample(): JSX.Element;
15
7
  import AnimatedLink from "./AnimatedLink";
@@ -2,10 +2,10 @@ import React from 'react';
2
2
  import { RadioButtonType } from '../../libraries/RadioButtonTheme';
3
3
  import { TooltipPositionTypes } from '../../libraries/Tooltips';
4
4
  import './RadioButton.scss';
5
- interface RadioButtonProps {
5
+ interface RadioButtonProps extends Omit<React.ButtonHTMLAttributes<HTMLButtonElement>, 'value' | 'onChange'> {
6
+ id?: string;
6
7
  'tooltip-position'?: TooltipPositionTypes;
7
8
  'tooltip-text'?: string;
8
- disabled?: boolean;
9
9
  value: boolean;
10
10
  theme?: RadioButtonType;
11
11
  onChange: (value: boolean) => void;