-
-
Notifications
You must be signed in to change notification settings - Fork 73
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
96ba280
commit 43383db
Showing
8 changed files
with
10 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,9 @@ | ||
import * as React from "react"; | ||
|
||
export interface RadioButtonProps { | ||
color?: string; | ||
disabled?: boolean; | ||
id: string; | ||
label?: string; | ||
labelStyle?: object; | ||
layout?: "row" | "column"; | ||
onPress?: (id: string) => void; | ||
selected?: boolean; | ||
size?: number; | ||
value?: string; | ||
} | ||
|
||
export interface RadioGroupProps { | ||
layout?: "row" | "column"; | ||
onPress?: (radioButtons: RadioButtonProps[]) => void; | ||
radioButtons: RadioButtonProps[]; | ||
} | ||
import { RadioGroupProps } from "./lib"; | ||
|
||
declare class RadioGroup extends React.Component<RadioGroupProps, any> {} | ||
|
||
export * from "./lib/types"; | ||
|
||
export default RadioGroup; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
import RadioButtonsGroup from "./lib/RadioButtonsGroup"; | ||
import RadioButtonsGroup from "./lib"; | ||
export default RadioButtonsGroup; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters