This repository was archived by the owner on Sep 20, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +10
-7
lines changed
packages/chakra-ui-core/src/CSkipNav Expand file tree Collapse file tree 2 files changed +10
-7
lines changed Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ const createSkipNavLinkStyles = (props) => {
5050 *
5151 * @see Docs https://vue.chakra-ui.com/skip-nav
5252 */
53- export const CSkipNavLink = {
53+ const CSkipNavLink = {
5454 name : 'CSkipNavLink' ,
5555 mixins : [ createStyledAttrsMixin ( 'CSkipNavLink' ) ] ,
5656 props : {
@@ -60,17 +60,17 @@ export const CSkipNavLink = {
6060 }
6161 } ,
6262 computed : {
63- colorMode ( ) {
63+ colorMode ( ) {
6464 return this . $chakraColorMode ( )
6565 } ,
66- theme ( ) {
66+ theme ( ) {
6767 return this . $chakraTheme ( )
6868 } ,
69- componentStyles ( ) {
69+ componentStyles ( ) {
7070 return createSkipNavLinkStyles ( )
7171 }
7272 } ,
73- render ( h ) {
73+ render ( h ) {
7474 return h (
7575 'a' ,
7676 {
@@ -91,7 +91,7 @@ export const CSkipNavLink = {
9191 *
9292 * @see Docs https://vue.chakra-ui.com/skip-nav
9393 */
94- export const CSkipNavContent = {
94+ const CSkipNavContent = {
9595 name : 'CSkipNavContent' ,
9696 mixins : [ createStyledAttrsMixin ( 'CSkipNavContent' ) ] ,
9797 props : {
@@ -101,7 +101,7 @@ export const CSkipNavContent = {
101101 } ,
102102 to : SNA
103103 } ,
104- render ( h ) {
104+ render ( h ) {
105105 return h (
106106 CBox ,
107107 {
@@ -118,3 +118,5 @@ export const CSkipNavContent = {
118118 )
119119 }
120120}
121+
122+ export { CSkipNavLink , CSkipNavContent }
Original file line number Diff line number Diff line change 1+ export * from './CSkipNav'
You can’t perform that action at this time.
0 commit comments