@@ -656,15 +656,15 @@ import type { DateInputValidityState as IIxDateInputDateInputValidityState } fro
656656
657657export declare interface IxDateInput extends Components . IxDateInput {
658658 /**
659- * Input change event.
659+ * Value change event. Emitted when the input value changes .
660660 */
661661 valueChange : EventEmitter < CustomEvent < string | undefined > > ;
662662 /**
663- * Validation state change event.
663+ * Validation state change event. Emitted when the validation state changes.
664664 */
665665 validityStateChange : EventEmitter < CustomEvent < IIxDateInputDateInputValidityState > > ;
666666 /**
667- * Event emitted when the date input loses focus and the value has changed. @since 4.4.0
667+ * Change event. Emitted when the date input loses focus and the value has changed. @since 4.4.0
668668 */
669669 ixChange : EventEmitter < CustomEvent < string | undefined > > ;
670670}
@@ -706,13 +706,13 @@ Note: Since 2.0.0 `dateChange` does not dispatch detail property as `string`
706706 */
707707 dateChange : EventEmitter < CustomEvent < IIxDatePickerDateChangeEvent > > ;
708708 /**
709- * Emitted when the date range selection changes and the component is in range mode. The `DateChangeEvent` contains `from` and `to` properties.
709+ * Date range change event. Emitted when the date range selection changes and the component is in range mode. The `DateChangeEvent` contains `from` and `to` properties.
710710The property strings are formatted according to the `format` property and not affected by the `locale` property.
711711The locale applied is always `en-US`.
712712 */
713713 dateRangeChange : EventEmitter < CustomEvent < IIxDatePickerDateChangeEvent > > ;
714714 /**
715- * Emitted when the selection is confirmed via the date select button. The `DateChangeEvent` contains `from` and `to` properties.
715+ * Date selection event. Emitted when the selection is confirmed via the date select button. The `DateChangeEvent` contains `from` and `to` properties.
716716The property strings are formatted according to the `format` property and not affected by the `locale` property.
717717The locale applied is always `en-US`.
718718 */
@@ -749,15 +749,15 @@ import type { DateTimeSelectEvent as IIxDatetimePickerDateTimeSelectEvent } from
749749
750750export declare interface IxDatetimePicker extends Components . IxDatetimePicker {
751751 /**
752- * Time change
752+ * Time change event. Emitted when the time changes in the embedded time picker.
753753 */
754754 timeChange : EventEmitter < CustomEvent < string > > ;
755755 /**
756- * Date change
756+ * Date change event. Emitted when the date changes in the embedded date picker.
757757 */
758758 dateChange : EventEmitter < CustomEvent < IIxDatetimePickerDateTimeDateChangeEvent > > ;
759759 /**
760- * Datetime selection event is fired after confirm button is pressed
760+ * Datetime selection event. Emitted when the user confirms the selection.
761761 */
762762 dateSelect : EventEmitter < CustomEvent < IIxDatetimePickerDateTimeSelectEvent > > ;
763763}
@@ -2535,7 +2535,9 @@ export class IxTabs {
25352535
25362536export declare interface IxTabs extends Components . IxTabs {
25372537 /**
2538- * `selected` property changed
2538+ * Tab selection event. Event detail is the zero-based tab index. Fires when
2539+ the user selects a tab, or when the tab list changes and the selected index
2540+ is adjusted. Not emitted when `selected` is set from outside.
25392541 */
25402542 selectedChange : EventEmitter < CustomEvent < number > > ;
25412543}
@@ -2639,15 +2641,15 @@ import type { TimeInputValidityState as IIxTimeInputTimeInputValidityState } fro
26392641
26402642export declare interface IxTimeInput extends Components . IxTimeInput {
26412643 /**
2642- * Input change event.
2644+ * Value change event. Emitted when the input value changes .
26432645 */
26442646 valueChange : EventEmitter < CustomEvent < string > > ;
26452647 /**
2646- * Validation state change event.
2648+ * Validation state change event. Emitted when the validation state changes.
26472649 */
26482650 validityStateChange : EventEmitter < CustomEvent < IIxTimeInputTimeInputValidityState > > ;
26492651 /**
2650- * Event emitted when the time input loses focus and the value has changed. @since 4.4.0
2652+ * Change event. Emitted when the time input loses focus and the value has changed. @since 4.4.0
26512653 */
26522654 ixChange : EventEmitter < CustomEvent < string > > ;
26532655}
@@ -2679,11 +2681,11 @@ export class IxTimePicker {
26792681
26802682export declare interface IxTimePicker extends Components . IxTimePicker {
26812683 /**
2682- * Time event
2684+ * Time event. Emitted when the user confirms the selected time.
26832685 */
26842686 timeSelect : EventEmitter < CustomEvent < string > > ;
26852687 /**
2686- * Time change event
2688+ * Time change event. Emitted when the selected time changes while interacting with the picker.
26872689 */
26882690 timeChange : EventEmitter < CustomEvent < string > > ;
26892691}
0 commit comments