diff --git a/COMPONENT_INDEX.md b/COMPONENT_INDEX.md
index 98a9d2f5..798a04f6 100644
--- a/COMPONENT_INDEX.md
+++ b/COMPONENT_INDEX.md
@@ -294,9 +294,9 @@ None.
### Slots
-| Slot name | Default | Props | Fallback |
-| :-------- | :------ | :---- | :------- |
-| -- | Yes | -- | -- |
+| Slot name | Default | Props | Fallback |
+| :-------- | :------ | :------------------------------------------------------------------------ | :------- |
+| -- | Yes | {props?: { ["aria-current"]?: string; class: "bx--link"; }}
| -- |
### Events
@@ -387,11 +387,11 @@ None.
### Props
-| Prop name | Kind | Reactive | Type | Default value | Description |
-| :-------- | :--------------- | :------- | :--------------------------------------------------- | ---------------------- | -------------------------------------- |
-| href | let
| No | string
| -- | Set the `href` to use an anchor link |
-| size | let
| No | "default" | "field" | "small"
| "default"
| Specify the size of button skeleton |
-| small | let
| No | boolean
| false
| Set to `true` to use the small variant |
+| Prop name | Kind | Reactive | Type | Default value | Description |
+| :-------- | :--------------- | :------- | :--------------------------------------------------- | ---------------------- | ------------------------------------ |
+| href | let
| No | string
| -- | Set the `href` to use an anchor link |
+| size | let
| No | "default" | "field" | "small"
| "default"
| Specify the size of button skeleton |
+| small | let
| No | boolean
| false
| -- |
### Slots
diff --git a/docs/src/COMPONENT_API.json b/docs/src/COMPONENT_API.json
index 10988ed2..8da2e33d 100644
--- a/docs/src/COMPONENT_API.json
+++ b/docs/src/COMPONENT_API.json
@@ -456,7 +456,13 @@
"reactive": false
}
],
- "slots": [{ "name": "__default__", "default": true, "slot_props": "{}" }],
+ "slots": [
+ {
+ "name": "__default__",
+ "default": true,
+ "slot_props": "{props?: { [\"aria-current\"]?: string; class: \"bx--link\"; }}"
+ }
+ ],
"events": [
{ "type": "forwarded", "name": "click", "element": "li" },
{ "type": "forwarded", "name": "mouseover", "element": "li" },
@@ -492,7 +498,6 @@
{
"name": "small",
"kind": "let",
- "description": "Set to `true` to use the small variant",
"type": "boolean",
"value": "false",
"isFunction": false,
diff --git a/src/Breadcrumb/BreadcrumbItem.svelte b/src/Breadcrumb/BreadcrumbItem.svelte
index b5df750b..1f884af5 100644
--- a/src/Breadcrumb/BreadcrumbItem.svelte
+++ b/src/Breadcrumb/BreadcrumbItem.svelte
@@ -1,4 +1,8 @@