Skip to content

Commit b73fff4

Browse files
committed
Merge branch 'develop'
2 parents f7f9257 + c620fb6 commit b73fff4

File tree

7 files changed

+11
-9
lines changed

7 files changed

+11
-9
lines changed

build/browser.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/browser_plugins.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-multi-date-picker",
3-
"version": "1.9.0",
3+
"version": "1.9.1",
44
"description": "a simple React datepicker component for work with gregorian, persian, arabic and indian calendars",
55
"main": "./build/index.js",
66
"types": "index.d.ts",

plugins/date_picker_header/date_picker_header.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ export default function DatePickerHeader({
1111
isChildInBottom,
1212
isChildInLeft,
1313
isChildInRight,
14-
calendar = state.date.calendar,
15-
local = state.date.local,
14+
calendar = state.calendar,
15+
local = state.local,
1616
...props
1717
}) {
1818
let selectedDate, isSingle
@@ -45,7 +45,6 @@ export default function DatePickerHeader({
4545
if (isChildInBottom) classNames.push("no-border-radius-bottom")
4646
}
4747

48-
4948
return (
5049
<div
5150
className={classNames.join(" ")}

plugins/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/components/calendar/calendar.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,10 @@ export default function Calendar({
157157
weekDays,
158158
months,
159159
value: $value,
160-
focused
160+
focused,
161+
calendar,
162+
local,
163+
format: $format
161164
}
162165
})
163166
}, [

0 commit comments

Comments
 (0)