diff --git a/COMPONENT_INDEX.md b/COMPONENT_INDEX.md
index 7668f9e18e..69ad1f90d8 100644
--- a/COMPONENT_INDEX.md
+++ b/COMPONENT_INDEX.md
@@ -2903,14 +2903,15 @@ None.
### Props
-| Prop name | Kind | Reactive | Type | Default value | Description |
-| :--------- | :--------------- | :------- | :------------------- | ------------------------------------------------ | --------------------------------------------- |
-| value | let
| No | number
| undefined
| Specify the current value |
-| max | let
| No | number
| 100
| Specify the maximum value |
-| labelText | let
| No | string
| ""
| Specify the label text |
-| hideLabel | let
| No | boolean
| false
| Set to `true` to visually hide the label text |
-| helperText | let
| No | string
| ""
| Specify the helper text |
-| id | let
| No | string
| "ccs-" + Math.random().toString(36)
| Set an id for the progress bar element |
+| Prop name | Kind | Reactive | Type | Default value | Description |
+| :--------- | :--------------- | :------- | :---------------------------- | ------------------------------------------------ | --------------------------------------------- |
+| value | let
| No | number
| undefined
| Specify the current value |
+| max | let
| No | number
| 100
| Specify the maximum value |
+| size | let
| No | "sm" | "md"
| "md"
| Specify the size |
+| labelText | let
| No | string
| ""
| Specify the label text |
+| hideLabel | let
| No | boolean
| false
| Set to `true` to visually hide the label text |
+| helperText | let
| No | string
| ""
| Specify the helper text |
+| id | let
| No | string
| "ccs-" + Math.random().toString(36)
| Set an id for the progress bar element |
### Slots
@@ -3040,6 +3041,7 @@ None.
| selected | let
| Yes | string
| undefined
| Set the selected radio button value |
| disabled | let
| No | boolean
| false
| Set to `true` to disable the radio buttons |
| legendText | let
| No | string
| ""
| Specify the legend text |
+| hideLegend | let
| No | boolean
| false
| Set to `true` to visually hide the legend |
| labelPosition | let
| No | "right" | "left"
| "right"
| Specify the label position |
| orientation | let
| No | "horizontal" | "vertical"
| "horizontal"
| Specify the orientation of the radio buttons |
| id | let
| No | string
| undefined
| Set an id for the container div element |
diff --git a/docs/package.json b/docs/package.json
index 87dd32d39e..7d4c6515d4 100644
--- a/docs/package.json
+++ b/docs/package.json
@@ -12,7 +12,7 @@
"@sveltech/routify": "^1.9.9",
"@sveltejs/vite-plugin-svelte": "^1.0.0-next.33",
"autoprefixer": "^10.2.3",
- "carbon-components": "10.53.0",
+ "carbon-components": "10.54.0",
"carbon-components-10.47": "npm:carbon-components@10.47",
"carbon-components-svelte": "../",
"carbon-icons-svelte": "^10.44.3",
diff --git a/docs/src/COMPONENT_API.json b/docs/src/COMPONENT_API.json
index 027452915a..b9ccb5ce51 100644
--- a/docs/src/COMPONENT_API.json
+++ b/docs/src/COMPONENT_API.json
@@ -8354,6 +8354,17 @@
"constant": false,
"reactive": false
},
+ {
+ "name": "size",
+ "kind": "let",
+ "description": "Specify the size",
+ "type": "\"sm\" | \"md\"",
+ "value": "\"md\"",
+ "isFunction": false,
+ "isFunctionDeclaration": false,
+ "constant": false,
+ "reactive": false
+ },
{
"name": "labelText",
"kind": "let",
@@ -8782,6 +8793,17 @@
"constant": false,
"reactive": false
},
+ {
+ "name": "hideLegend",
+ "kind": "let",
+ "description": "Set to `true` to visually hide the legend",
+ "type": "boolean",
+ "value": "false",
+ "isFunction": false,
+ "isFunctionDeclaration": false,
+ "constant": false,
+ "reactive": false
+ },
{
"name": "labelPosition",
"kind": "let",
diff --git a/docs/src/pages/components/ProgressBar.svx b/docs/src/pages/components/ProgressBar.svx
index 7ed85752da..e24a46f1b2 100644
--- a/docs/src/pages/components/ProgressBar.svx
+++ b/docs/src/pages/components/ProgressBar.svx
@@ -9,8 +9,16 @@ Without a specified `value` prop, the progress bar is indeterminate.