{ "version": 3, "sources": ["libs/galaxy/utility/coerce-css-value/src/coerce-css-value.ts", "libs/galaxy/utility/coerce-css-value/public_api.ts", "libs/galaxy/utility/coerce-css-value/index.ts", "libs/galaxy/form-field/src/directives/error.ts", "libs/galaxy/form-field/src/form-field.component.ts", "libs/galaxy/form-field/src/form-field.component.html", "libs/galaxy/form-field/src/form-row/form-row.component.ts", "libs/galaxy/form-field/src/form-row/form-row.component.html", "libs/galaxy/form-field/src/directives/label.ts", "libs/galaxy/form-field/src/directives/label-hint.ts", "libs/galaxy/form-field/src/directives/hint.ts", "libs/galaxy/form-field/src/directives/extended.ts", "libs/galaxy/form-field/src/directives/prefix.ts", "libs/galaxy/form-field/src/directives/suffix.ts", "libs/galaxy/form-field/src/form-field.module.ts", "libs/galaxy/form-field/public_api.ts", "libs/galaxy/form-field/index.ts"], "sourcesContent": ["/**\n * Will convert number values to pixels, or pass through other css unit values\n */\nexport function coerceCssValue(value: string | number): string | null {\n if (value == null) {\n return null;\n }\n // parseFloat(value) handles most of the cases we're interested in\n // (it treats null, empty string, and other non-number values as NaN,\n // where Number just uses 0) but it considers the string '123hello'\n // to be a valid number. Therefore we also check if Number(value) is NaN.\n if (!isNaN(parseFloat(value as any)) && !isNaN(Number(value))) {\n return `${value}px`;\n } else {\n return `${value}`;\n }\n}\n", "export * from './src/coerce-css-value';\n", "// Export things like public API, and interfaces from here.\nexport * from './public_api';\n", "import { Directive, HostBinding } from '@angular/core';\n\n@Directive({\n selector: 'glxy-error, [glxyError]',\n})\nexport class ErrorDirective {\n @HostBinding('class') class = 'glxy-error';\n}\n", "import {\n AfterContentInit,\n ChangeDetectionStrategy,\n ChangeDetectorRef,\n Component,\n ContentChild,\n ContentChildren,\n ElementRef,\n HostBinding,\n inject,\n InjectionToken,\n Input,\n OnDestroy,\n OnInit,\n QueryList,\n ViewEncapsulation,\n} from '@angular/core';\nimport { MatFormFieldControl } from '@angular/material/form-field';\nimport { Subscription } from 'rxjs';\n\nimport { coerceCssValue } from '@vendasta/galaxy/utility/coerce-css-value';\nimport { ComponentWithSizesComponent } from '@vendasta/galaxy/utility/component-with-sizes';\n\nimport { ErrorDirective } from './directives/error';\n\nlet nextUniqueId = 0;\n\n/**\n * Injection token that can be used to inject an instances of `FormFieldComponent`. It serves\n * as alternative token to the actual `FormFieldComponent` class which would cause unnecessary\n * retention of the `FormFieldComponent` class and its component metadata.\n */\nexport const GLXY_FORM_FIELD = new InjectionToken('FormFieldComponent');\n\n// Input naming and autofill\n// https://developers.google.com/web/updates/2015/06/checkout-faster-with-autofill\n// https://developers.google.com/web/fundamentals/design-and-ux/input/forms\n\n// controlling autofill styles\n// https://css-tricks.com/snippets/css/change-autocomplete-styles-webkit-browsers/\n// https://twitter.com/colmtuite/status/1402913361977921537\n\n// aria labels\n// https://www.w3.org/WAI/tutorials/forms/labels/\n\n@Component({\n selector: 'glxy-form-field',\n templateUrl: './form-field.component.html',\n styleUrls: [\n './form-field.component.scss',\n './input-styles/text-input.scss',\n './input-styles/mat-checkbox.scss',\n './input-styles/mat-chip-grid.scss',\n './input-styles/mat-date-range.scss',\n './input-styles/mat-radio-group.scss',\n './input-styles/mat-select.scss',\n './input-styles/mat-slider.scss',\n './input-styles/select.scss',\n './input-styles/textarea.scss',\n './input-styles/div-contenteditable.scss',\n ],\n encapsulation: ViewEncapsulation.None,\n changeDetection: ChangeDetectionStrategy.OnPush,\n providers: [{ provide: GLXY_FORM_FIELD, useExisting: FormFieldComponent }],\n})\nexport class FormFieldComponent extends ComponentWithSizesComponent implements OnInit, AfterContentInit, OnDestroy {\n @HostBinding('class') class = 'glxy-form-field';\n\n // ComponentWithSizes adds a `size` input that controls\n // the size of the component.\n //\n // @Input() size: 'large' | 'default' | 'small' = 'default'\n\n /**\n * Optional. Adjust the bottom margin of the component.\n * `default` = 24px bottom margin\n * `small` = 16px bottom margin\n * `none`|false = 0 bottom margin\n */\n @Input() bottomSpacing?: 'default' | 'small' | 'none' | false = 'default';\n\n /**\n * Optional. Text to show before the input in the input wrapper\n */\n @Input() prefixText?: string;\n\n /**\n * Optional. Text to show after the input in the input wrapper\n */\n @Input() suffixText?: string;\n\n /**\n * Optional. Icon to show before the the input in the input wrapper\n */\n @Input() prefixIcon?: string;\n\n /**\n * Optional. Icon to show after the the input in the input wrapper\n */\n @Input() suffixIcon?: string;\n\n /**\n * Visually hide or show the label while keeping the label in the DOM for\n * accessibility.\n */\n @Input() showLabel = true;\n\n /**\n * Force the form field to show as disabled.\n * The form field will automatically show as disabled if the wrapped input is also disabled.\n */\n @Input() disabled = false;\n\n /**\n * Force the form field to show as error.\n * The form field will automatically show as error if the wrapped input has a validation error or there is a inside the form-field.\n */\n @Input() forceError = false;\n\n /**\n * Force the form field to show as required.\n * The form field will automatically show as required if the wrapped input is also required.\n */\n @Input() required = false;\n\n /**\n * Force the form field to show required validation error.\n * The form field will automatically show required validation error if the wrapped input also has a required validation error.\n */\n @Input() forceRequiredError = false;\n\n /**\n * Set the max width of the form field. A shorthand for setting the max-width via css\n */\n @Input() maxWidth?: number | string;\n\n /**\n * Set the min width of the form field. A shorthand for setting the min-width via css\n */\n @Input() minWidth?: number | string;\n\n /**\n * Hide or show a light grey container around Material Radio Buttons, Checkboxes, and Sliders inside a form field component\n */\n @HostBinding('class.show-input-decoration')\n @Input()\n showInputDecoration = false;\n\n /**\n * Experimental. Use the form field in a vertical layout with the label beside the input\n */\n @HostBinding('class.horizontal-layout')\n @Input()\n horizontalLayout = false;\n\n @HostBinding('class.bottom-spacing--default')\n get bottomSpacingDefault(): boolean {\n return this.bottomSpacing === 'default';\n }\n\n @HostBinding('class.bottom-spacing--small')\n get bottomSpacingSmall(): boolean {\n return this.bottomSpacing === 'small';\n }\n\n @HostBinding('class.glxy-form-field-disbled')\n get disabledState(): boolean {\n return this._control?.disabled || this.disabled;\n }\n\n @HostBinding('class.glxy-form-field-required')\n get requiredState(): boolean {\n return this._control?.required || this.required;\n }\n\n @HostBinding('style.max-width')\n get getMaxWidth(): string | null {\n if (this.maxWidth) return coerceCssValue(this.maxWidth);\n return null;\n }\n\n @HostBinding('style.min-width')\n get getMinWidth(): string | null {\n if (this.minWidth) return coerceCssValue(this.minWidth);\n return null;\n }\n\n @HostBinding('class.glxy-form-field-autofilled')\n get autofillState(): boolean {\n if (this._control?.autofilled) return true;\n return false;\n }\n\n @HostBinding('class.glxy-form-field-invalid')\n get errorState(): boolean {\n // Show error state if either the matInput's _control says it's in an error state or there are children visible inside the component\n return (\n (this._errorChildren && this._errorChildren?.length > 0) ||\n this._control?.errorState ||\n this.forceRequiredError ||\n this.forceError\n );\n }\n\n @ContentChildren(ErrorDirective, { descendants: true }) _errorChildren?: QueryList;\n\n @ContentChild(MatFormFieldControl) _formFieldControl?: MatFormFieldControl;\n\n /** Gets the current form field control */\n // Taken from Mat-Input\n // https://github.com/angular/components/blob/master/src/material/form-field/form-field.ts#L273-L279\n get _control(): MatFormFieldControl | undefined {\n return this._explicitFormFieldControl || this._formFieldControl;\n }\n set _control(value) {\n this._explicitFormFieldControl = value;\n }\n\n get hasInputRequiredError(): boolean {\n return (\n (this._control?.ngControl?.control?.hasError('required') && this._control?.ngControl?.control?.touched) ||\n this.forceRequiredError\n );\n }\n\n private _explicitFormFieldControl?: MatFormFieldControl;\n private subscriptions: Subscription[] = [];\n private _changeDetectorRef = inject(ChangeDetectorRef);\n private _elementRef = inject(ElementRef);\n public id = '';\n\n ngOnInit(): void {\n this.id = this._control?.id ? this._control.id : `glxy-form-field-${nextUniqueId++}`;\n }\n\n ngAfterContentInit(): void {\n this.setupControlAndSubscriptions();\n }\n\n ngOnDestroy(): void {\n this.subscriptions.forEach((sub) => sub.unsubscribe());\n }\n\n setupControlAndSubscriptions(): void {\n const control = this._control;\n if (control?.controlType) {\n this._elementRef.nativeElement.classList.add(`glxy-form-field-type-${control.controlType}`);\n }\n if (control?.ngControl && control?.ngControl.valueChanges) {\n this.subscriptions.push(\n control.ngControl.valueChanges.pipe().subscribe(() => this._changeDetectorRef.markForCheck()),\n );\n }\n if (control?.stateChanges) {\n this.subscriptions.push(control.stateChanges.pipe().subscribe(() => this._changeDetectorRef.markForCheck()));\n }\n }\n}\n", "
\n \n \n
\n\n
\n
\n \n
\n
\n \n \n
{{ prefixText | translate }}
\n
\n\n \n \n {{ prefixIcon }}\n \n \n\n \n\n \n \n\n \n \n \n {{ suffixIcon }}\n \n \n\n \n
{{ suffixText | translate }}
\n
\n\n \n
\n\n
\n \n
\n\n
\n \n
\n\n \n \n\n \n \n
\n", "import { Component, HostBinding, Input, ViewEncapsulation } from '@angular/core';\n\n@Component({\n selector: 'glxy-form-row',\n templateUrl: './form-row.component.html',\n styleUrls: ['./form-row.component.scss'],\n encapsulation: ViewEncapsulation.None,\n})\nexport class FormRowComponent {\n @HostBinding('class') class = 'glxy-form-row';\n\n @Input()\n @HostBinding('class.top-spacing')\n topSpacing? = false;\n\n @Input()\n @HostBinding('class.bottom-spacing')\n bottomSpacing? = false;\n\n @Input()\n @HostBinding('class.wrap-contents')\n wrapContents? = true;\n}\n", "\n", "import { Directive, HostBinding } from '@angular/core';\n\n@Directive({\n selector: 'glxy-label, [glxyLabel]',\n})\nexport class LabelDirective {\n @HostBinding('class') class = 'glxy-label';\n}\n", "import { Directive, HostBinding, Input } from '@angular/core';\n\n@Directive({\n selector: 'glxy-label-hint, [glxyLabelHint]',\n})\nexport class LabelHintDirective {\n @HostBinding('class') class = 'glxy-label-hint';\n\n @Input() align: 'left' | 'right' = 'left';\n\n @HostBinding('style.text-align')\n get textAlign(): string {\n return this.align;\n }\n}\n", "import { Directive, HostBinding, Input } from '@angular/core';\n\n@Directive({\n selector: 'glxy-hint, [glxyHint]',\n})\nexport class HintDirective {\n @HostBinding('class') class = 'glxy-hint';\n\n @Input() align: 'left' | 'right' = 'left';\n\n @HostBinding('style.text-align')\n get textAlign(): string {\n return this.align;\n }\n}\n", "import { Directive, HostBinding } from '@angular/core';\n\n@Directive({\n selector: 'extended, [glxyExtended]',\n})\nexport class ExtendedDirective {\n @HostBinding('class') class = 'glxy-extended';\n}\n", "import { Directive, HostBinding } from '@angular/core';\n\n@Directive({\n selector: 'glxy-prefix, [glxyPrefix]',\n})\nexport class PrefixDirective {\n @HostBinding('class') class = 'glxy-prefix';\n}\n", "import { Directive, HostBinding } from '@angular/core';\n\n@Directive({\n selector: 'glxy-suffix, [glxySuffix]',\n})\nexport class SuffixDirective {\n @HostBinding('class') class = 'glxy-suffix';\n}\n", "import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { FormsModule } from '@angular/forms';\n\nimport { MatIconModule } from '@angular/material/icon';\nimport { MatTooltipModule } from '@angular/material/tooltip';\n\nimport { TranslateModule } from '@ngx-translate/core';\nimport { GalaxyI18NModule } from '@vendasta/galaxy/i18n';\n\nimport { FormFieldComponent } from './form-field.component';\nexport { FormFieldComponent };\n\nimport { FormRowComponent } from './form-row/form-row.component';\nexport { FormRowComponent };\n\nimport { LabelDirective } from './directives/label';\nexport { LabelDirective };\n\nimport { LabelHintDirective } from './directives/label-hint';\nexport { LabelHintDirective };\n\nimport { HintDirective } from './directives/hint';\nexport { HintDirective };\n\nimport { ErrorDirective } from './directives/error';\nexport { ErrorDirective };\n\nimport { ExtendedDirective } from './directives/extended';\nexport { ExtendedDirective };\n\nimport { PrefixDirective } from './directives/prefix';\nexport { PrefixDirective };\n\nimport { SuffixDirective } from './directives/suffix';\nexport { SuffixDirective };\n\nexport const MODULE_IMPORTS = [\n CommonModule,\n MatIconModule,\n MatTooltipModule,\n FormsModule,\n TranslateModule,\n GalaxyI18NModule,\n];\n\nexport const MODULE_DECLARATIONS = [\n FormFieldComponent,\n FormRowComponent,\n LabelDirective,\n LabelHintDirective,\n HintDirective,\n ErrorDirective,\n ExtendedDirective,\n SuffixDirective,\n PrefixDirective,\n];\n\n@NgModule({\n declarations: MODULE_DECLARATIONS,\n imports: MODULE_IMPORTS,\n exports: MODULE_DECLARATIONS,\n})\nexport class GalaxyFormFieldModule {}\n", "export * from './src/form-field.module';\n", "// Export things like public API, and interfaces from here.\nexport * from './public_api';\n"], "mappings": "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", "names": ["coerceCssValue", "value", "isNaN", "parseFloat", "Number", "init_coerce_css_value", "__esmMin", "init_public_api", "__esmMin", "init_coerce_css_value", "init_coerce_css_value", "__esmMin", "init_public_api", "ErrorDirective", "init_error", "__esmMin", "constructor", "class", "selectors", "hostVars", "hostBindings", "rf", "ctx", "\u0275\u0275classMap", "_ErrorDirective", "\u0275\u0275elementContainerStart", "\u0275\u0275elementStart", "\u0275\u0275text", "\u0275\u0275elementEnd", "\u0275\u0275advance", "\u0275\u0275classProp", "ctx_r0", "hasInputRequiredError", "\u0275\u0275textInterpolate1", "\u0275\u0275pipeBind1", "\u0275\u0275textInterpolate", "prefixText", "prefixIcon", "suffixIcon", "suffixText", "nextUniqueId", "GLXY_FORM_FIELD", "FormFieldComponent", "init_form_field_component", "__esmMin", "init_core", "init_form_field", "init_coerce_css_value", "init_component_with_sizes", "init_error", "InjectionToken", "ComponentWithSizesComponent", "constructor", "class", "bottomSpacing", "showLabel", "disabled", "forceError", "required", "forceRequiredError", "showInputDecoration", "horizontalLayout", "subscriptions", "_changeDetectorRef", "inject", "ChangeDetectorRef", "_elementRef", "ElementRef", "id", "bottomSpacingDefault", "bottomSpacingSmall", "disabledState", "_control", "requiredState", "getMaxWidth", "maxWidth", "coerceCssValue", "getMinWidth", "minWidth", "autofillState", "autofilled", "errorState", "_errorChildren", "length", "_explicitFormFieldControl", "_formFieldControl", "value", "ngControl", "control", "hasError", "touched", "ngOnInit", "ngAfterContentInit", "setupControlAndSubscriptions", "ngOnDestroy", "forEach", "sub", "unsubscribe", "controlType", "nativeElement", "classList", "add", "valueChanges", "push", "pipe", "subscribe", "markForCheck", "stateChanges", "t", "selectors", "contentQueries", "rf", "ctx", "dirIndex", "MatFormFieldControl", "ErrorDirective", "\u0275\u0275classMap", "\u0275\u0275styleProp", "provide", "useExisting", "\u0275\u0275InheritDefinitionFeature", "ngContentSelectors", "_c1", "decls", "vars", "consts", "template", "\u0275\u0275projection", "\u0275\u0275template", "FormFieldComponent_ng_container_3_Template", "FormFieldComponent_ng_container_9_Template", "FormFieldComponent_ng_container_10_Template", "FormFieldComponent_ng_container_13_Template", "FormFieldComponent_ng_container_14_Template", "\u0275\u0275property", "_FormFieldComponent", "FormRowComponent", "init_form_row_component", "__esmMin", "constructor", "class", "topSpacing", "bottomSpacing", "wrapContents", "selectors", "hostVars", "hostBindings", "rf", "ctx", "\u0275\u0275classMap", "\u0275\u0275classProp", "\u0275\u0275projection", "_FormRowComponent", "LabelDirective", "init_label", "__esmMin", "constructor", "class", "selectors", "hostVars", "hostBindings", "rf", "ctx", "\u0275\u0275classMap", "_LabelDirective", "LabelHintDirective", "init_label_hint", "__esmMin", "constructor", "class", "align", "textAlign", "selectors", "hostVars", "hostBindings", "rf", "ctx", "\u0275\u0275classMap", "\u0275\u0275styleProp", "_LabelHintDirective", "HintDirective", "init_hint", "__esmMin", "constructor", "class", "align", "textAlign", "selectors", "hostVars", "hostBindings", "rf", "ctx", "\u0275\u0275classMap", "\u0275\u0275styleProp", "_HintDirective", "ExtendedDirective", "init_extended", "__esmMin", "constructor", "class", "selectors", "hostVars", "hostBindings", "rf", "ctx", "\u0275\u0275classMap", "_ExtendedDirective", "PrefixDirective", "init_prefix", "__esmMin", "constructor", "class", "selectors", "hostVars", "hostBindings", "rf", "ctx", "\u0275\u0275classMap", "_PrefixDirective", "SuffixDirective", "init_suffix", "__esmMin", "constructor", "class", "selectors", "hostVars", "hostBindings", "rf", "ctx", "\u0275\u0275classMap", "_SuffixDirective", "MODULE_IMPORTS", "GalaxyFormFieldModule", "init_form_field_module", "__esmMin", "init_common", "init_forms", "init_icon", "init_tooltip", "init_ngx_translate_core", "init_i18n", "init_form_field_component", "CommonModule", "MatIconModule", "MatTooltipModule", "FormsModule", "TranslateModule", "GalaxyI18NModule", "_GalaxyFormFieldModule", "init_public_api", "__esmMin", "init_form_field_module", "init_form_field", "__esmMin", "init_public_api"] }