On this page
Loading...
| name | description | type | default |
| ---- | ----------- | ---- | ------- |
| `time` | Initial selected time. | `Date` | _undefined_ |
| `cleaner` | Toggle visibility or set the content of the cleaner button. | `boolean` | _true_ |
| `disabled` | Toggle the disabled state for the component. | `boolean` | _false_ |
| `indicator` | Toggle visibility or set the content of the input indicator. | `boolean` | _true_ |
| `inputReadOnly` | Toggle the readonly state for the input. | `boolean` | _false_ |
| `locale` | Sets the default locale for components. If not set, it is inherited from the browser. | `string` | _default_ |
| `placeholder` | Specifies hint visible in time input. | `string` | _Select date_ |
| `seconds` | Toggle seconds visibility. | `boolean` | _false_ |
| `size` | Size the component input small or large. | `sm` \| `lg` | _undefined_ |
| `valid` | Set input validation visual feedback. | `boolean` | _undefined_ |
| `variant` | Set the time picker variant to a roll or select. | `roll` \| `select` | _roll_ |
| `visible` | Toggle the visibility of dropdown menu component. | `boolean` | _false_ |
| `filterHours` | Available hours to pick filter function. | `(value: number) => boolean` | _undefined_ |
| `filterMinutes` | Available minutes to pick filter function. | `(value: number) => boolean` | _undefined_ |
| `filterSeconds` | Available seconds to pick filter function. | `(value: number) => boolean` | _undefined_ |
##### Outputs
| name | description | type |
| ---- | ----------- | ---- |
| `timeChange` | Event emitted on `time` change | `Date` \| `undefined` |