chore(): run lint

This commit is contained in:
Maria Hutt
2026-03-05 12:04:33 -08:00
parent e250818b94
commit 89485a62ba
3 changed files with 14 additions and 4 deletions

View File

@@ -2213,7 +2213,12 @@ export class Datetime implements ComponentInterface {
</div>
<div class="calendar-next-prev">
<ion-button aria-label="Previous month" disabled={prevMonthDisabled} onClick={() => this.prevMonth()} part="navigation-button previous-button">
<ion-button
aria-label="Previous month"
disabled={prevMonthDisabled}
onClick={() => this.prevMonth()}
part="navigation-button previous-button"
>
<ion-icon
dir={hostDir}
aria-hidden="true"
@@ -2223,7 +2228,12 @@ export class Datetime implements ComponentInterface {
flipRtl
></ion-icon>
</ion-button>
<ion-button aria-label="Next month" disabled={nextMonthDisabled} onClick={() => this.nextMonth()} part="navigation-button next-button">
<ion-button
aria-label="Next month"
disabled={nextMonthDisabled}
onClick={() => this.nextMonth()}
part="navigation-button next-button"
>
<ion-icon
dir={hostDir}
aria-hidden="true"

View File

@@ -8,7 +8,7 @@ import type { Color } from '../../interface';
/**
* @virtualProp {"ios" | "md"} mode - The mode determines the platform behaviors of the component.
* @virtualProp {"ios" | "md" | "ionic"} theme - The theme determines the visual appearance of the component.
*
*
* @part inner - The inner wrapper element that arranges the list header content.
*/
@Component({

View File

@@ -292,7 +292,7 @@ export const initialize = (userConfig: IonicConfig = {}) => {
cIC(rICHandle);
}
rICHandle =rIC(async () => {
rICHandle = rIC(async () => {
const isHybrid = isPlatform(window, 'hybrid');
if (!config.getBoolean('_testing')) {
import('../utils/tap-click').then((module) => module.startTapClick(config));