Skip to content

Commit 3c61e7e

Browse files
serpentbladeclaude
andcommitted
chore(captcha,sortable-list): regen angular src for CVA protected emit
Keep the already-converted reference leaves' committed angular src consistent with the __rozieCvaDisabled private->protected emitter fix (regenerated by codegen; protected still builds clean). Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01KcWqckxMNtbU5LGEAvYXEk
1 parent 8af26a4 commit 3c61e7e

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

packages/ui/captcha/packages/angular/src/Captcha.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ export class Captcha {
112112

113113
private __rozieCvaOnChange: (v: string) => void = () => {};
114114
private __rozieCvaOnTouchedFn: () => void = () => {};
115-
private __rozieCvaDisabled = signal(false);
115+
protected __rozieCvaDisabled = signal(false);
116116

117117
writeValue(v: string | null): void {
118118
this.token.set(v ?? '');

packages/ui/captcha/packages/angular/src/RecaptchaV3.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ export class RecaptchaV3 {
8080

8181
private __rozieCvaOnChange: (v: string) => void = () => {};
8282
private __rozieCvaOnTouchedFn: () => void = () => {};
83-
private __rozieCvaDisabled = signal(false);
83+
protected __rozieCvaDisabled = signal(false);
8484

8585
writeValue(v: string | null): void {
8686
this.token.set(v ?? '');

packages/ui/sortable-list/packages/angular/src/SortableList.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@ export class SortableList {
322322

323323
private __rozieCvaOnChange: (v: any[]) => void = () => {};
324324
private __rozieCvaOnTouchedFn: () => void = () => {};
325-
private __rozieCvaDisabled = signal(false);
325+
protected __rozieCvaDisabled = signal(false);
326326

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

0 commit comments

Comments
 (0)