@schirkan/reactron-interfaces
Advanced tools
Comparing version 0.10.0-alpha.7 to 0.10.0-alpha.8
import { IFieldDefinition } from "./IObjectDefinition"; | ||
export interface IInputComponentProps { | ||
export interface IInputComponentProps<TValue = any> { | ||
definition: IFieldDefinition; | ||
uniqueId: string; | ||
value: any; | ||
valueChange: (definition: IFieldDefinition, newValue: any) => void; | ||
value: TValue; | ||
valueChange: (definition: IFieldDefinition, newValue: TValue) => void; | ||
} |
{ | ||
"name": "@schirkan/reactron-interfaces", | ||
"version": "0.10.0-alpha.7", | ||
"version": "0.10.0-alpha.8", | ||
"description": "interfaces for reactron modules", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
import { IFieldDefinition } from "./IObjectDefinition"; | ||
export interface IInputComponentProps { | ||
export interface IInputComponentProps<TValue = any> { | ||
definition: IFieldDefinition; | ||
uniqueId: string; | ||
value: any; | ||
valueChange: (definition: IFieldDefinition, newValue: any) => void; | ||
value: TValue; | ||
valueChange: (definition: IFieldDefinition, newValue: TValue) => void; | ||
} |
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
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
93096