fix: updating Tailwind CSS variables from --radix-* to --reka-* (#6890)
* fix: radix => reka * chore: add reka cspell * fix: Composition url
This commit is contained in:
parent
1e09fa4642
commit
20410aeb03
@ -36,6 +36,7 @@
|
|||||||
"prefixs",
|
"prefixs",
|
||||||
"publint",
|
"publint",
|
||||||
"qrcode",
|
"qrcode",
|
||||||
|
"reka",
|
||||||
"shadcn",
|
"shadcn",
|
||||||
"sonner",
|
"sonner",
|
||||||
"sortablejs",
|
"sortablejs",
|
||||||
|
|||||||
@ -175,18 +175,18 @@ export default {
|
|||||||
keyframes: {
|
keyframes: {
|
||||||
'accordion-down': {
|
'accordion-down': {
|
||||||
from: { height: '0' },
|
from: { height: '0' },
|
||||||
to: { height: 'var(--radix-accordion-content-height)' },
|
to: { height: 'var(--reka-accordion-content-height)' },
|
||||||
},
|
},
|
||||||
'accordion-up': {
|
'accordion-up': {
|
||||||
from: { height: 'var(--radix-accordion-content-height)' },
|
from: { height: 'var(--reka-accordion-content-height)' },
|
||||||
to: { height: '0' },
|
to: { height: '0' },
|
||||||
},
|
},
|
||||||
'collapsible-down': {
|
'collapsible-down': {
|
||||||
from: { height: '0' },
|
from: { height: '0' },
|
||||||
to: { height: 'var(--radix-collapsible-content-height)' },
|
to: { height: 'var(--reka-collapsible-content-height)' },
|
||||||
},
|
},
|
||||||
'collapsible-up': {
|
'collapsible-up': {
|
||||||
from: { height: 'var(--radix-collapsible-content-height)' },
|
from: { height: 'var(--reka-collapsible-content-height)' },
|
||||||
to: { height: '0' },
|
to: { height: '0' },
|
||||||
},
|
},
|
||||||
float: {
|
float: {
|
||||||
|
|||||||
@ -13,7 +13,7 @@ export interface VbenButtonProps {
|
|||||||
/**
|
/**
|
||||||
* Change the default rendered element for the one passed as a child, merging their props and behavior.
|
* Change the default rendered element for the one passed as a child, merging their props and behavior.
|
||||||
*
|
*
|
||||||
* Read our [Composition](https://www.radix-vue.com/guides/composition.html) guide for more details.
|
* Read our [Composition](https://www.reka-ui.com/docs/guides/composition) guide for more details.
|
||||||
*/
|
*/
|
||||||
asChild?: boolean;
|
asChild?: boolean;
|
||||||
class?: any;
|
class?: any;
|
||||||
|
|||||||
@ -59,7 +59,7 @@ export function useTabsViewScroll(props: TabsProps) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const viewportEl = scrollbarEl?.querySelector(
|
const viewportEl = scrollbarEl?.querySelector(
|
||||||
'div[data-radix-scroll-area-viewport]',
|
'div[data-reka-scroll-area-viewport]',
|
||||||
);
|
);
|
||||||
|
|
||||||
scrollViewportEl.value = viewportEl;
|
scrollViewportEl.value = viewportEl;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user