Skip to content

Commit 9ea27ad

Browse files
Resolve merge conflicts in renderCustomHeaderTwoMonths.js
2 parents ef9b205 + 32f68ac commit 9ea27ad

File tree

98 files changed

+865
-1188
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

98 files changed

+865
-1188
lines changed

.github/workflows/claude.yml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
name: Claude Code
2+
3+
on:
4+
issue_comment:
5+
types: [created]
6+
pull_request_review_comment:
7+
types: [created]
8+
issues:
9+
types: [opened, assigned]
10+
pull_request_review:
11+
types: [submitted]
12+
13+
jobs:
14+
claude:
15+
if: |
16+
(github.event_name == 'issue_comment' && contains(github.event.comment.body, '@claude')) ||
17+
(github.event_name == 'pull_request_review_comment' && contains(github.event.comment.body, '@claude')) ||
18+
(github.event_name == 'pull_request_review' && contains(github.event.review.body, '@claude')) ||
19+
(github.event_name == 'issues' && (contains(github.event.issue.body, '@claude') || contains(github.event.issue.title, '@claude')))
20+
runs-on: ubuntu-latest
21+
permissions:
22+
contents: read
23+
pull-requests: read
24+
issues: read
25+
id-token: write
26+
steps:
27+
- name: Checkout repository
28+
uses: actions/checkout@v4
29+
with:
30+
fetch-depth: 1
31+
32+
- name: Run Claude Code
33+
id: claude
34+
uses: anthropics/claude-code-action@beta
35+
with:
36+
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}
37+

docs-site/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,16 @@
2121
"preview": "vite preview"
2222
},
2323
"devDependencies": {
24-
"@eslint/js": "^9.26.0",
25-
"@types/react": "^19.1.2",
26-
"@types/react-dom": "^19.1.2",
27-
"@vitejs/plugin-react": "^4.4.1",
28-
"eslint": "^9.26.0",
24+
"@eslint/js": "^9.27.0",
25+
"@types/react": "^19.1.5",
26+
"@types/react-dom": "^19.1.5",
27+
"@vitejs/plugin-react": "^4.5.0",
28+
"eslint": "^9.27.0",
2929
"eslint-plugin-react": "^7.37.5",
3030
"eslint-plugin-react-hooks": "^6.0.0",
3131
"eslint-plugin-react-refresh": "^0.4.20",
32-
"globals": "^16.0.0",
33-
"sass": "^1.87.0",
32+
"globals": "^16.1.0",
33+
"sass": "^1.89.0",
3434
"vite": "^6.3.5"
3535
},
3636
"packageManager": "[email protected]"

docs-site/src/examples/calendarContainer.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
() => {
2-
const [startDate, setStartDate] = useState(new Date());
2+
const [selectedDate, setSelectedDate] = useState(new Date());
33
const MyContainer = ({ className, children }) => {
44
return (
55
<div style={{ padding: "16px", background: "#216ba5", color: "#fff" }}>
@@ -14,8 +14,8 @@
1414
};
1515
return (
1616
<DatePicker
17-
selected={startDate}
18-
onChange={(date) => setStartDate(date)}
17+
selected={selectedDate}
18+
onChange={(date) => setSelectedDate(date)}
1919
calendarContainer={MyContainer}
2020
/>
2121
);
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
() => {
2-
const [startDate, setStartDate] = useState(new Date());
2+
const [selectedDate, setSelectedDate] = useState(new Date());
33
return (
44
<DatePicker
55
showIcon
6-
selected={startDate}
7-
onChange={(date) => setStartDate(date)}
6+
selected={selectedDate}
7+
onChange={(date) => setSelectedDate(date)}
88
/>
99
);
1010
};

docs-site/src/examples/calendarIconExternal.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
() => {
2-
const [startDate, setStartDate] = useState(new Date());
2+
const [selectedDate, setSelectedDate] = useState(new Date());
33
return (
44
<DatePicker
55
showIcon
6-
selected={startDate}
7-
onChange={(date) => setStartDate(date)}
6+
selected={selectedDate}
7+
onChange={(date) => setSelectedDate(date)}
88
icon="fa fa-calendar"
99
/>
1010
);

docs-site/src/examples/calendarIconSvgIcon.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
() => {
2-
const [startDate, setStartDate] = useState(new Date());
2+
const [selectedDate, setSelectedDate] = useState(new Date());
33
return (
44
<DatePicker
55
showIcon
6-
selected={startDate}
7-
onChange={(date) => setStartDate(date)}
6+
selected={selectedDate}
7+
onChange={(date) => setSelectedDate(date)}
88
icon={
99
<svg
1010
xmlns="http://www.w3.org/2000/svg"

docs-site/src/examples/calendarStartDay.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
() => {
2-
const [startDate, setStartDate] = useState(new Date());
2+
const [selectedDate, setSelectedDate] = useState(new Date());
33
return (
44
<DatePicker
5-
selected={startDate}
6-
onChange={(date) => setStartDate(date)}
5+
selected={selectedDate}
6+
onChange={(date) => setSelectedDate(date)}
77
calendarStartDay={3}
88
/>
99
);

docs-site/src/examples/children.js

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
() => {
2-
const [startDate, setStartDate] = useState(new Date());
2+
const [selectedDate, setSelectedDate] = useState(new Date());
33
return (
4-
<DatePicker selected={startDate} onChange={(date) => setStartDate(date)}>
4+
<DatePicker
5+
selected={selectedDate}
6+
onChange={(date) => setSelectedDate(date)}
7+
>
58
<div style={{ color: "red" }}>Don't forget to check the weather!</div>
69
</DatePicker>
710
);

docs-site/src/examples/clearInput.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
() => {
2-
const [startDate, setStartDate] = useState(new Date());
2+
const [selectedDate, setSelectedDate] = useState(new Date());
33
return (
44
<DatePicker
5-
selected={startDate}
6-
onChange={(date) => setStartDate(date)}
5+
selected={selectedDate}
6+
onChange={(date) => setSelectedDate(date)}
77
isClearable
88
placeholderText="I have been cleared!"
99
/>
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
() => {
2-
const [startDate, setStartDate] = useState(new Date());
2+
const [selectedDate, setSelectedDate] = useState(new Date());
33
return (
44
<DatePicker
55
closeOnScroll={true}
6-
selected={startDate}
7-
onChange={(date) => setStartDate(date)}
6+
selected={selectedDate}
7+
onChange={(date) => setSelectedDate(date)}
88
/>
99
);
1010
};

0 commit comments

Comments
 (0)