{
"version": 3,
"sources": ["libs/galaxy/empty-state/src/empty-state.component.ts", "libs/galaxy/empty-state/src/empty-state.component.html", "libs/galaxy/empty-state/src/directives/empty-state-hero.directive.ts", "libs/galaxy/empty-state/src/directives/empty-state-title.directive.ts", "libs/galaxy/empty-state/src/directives/empty-state-actions.directive.ts", "libs/galaxy/empty-state/src/directives/empty-state-footnote.directive.ts", "libs/galaxy/empty-state/src/empty-state.module.ts"],
"sourcesContent": ["import { Component, HostBinding, Input, ViewEncapsulation } from '@angular/core';\n\nexport type ComponentSize = 'normal' | 'small';\n\n@Component({\n selector: 'glxy-empty-state',\n templateUrl: './empty-state.component.html',\n styleUrls: ['./empty-state.component.scss'],\n encapsulation: ViewEncapsulation.None,\n})\nexport class EmptyStateComponent {\n @HostBinding('class.glxy-empty-state') public true = 1;\n\n // Optional: set different size for the component layout. Affects spacing, text, image size\n @Input() size: ComponentSize = 'normal';\n // Optional: set a width constraint for the component\n @Input() widthConstraint = true;\n\n @HostBinding('class.glxy-empty-state--width-constraint') get widthConstraintClass(): boolean {\n return this.widthConstraint && this.size === 'small';\n }\n\n @HostBinding('class') get componentSize(): string {\n return this.size === 'normal' ? '' : 'glxy-empty-state--' + this.size;\n }\n}\n", "