@@ -737,6 +817,83 @@ export class Calendar implements OnInit, OnDestroy, ControlValueAccessor {
* @group Props
*/
@Input() showTransitionOptions: string = '.12s cubic-bezier(0, 0, 0.2, 1)';
+ /**
+ * Used to pass all properties of the ButtonProps to the Button component.
+ * @group Props
+ */
+ @Input() yearButtonProps: ButtonProps;
+ /**
+ * Used to pass all properties of the ButtonProps to the Button component.
+ * @group Props
+ */
+ @Input() monthButtonProps: ButtonProps;
+ /**
+ /**
+ * Used to pass all properties of the ButtonProps to the Button component.
+ * @group Props
+ */
+ @Input() nextButtonProps: ButtonProps;
+ /**
+ /**
+ * Used to pass all properties of the ButtonProps to the Button component.
+ * @group Props
+ */
+ @Input() prevButtonProps: ButtonProps;
+ /**
+ * Used to pass all properties of the ButtonProps to the Button component.
+ * @group Props
+ */
+ @Input() iconButtonProps: ButtonProps;
+ /**
+ * Used to pass all properties of the ButtonProps to the Button component.
+ * @group Props
+ */
+ @Input() hourPickerIncrementButtonProps: ButtonProps;
+ /**
+ * Used to pass all properties of the ButtonProps to the Button component.
+ * @group Props
+ */
+ @Input() hourPickerDecrementButtonProps: ButtonProps;
+ /**
+ * Used to pass all properties of the ButtonProps to the Button component.
+ * @group Props
+ */
+ @Input() minutePickerIncrementButtonProps: ButtonProps;
+ /**
+ * Used to pass all properties of the ButtonProps to the Button component.
+ * @group Props
+ */
+ @Input() minutePickerDecrementButtonProps: ButtonProps;
+ /**
+ * Used to pass all properties of the ButtonProps to the Button component.
+ * @group Props
+ */
+ @Input() secondPickerIncrementButtonProps: ButtonProps;
+ /**
+ * Used to pass all properties of the ButtonProps to the Button component.
+ * @group Props
+ */
+ @Input() secondPickerDecrementButtonProps: ButtonProps;
+ /**
+ * Used to pass all properties of the ButtonProps to the Button component.
+ * @group Props
+ */
+ @Input() ampmPickerIncrementButtonProps: ButtonProps;
+ /**
+ * Used to pass all properties of the ButtonProps to the Button component.
+ * @group Props
+ */
+ @Input() ampmPickerDecrementButtonProps: ButtonProps;
+ /**
+ * Used to pass all properties of the ButtonProps to the Button component.
+ * @group Props
+ */
+ @Input() todayButtonProps: ButtonProps;
+ /**
+ * Used to pass all properties of the ButtonProps to the Button component.
+ * @group Props
+ */
+ @Input() clearButtonProps: ButtonProps;
/**
* Transition options of the hide animation.
* @group Props