blob: 7cce6f1551fac2ec381aa32af21dccf5647fb977 [file] [log] [blame]
{"version":3,"sources":["ng://@covalent/core/sidesheet/sidesheet.component.ts","ng://@covalent/core/sidesheet/sidesheet.module.ts"],"names":["TdSidesheetContentDirective","Directive","args","selector","TdSidesheetTitleDirective","host","[class.align-end]","[class.align-start]","Input","TdSidesheetActionsDirective","this","align","Component","template","TdSidesheetHeaderComponent","encapsulation","ViewEncapsulation","None","ContentChild","TdSidesheetComponent","TD_SIDESHEET","CovalentSidesheetModule","NgModule","imports","CommonModule","MatDividerModule","declarations","exports"],"mappings":"8eAAA,IAAAA,uBAECC,EAAAA,UAASC,KAAA,CAAC,CACTC,SAAU,2BAE8BH,GAH1C,SAAAA,gCAKCC,EAAAA,UAASC,KAAA,CAAC,CACTC,SAAU,yBAE4BC,GAHxC,SAAAA,gCAKCH,EAAAA,UAASC,KAAA,CAAC,CACTC,SAAU,uBAEVE,KAAM,CACJC,oBAAqB,kBACrBC,sBAAuB,wDAIxBC,EAAAA,SACHC,GAVA,SAAAA,IASWC,KAAAC,MAAyB,mCAGnCC,EAAAA,UAASV,KAAA,CAAC,CACTC,SAAU,sBACVU,SAAA,8IAEuCC,GAJzC,SAAAA,gCAMCF,EAAAA,UAASV,KAAA,CAAC,CACTC,SAAU,eACVU,SAAA,2WAEAE,cAAeC,EAAAA,kBAAkBC,86CAGhCC,EAAAA,aAAYhB,KAAA,CAACY,yBACbI,EAAAA,aAAYhB,KAAA,CAACO,MAChBU,GATA,SAAAA,SCnBMC,EAA4B,CAChCD,EACAL,EACAd,EACAI,EACAK,GAGFY,uBAACC,EAAAA,SAAQpB,KAAA,CAAC,CACRqB,QAAS,CACPC,EAAAA,aACAC,EAAAA,kBAEFC,aAAc,CACZN,GAEFO,QAAS,CACPP,OAKJC,GAdA,SAAAA","sourcesContent":["import { Component, ContentChild, Directive, Input, ViewEncapsulation } from '@angular/core';\n\n@Directive({\n selector: 'td-sidesheet-content',\n})\nexport class TdSidesheetContentDirective {}\n\n@Directive({\n selector: 'td-sidesheet-title',\n})\nexport class TdSidesheetTitleDirective {}\n\n@Directive({\n selector: 'td-sidesheet-actions',\n /* tslint:disable-next-line */\n host: {\n '[class.align-end]': 'align === \"end\"',\n '[class.align-start]': 'align === \"start\"',\n },\n})\nexport class TdSidesheetActionsDirective {\n @Input() align: 'start' | 'end' = 'start';\n}\n\n@Component({\n selector: 'td-sidesheet-header',\n templateUrl: 'sidesheet-header.component.html',\n})\nexport class TdSidesheetHeaderComponent {}\n\n@Component({\n selector: 'td-sidesheet',\n templateUrl: './sidesheet.component.html',\n styleUrls: ['./sidesheet.component.scss'],\n encapsulation: ViewEncapsulation.None,\n})\nexport class TdSidesheetComponent {\n @ContentChild(TdSidesheetHeaderComponent) headerExists: TdSidesheetHeaderComponent;\n @ContentChild(TdSidesheetActionsDirective) actionsExist: TdSidesheetActionsDirective;\n}\n","import { NgModule, Type } from '@angular/core';\nimport { CommonModule } from '@angular/common';\n\nimport { MatDividerModule } from '@angular/material/divider';\n\nimport { TdSidesheetComponent, \n TdSidesheetHeaderComponent, \n TdSidesheetContentDirective, \n TdSidesheetTitleDirective, \n TdSidesheetActionsDirective } from './sidesheet.component';\n\nconst TD_SIDESHEET: Type<any>[] = [\n TdSidesheetComponent,\n TdSidesheetHeaderComponent,\n TdSidesheetContentDirective,\n TdSidesheetTitleDirective,\n TdSidesheetActionsDirective,\n];\n\n@NgModule({\n imports: [\n CommonModule,\n MatDividerModule,\n ],\n declarations: [\n TD_SIDESHEET,\n ],\n exports: [\n TD_SIDESHEET,\n ],\n})\nexport class CovalentSidesheetModule {\n\n}\n"]}