{ "version": 3, "sources": ["libs/galaxy/sticky-footer/src/sticky-footer.component.ts", "libs/galaxy/sticky-footer/src/sticky-footer.component.html", "libs/galaxy/sticky-footer/src/sticky-footer.module.ts", "libs/crm/static/src/lib/shared-components/model-driven-form/form/modes/base-model-driven-form.component.ts", "libs/crm/static/src/lib/shared-components/model-driven-form/form/modes/form-loading-indicator.component.ts", "libs/crm/static/src/lib/shared-components/model-driven-form/renderer-selector.component.ts", "libs/crm/static/src/lib/shared-components/vertical-nav-tab/vertical-nav-card.component.ts", "libs/crm/static/src/lib/shared-components/vertical-nav-tab/vertical-nav-tab.component.ts", "libs/crm/static/src/lib/shared-components/vertical-nav-tab/vertical-nav-tab.component.html", "libs/crm/static/src/lib/shared-components/model-driven-form/form/modes/card-group-driven-form.component.ts", "libs/crm/static/src/lib/shared-components/model-driven-form/form/modes/card-group-driven-form.component.html", "libs/crm/static/src/lib/shared-components/model-driven-form/form/modes/panel-driven-form.component.ts", "libs/crm/static/src/lib/shared-components/model-driven-form/form/modes/panel-driven-form.component.html", "libs/crm/static/src/lib/shared-components/model-driven-form/form/modes/basic-field-group-form.component.ts", "libs/crm/static/src/lib/shared-components/model-driven-form/form/modes/basic-field-group-form.component.html", "libs/crm/static/src/lib/shared-components/model-driven-form/form/model-driven-form.component.ts", "libs/crm/static/src/lib/shared-components/model-driven-form/form/model-driven-form.component.html"], "sourcesContent": ["import { Component, HostBinding, Input, ViewEncapsulation } from '@angular/core';\n\n@Component({\n selector: 'glxy-sticky-footer',\n templateUrl: './sticky-footer.component.html',\n styleUrls: ['./sticky-footer.component.scss'],\n encapsulation: ViewEncapsulation.None,\n})\nexport class StickyFooterComponent {\n @HostBinding('class') class = 'glxy-sticky-footer';\n\n @HostBinding('class.right-aligned')\n @Input()\n rightAligned = false;\n}\n", "
\n", "import { NgModule } from '@angular/core';\nimport { StickyFooterComponent } from './sticky-footer.component';\nimport { StickyFooterSecondaryDirective } from './directives/sticky-footer-secondary.directive';\nimport { CommonModule } from '@angular/common';\nexport { StickyFooterSecondaryDirective } from './directives/sticky-footer-secondary.directive';\nexport { StickyFooterComponent } from './sticky-footer.component';\n\nexport const MODULE_EXPORTS = [StickyFooterComponent, StickyFooterSecondaryDirective];\n\nexport const MODULE_DECLARATIONS = [StickyFooterComponent, StickyFooterSecondaryDirective];\n\nexport const MODULE_IMPORTS = [CommonModule];\n@NgModule({\n declarations: MODULE_DECLARATIONS,\n imports: MODULE_IMPORTS,\n exports: MODULE_EXPORTS,\n})\nexport class GalaxyStickyFooterModule {}\n", "import { Component, EventEmitter, Inject, Input, OnChanges, Output, SimpleChanges } from '@angular/core';\nimport { UntypedFormGroup } from '@angular/forms';\nimport { SnackbarService } from '@vendasta/galaxy/snackbar-service';\nimport { RendererSelectorService } from '../../renderer-selector.service';\nimport { ValidatorFactoryService } from '../../validator-factory.service';\nimport { InlineEditService } from '../../inline-edit.service';\nimport { ScoreService } from '../../../../shared-services';\nimport { CrmFieldService } from '../../../../shared-services/crm-services/field.service';\nimport {\n CrmInjectionToken,\n CrmDependencies,\n FieldConfigInterface,\n FieldGroupInterface,\n FieldInterface,\n FieldSchemaInterface,\n LoadingStatus,\n ObjectType,\n RenderableFieldGroupInterface,\n RenderableFieldInterface,\n SavingStatus,\n} from '../../../../tokens-and-interfaces';\n\nconst SNACKBAR_DURATION = 10000;\n\n@Component({\n template: `\n \n{{ 'MODEL_DRIVEN_FORM.LOADING_STATUS_ERROR.TEXT' | translate }}
\n