diff --git a/COMPONENT_INDEX.md b/COMPONENT_INDEX.md
index bd4137bb..ac575641 100644
--- a/COMPONENT_INDEX.md
+++ b/COMPONENT_INDEX.md
@@ -2946,6 +2946,7 @@ None.
| :-------------- | :--------------- | :------- | :------------------- | ------------------------------------------------ | -------------------------------------------------------- |
| checked | let
| Yes | boolean
| false
| Set to `true` to check the tile |
| light | let
| No | boolean
| false
| Set to `true` to enable the light variant |
+| disabled | let
| No | boolean
| false
| Set to `true` to disable the tile |
| value | let
| No | string
| ""
| Specify the value of the radio input |
| tabindex | let
| No | string
| "0"
| Specify the tabindex |
| iconDescription | let
| No | string
| "Tile checkmark"
| Specify the ARIA label for the radio tile checkmark icon |
@@ -3159,6 +3160,7 @@ None.
| ref | let
| Yes | null | HTMLInputElement
| null
| Obtain a reference to the input HTML element |
| selected | let
| Yes | boolean
| false
| Set to `true` to select the tile |
| light | let
| No | boolean
| false
| Set to `true` to enable the light variant |
+| disabled | let
| No | boolean
| false
| Set to `true` to disable the tile |
| title | let
| No | string
| "title"
| Specify the title of the selectable tile |
| value | let
| No | string
| "value"
| Specify the value of the selectable tile |
| tabindex | let
| No | string
| "0"
| Specify the tabindex |
diff --git a/docs/src/COMPONENT_API.json b/docs/src/COMPONENT_API.json
index cc69964c..73399002 100644
--- a/docs/src/COMPONENT_API.json
+++ b/docs/src/COMPONENT_API.json
@@ -7523,6 +7523,16 @@
"constant": false,
"reactive": false
},
+ {
+ "name": "disabled",
+ "kind": "let",
+ "description": "Set to `true` to disable the tile",
+ "type": "boolean",
+ "value": "false",
+ "isFunction": false,
+ "constant": false,
+ "reactive": false
+ },
{
"name": "value",
"kind": "let",
@@ -8176,6 +8186,16 @@
"constant": false,
"reactive": false
},
+ {
+ "name": "disabled",
+ "kind": "let",
+ "description": "Set to `true` to disable the tile",
+ "type": "boolean",
+ "value": "false",
+ "isFunction": false,
+ "constant": false,
+ "reactive": false
+ },
{
"name": "title",
"kind": "let",
diff --git a/docs/src/pages/components/RadioTile.svx b/docs/src/pages/components/RadioTile.svx
index 263a8e23..1ec54f42 100644
--- a/docs/src/pages/components/RadioTile.svx
+++ b/docs/src/pages/components/RadioTile.svx
@@ -33,4 +33,18 @@ components: ["TileGroup", "RadioTile"]