diff --git a/package-lock.json b/package-lock.json index f98440b2b8a7..1bdc5645c27d 100644 --- a/package-lock.json +++ b/package-lock.json @@ -42,9 +42,9 @@ "@nx/workspace": "17.0.2", "@playwright/test": "1.39.0", "@taiga-ui/browserslist-config": "0.3.0", - "@taiga-ui/commitlint-config": "0.3.2", + "@taiga-ui/commitlint-config": "0.3.3", "@taiga-ui/cspell-config": "0.18.0", - "@taiga-ui/eslint-plugin-experience": "0.12.5", + "@taiga-ui/eslint-plugin-experience": "0.14.4", "@taiga-ui/prettier-config": "0.4.1", "@taiga-ui/stylelint-config": "0.6.0", "@taiga-ui/tsconfig": "0.2.4", @@ -7940,9 +7940,9 @@ "link": true }, "node_modules/@taiga-ui/commitlint-config": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/@taiga-ui/commitlint-config/-/commitlint-config-0.3.2.tgz", - "integrity": "sha512-AtFX+8qZf+FTCge9AiIxaTgGuFckL5EU/mN5uMADK8jIz4kL565McQ/Q5CetapMTYg+r885DlXBNYza7nj0hEA==", + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/@taiga-ui/commitlint-config/-/commitlint-config-0.3.3.tgz", + "integrity": "sha512-qJNX+IkudkzxA/Mlf6n6KUyCvRmntTMAu+2MHgo1tKt01V9CfHj8M8E5dk8ZZ2ofT4nw7cTJCmuetfefVMN3zA==", "dev": true, "dependencies": { "@commitlint/config-conventional": "18.1.0" @@ -7979,9 +7979,9 @@ "link": true }, "node_modules/@taiga-ui/eslint-plugin-experience": { - "version": "0.12.5", - "resolved": "https://registry.npmjs.org/@taiga-ui/eslint-plugin-experience/-/eslint-plugin-experience-0.12.5.tgz", - "integrity": "sha512-O8tIKzBzEMqIQWwbdqEzOa9/QCVAYu+bKl0BbaTsf+/1BDKnBJ2YqG5/OrhTDigwxD3Yc7ayQqhKlqsQkDHo+g==", + "version": "0.14.4", + "resolved": "https://registry.npmjs.org/@taiga-ui/eslint-plugin-experience/-/eslint-plugin-experience-0.14.4.tgz", + "integrity": "sha512-UyJWLVZ1DAZ3C0XxM6rckHGZCGAOQJGDzKcXul6t4lbVnj5Ve6Bmm/ieeQJPJTTK9gijJk8RqYBmXY3w2MV2lw==", "dev": true, "dependencies": { "@angular-eslint/eslint-plugin": "16.2.0", diff --git a/package.json b/package.json index ca8b81838ed5..db00115a4d0a 100644 --- a/package.json +++ b/package.json @@ -127,9 +127,9 @@ "@nx/workspace": "17.0.2", "@playwright/test": "1.39.0", "@taiga-ui/browserslist-config": "0.3.0", - "@taiga-ui/commitlint-config": "0.3.2", + "@taiga-ui/commitlint-config": "0.3.3", "@taiga-ui/cspell-config": "0.18.0", - "@taiga-ui/eslint-plugin-experience": "0.12.5", + "@taiga-ui/eslint-plugin-experience": "0.14.4", "@taiga-ui/prettier-config": "0.4.1", "@taiga-ui/stylelint-config": "0.6.0", "@taiga-ui/tsconfig": "0.2.4", diff --git a/projects/core/components/calendar/calendar.component.ts b/projects/core/components/calendar/calendar.component.ts index a7532d685320..32e6c7fd77b5 100644 --- a/projects/core/components/calendar/calendar.component.ts +++ b/projects/core/components/calendar/calendar.component.ts @@ -28,7 +28,7 @@ import {TuiMarkerHandler} from '@taiga-ui/core/types'; changeDetection: ChangeDetectionStrategy.OnPush, }) export class TuiCalendarComponent implements TuiWithOptionalMinMax { - private _value: TuiDay | TuiDayRange | readonly TuiDay[] | null = null; + private day: TuiDay | TuiDayRange | readonly TuiDay[] | null = null; @Input() month: TuiMonth = TuiMonth.currentLocal(); @@ -59,7 +59,7 @@ export class TuiCalendarComponent implements TuiWithOptionalMinMax { @Input() set value(value: TuiDay | TuiDayRange | readonly TuiDay[] | null) { - this._value = value; + this.day = value; if (this.showAdjacent && value instanceof TuiDay) { this.month = value; @@ -67,7 +67,7 @@ export class TuiCalendarComponent implements TuiWithOptionalMinMax { } get value(): TuiDay | TuiDayRange | readonly TuiDay[] | null { - return this._value; + return this.day; } @Output()