{
"version": 3,
"sources": ["libs/galaxy/checkbox/src/checkbox.component.ts", "libs/galaxy/checkbox/src/checkbox.component.html", "libs/galaxy/checkbox/src/checkbox.module.ts", "libs/galaxy/checkbox/src/interface.ts", "libs/galaxy/checkbox/public_api.ts", "libs/galaxy/checkbox/index.ts", "libs/galaxy/confirmation-modal/src/modal-actions/modal-actions.component.ts", "libs/galaxy/confirmation-modal/src/modal-actions/modal-actions.component.html", "libs/galaxy/confirmation-modal/src/modal-body/modal-body.component.ts", "libs/galaxy/confirmation-modal/src/modal-body/modal-body.component.html", "libs/galaxy/confirmation-modal/src/confirmation-modal/confirmation-modal.component.ts", "libs/galaxy/confirmation-modal/src/confirmation-modal/confirmation-modal.component.html", "libs/galaxy/confirmation-modal/src/confirmation-modal.service.ts", "libs/galaxy/confirmation-modal/src/confirmation-modal.module.ts", "libs/galaxy/confirmation-modal/public_api.ts", "libs/galaxy/confirmation-modal/index.ts"],
"sourcesContent": ["import {\n booleanAttribute,\n ChangeDetectionStrategy,\n Component,\n forwardRef,\n HostBinding,\n Input,\n OnInit,\n} from '@angular/core';\nimport { ControlValueAccessor, NG_VALUE_ACCESSOR, UntypedFormControl } from '@angular/forms';\n\nimport { GalaxyCheckboxConfigInterface } from './interface';\n\n@Component({\n selector: 'glxy-checkbox',\n templateUrl: './checkbox.component.html',\n styleUrls: ['./checkbox.component.scss'],\n changeDetection: ChangeDetectionStrategy.OnPush,\n providers: [\n {\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(() => CheckboxComponent),\n multi: true,\n },\n ],\n standalone: false,\n})\nexport class CheckboxComponent implements OnInit, ControlValueAccessor {\n @HostBinding('class') class = 'glxy-checkbox';\n\n /** Id of the checkbox */\n @Input() id?: string;\n /** The form control for the input. If no form control is passed in, it will create its own */\n @Input() formControl?: UntypedFormControl;\n /** The label for the checkbox. If one is not provided, it will use the value passed in via ng-content */\n @Input() label?: string;\n /** Sets the disabled state of the checkboc */\n @Input({ transform: booleanAttribute }) set disabled(disabled: boolean) {\n this.setDisabledState(disabled);\n }\n @Input() config?: GalaxyCheckboxConfigInterface;\n\n inputValue = false;\n isDisabled = false;\n\n // Disables eslint on next line since the onChange function is meant to be overridden\n // eslint-disable-next-line @typescript-eslint/no-unused-vars\n onChange = (_value: boolean): void => {\n // This should be implemented to correctly implement ControlValueAccessor\n };\n\n // Disables eslint on next line since the onTouched function is meant to be overridden\n // eslint-disable-next-line @typescript-eslint/no-unused-vars\n onTouched = (_value: boolean): void => {\n // This should be implemented to correctly implement ControlValueAccessor\n };\n\n ngOnInit(): void {\n this.setupControl();\n }\n\n setupControl(): void {\n if (this.config) {\n this.formControl = this.config?.formControl || this.formControl;\n this.label = this.config?.label || this.label;\n this.disabled = this.config?.disabled || this.isDisabled;\n }\n if (!this.formControl) {\n this.formControl = new UntypedFormControl(this.inputValue);\n }\n this.setDisabledState(this.isDisabled);\n }\n\n writeValue(value: boolean): void {\n this.inputValue = value;\n this.onChange(value);\n }\n\n registerOnChange(fn: (value: boolean) => void): void {\n this.onChange = fn;\n }\n\n registerOnTouched(fn: (value: boolean) => void): void {\n this.onTouched = fn;\n }\n\n setDisabledState(isDisabled: boolean): void {\n // Do nothing when no change\n if (isDisabled === this.formControl?.disabled) {\n return;\n }\n\n this.isDisabled = isDisabled;\n\n if (this.formControl) {\n if (isDisabled) {\n this.formControl.disable();\n } else {\n this.formControl.enable();\n }\n }\n }\n}\n", "