-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'releases/december-2024' into next
- Loading branch information
Showing
29 changed files
with
183 additions
and
126 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
--- | ||
"@refinedev/ably": patch | ||
"@refinedev/airtable": patch | ||
"@refinedev/antd": patch | ||
"@refinedev/chakra-ui": patch | ||
"@refinedev/cli": patch | ||
"@refinedev/codemod": patch | ||
"@refinedev/core": patch | ||
"create-refine-app": patch | ||
"@refinedev/graphql": patch | ||
"@refinedev/hasura": patch | ||
"@refinedev/kbar": patch | ||
"@refinedev/mui": patch | ||
"@refinedev/nestjs-query": patch | ||
"@refinedev/nestjsx-crud": patch | ||
"@refinedev/nextjs-router": patch | ||
"@refinedev/react-router-v6": patch | ||
"@refinedev/remix-router": patch | ||
"@refinedev/simple-rest": patch | ||
"@refinedev/strapi-v4": patch | ||
"@refinedev/strapi": patch | ||
"@refinedev/supabase": patch | ||
"@refinedev/ui-tests": patch | ||
"@refinedev/ui-types": patch | ||
--- | ||
|
||
chore: update package descriptions |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
101 changes: 101 additions & 0 deletions
101
documentation/src/refine-theme/icons/refine-logo xmas.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
import React from "react"; | ||
import clsx from "clsx"; | ||
import { RefineLogoIcon } from "./refine-logo"; | ||
|
||
export const RefineLogoXmas = (props: React.SVGProps<SVGSVGElement>) => { | ||
return ( | ||
<div className={clsx("relative")}> | ||
<RefineLogoIcon {...props} /> | ||
<XmasEffectLight | ||
className={clsx( | ||
"block dark:hidden", | ||
"absolute", | ||
"-top-2", | ||
"-left-2", | ||
"opacity-[0.75]", | ||
)} | ||
/> | ||
<XmasEffectDark | ||
className={clsx("hidden dark:block", "absolute", "-top-2", "-left-2")} | ||
/> | ||
</div> | ||
); | ||
}; | ||
|
||
const XmasEffectLight = (props: { className?: string }) => { | ||
return ( | ||
<div className={props.className}> | ||
<svg | ||
xmlns="http://www.w3.org/2000/svg" | ||
width={96} | ||
height={40} | ||
fill="none" | ||
className="xmas" | ||
> | ||
<style> | ||
{ | ||
"@keyframes combination{0%{opacity:1;filter:drop-shadow(0 0 2px currentColor)}20%{opacity:1;animation-timing-function:steps(1);filter:drop-shadow(0 0 2px currentColor)}40%{animation-timing-function:steps(1);animation-timing-function:ease-in-out;opacity:1;filter:drop-shadow(0 0 4px currentColor)}21%,23%,25%,27%,29%,31%,33%,35%,37%,39%,70%{opacity:.3;filter:drop-shadow(0 0 0 currentColor)}50%,85%,95%{opacity:.2;filter:drop-shadow(0 0 0 currentColor)}60%{animation-timing-function:ease;opacity:1;filter:drop-shadow(0 0 2px currentColor)}80%{animation-timing-function:ease;animation-timing-function:steps(1);opacity:1;filter:drop-shadow(0 0 4px currentColor)}to{animation-timing-function:steps(1);opacity:1;filter:drop-shadow(0 0 4px currentColor)}}.blue,.green,.red,.yellow{filter:drop-shadow(0 0 2px #24a866);animation:combination 8s infinite}.blue,.red,.yellow{filter:drop-shadow(0 0 2px #ff4c4d);animation-delay:.2s}.blue,.yellow{filter:drop-shadow(0 0 2px #0080ff);animation-delay:.4s}.yellow{filter:drop-shadow(0 0 2px #f93);animation-delay:.6s}" | ||
} | ||
</style> | ||
<circle cx={32} cy={19} r={2} fill="#24A866" className="green" /> | ||
<circle cx={76} cy={22} r={2} fill="#24A866" className="green" /> | ||
<circle cx={10} cy={24} r={2} fill="#FF4C4D" className="red" /> | ||
<circle cx={69} cy={13} r={2} fill="#FF4C4D" className="red" /> | ||
<circle cx={40} cy={26} r={2} fill="#0080FF" className="blue" /> | ||
<circle cx={86} cy={17} r={2} fill="#0080FF" className="blue" /> | ||
<circle cx={54} cy={16} r={2} fill="#F93" className="yellow" /> | ||
<circle cx={15} cy={10} r={2} fill="#F93" className="yellow" /> | ||
<circle | ||
cx={62} | ||
cy={25} | ||
r={2} | ||
fill="#8000FF" | ||
style={{ | ||
filter: "drop-shadow(0 0 2px #8000ff)", | ||
animation: "combination 8s infinite", | ||
animationDelay: ".8s", | ||
}} | ||
/> | ||
</svg> | ||
</div> | ||
); | ||
}; | ||
|
||
const XmasEffectDark = (props: { className?: string }) => { | ||
return ( | ||
<div className={props.className}> | ||
<svg | ||
xmlns="http://www.w3.org/2000/svg" | ||
width={96} | ||
height={40} | ||
fill="none" | ||
className="xmas" | ||
> | ||
<style> | ||
{ | ||
"@keyframes combination{0%{opacity:1;filter:drop-shadow(0 0 2px currentColor)}20%{opacity:1;animation-timing-function:steps(1);filter:drop-shadow(0 0 2px currentColor)}40%{animation-timing-function:steps(1);animation-timing-function:ease-in-out;opacity:1;filter:drop-shadow(0 0 4px currentColor)}21%,23%,25%,27%,29%,31%,33%,35%,37%,39%,70%{opacity:.3;filter:drop-shadow(0 0 0 currentColor)}50%,85%,95%{opacity:.2;filter:drop-shadow(0 0 0 currentColor)}60%{animation-timing-function:ease;opacity:1;filter:drop-shadow(0 0 2px currentColor)}80%{animation-timing-function:ease;animation-timing-function:steps(1);opacity:1;filter:drop-shadow(0 0 4px currentColor)}to{animation-timing-function:steps(1);opacity:1;filter:drop-shadow(0 0 4px currentColor)}}.blue,.green,.red,.yellow{filter:drop-shadow(0 0 2px #26d97f);animation:combination 8s infinite}.blue,.red,.yellow{filter:drop-shadow(0 0 2px #ff4c4d);animation-delay:.2s}.blue,.yellow{filter:drop-shadow(0 0 2px #6eb3f7);animation-delay:.4s}.yellow{filter:drop-shadow(0 0 2px #ffbf00);animation-delay:.6s}" | ||
} | ||
</style> | ||
<circle cx={32} cy={19} r={2} fill="#26D97F" className="green" /> | ||
<circle cx={76} cy={22} r={2} fill="#26D97F" className="green" /> | ||
<circle cx={10} cy={24} r={2} fill="#FF4C4D" className="red" /> | ||
<circle cx={69} cy={13} r={2} fill="#FF4C4D" className="red" /> | ||
<circle cx={40} cy={26} r={2} fill="#6EB3F7" className="blue" /> | ||
<circle cx={86} cy={17} r={2} fill="#6EB3F7" className="blue" /> | ||
<circle cx={54} cy={16} r={2} fill="#FFBF00" className="yellow" /> | ||
<circle cx={15} cy={10} r={2} fill="#FFBF00" className="yellow" /> | ||
<circle | ||
cx={62} | ||
cy={25} | ||
r={2} | ||
fill="#ED5EC9" | ||
style={{ | ||
filter: "drop-shadow(0 0 2px #ed5ec9)", | ||
animation: "combination 8s infinite", | ||
animationDelay: ".8s", | ||
}} | ||
/> | ||
</svg> | ||
</div> | ||
); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.