Hugo Burguete
Hugo Burguete
you forgot --watch. "scripts": { "prod": "npm run webpack", "dev": "npm run webpack:watch", "build": "npm run webpack", "webpack": "NODE_ENV=production node_modules/.bin/webpack", "webpack:watch": "node_modules/.bin/webpack --watch" },
I am seeing this issue as well which is actually starting to throw errors for the latest version of NPM (7.5.2). It would be good if the latest version of...
@chrisberthe Although the PR has been merged, the error is still present. Looking at the node_modules folder, I can confirm I have the latest version of the package but the...
Can you not find the item per index and loop through this.perPage?
@dk3775 Are you still looking for a solution to this issue? In my view, @ravipathak3001 suggestion seems like the most straightforward way to fix this. You only need to implement...
Can you clarify where the `tryAgainChangeReservedDate` property is coming from. From my understanding, [this](https://github.com/Hacker0x01/react-datepicker/blob/main/src/index.jsx#L1267) is where the custom input is rendered and I can't see that property being fed through...
@ChristianReynaltt I had a look into this one and it seems like react-datepicker uses the [date-fns](https://github.com/date-fns/date-fns) package to parse dates. The package checks the validity of the input and runs...
Hi @aritzcmz Your issue is still closely related to my last response. [When checking the date validity, the package checks for a portion of the `dateFormat` and attempts to validate](https://github.com/Hacker0x01/react-datepicker/blob/49d074ca19e7e8b3042e481f5ef9a78b5a979cb0/src/date_utils.ts#L164)...
Hi @aritzcmz Unfortunately, the [Date API](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date#date_time_string_format) only supports a handful of formats: > Note: You are encouraged to make sure your input conforms to the date time string format above...