dromo-uploader-react
Advanced tools
Comparing version 1.1.7 to 1.1.8
import * as React from 'react'; | ||
import { IColumnHookInput, IColumnHookOutput, IDeveloperField, IDeveloperSettings, IRowHookInput, IRowHookOutput, IUser } from './interfaces'; | ||
import { IColumnHookInput, IColumnHookOutput, IColumnHook, IDeveloperField, IValidatorField, IDeveloperSettings, IRowHookInput, IRowHookOutput, IRowHook, IDeveloperStyleOverrides, IUser } from './interfaces'; | ||
interface Props { | ||
style?: React.CSSProperties; | ||
className?: string; | ||
licenseKey: string; | ||
@@ -25,2 +26,2 @@ user: IUser; | ||
} | ||
export { IDeveloperField, IUser }; | ||
export { IDeveloperField, IDeveloperSettings, IUser, IColumnHookInput, IColumnHookOutput, IColumnHook, IRowHookInput, IRowHookOutput, IRowHook, IValidatorField, IDeveloperStyleOverrides }; |
@@ -80,2 +80,3 @@ var React = require('react'); | ||
style: this.props.style, | ||
className: this.props.className, | ||
onClick: this.open | ||
@@ -82,0 +83,0 @@ }, this.props.children); |
@@ -80,2 +80,3 @@ import { createElement, Component } from 'react'; | ||
style: this.props.style, | ||
className: this.props.className, | ||
onClick: this.open | ||
@@ -82,0 +83,0 @@ }, this.props.children); |
@@ -65,3 +65,2 @@ export interface IDeveloperField { | ||
} | ||
/** @internal */ | ||
export interface IColumnHook { | ||
@@ -71,5 +70,4 @@ fieldName: string; | ||
} | ||
/** @internal */ | ||
export interface IRowHook { | ||
callback(data: IRowHookInput): IRowHookOutput | Promise<IRowHookOutput>; | ||
(data: IRowHookInput): IRowHookOutput | Promise<IRowHookOutput>; | ||
} | ||
@@ -76,0 +74,0 @@ export interface IColumnHookInput { |
{ | ||
"name": "dromo-uploader-react", | ||
"version": "1.1.7", | ||
"version": "1.1.8", | ||
"description": "Easy to use data (CSV, TSV, Excel) importer", | ||
@@ -5,0 +5,0 @@ "author": "ankitgoyal100", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
26751
259