|
4 | 4 | * Breadcrumbs help users visualize their current location in relation to the rest of the website or application by showing the hierarchy of pages
|
5 | 5 | *
|
6 | 6 | * @see Docs https://next.vue.chakra-ui.com/breadcrumb
|
7 |
| - * @see Source https://github.com/chakra-ui/chakra-ui-vue-next/blob/master/packages/c-breadcrumb/src/c-breadcrumb/c-breadcrumb.ts |
| 7 | + * @see Source https://github.com/chakra-ui/chakra-ui-vue-next/blob/main/packages/c-breadcrumb/src/c-breadcrumb/c-breadcrumb.ts |
8 | 8 | * @see WAI-ARIA https://www.w3.org/TR/wai-aria-practices-1.2
|
9 | 9 | */
|
10 | 10 |
|
@@ -57,8 +57,8 @@ export interface BreadcrumbOptions {
|
57 | 57 |
|
58 | 58 | export interface BreadcrumbProps
|
59 | 59 | extends ChakraProps,
|
60 |
| - BreadcrumbOptions, |
61 |
| - ThemingProps<"Breadcrumb"> {} |
| 60 | + BreadcrumbOptions, |
| 61 | + ThemingProps<"Breadcrumb"> { } |
62 | 62 |
|
63 | 63 | /**
|
64 | 64 | * CBreadcrumb is used to render a breadcrumb navigation landmark.
|
@@ -87,14 +87,14 @@ export const CBreadcrumb: DefineComponent<BreadcrumbProps> = defineComponent(
|
87 | 87 | return typeof props.separator === "string"
|
88 | 88 | ? props.separator
|
89 | 89 | : isObjectComponent(props.separator!)
|
90 |
| - ? // TODO: |
| 90 | + ? // TODO: |
91 | 91 | // Add support for
|
92 | 92 | // object components. ATM,
|
93 | 93 | // This computed property will only
|
94 | 94 | // work for functional components provided as
|
95 | 95 | // separators
|
96 | 96 | h(() => props.separator!)
|
97 |
| - : h(props.separator!) |
| 97 | + : h(props.separator!) |
98 | 98 | }
|
99 | 99 | })
|
100 | 100 |
|
@@ -198,7 +198,7 @@ interface BreadcrumbItemOptions extends BreadcrumbOptions {
|
198 | 198 |
|
199 | 199 | export interface BreadcrumbItemProps
|
200 | 200 | extends BreadcrumbItemOptions,
|
201 |
| - ChakraProps {} |
| 201 | + ChakraProps { } |
202 | 202 |
|
203 | 203 | export const CBreadcrumbItem: DefineComponent<BreadcrumbItemProps> =
|
204 | 204 | defineComponent((props: BreadcrumbItemProps, { attrs, slots }) => {
|
|
0 commit comments