rbro-tat-uds 1.6.4 → 1.6.5

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.
@@ -0,0 +1,13 @@
1
+ import { default as React } from 'react';
2
+ interface SelectButtonProps {
3
+ label?: string;
4
+ sublabel?: string;
5
+ id?: string;
6
+ name?: string;
7
+ checked?: boolean;
8
+ disabled?: boolean;
9
+ onChange?: (e: React.ChangeEvent<HTMLInputElement>) => void;
10
+ value?: string | number;
11
+ }
12
+ declare const SelectButton: React.FC<SelectButtonProps>;
13
+ export default SelectButton;
@@ -0,0 +1 @@
1
+ export { default as SelectButton } from './SelectButton';
@@ -8,7 +8,7 @@ export interface TimedButtonProps extends HTMLAttributes<HTMLButtonElement> {
8
8
  successLabel?: string;
9
9
  buttonIntent?: "default" | "danger" | "accent";
10
10
  disabled?: boolean;
11
- icon?: IconsListProp | undefined | null;
11
+ icon?: IconsListProp | null | undefined;
12
12
  size?: "medium" | "large";
13
13
  delay?: number;
14
14
  actionButtonOnClick?: () => void;
@@ -72,3 +72,4 @@ export * from './Illustration';
72
72
  export * from './PlanFinanciarAUMBar';
73
73
  export * from './PlanFinanciarAUMGraph';
74
74
  export * from './AutosaveStatus';
75
+ export * from './SelectButton';