diff --git a/COMPONENT_INDEX.md b/COMPONENT_INDEX.md index a886f15d..121b73cb 100644 --- a/COMPONENT_INDEX.md +++ b/COMPONENT_INDEX.md @@ -4260,7 +4260,7 @@ export type CarbonTheme = "white" | "g10" | "g80" | "g90" | "g100"; | :---------- | :------- | :--------------- | :------- | ----------------------------------------- | --------------------------------------------------- | ----------------------------------------------------- | | ref | No | let | Yes | null | HTMLInputElement | null | Obtain a reference to the input HTML element | | value | No | let | Yes | string | "" | Specify the input value | -| size | No | let | No | "sm" | "xl" | undefined | Specify the size of the input | +| size | No | let | No | "sm" | "lg" | undefined | Specify the size of the input | | placeholder | No | let | No | string | "hh:mm" | Specify the input placeholder text | | pattern | No | let | No | string | "(1[012]|[1-9]):[0-5][0-9](\\s)?" | Specify the `pattern` attribute for the input element | | maxlength | No | let | No | number | 5 | Specify the `maxlength` input attribute | diff --git a/docs/src/COMPONENT_API.json b/docs/src/COMPONENT_API.json index 33ae71f0..664a8c94 100644 --- a/docs/src/COMPONENT_API.json +++ b/docs/src/COMPONENT_API.json @@ -13165,7 +13165,7 @@ "name": "size", "kind": "let", "description": "Specify the size of the input", - "type": "\"sm\" | \"xl\"", + "type": "\"sm\" | \"lg\"", "isFunction": false, "isFunctionDeclaration": false, "isRequired": false, diff --git a/docs/src/pages/components/TimePicker.svx b/docs/src/pages/components/TimePicker.svx index 7f0d123d..d0a9e497 100644 --- a/docs/src/pages/components/TimePicker.svx +++ b/docs/src/pages/components/TimePicker.svx @@ -33,9 +33,9 @@ components: ["TimePicker", "TimePickerSelect", "SelectItem"] -## Extra-large size +## Large size - + diff --git a/src/TimePicker/TimePicker.svelte b/src/TimePicker/TimePicker.svelte index 29def9a6..3d812f12 100644 --- a/src/TimePicker/TimePicker.svelte +++ b/src/TimePicker/TimePicker.svelte @@ -1,7 +1,7 @@