Skip to content

Commit 8af26a4

Browse files
serpentbladeclaude
andcommitted
test(regressions): re-bless CVA __rozieCvaDisabled protected snapshots
Follow-up to the CVA private->protected emitter fix: three regression fixtures pin the angular emit and carried the old `private` form. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01KcWqckxMNtbU5LGEAvYXEk
1 parent 2c6182d commit 8af26a4

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

tests/regressions/fixtures/05-04b-todolist-slot-context-arrow/expected.angular.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ export class ScopedSlotContext {
7171

7272
private __rozieCvaOnChange: (v: any[]) => void = () => {};
7373
private __rozieCvaOnTouchedFn: () => void = () => {};
74-
private __rozieCvaDisabled = signal(false);
74+
protected __rozieCvaDisabled = signal(false);
7575

7676
writeValue(v: any[] | null): void {
7777
this.items.set(v ?? (() => [])());

tests/regressions/fixtures/06.4-lit-checkbox-rmodel/expected.angular.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export class CheckboxRModel {
3131

3232
private __rozieCvaOnChange: (v: boolean) => void = () => {};
3333
private __rozieCvaOnTouchedFn: () => void = () => {};
34-
private __rozieCvaDisabled = signal(false);
34+
protected __rozieCvaDisabled = signal(false);
3535

3636
writeValue(v: boolean | null): void {
3737
this.checked.set(v ?? false);

tests/regressions/fixtures/07-01-angular-counter-selector/expected.angular.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export class Counter {
3030

3131
private __rozieCvaOnChange: (v: number) => void = () => {};
3232
private __rozieCvaOnTouchedFn: () => void = () => {};
33-
private __rozieCvaDisabled = signal(false);
33+
protected __rozieCvaDisabled = signal(false);
3434

3535
writeValue(v: number | null): void {
3636
this.value.set(v ?? 0);

0 commit comments

Comments
 (0)