{"version":3,"file":"primeng-dock.mjs","sources":["../../src/app/components/dock/dock.ts","../../src/app/components/dock/primeng-dock.ts"],"sourcesContent":["import { CommonModule } from '@angular/common';\nimport { AfterContentInit, AfterViewInit, ChangeDetectionStrategy, ChangeDetectorRef, Component, ContentChildren, ElementRef, Input, NgModule, QueryList, TemplateRef, ViewEncapsulation } from '@angular/core';\nimport { RouterModule } from '@angular/router';\nimport { LicenseManager, PrimeTemplate, SharedModule } from 'primeng/api';\nimport { RippleModule } from 'primeng/ripple';\nimport { TooltipModule } from 'primeng/tooltip';\n\n@Component({\n selector: 'p-dock',\n template: `\n
\n `,\n changeDetection: ChangeDetectionStrategy.OnPush,\n encapsulation: ViewEncapsulation.None,\n styleUrls: ['./dock.css'],\n host: {\n class: 'p-element'\n }\n})\nexport class Dock implements AfterContentInit, AfterViewInit {\n @Input() id: string;\n\n @Input() style: any;\n\n @Input() styleClass: string;\n\n @Input() model: any[] = null;\n\n @Input() position: string = 'bottom';\n\n @ContentChildren(PrimeTemplate) templates: QueryList