@schirkan/reactron-interfaces
Advanced tools
Comparing version 1.0.4 to 1.0.5
@@ -1,2 +0,2 @@ | ||
import { IFieldDefinition, IInput } from './IObjectDefinition'; | ||
import { IFieldDefinition } from './IObjectDefinition'; | ||
import { IReactronComponentContext } from './IReactronComponentContext'; | ||
@@ -9,4 +9,4 @@ export interface IInputComponentProps<TValue = any> { | ||
valueChange: (definition: IFieldDefinition, newValue: TValue) => void; | ||
getDefaultInputControl: <TValueOfDefinition = any>(definition: IFieldDefinition) => IInput<TValueOfDefinition>; | ||
getDefaultDetailsControl: <TValueOfDefinition = any>(definition: IFieldDefinition) => IInput<TValueOfDefinition>; | ||
getDefaultInputControl: <TValueOfDefinition = any>(definition: IFieldDefinition) => ((props: IInputComponentProps<TValueOfDefinition>) => any); | ||
getDefaultDetailsControl: <TValueOfDefinition = any>(definition: IFieldDefinition) => ((props: IInputComponentProps<TValueOfDefinition>) => any); | ||
} |
{ | ||
"name": "@schirkan/reactron-interfaces", | ||
"version": "1.0.4", | ||
"version": "1.0.5", | ||
"description": "interfaces for reactron modules", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
@@ -1,2 +0,2 @@ | ||
import { IFieldDefinition, IInput } from './IObjectDefinition'; | ||
import { IFieldDefinition } from './IObjectDefinition'; | ||
import { IReactronComponentContext } from './IReactronComponentContext'; | ||
@@ -10,4 +10,4 @@ | ||
valueChange: (definition: IFieldDefinition, newValue: TValue) => void; | ||
getDefaultInputControl: <TValueOfDefinition=any>(definition: IFieldDefinition) => IInput<TValueOfDefinition>; | ||
getDefaultDetailsControl: <TValueOfDefinition=any>(definition: IFieldDefinition) => IInput<TValueOfDefinition>; | ||
getDefaultInputControl: <TValueOfDefinition=any>(definition: IFieldDefinition) => ((props: IInputComponentProps<TValueOfDefinition>) => any); | ||
getDefaultDetailsControl: <TValueOfDefinition=any>(definition: IFieldDefinition) => ((props: IInputComponentProps<TValueOfDefinition>) => any); | ||
} |
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
103056