Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
# React Advanced Date Time Range Picker
# React Advanced Date Time Range Picker (with Updatable Ranges)
[![CircleCI](https://circleci.com/gh/v0ltoz/react-datetimepicker.svg?style=svg)](https://circleci.com/gh/v0ltoz/react-datetimepicker)
[![](https://badge.fury.io/js/react-advanced-datetimerange-picker.svg)](https://www.npmjs.com/package/react-advanced-datetimerange-picker)
[![Maintainability](https://api.codeclimate.com/v1/badges/3b5c72752ef7cf3932b9/maintainability)](https://codeclimate.com/github/v0ltoz/react-datetimepicker/maintainability)
[![Test Coverage](https://api.codeclimate.com/v1/badges/3b5c72752ef7cf3932b9/test_coverage)](https://codeclimate.com/github/v0ltoz/react-datetimepicker/test_coverage)
<br>
This is a modified version of V0ltoz's React-datetimepicker (see homepage for source) with updatable range selectors. The original version does not permit modifications to ranges after initialization.
<br>
<b>
See the working demo over at codesandbox.io
</b>
Expand Down
7,581 changes: 3,707 additions & 3,874 deletions package-lock.json

Large diffs are not rendered by default.

11 changes: 6 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-advanced-datetimerange-picker",
"version": "1.0.14",
"version": "1.0.17",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.js",
Expand All @@ -10,7 +10,7 @@
],
"repository": {
"type": "git",
"url": "https://github.com/v0ltoz/react-datetimepicker"
"url": "https://github.com/Zhu-K/react-datetimepicker"
},
"jest": {
"collectCoverageFrom": [
Expand All @@ -23,9 +23,10 @@
]
},
"dependencies": {
"bootstrap-icons": "^1.8.1",
"moment": "^2.22.2",
"prop-types": "^15.6.2",
"react-bootstrap": "^0.31.3",
"react-bootstrap": "^2.3.1",
"react-dot-fragment": "^0.2.7",
"react-moment-proptypes": "^1.6.0"
},
Expand Down Expand Up @@ -63,8 +64,8 @@
"eslint-plugin-react": "^7.11.1",
"moment-timezone": "0.5.31",
"prettier": "1.14.3",
"react": "15.6.2",
"react-dom": "15.6.2",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-scripts": "^3.4.3",
"react-test-renderer": "^15.6.2"
}
Expand Down
6 changes: 2 additions & 4 deletions public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,8 @@
Learn how to configure a non-root public URL by running `npm run build`.
-->
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">

<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css" integrity="sha384-rHyoN1iRsVXV4nD0JutlnGaslCJuC7uwjduW9SVrLvRYooPp2bWYgmgJQIXwl/Sp" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">

<title>React App</title>
</head>
<body>
Expand Down
Loading