diff --git a/COMPONENT_INDEX.md b/COMPONENT_INDEX.md
index 1587b43e..2c751434 100644
--- a/COMPONENT_INDEX.md
+++ b/COMPONENT_INDEX.md
@@ -496,6 +496,7 @@ None.
| type | let
| No | "single" | "inline" | "multi"
| "single"
| Set the type of code snippet |
| code | let
| No | string
| -- | Set the code snippet text
Alternatively, use the default slot (e.g., <CodeSnippet>{`code`}</CodeSnippet>) |
| hideCopyButton | let
| No | boolean
| false
| Set to `true` to hide the copy button |
+| disabled | let
| No | boolean
| false
| Set to `true` for the disabled variant
Only applies to the "single", "multi" types |
| wrapText | let
| No | boolean
| false
| Set to `true` to wrap the text
Note that `type` must be "multi" |
| light | let
| No | boolean
| false
| Set to `true` to enable the light variant |
| skeleton | let
| No | boolean
| false
| Set to `true` to display the skeleton state |
diff --git a/docs/src/COMPONENT_API.json b/docs/src/COMPONENT_API.json
index d54605c9..946a6ece 100644
--- a/docs/src/COMPONENT_API.json
+++ b/docs/src/COMPONENT_API.json
@@ -1949,6 +1949,16 @@
"constant": false,
"reactive": false
},
+ {
+ "name": "disabled",
+ "kind": "let",
+ "description": "Set to `true` for the disabled variant\nOnly applies to the \"single\", \"multi\" types",
+ "type": "boolean",
+ "value": "false",
+ "isFunction": false,
+ "constant": false,
+ "reactive": false
+ },
{
"name": "wrapText",
"kind": "let",
diff --git a/docs/src/pages/components/CodeSnippet.svx b/docs/src/pages/components/CodeSnippet.svx
index b5d2ce11..aa4294b6 100644
--- a/docs/src/pages/components/CodeSnippet.svx
+++ b/docs/src/pages/components/CodeSnippet.svx
@@ -47,6 +47,14 @@ let comment = `
+