Skip to content
This repository was archived by the owner on Dec 23, 2022. It is now read-only.

Commit 6d9e2d2

Browse files
committed
Revert version bump and package name change, use consistent semicolons in the typings.
1 parent 890de05 commit 6d9e2d2

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "@harshitpant/material-ui-chip-input",
3-
"version": "2.0.5",
2+
"name": "material-ui-chip-input",
3+
"version": "1.0.0-beta.7",
44
"typings": "typings/index.d.ts",
55
"description": "A chip input field using Material-UI.",
66
"main": "lib/ChipInput.js",

typings/index.d.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import * as React from 'react';
2-
import { FormHelperTextProps } from '@material-ui/core/FormHelperText'
3-
import {InputProps} from '@material-ui/core/Input'
4-
import {InputLabelProps} from '@material-ui/core/InputLabel'
2+
import { FormHelperTextProps } from '@material-ui/core/FormHelperText';
3+
import { InputProps } from '@material-ui/core/Input';
4+
import { InputLabelProps } from '@material-ui/core/InputLabel';
55

66
export interface ChipRendererArgs {
77
value: string;
@@ -44,7 +44,7 @@ export interface Props {
4444
onBeforeAdd?: (chip: any) => boolean;
4545
onChange?: (chips: any[]) => any;
4646
onDelete?: (chip:any, index: number) => any;
47-
onUpdateInput?: React.EventHandler<any>
47+
onUpdateInput?: React.EventHandler<any>;
4848
placeholder?: string;
4949
value?: any[];
5050
error?: boolean;

0 commit comments

Comments
 (0)