{"version":3,"file":"divider.js","sources":["../../../../../../src/material/divider/divider.ts","../../../../../../src/material/divider/divider-module.ts","../../../../../../src/material/divider/public-api.ts","../../../../../../src/material/divider/index.ts"],"names":[],"mappings":";;;;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;;AACA,MAmBa,UAAU;AACvB,IAhBA;AACG,QAmBO,cAAS,GAAY,KAAK,CAAC;AACrC,QAKU,WAAM,GAAY,KAAK,CAAC;AAClC,KAGC;AACD;AAAsD,IAdpD,IACI,QAAQ,KAAc,OAAO,IAAI,CAAC,SAAS,CAAC,EAAE;AACpD,IAAE,IAAI,QAAQ,CAAC,KAAc,IAAI,IAAI,CAAC,SAAS,GAAG,qBAAqB,CAAC,KAAK,CAAC,CAAC,EAAE;AACjF;AAEa,IACX,IACI,KAAK,KAAc,OAAO,IAAI,CAAC,MAAM,CAAC,EAAE;AAC9C,IAAE,IAAI,KAAK,CAAC,KAAc,IAAI,IAAI,CAAC,MAAM,GAAG,qBAAqB,CAAC,KAAK,CAAC,CAAC,EAAE;AAC3E;sCA1BC,SAAS,SAAC,kBACT,QAAQ,EAAE;WAAa,kBACvB,IAAI,EAAE,sBACJ,MAAM,EAAE,WAAW,sBACnB,yBAAyB,EAAE,sCAAsC,sBACjE,8BAA8B,EAAE,UAAU;KAC1C,gCAAgC,EAAE,WAAW,sBAC7C;SAA2B,EAAE,OAAO,sBACpC,OAAO,EAAE,aAAa,kBACvB,kBACD,QAAQ,EAAE,EAAE,kBAEZ;EAAa,EAAE,iBAAiB,CAAC,IAAI,kBACrC,eAAe,EAAE,uBAAuB,CAAC,MAAM,yVAChD,kDACI;AAAC;AACI,uBACP,KAAK;AACN,oBAKC,KAAK;AACP;;;;;;;;;;;;;;;;;;;;;;oBAAE;AAAC;ACnCJ;AACA;AACA;AACA;AACA;AACA;AACA;AACA,MAWa,gBAAgB;AAAG;4CAL/B,QAAQ,SAAC,kBACR,OAAO,EAAE,CAAC;AAAe,CAAC,kBAC1B,OAAO,EAAE,CAAC,UAAU,EAAE,eAAe,CAAC,kBACtC,YAAY,EAAE,CAAC;SAAU,CAAC,eAC3B;;;;;;;;;gSACI;AAAC;AClBN;AACA;AACA;AACA;AACA;AACA;AACA;AACA;ACPA;AACA;AACA;AACA;AACA;AACW","sourcesContent":["/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.io/license\n */\n\nimport {ChangeDetectionStrategy, Component, Input, ViewEncapsulation} from '@angular/core';\nimport {BooleanInput, coerceBooleanProperty} from '@angular/cdk/coercion';\n\n@Component({\n selector: 'mat-divider',\n host: {\n 'role': 'separator',\n '[attr.aria-orientation]': 'vertical ? \"vertical\" : \"horizontal\"',\n '[class.mat-divider-vertical]': 'vertical',\n '[class.mat-divider-horizontal]': '!vertical',\n '[class.mat-divider-inset]': 'inset',\n 'class': 'mat-divider'\n },\n template: '',\n styleUrls: ['divider.css'],\n encapsulation: ViewEncapsulation.None,\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class MatDivider {\n /** Whether the divider is vertically aligned. */\n @Input()\n get vertical(): boolean { return this._vertical; }\n set vertical(value: boolean) { this._vertical = coerceBooleanProperty(value); }\n private _vertical: boolean = false;\n\n /** Whether the divider is an inset divider. */\n @Input()\n get inset(): boolean { return this._inset; }\n set inset(value: boolean) { this._inset = coerceBooleanProperty(value); }\n private _inset: boolean = false;\n\n static ngAcceptInputType_vertical: BooleanInput;\n static ngAcceptInputType_inset: BooleanInput;\n}\n","/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.io/license\n */\n\nimport {NgModule} from '@angular/core';\nimport {MatCommonModule} from '@angular/material/core';\nimport {MatDivider} from './divider';\n\n\n@NgModule({\n imports: [MatCommonModule],\n exports: [MatDivider, MatCommonModule],\n declarations: [MatDivider],\n})\nexport class MatDividerModule {}\n","/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.io/license\n */\n\nexport * from './divider';\nexport * from './divider-module';\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"]}