Organization Onboarding Workflow

This commit is contained in:
Gagan7900
2026-07-26 14:11:19 +05:30
parent f88f8739b8
commit 95fc5bf17f
61 changed files with 2645 additions and 1051 deletions
@@ -200,6 +200,7 @@ const BUTTON_ACTION_CONFIG: Record<ButtonAction, ButtonActionConfig> = {
selector: 'app-button',
standalone: true,
templateUrl: './button.html',
styleUrl: './button.scss',
changeDetection: ChangeDetectionStrategy.OnPush
})
export class Button {
@@ -231,6 +232,8 @@ export class Button {
readonly iconClass = input('');
readonly ariaLabel = input<string | null>(null);
readonly ariaExpanded = input<boolean | null>(null);
readonly ariaControls = input<string | null>(null);
readonly title = input<string | null>(null);
readonly buttonClicked = output<MouseEvent>();