{ "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", "\n @if (!!label) {\n {{ label }}\n } @else {\n \n }\n\n", "import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { FormsModule, ReactiveFormsModule } from '@angular/forms';\nimport { MatCheckboxModule } from '@angular/material/checkbox';\n\nimport { CheckboxComponent } from './checkbox.component';\nexport { CheckboxComponent } from './checkbox.component';\n\n@NgModule({\n declarations: [CheckboxComponent],\n exports: [CheckboxComponent],\n imports: [CommonModule, MatCheckboxModule, FormsModule, ReactiveFormsModule],\n})\nexport class GalaxyCheckboxModule {}\n", "export {};\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJuYW1lcyI6W10sInNvdXJjZXMiOlsiaW50ZXJmYWNlLnRzIl0sInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IFVudHlwZWRGb3JtQ29udHJvbCB9IGZyb20gJ0Bhbmd1bGFyL2Zvcm1zJztcblxuZXhwb3J0IGludGVyZmFjZSBHYWxheHlDaGVja2JveENvbmZpZ0ludGVyZmFjZSB7XG4gIGZvcm1Db250cm9sPzogVW50eXBlZEZvcm1Db250cm9sO1xuICBsYWJlbD86IHN0cmluZztcbiAgZGlzYWJsZWQ/OiBib29sZWFuO1xufVxuIl0sIm1hcHBpbmdzIjoiIiwiaWdub3JlTGlzdCI6W119", "export * from './src/checkbox.module';\nexport * from './src/interface';\n", "export * from './public_api';\n", "import { Component, Directive, HostBinding } from '@angular/core';\n\n@Component({\n selector: 'glxy-confirmation-actions',\n imports: [],\n templateUrl: './modal-actions.component.html',\n styleUrls: ['./modal-actions.component.scss'],\n})\nexport class ModalActionsComponent {}\n\n// Directives\n\n@Directive({\n standalone: true,\n selector: 'glxy-confirmation-primary-actions, [glxyConfirmationPrimaryActions]',\n})\nexport class ConfirmationModalActionsDirective {\n @HostBinding('class') class = 'glxy-confirmation-primary-actions';\n}\n\n@Directive({\n standalone: true,\n selector: 'glxy-confirmation-secondary-actions, [glxyConfirmationSecondaryActions]',\n})\nexport class ConfirmationModalSecondaryActionsDirective {\n @HostBinding('class') class = 'glxy-confirmation-secondary-actions';\n}\n", "\n\n\n", "import { Component, Directive, HostBinding } from '@angular/core';\n\n@Component({\n selector: 'glxy-confirmation-body',\n imports: [],\n templateUrl: './modal-body.component.html',\n styleUrls: ['./modal-body.component.scss'],\n})\nexport class ModalBodyComponent {}\n\n// Directives\n\n@Directive({\n standalone: true,\n selector: 'glxy-confirmation-icon, [glxyConfirmationIcon]',\n})\nexport class ConfirmationModalIconDirective {\n @HostBinding('class') class = 'glxy-confirmation-icon';\n}\n\n@Directive({\n standalone: true,\n selector: 'glxy-confirmation-title, [glxyConfirmationTitle]',\n})\nexport class ConfirmationModalTitleDirective {\n @HostBinding('class') class = 'glxy-confirmation-title';\n}\n\n@Directive({\n standalone: true,\n selector: 'glxy-confirmation-message, [glxyConfirmationMessage]',\n})\nexport class ConfirmationModalMessageDirective {\n @HostBinding('class') class = 'glxy-confirmation-message';\n}\n\n@Directive({\n standalone: true,\n selector: 'glxy-confirmation-custom-content, [glxyConfirmationCustomContent]',\n})\nexport class ConfirmationModalCustomContentDirective {\n @HostBinding('class') class = 'glxy-confirmation-custom-content';\n}\n", "
\n \n
\n\n\n\n\n\n\n", "import { Component, HostBinding, HostListener, inject } from '@angular/core';\nimport { MatButtonModule } from '@angular/material/button';\nimport { MatCheckboxModule } from '@angular/material/checkbox';\nimport { MAT_DIALOG_DATA, MatDialogModule, MatDialogRef } from '@angular/material/dialog';\nimport { MatIconModule } from '@angular/material/icon';\nimport { TranslateModule } from '@ngx-translate/core';\nimport { GalaxyI18NModule } from '@vendasta/galaxy/i18n';\nimport { ConfirmationModalConfig } from '../confirmation-modal.service';\nimport {\n ConfirmationModalActionsDirective,\n ConfirmationModalSecondaryActionsDirective,\n ModalActionsComponent,\n} from '../modal-actions/modal-actions.component';\nimport {\n ConfirmationModalIconDirective,\n ConfirmationModalMessageDirective,\n ConfirmationModalTitleDirective,\n ModalBodyComponent,\n} from '../modal-body/modal-body.component';\n\n@Component({\n selector: 'glxy-confirmation-modal',\n imports: [\n TranslateModule,\n MatDialogModule,\n MatButtonModule,\n MatIconModule,\n MatCheckboxModule,\n GalaxyI18NModule,\n ModalBodyComponent,\n ModalActionsComponent,\n ConfirmationModalIconDirective,\n ConfirmationModalMessageDirective,\n ConfirmationModalTitleDirective,\n ConfirmationModalActionsDirective,\n ConfirmationModalSecondaryActionsDirective,\n ],\n templateUrl: './confirmation-modal.component.html',\n styleUrls: ['./confirmation-modal.component.scss'],\n})\nexport class ConfirmationModalComponent {\n @HostBinding('class') class = 'glxy-confirmation-modal';\n\n @HostListener('document:keydown.enter', ['$event']) onEnter(event: KeyboardEvent) {\n // fire the confirm action if the user presses enter\n // unless the user pressed enter on the cancel button\n const target = event?.target as HTMLButtonElement;\n const isCancelButton = target?.id === 'confirmation-modal-cancel-button';\n\n if (this.config.actionOnEnterKey !== false && !isCancelButton) {\n this.dialogActionClicked();\n }\n }\n\n public dialogRef = inject(MatDialogRef);\n public config: ConfirmationModalConfig = inject(MAT_DIALOG_DATA);\n\n dialogActionClicked() {\n this.dialogRef.close(true);\n }\n}\n", "\n \n {{ config.type === 'warn' ? 'warning' : 'info' }}\n \n\n \n {{ config.title | translate }}\n \n\n \n {{ config.message ?? '' | translate }}\n \n\n\n\n @if (config.showCheckbox) {\n \n {{ config.checkboxText ?? 'GALAXY.CONFIRMATION_MODAL.DONT_SHOW_AGAIN' | translate }}\n \n }\n\n \n @if (!config.hideCancel) {\n \n }\n\n \n \n\n", "import { Injectable, inject } from '@angular/core';\nimport { MatDialog } from '@angular/material/dialog';\nimport { Observable } from 'rxjs';\nimport { ConfirmationModalComponent } from './confirmation-modal/confirmation-modal.component';\n\nexport interface ConfirmationModalConfig {\n type?: 'confirm' | 'warn';\n title: string;\n message?: string;\n confirmButtonText?: string;\n hideCancel?: boolean;\n cancelButtonText?: string;\n actionOnEnterKey?: boolean;\n cancelOnEscapeKeyOrBackgroundClick?: boolean;\n width?: number;\n showCheckbox?: boolean; // for future updates\n checkboxText?: string; // for future updates\n}\n\nexport const ConfirmationModalWidth = '540px';\nexport const ConfirmationModalMaxWidth = 'calc( 100vw - 8px )';\n\n@Injectable({\n providedIn: 'root',\n})\nexport class OpenConfirmationModalService {\n // in order to use this service, you MUST import the MatDialogModule in your base app.module\n // otherwise you will get an error like this:\n //\n // ERROR Error: Uncaught (in promise): NullInjectorError:\n // R3InjectorError(ConfirmationModalModule)[OpenConfirmationModalService -> OpenConfirmationModalService\n // -> MatDialog -> MatDialog]: NullInjectorError: No provider for MatDialog!\n //\n\n private readonly dialog = inject(MatDialog);\n\n openModal(config: ConfirmationModalConfig): Observable {\n return this.dialog\n .open(ConfirmationModalComponent, {\n data: config,\n width: config.width ? config.width + 'px' : ConfirmationModalWidth,\n maxWidth: ConfirmationModalMaxWidth,\n autoFocus: false,\n disableClose: config.cancelOnEscapeKeyOrBackgroundClick === false,\n })\n .afterClosed();\n // this observable autocloses after the first value is emitted\n // so no need to unsubscribe or use take(1)\n }\n}\n", "import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { MatDialogModule } from '@angular/material/dialog';\n\nexport * from './confirmation-modal.service';\n\nimport { ConfirmationModalComponent } from './confirmation-modal/confirmation-modal.component';\nexport { ConfirmationModalComponent };\n\nimport {\n ConfirmationModalIconDirective,\n ConfirmationModalMessageDirective,\n ConfirmationModalTitleDirective,\n ConfirmationModalCustomContentDirective,\n ModalBodyComponent,\n} from './modal-body/modal-body.component';\nexport {\n ConfirmationModalIconDirective,\n ConfirmationModalMessageDirective,\n ConfirmationModalTitleDirective,\n ConfirmationModalCustomContentDirective,\n ModalBodyComponent,\n};\n\nimport {\n ConfirmationModalActionsDirective,\n ConfirmationModalSecondaryActionsDirective,\n ModalActionsComponent,\n} from './modal-actions/modal-actions.component';\nexport { ConfirmationModalActionsDirective, ConfirmationModalSecondaryActionsDirective, ModalActionsComponent };\n\nexport const MODULE_IMPORTS_EXPORTS = [\n ConfirmationModalComponent,\n ConfirmationModalActionsDirective,\n ConfirmationModalSecondaryActionsDirective,\n ModalActionsComponent,\n ConfirmationModalIconDirective,\n ConfirmationModalMessageDirective,\n ConfirmationModalTitleDirective,\n ConfirmationModalCustomContentDirective,\n ModalBodyComponent,\n];\n\n@NgModule({\n imports: [CommonModule, MatDialogModule, ...MODULE_IMPORTS_EXPORTS],\n exports: MODULE_IMPORTS_EXPORTS,\n})\nexport class GalaxyConfirmationModalModule {}\n", "// Export things like public API, and interfaces from here.\nexport * from './src/confirmation-modal.module';\n", "export * from './public_api';\n"], "mappings": "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", "names": ["\u0275\u0275text", "\u0275\u0275textInterpolate1", "ctx_r0", "label", "\u0275\u0275projection", "CheckboxComponent", "init_checkbox_component", "__esmMin", "init_core", "init_forms", "constructor", "class", "inputValue", "isDisabled", "onChange", "_value", "onTouched", "disabled", "setDisabledState", "ngOnInit", "setupControl", "config", "formControl", "UntypedFormControl", "writeValue", "value", "registerOnChange", "fn", "registerOnTouched", "disable", "enable", "selectors", "hostVars", "hostBindings", "rf", "ctx", "\u0275\u0275classMap", "booleanAttribute", "standalone", "features", "\u0275\u0275ProvidersFeature", "provide", "NG_VALUE_ACCESSOR", "useExisting", "forwardRef", "multi", "\u0275\u0275InputTransformsFeature", "ngContentSelectors", "_c0", "decls", "vars", "consts", "template", "\u0275\u0275elementStart", "\u0275\u0275listener", "$event", "checked", "\u0275\u0275template", "CheckboxComponent_Conditional_1_Template", "CheckboxComponent_Conditional_2_Template", "\u0275\u0275elementEnd", "\u0275\u0275property", "id", "\u0275\u0275advance", "\u0275\u0275conditional", "GalaxyCheckboxModule", "init_checkbox_module", "__esmMin", "init_common", "init_forms", "init_checkbox", "CommonModule", "MatCheckboxModule", "FormsModule", "ReactiveFormsModule", "init_interface", "__esmMin", "init_public_api", "__esmMin", "init_checkbox_module", "init_interface", "init_checkbox", "__esmMin", "init_public_api", "ModalActionsComponent", "ConfirmationModalActionsDirective", "ConfirmationModalSecondaryActionsDirective", "init_modal_actions_component", "__esmMin", "selectors", "ngContentSelectors", "_c1", "decls", "vars", "template", "rf", "ctx", "\u0275\u0275projection", "constructor", "class", "hostVars", "hostBindings", "\u0275\u0275classMap", "ModalBodyComponent", "ConfirmationModalIconDirective", "ConfirmationModalTitleDirective", "ConfirmationModalMessageDirective", "ConfirmationModalCustomContentDirective", "init_modal_body_component", "__esmMin", "selectors", "ngContentSelectors", "_c1", "decls", "vars", "consts", "template", "rf", "ctx", "\u0275\u0275elementStart", "\u0275\u0275projection", "\u0275\u0275elementEnd", "constructor", "class", "hostVars", "hostBindings", "\u0275\u0275classMap", "\u0275\u0275elementStart", "\u0275\u0275text", "\u0275\u0275elementEnd", "\u0275\u0275advance", "\u0275\u0275textInterpolate", "\u0275\u0275pipeBind1", "tmp_1_0", "ctx_r0", "config", "checkboxText", "undefined", "\u0275\u0275textInterpolate1", "cancelButtonText", "ConfirmationModalComponent", "init_confirmation_modal_component", "__esmMin", "init_core", "init_button", "init_checkbox", "init_dialog", "init_icon", "init_ngx_translate_core", "init_i18n", "init_modal_actions_component", "init_modal_body_component", "constructor", "class", "dialogRef", "inject", "MatDialogRef", "MAT_DIALOG_DATA", "onEnter", "event", "isCancelButton", "target", "id", "actionOnEnterKey", "dialogActionClicked", "close", "selectors", "hostVars", "hostBindings", "rf", "ctx", "\u0275\u0275listener", "$event", "\u0275\u0275resolveDocument", "\u0275\u0275classMap", "\u0275\u0275template", "ConfirmationModalComponent_Conditional_10_Template", "ConfirmationModalComponent_Conditional_12_Template", "\u0275\u0275classProp", "type", "title", "tmp_3_0", "message", "\u0275\u0275conditional", "showCheckbox", "hideCancel", "\u0275\u0275property", "tmp_7_0", "confirmButtonText", "TranslateModule", "TranslatePipe", "MatDialogModule", "MatDialogClose", "MatButtonModule", "MatButton", "MatIconModule", "MatIcon", "MatCheckboxModule", "MatCheckbox", "GalaxyI18NModule", "ModalBodyComponent", "ModalActionsComponent", "ConfirmationModalIconDirective", "ConfirmationModalMessageDirective", "ConfirmationModalTitleDirective", "ConfirmationModalActionsDirective", "ConfirmationModalSecondaryActionsDirective", "styles", "ConfirmationModalWidth", "ConfirmationModalMaxWidth", "OpenConfirmationModalService", "init_confirmation_modal_service", "__esmMin", "init_core", "init_dialog", "init_confirmation_modal_component", "constructor", "dialog", "inject", "MatDialog", "openModal", "config", "open", "ConfirmationModalComponent", "data", "width", "maxWidth", "autoFocus", "disableClose", "cancelOnEscapeKeyOrBackgroundClick", "afterClosed", "factory", "\u0275fac", "providedIn", "GalaxyConfirmationModalModule", "init_confirmation_modal_module", "__esmMin", "init_common", "init_dialog", "init_confirmation_modal_component", "init_modal_body_component", "init_modal_actions_component", "init_confirmation_modal_service", "CommonModule", "MatDialogModule", "ConfirmationModalComponent", "init_public_api", "__esmMin", "init_confirmation_modal_module", "init_confirmation_modal", "__esmMin", "init_public_api"] }