-
-
Notifications
You must be signed in to change notification settings - Fork 132
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
245 additions
and
230 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,5 @@ | ||
--- | ||
'next-docs-ui': minor | ||
--- | ||
|
||
Remove tailwindcss-animate |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
export const animations = { | ||
keyframes: { | ||
'collapsible-down': { | ||
from: { height: '0', opacity: '0' }, | ||
to: { | ||
height: 'var(--radix-collapsible-content-height)', | ||
}, | ||
}, | ||
'collapsible-up': { | ||
from: { | ||
height: 'var(--radix-collapsible-content-height)', | ||
}, | ||
to: { height: '0', opacity: '0' }, | ||
}, | ||
'accordion-down': { | ||
from: { height: '0', opacity: '0.5' }, | ||
to: { height: 'var(--radix-accordion-content-height)' }, | ||
}, | ||
'accordion-up': { | ||
from: { height: 'var(--radix-accordion-content-height)' }, | ||
to: { height: '0', opacity: '0.5' }, | ||
}, | ||
'dialog-in': { | ||
from: { transform: 'scale(0.95) translateY(-4rem)' }, | ||
to: { transform: 'scale(1) translateY(0)' }, | ||
}, | ||
'dialog-out': { | ||
from: { transform: 'scale(1) translateY(0)' }, | ||
to: { transform: 'scale(0.95) translateY(-4rem)' }, | ||
}, | ||
'popover-in': { | ||
from: { opacity: '0', transform: 'scale(0.95) translateY(-10px)' }, | ||
to: { opacity: '1', transform: 'scale(1) translateY(0)' }, | ||
}, | ||
'popover-out': { | ||
from: { opacity: '1', transform: 'scale(1) translateY(0)' }, | ||
to: { opacity: '0', transform: 'scale(0.95) translateY(-10px)' }, | ||
}, | ||
'fade-in': { | ||
from: { opacity: '0' }, | ||
to: { opacity: '1' }, | ||
}, | ||
'fade-out': { | ||
from: { opacity: '1' }, | ||
to: { opacity: '0' }, | ||
}, | ||
}, | ||
animation: { | ||
'fade-in': 'fade-in 300ms ease', | ||
'fade-out': 'fade-out 300ms ease', | ||
'dialog-in': 'dialog-in 150ms ease', | ||
'dialog-out': 'dialog-out 200ms ease', | ||
'popover-in': 'popover-in 150ms ease', | ||
'popover-out': 'popover-out 150ms ease', | ||
'collapsible-down': 'collapsible-down 150ms ease-out', | ||
'collapsible-up': 'collapsible-up 150ms ease-out', | ||
'accordion-down': 'accordion-down 200ms ease-out', | ||
'accordion-up': 'accordion-up 200ms ease-out', | ||
}, | ||
}; |
Oops, something went wrong.