Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(Holiday): update 2025 workingday data #165

Merged
merged 2 commits into from
Dec 10, 2024
Merged
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
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Razor">

<PropertyGroup>
<Version>9.0.0</Version>
<Version>9.0.1</Version>
</PropertyGroup>

<PropertyGroup>
Expand Down
57 changes: 57 additions & 0 deletions src/components/BootstrapBlazor.Holiday/Data/2025.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
[
{
"name": "元旦",
"range": ["2025-01-01"],
"type": "holiday"
},
{
"name": "春节",
"range": ["2025-01-26"],
"type": "workingday"
},
{
"name": "春节",
"range": ["2025-01-28", "2025-02-04"],
"type": "holiday"
},
{
"name": "春节",
"range": ["2025-02-08"],
"type": "workingday"
},
{
"name": "清明节",
"range": ["2025-04-04", "2025-04-06"],
"type": "holiday"
},
{
"name": "劳动节",
"range": ["2025-04-27"],
"type": "workingday"
},
{
"name": "劳动节",
"range": ["2025-05-01", "2025-05-05"],
"type": "holiday"
},
{
"name": "端午节",
"range": ["2025-05-31", "2025-06-02"],
"type": "holiday"
},
{
"name": "国庆节、中秋节",
"range": ["2025-09-28"],
"type": "workingday"
},
{
"name": "国庆节、中秋节",
"range": ["2025-10-01", "2025-10-08"],
"type": "holiday"
},
{
"name": "国庆节、中秋节",
"range": ["2025-10-11"],
"type": "workingday"
}
]
Loading