react-native-radio-buttons-group
Advanced tools
Comparing version 2.0.1 to 2.1.0
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; | ||
} | ||
import { RadioGroupProps } from "./lib"; | ||
export interface RadioGroupProps { | ||
layout?: "row" | "column"; | ||
onPress?: (radioButtons: RadioButtonProps[]) => void; | ||
radioButtons: RadioButtonProps[]; | ||
} | ||
declare class RadioGroup extends React.Component<RadioGroupProps, any> {} | ||
export * from "./lib/types"; | ||
export default RadioGroup; |
@@ -1,2 +0,2 @@ | ||
import RadioButtonsGroup from "./lib/RadioButtonsGroup"; | ||
import RadioButtonsGroup from "./lib"; | ||
export default RadioButtonsGroup; |
{ | ||
"name": "react-native-radio-buttons-group", | ||
"version": "2.0.1", | ||
"version": "2.1.0", | ||
"description": "Simple and Best. An easy to use radio buttons for react native apps.", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -105,2 +105,3 @@ # React Native Radio Buttons Group | ||
color | string | no | #444 | css color formats | ||
containerStyle | object | no | | react style | ||
disabled | boolean | no | false | true / false | ||
@@ -107,0 +108,0 @@ id | string | yes | | any string |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
139
108424
142
1