Skip to content

Commit 3854494

Browse files
committed
sets version to 2.1.1 (publishing error)
1 parent 82aae40 commit 3854494

File tree

4 files changed

+16
-6
lines changed

4 files changed

+16
-6
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-datalist-input",
3-
"version": "2.1.0",
3+
"version": "2.1.1",
44
"description": "This package provides a react component as follows: an input field with a drop down menu to pick a possible option based on the current input.",
55
"main": "./dist/DataListInput.js",
66
"files": [

tests/demo-app/package-lock.json

Lines changed: 13 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tests/demo-app/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@
3838
"prop-types": "^15.7.2",
3939
"react": "^16.9.0",
4040
"react-app-polyfill": "^1.0.2",
41+
"react-datalist-input": "^2.1.1",
4142
"react-dev-utils": "^9.0.3",
4243
"react-dom": "^16.9.0",
4344
"resolve": "1.12.0",

tests/demo-app/src/App.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/* eslint-disable no-unused-vars */
22
import React, { useState, useEffect } from 'react';
3+
import DataListInput from 'react-datalist-input';
34
import csvFile from './data.csv';
45

56
import './App.css';
6-
import DataListInput from './DataListInput';
77

88
// eslint-disable-next-line no-unused-vars
99
const data = [

0 commit comments

Comments
 (0)