UNPKG

@tangential/asciidoctor-panel

Version:

UI pane for displaying ASCII Doctor formatted data.

34 lines 30.3 kB
import { Component, ElementRef, ChangeDetectionStrategy, Input, ViewEncapsulation, } from '@angular/core'; import { AsciidoctorPanelRenderer } from './asciidoctor-renderer'; import * as i0 from "@angular/core"; export class AsciidoctorComponent { constructor(elementRef) { this.elementRef = elementRef; this._content = ''; this.asciidoctorRenderer = null; } ngAfterContentInit() { this.asciidoctorRenderer = new AsciidoctorPanelRenderer(this.elementRef); this.asciidoctorRenderer.updateContent(this._content); } get content() { return this._content; } set content(value) { if (this._content !== value) { this._content = value; if (this.asciidoctorRenderer) { this.asciidoctorRenderer.updateContent(this._content); } } } } AsciidoctorComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: AsciidoctorComponent, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component }); AsciidoctorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.10", type: AsciidoctorComponent, selector: "tanj-asciidoctor-panel", inputs: { content: "content" }, ngImport: i0, template: "<div class=\"tanj-asciidoctor-container\">\n <div class=\"tanj-asciidoctor-body\"></div>\n</div>\n", styles: [":host{display:flex;white-space:nowrap;outline:none}.tanj-asciidoctor-container{display:flex;flex:1}.tanj-asciidoctor-body{display:block;flex:1}tanj-asciidoctor-panel caption{padding-top:8px;padding-bottom:8px;color:#777}tanj-asciidoctor-panel h1{display:block;font-size:200%;margin:.67em 0;font-weight:700}tanj-asciidoctor-panel h2{display:block;font-size:150%;margin:.83em 0;font-weight:700}tanj-asciidoctor-panel h3{display:block;font-size:1.17em;margin:1em 0;font-weight:700}tanj-asciidoctor-panel .table{width:100%;margin-bottom:20px}tanj-asciidoctor-panel .table>tbody>tr>td,tanj-asciidoctor-panel .table>tbody>tr>th,tanj-asciidoctor-panel .table>tfoot>tr>td,tanj-asciidoctor-panel .table>tfoot>tr>th,tanj-asciidoctor-panel .table>thead>tr>td,tanj-asciidoctor-panel .table>thead>tr>th{padding:8px;line-height:1.42857;vertical-align:top;border-top:1px solid #ddd}tanj-asciidoctor-panel .table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}tanj-asciidoctor-panel .table>caption+thead>tr:first-child>td,tanj-asciidoctor-panel .table>caption+thead>tr:first-child>th,tanj-asciidoctor-panel .table>colgroup+thead>tr:first-child>td,tanj-asciidoctor-panel .table>colgroup+thead>tr:first-child>th,tanj-asciidoctor-panel .table>thead:first-child>tr:first-child>td,tanj-asciidoctor-panel .table>thead:first-child>tr:first-child>th{border-top:0}tanj-asciidoctor-panel .table>tbody+tbody{border-top:2px solid #ddd}tanj-asciidoctor-panel .table .table{background-color:#fff}tanj-asciidoctor-panel .table-condensed>tbody>tr>td,tanj-asciidoctor-panel .table-condensed>tbody>tr>th,tanj-asciidoctor-panel .table-condensed>tfoot>tr>td,tanj-asciidoctor-panel .table-condensed>tfoot>tr>th,tanj-asciidoctor-panel .table-condensed>thead>tr>td,tanj-asciidoctor-panel .table-condensed>thead>tr>th{padding:5px}tanj-asciidoctor-panel .table-bordered,tanj-asciidoctor-panel .table-bordered>tbody>tr>td,tanj-asciidoctor-panel .table-bordered>tbody>tr>th,tanj-asciidoctor-panel .table-bordered>tfoot>tr>td,tanj-asciidoctor-panel .table-bordered>tfoot>tr>th,tanj-asciidoctor-panel .table-bordered>thead>tr>td,tanj-asciidoctor-panel .table-bordered>thead>tr>th{border:1px solid #ddd}tanj-asciidoctor-panel .table-bordered>thead>tr>td,tanj-asciidoctor-panel .table-bordered>thead>tr>th{border-bottom-width:2px}tanj-asciidoctor-panel .table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}tanj-asciidoctor-panel .table-hover>tbody>tr:hover,tanj-asciidoctor-panel .table>tbody>tr.active>td,tanj-asciidoctor-panel .table>tbody>tr.active>th,tanj-asciidoctor-panel .table>tbody>tr>td.active,tanj-asciidoctor-panel .table>tbody>tr>th.active,tanj-asciidoctor-panel .table>tfoot>tr.active>td,tanj-asciidoctor-panel .table>tfoot>tr.active>th,tanj-asciidoctor-panel .table>tfoot>tr>td.active,tanj-asciidoctor-panel .table>tfoot>tr>th.active,tanj-asciidoctor-panel .table>thead>tr.active>td,tanj-asciidoctor-panel .table>thead>tr.active>th,tanj-asciidoctor-panel .table>thead>tr>td.active,tanj-asciidoctor-panel .table>thead>tr>th.active{background-color:#f5f5f5}tanj-asciidoctor-panel table col[class*=col-]{position:static;float:none;display:table-column}tanj-asciidoctor-panel table td[class*=col-],tanj-asciidoctor-panel table th[class*=col-]{position:static;float:none;display:table-cell}tanj-asciidoctor-panel .table-hover>tbody>tr.active:hover>td,tanj-asciidoctor-panel .table-hover>tbody>tr.active:hover>th,tanj-asciidoctor-panel .table-hover>tbody>tr:hover>.active,tanj-asciidoctor-panel .table-hover>tbody>tr>td.active:hover,tanj-asciidoctor-panel .table-hover>tbody>tr>th.active:hover{background-color:#e8e8e8}tanj-asciidoctor-panel .table>tbody>tr.success>td,tanj-asciidoctor-panel .table>tbody>tr.success>th,tanj-asciidoctor-panel .table>tbody>tr>td.success,tanj-asciidoctor-panel .table>tbody>tr>th.success,tanj-asciidoctor-panel .table>tfoot>tr.success>td,tanj-asciidoctor-panel .table>tfoot>tr.success>th,tanj-asciidoctor-panel .table>tfoot>tr>td.success,tanj-asciidoctor-panel .table>tfoot>tr>th.success,tanj-asciidoctor-panel .table>thead>tr.success>td,tanj-asciidoctor-panel .table>thead>tr.success>th,tanj-asciidoctor-panel .table>thead>tr>td.success,tanj-asciidoctor-panel .table>thead>tr>th.success{background-color:#dff0d8}tanj-asciidoctor-panel .table-hover>tbody>tr.success:hover>td,tanj-asciidoctor-panel .table-hover>tbody>tr.success:hover>th,tanj-asciidoctor-panel .table-hover>tbody>tr:hover>.success,tanj-asciidoctor-panel .table-hover>tbody>tr>td.success:hover,tanj-asciidoctor-panel .table-hover>tbody>tr>th.success:hover{background-color:#d0e9c6}tanj-asciidoctor-panel .table>tbody>tr.info>td,tanj-asciidoctor-panel .table>tbody>tr.info>th,tanj-asciidoctor-panel .table>tbody>tr>td.info,tanj-asciidoctor-panel .table>tbody>tr>th.info,tanj-asciidoctor-panel .table>tfoot>tr.info>td,tanj-asciidoctor-panel .table>tfoot>tr.info>th,tanj-asciidoctor-panel .table>tfoot>tr>td.info,tanj-asciidoctor-panel .table>tfoot>tr>th.info,tanj-asciidoctor-panel .table>thead>tr.info>td,tanj-asciidoctor-panel .table>thead>tr.info>th,tanj-asciidoctor-panel .table>thead>tr>td.info,tanj-asciidoctor-panel .table>thead>tr>th.info{background-color:#d9edf7}tanj-asciidoctor-panel .table-hover>tbody>tr.info:hover>td,tanj-asciidoctor-panel .table-hover>tbody>tr.info:hover>th,tanj-asciidoctor-panel .table-hover>tbody>tr:hover>.info,tanj-asciidoctor-panel .table-hover>tbody>tr>td.info:hover,tanj-asciidoctor-panel .table-hover>tbody>tr>th.info:hover{background-color:#c4e3f3}tanj-asciidoctor-panel .table>tbody>tr.warning>td,tanj-asciidoctor-panel .table>tbody>tr.warning>th,tanj-asciidoctor-panel .table>tbody>tr>td.warning,tanj-asciidoctor-panel .table>tbody>tr>th.warning,tanj-asciidoctor-panel .table>tfoot>tr.warning>td,tanj-asciidoctor-panel .table>tfoot>tr.warning>th,tanj-asciidoctor-panel .table>tfoot>tr>td.warning,tanj-asciidoctor-panel .table>tfoot>tr>th.warning,tanj-asciidoctor-panel .table>thead>tr.warning>td,tanj-asciidoctor-panel .table>thead>tr.warning>th,tanj-asciidoctor-panel .table>thead>tr>td.warning,tanj-asciidoctor-panel .table>thead>tr>th.warning{background-color:#fcf8e3}tanj-asciidoctor-panel .table-hover>tbody>tr.warning:hover>td,tanj-asciidoctor-panel .table-hover>tbody>tr.warning:hover>th,tanj-asciidoctor-panel .table-hover>tbody>tr:hover>.warning,tanj-asciidoctor-panel .table-hover>tbody>tr>td.warning:hover,tanj-asciidoctor-panel .table-hover>tbody>tr>th.warning:hover{background-color:#faf2cc}tanj-asciidoctor-panel .table>tbody>tr.danger>td,tanj-asciidoctor-panel .table>tbody>tr.danger>th,tanj-asciidoctor-panel .table>tbody>tr>td.danger,tanj-asciidoctor-panel .table>tbody>tr>th.danger,tanj-asciidoctor-panel .table>tfoot>tr.danger>td,tanj-asciidoctor-panel .table>tfoot>tr.danger>th,tanj-asciidoctor-panel .table>tfoot>tr>td.danger,tanj-asciidoctor-panel .table>tfoot>tr>th.danger,tanj-asciidoctor-panel .table>thead>tr.danger>td,tanj-asciidoctor-panel .table>thead>tr.danger>th,tanj-asciidoctor-panel .table>thead>tr>td.danger,tanj-asciidoctor-panel .table>thead>tr>th.danger{background-color:#f2dede}tanj-asciidoctor-panel .table-hover>tbody>tr.danger:hover>td,tanj-asciidoctor-panel .table-hover>tbody>tr.danger:hover>th,tanj-asciidoctor-panel .table-hover>tbody>tr:hover>.danger,tanj-asciidoctor-panel .table-hover>tbody>tr>td.danger:hover,tanj-asciidoctor-panel .table-hover>tbody>tr>th.danger:hover{background-color:#ebcccc}tanj-asciidoctor-panel .table-responsive{overflow-x:auto;min-height:.01%}@media screen and (max-width: 767px){tanj-asciidoctor-panel .table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}tanj-asciidoctor-panel .table-responsive>.table{margin-bottom:0}tanj-asciidoctor-panel .table-responsive>.table>tbody>tr>td,tanj-asciidoctor-panel .table-responsive>.table>tbody>tr>th,tanj-asciidoctor-panel .table-responsive>.table>tfoot>tr>td,tanj-asciidoctor-panel .table-responsive>.table>tfoot>tr>th,tanj-asciidoctor-panel .table-responsive>.table>thead>tr>td,tanj-asciidoctor-panel .table-responsive>.table>thead>tr>th{white-space:nowrap}tanj-asciidoctor-panel .table-responsive>.table-bordered{border:0}tanj-asciidoctor-panel .table-responsive>.table-bordered>tbody>tr>td:first-child,tanj-asciidoctor-panel .table-responsive>.table-bordered>tbody>tr>th:first-child,tanj-asciidoctor-panel .table-responsive>.table-bordered>tfoot>tr>td:first-child,tanj-asciidoctor-panel .table-responsive>.table-bordered>tfoot>tr>th:first-child,tanj-asciidoctor-panel .table-responsive>.table-bordered>thead>tr>td:first-child,tanj-asciidoctor-panel .table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}tanj-asciidoctor-panel .table-responsive>.table-bordered>tbody>tr>td:last-child,tanj-asciidoctor-panel .table-responsive>.table-bordered>tbody>tr>th:last-child,tanj-asciidoctor-panel .table-responsive>.table-bordered>tfoot>tr>td:last-child,tanj-asciidoctor-panel .table-responsive>.table-bordered>tfoot>tr>th:last-child,tanj-asciidoctor-panel .table-responsive>.table-bordered>thead>tr>td:last-child,tanj-asciidoctor-panel .table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}tanj-asciidoctor-panel .table-responsive>.table-bordered>tbody>tr:last-child>td,tanj-asciidoctor-panel .table-responsive>.table-bordered>tbody>tr:last-child>th,tanj-asciidoctor-panel .table-responsive>.table-bordered>tfoot>tr:last-child>td,tanj-asciidoctor-panel .table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}}tanj-asciidoctor-panel table.tableblock{max-width:100%;border-collapse:separate}tanj-asciidoctor-panel table.tableblock td>.paragraph:last-child p>p:last-child,tanj-asciidoctor-panel table.tableblock td>p:last-child,tanj-asciidoctor-panel table.tableblock th>p:last-child{margin-bottom:0}tanj-asciidoctor-panel table.tableblock,tanj-asciidoctor-panel td.tableblock,tanj-asciidoctor-panel th.tableblock{border:0 solid #dedede}tanj-asciidoctor-panel table.grid-all td.tableblock,tanj-asciidoctor-panel table.grid-all th.tableblock{border-width:0 1px 1px 0}tanj-asciidoctor-panel table.grid-all tfoot>tr>td.tableblock,tanj-asciidoctor-panel table.grid-all tfoot>tr>th.tableblock{border-width:1px 1px 0 0}tanj-asciidoctor-panel table.grid-cols td.tableblock,tanj-asciidoctor-panel table.grid-cols th.tableblock{border-width:0 1px 0 0}tanj-asciidoctor-panel table.grid-all *>tr>.tableblock:last-child,tanj-asciidoctor-panel table.grid-cols *>tr>.tableblock:last-child{border-right-width:0}tanj-asciidoctor-panel table.grid-rows td.tableblock,tanj-asciidoctor-panel table.grid-rows th.tableblock{border-width:0 0 1px}tanj-asciidoctor-panel table.grid-all tbody>tr:last-child>td.tableblock,tanj-asciidoctor-panel table.grid-all tbody>tr:last-child>th.tableblock,tanj-asciidoctor-panel table.grid-all thead:last-child>tr>th.tableblock,tanj-asciidoctor-panel table.grid-rows tbody>tr:last-child>td.tableblock,tanj-asciidoctor-panel table.grid-rows tbody>tr:last-child>th.tableblock,tanj-asciidoctor-panel table.grid-rows thead:last-child>tr>th.tableblock{border-bottom-width:0}tanj-asciidoctor-panel table.grid-rows tfoot>tr>td.tableblock,tanj-asciidoctor-panel table.grid-rows tfoot>tr>th.tableblock{border-width:1px 0 0}tanj-asciidoctor-panel table.frame-all{border-width:1px}tanj-asciidoctor-panel table.frame-sides{border-width:0 1px}tanj-asciidoctor-panel table.frame-topbot{border-width:1px 0}tanj-asciidoctor-panel td.halign-left,tanj-asciidoctor-panel th.halign-left{text-align:left}tanj-asciidoctor-panel td.halign-right,tanj-asciidoctor-panel th.halign-right{text-align:right}tanj-asciidoctor-panel td.halign-center,tanj-asciidoctor-panel th.halign-center{text-align:center}tanj-asciidoctor-panel td.valign-top,tanj-asciidoctor-panel th.valign-top{vertical-align:top}tanj-asciidoctor-panel td.valign-bottom,tanj-asciidoctor-panel th.valign-bottom{vertical-align:bottom}tanj-asciidoctor-panel td.valign-middle,tanj-asciidoctor-panel th.valign-middle{vertical-align:middle}tanj-asciidoctor-panel table tfoot th,tanj-asciidoctor-panel table thead th{font-weight:700}tanj-asciidoctor-panel tbody tr th{display:table-cell;line-height:1.6;background:#f7f8f7}tanj-asciidoctor-panel tbody tr th,tanj-asciidoctor-panel tbody tr th p,tanj-asciidoctor-panel tfoot tr th,tanj-asciidoctor-panel tfoot tr th p{color:#000c;font-weight:700}tanj-asciidoctor-panel p.tableblock>code:only-child{background:0 0;padding:0}tanj-asciidoctor-panel p.tableblock{font-size:1em}\n"], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: AsciidoctorComponent, decorators: [{ type: Component, args: [{ selector: 'tanj-asciidoctor-panel', changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, template: "<div class=\"tanj-asciidoctor-container\">\n <div class=\"tanj-asciidoctor-body\"></div>\n</div>\n", styles: [":host{display:flex;white-space:nowrap;outline:none}.tanj-asciidoctor-container{display:flex;flex:1}.tanj-asciidoctor-body{display:block;flex:1}tanj-asciidoctor-panel caption{padding-top:8px;padding-bottom:8px;color:#777}tanj-asciidoctor-panel h1{display:block;font-size:200%;margin:.67em 0;font-weight:700}tanj-asciidoctor-panel h2{display:block;font-size:150%;margin:.83em 0;font-weight:700}tanj-asciidoctor-panel h3{display:block;font-size:1.17em;margin:1em 0;font-weight:700}tanj-asciidoctor-panel .table{width:100%;margin-bottom:20px}tanj-asciidoctor-panel .table>tbody>tr>td,tanj-asciidoctor-panel .table>tbody>tr>th,tanj-asciidoctor-panel .table>tfoot>tr>td,tanj-asciidoctor-panel .table>tfoot>tr>th,tanj-asciidoctor-panel .table>thead>tr>td,tanj-asciidoctor-panel .table>thead>tr>th{padding:8px;line-height:1.42857;vertical-align:top;border-top:1px solid #ddd}tanj-asciidoctor-panel .table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}tanj-asciidoctor-panel .table>caption+thead>tr:first-child>td,tanj-asciidoctor-panel .table>caption+thead>tr:first-child>th,tanj-asciidoctor-panel .table>colgroup+thead>tr:first-child>td,tanj-asciidoctor-panel .table>colgroup+thead>tr:first-child>th,tanj-asciidoctor-panel .table>thead:first-child>tr:first-child>td,tanj-asciidoctor-panel .table>thead:first-child>tr:first-child>th{border-top:0}tanj-asciidoctor-panel .table>tbody+tbody{border-top:2px solid #ddd}tanj-asciidoctor-panel .table .table{background-color:#fff}tanj-asciidoctor-panel .table-condensed>tbody>tr>td,tanj-asciidoctor-panel .table-condensed>tbody>tr>th,tanj-asciidoctor-panel .table-condensed>tfoot>tr>td,tanj-asciidoctor-panel .table-condensed>tfoot>tr>th,tanj-asciidoctor-panel .table-condensed>thead>tr>td,tanj-asciidoctor-panel .table-condensed>thead>tr>th{padding:5px}tanj-asciidoctor-panel .table-bordered,tanj-asciidoctor-panel .table-bordered>tbody>tr>td,tanj-asciidoctor-panel .table-bordered>tbody>tr>th,tanj-asciidoctor-panel .table-bordered>tfoot>tr>td,tanj-asciidoctor-panel .table-bordered>tfoot>tr>th,tanj-asciidoctor-panel .table-bordered>thead>tr>td,tanj-asciidoctor-panel .table-bordered>thead>tr>th{border:1px solid #ddd}tanj-asciidoctor-panel .table-bordered>thead>tr>td,tanj-asciidoctor-panel .table-bordered>thead>tr>th{border-bottom-width:2px}tanj-asciidoctor-panel .table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}tanj-asciidoctor-panel .table-hover>tbody>tr:hover,tanj-asciidoctor-panel .table>tbody>tr.active>td,tanj-asciidoctor-panel .table>tbody>tr.active>th,tanj-asciidoctor-panel .table>tbody>tr>td.active,tanj-asciidoctor-panel .table>tbody>tr>th.active,tanj-asciidoctor-panel .table>tfoot>tr.active>td,tanj-asciidoctor-panel .table>tfoot>tr.active>th,tanj-asciidoctor-panel .table>tfoot>tr>td.active,tanj-asciidoctor-panel .table>tfoot>tr>th.active,tanj-asciidoctor-panel .table>thead>tr.active>td,tanj-asciidoctor-panel .table>thead>tr.active>th,tanj-asciidoctor-panel .table>thead>tr>td.active,tanj-asciidoctor-panel .table>thead>tr>th.active{background-color:#f5f5f5}tanj-asciidoctor-panel table col[class*=col-]{position:static;float:none;display:table-column}tanj-asciidoctor-panel table td[class*=col-],tanj-asciidoctor-panel table th[class*=col-]{position:static;float:none;display:table-cell}tanj-asciidoctor-panel .table-hover>tbody>tr.active:hover>td,tanj-asciidoctor-panel .table-hover>tbody>tr.active:hover>th,tanj-asciidoctor-panel .table-hover>tbody>tr:hover>.active,tanj-asciidoctor-panel .table-hover>tbody>tr>td.active:hover,tanj-asciidoctor-panel .table-hover>tbody>tr>th.active:hover{background-color:#e8e8e8}tanj-asciidoctor-panel .table>tbody>tr.success>td,tanj-asciidoctor-panel .table>tbody>tr.success>th,tanj-asciidoctor-panel .table>tbody>tr>td.success,tanj-asciidoctor-panel .table>tbody>tr>th.success,tanj-asciidoctor-panel .table>tfoot>tr.success>td,tanj-asciidoctor-panel .table>tfoot>tr.success>th,tanj-asciidoctor-panel .table>tfoot>tr>td.success,tanj-asciidoctor-panel .table>tfoot>tr>th.success,tanj-asciidoctor-panel .table>thead>tr.success>td,tanj-asciidoctor-panel .table>thead>tr.success>th,tanj-asciidoctor-panel .table>thead>tr>td.success,tanj-asciidoctor-panel .table>thead>tr>th.success{background-color:#dff0d8}tanj-asciidoctor-panel .table-hover>tbody>tr.success:hover>td,tanj-asciidoctor-panel .table-hover>tbody>tr.success:hover>th,tanj-asciidoctor-panel .table-hover>tbody>tr:hover>.success,tanj-asciidoctor-panel .table-hover>tbody>tr>td.success:hover,tanj-asciidoctor-panel .table-hover>tbody>tr>th.success:hover{background-color:#d0e9c6}tanj-asciidoctor-panel .table>tbody>tr.info>td,tanj-asciidoctor-panel .table>tbody>tr.info>th,tanj-asciidoctor-panel .table>tbody>tr>td.info,tanj-asciidoctor-panel .table>tbody>tr>th.info,tanj-asciidoctor-panel .table>tfoot>tr.info>td,tanj-asciidoctor-panel .table>tfoot>tr.info>th,tanj-asciidoctor-panel .table>tfoot>tr>td.info,tanj-asciidoctor-panel .table>tfoot>tr>th.info,tanj-asciidoctor-panel .table>thead>tr.info>td,tanj-asciidoctor-panel .table>thead>tr.info>th,tanj-asciidoctor-panel .table>thead>tr>td.info,tanj-asciidoctor-panel .table>thead>tr>th.info{background-color:#d9edf7}tanj-asciidoctor-panel .table-hover>tbody>tr.info:hover>td,tanj-asciidoctor-panel .table-hover>tbody>tr.info:hover>th,tanj-asciidoctor-panel .table-hover>tbody>tr:hover>.info,tanj-asciidoctor-panel .table-hover>tbody>tr>td.info:hover,tanj-asciidoctor-panel .table-hover>tbody>tr>th.info:hover{background-color:#c4e3f3}tanj-asciidoctor-panel .table>tbody>tr.warning>td,tanj-asciidoctor-panel .table>tbody>tr.warning>th,tanj-asciidoctor-panel .table>tbody>tr>td.warning,tanj-asciidoctor-panel .table>tbody>tr>th.warning,tanj-asciidoctor-panel .table>tfoot>tr.warning>td,tanj-asciidoctor-panel .table>tfoot>tr.warning>th,tanj-asciidoctor-panel .table>tfoot>tr>td.warning,tanj-asciidoctor-panel .table>tfoot>tr>th.warning,tanj-asciidoctor-panel .table>thead>tr.warning>td,tanj-asciidoctor-panel .table>thead>tr.warning>th,tanj-asciidoctor-panel .table>thead>tr>td.warning,tanj-asciidoctor-panel .table>thead>tr>th.warning{background-color:#fcf8e3}tanj-asciidoctor-panel .table-hover>tbody>tr.warning:hover>td,tanj-asciidoctor-panel .table-hover>tbody>tr.warning:hover>th,tanj-asciidoctor-panel .table-hover>tbody>tr:hover>.warning,tanj-asciidoctor-panel .table-hover>tbody>tr>td.warning:hover,tanj-asciidoctor-panel .table-hover>tbody>tr>th.warning:hover{background-color:#faf2cc}tanj-asciidoctor-panel .table>tbody>tr.danger>td,tanj-asciidoctor-panel .table>tbody>tr.danger>th,tanj-asciidoctor-panel .table>tbody>tr>td.danger,tanj-asciidoctor-panel .table>tbody>tr>th.danger,tanj-asciidoctor-panel .table>tfoot>tr.danger>td,tanj-asciidoctor-panel .table>tfoot>tr.danger>th,tanj-asciidoctor-panel .table>tfoot>tr>td.danger,tanj-asciidoctor-panel .table>tfoot>tr>th.danger,tanj-asciidoctor-panel .table>thead>tr.danger>td,tanj-asciidoctor-panel .table>thead>tr.danger>th,tanj-asciidoctor-panel .table>thead>tr>td.danger,tanj-asciidoctor-panel .table>thead>tr>th.danger{background-color:#f2dede}tanj-asciidoctor-panel .table-hover>tbody>tr.danger:hover>td,tanj-asciidoctor-panel .table-hover>tbody>tr.danger:hover>th,tanj-asciidoctor-panel .table-hover>tbody>tr:hover>.danger,tanj-asciidoctor-panel .table-hover>tbody>tr>td.danger:hover,tanj-asciidoctor-panel .table-hover>tbody>tr>th.danger:hover{background-color:#ebcccc}tanj-asciidoctor-panel .table-responsive{overflow-x:auto;min-height:.01%}@media screen and (max-width: 767px){tanj-asciidoctor-panel .table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}tanj-asciidoctor-panel .table-responsive>.table{margin-bottom:0}tanj-asciidoctor-panel .table-responsive>.table>tbody>tr>td,tanj-asciidoctor-panel .table-responsive>.table>tbody>tr>th,tanj-asciidoctor-panel .table-responsive>.table>tfoot>tr>td,tanj-asciidoctor-panel .table-responsive>.table>tfoot>tr>th,tanj-asciidoctor-panel .table-responsive>.table>thead>tr>td,tanj-asciidoctor-panel .table-responsive>.table>thead>tr>th{white-space:nowrap}tanj-asciidoctor-panel .table-responsive>.table-bordered{border:0}tanj-asciidoctor-panel .table-responsive>.table-bordered>tbody>tr>td:first-child,tanj-asciidoctor-panel .table-responsive>.table-bordered>tbody>tr>th:first-child,tanj-asciidoctor-panel .table-responsive>.table-bordered>tfoot>tr>td:first-child,tanj-asciidoctor-panel .table-responsive>.table-bordered>tfoot>tr>th:first-child,tanj-asciidoctor-panel .table-responsive>.table-bordered>thead>tr>td:first-child,tanj-asciidoctor-panel .table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}tanj-asciidoctor-panel .table-responsive>.table-bordered>tbody>tr>td:last-child,tanj-asciidoctor-panel .table-responsive>.table-bordered>tbody>tr>th:last-child,tanj-asciidoctor-panel .table-responsive>.table-bordered>tfoot>tr>td:last-child,tanj-asciidoctor-panel .table-responsive>.table-bordered>tfoot>tr>th:last-child,tanj-asciidoctor-panel .table-responsive>.table-bordered>thead>tr>td:last-child,tanj-asciidoctor-panel .table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}tanj-asciidoctor-panel .table-responsive>.table-bordered>tbody>tr:last-child>td,tanj-asciidoctor-panel .table-responsive>.table-bordered>tbody>tr:last-child>th,tanj-asciidoctor-panel .table-responsive>.table-bordered>tfoot>tr:last-child>td,tanj-asciidoctor-panel .table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}}tanj-asciidoctor-panel table.tableblock{max-width:100%;border-collapse:separate}tanj-asciidoctor-panel table.tableblock td>.paragraph:last-child p>p:last-child,tanj-asciidoctor-panel table.tableblock td>p:last-child,tanj-asciidoctor-panel table.tableblock th>p:last-child{margin-bottom:0}tanj-asciidoctor-panel table.tableblock,tanj-asciidoctor-panel td.tableblock,tanj-asciidoctor-panel th.tableblock{border:0 solid #dedede}tanj-asciidoctor-panel table.grid-all td.tableblock,tanj-asciidoctor-panel table.grid-all th.tableblock{border-width:0 1px 1px 0}tanj-asciidoctor-panel table.grid-all tfoot>tr>td.tableblock,tanj-asciidoctor-panel table.grid-all tfoot>tr>th.tableblock{border-width:1px 1px 0 0}tanj-asciidoctor-panel table.grid-cols td.tableblock,tanj-asciidoctor-panel table.grid-cols th.tableblock{border-width:0 1px 0 0}tanj-asciidoctor-panel table.grid-all *>tr>.tableblock:last-child,tanj-asciidoctor-panel table.grid-cols *>tr>.tableblock:last-child{border-right-width:0}tanj-asciidoctor-panel table.grid-rows td.tableblock,tanj-asciidoctor-panel table.grid-rows th.tableblock{border-width:0 0 1px}tanj-asciidoctor-panel table.grid-all tbody>tr:last-child>td.tableblock,tanj-asciidoctor-panel table.grid-all tbody>tr:last-child>th.tableblock,tanj-asciidoctor-panel table.grid-all thead:last-child>tr>th.tableblock,tanj-asciidoctor-panel table.grid-rows tbody>tr:last-child>td.tableblock,tanj-asciidoctor-panel table.grid-rows tbody>tr:last-child>th.tableblock,tanj-asciidoctor-panel table.grid-rows thead:last-child>tr>th.tableblock{border-bottom-width:0}tanj-asciidoctor-panel table.grid-rows tfoot>tr>td.tableblock,tanj-asciidoctor-panel table.grid-rows tfoot>tr>th.tableblock{border-width:1px 0 0}tanj-asciidoctor-panel table.frame-all{border-width:1px}tanj-asciidoctor-panel table.frame-sides{border-width:0 1px}tanj-asciidoctor-panel table.frame-topbot{border-width:1px 0}tanj-asciidoctor-panel td.halign-left,tanj-asciidoctor-panel th.halign-left{text-align:left}tanj-asciidoctor-panel td.halign-right,tanj-asciidoctor-panel th.halign-right{text-align:right}tanj-asciidoctor-panel td.halign-center,tanj-asciidoctor-panel th.halign-center{text-align:center}tanj-asciidoctor-panel td.valign-top,tanj-asciidoctor-panel th.valign-top{vertical-align:top}tanj-asciidoctor-panel td.valign-bottom,tanj-asciidoctor-panel th.valign-bottom{vertical-align:bottom}tanj-asciidoctor-panel td.valign-middle,tanj-asciidoctor-panel th.valign-middle{vertical-align:middle}tanj-asciidoctor-panel table tfoot th,tanj-asciidoctor-panel table thead th{font-weight:700}tanj-asciidoctor-panel tbody tr th{display:table-cell;line-height:1.6;background:#f7f8f7}tanj-asciidoctor-panel tbody tr th,tanj-asciidoctor-panel tbody tr th p,tanj-asciidoctor-panel tfoot tr th,tanj-asciidoctor-panel tfoot tr th p{color:#000c;font-weight:700}tanj-asciidoctor-panel p.tableblock>code:only-child{background:0 0;padding:0}tanj-asciidoctor-panel p.tableblock{font-size:1em}\n"] }] }], ctorParameters: function () { return [{ type: i0.ElementRef }]; }, propDecorators: { content: [{ type: Input }] } }); //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXNjaWlkb2N0b3ItcGFuZWwuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvdGFuZ2VudGlhbC9hc2NpaWRvY3Rvci1wYW5lbC9zcmMvbGliL2FzY2lpZG9jdG9yLXBhbmVsLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3RhbmdlbnRpYWwvYXNjaWlkb2N0b3ItcGFuZWwvc3JjL2xpYi9hc2NpaWRvY3Rvci1wYW5lbC5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQ0wsU0FBUyxFQUNULFVBQVUsRUFDVix1QkFBdUIsRUFDdkIsS0FBSyxFQUVMLGlCQUFpQixHQUNsQixNQUFNLGVBQWUsQ0FBQztBQUN2QixPQUFPLEVBQUMsd0JBQXdCLEVBQUMsTUFBTSx3QkFBd0IsQ0FBQzs7QUFVaEUsTUFBTSxPQUFPLG9CQUFvQjtJQUsvQixZQUFvQixVQUFzQjtRQUF0QixlQUFVLEdBQVYsVUFBVSxDQUFZO1FBSGxDLGFBQVEsR0FBVyxFQUFFLENBQUM7UUFDdEIsd0JBQW1CLEdBQTZCLElBQUksQ0FBQztJQUVmLENBQUM7SUFFL0Msa0JBQWtCO1FBQ2hCLElBQUksQ0FBQyxtQkFBbUIsR0FBRyxJQUFJLHdCQUF3QixDQUFDLElBQUksQ0FBQyxVQUFVLENBQUMsQ0FBQztRQUN6RSxJQUFJLENBQUMsbUJBQW1CLENBQUMsYUFBYSxDQUFDLElBQUksQ0FBQyxRQUFRLENBQUMsQ0FBQTtJQUN2RCxDQUFDO0lBRUQsSUFDSSxPQUFPO1FBQ1QsT0FBTyxJQUFJLENBQUMsUUFBUSxDQUFDO0lBQ3ZCLENBQUM7SUFFRCxJQUFJLE9BQU8sQ0FBQyxLQUFhO1FBQ3ZCLElBQUksSUFBSSxDQUFDLFFBQVEsS0FBSyxLQUFLLEVBQUU7WUFDM0IsSUFBSSxDQUFDLFFBQVEsR0FBRyxLQUFLLENBQUM7WUFDdEIsSUFBSSxJQUFJLENBQUMsbUJBQW1CLEVBQUU7Z0JBQzVCLElBQUksQ0FBQyxtQkFBbUIsQ0FBQyxhQUFhLENBQUMsSUFBSSxDQUFDLFFBQVEsQ0FBQyxDQUFBO2FBQ3REO1NBQ0Y7SUFDSCxDQUFDOztrSEF4QlUsb0JBQW9CO3NHQUFwQixvQkFBb0IsOEZDbEJqQyxxR0FHQTs0RkRlYSxvQkFBb0I7a0JBUGhDLFNBQVM7K0JBQ1Msd0JBQXdCLG1CQUd4Qix1QkFBdUIsQ0FBQyxNQUFNLGlCQUM5QixpQkFBaUIsQ0FBQyxJQUFJO2lHQWVuQyxPQUFPO3NCQURWLEtBQUsiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge1xuICBDb21wb25lbnQsXG4gIEVsZW1lbnRSZWYsXG4gIENoYW5nZURldGVjdGlvblN0cmF0ZWd5LFxuICBJbnB1dCxcbiAgQWZ0ZXJDb250ZW50SW5pdCxcbiAgVmlld0VuY2Fwc3VsYXRpb24sXG59IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHtBc2NpaWRvY3RvclBhbmVsUmVuZGVyZXJ9IGZyb20gJy4vYXNjaWlkb2N0b3ItcmVuZGVyZXInO1xuXG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogICAgICAgICd0YW5qLWFzY2lpZG9jdG9yLXBhbmVsJyxcbiAgdGVtcGxhdGVVcmw6ICAgICAnLi9hc2NpaWRvY3Rvci1wYW5lbC5jb21wb25lbnQuaHRtbCcsXG4gIHN0eWxlVXJsczogICAgICAgWycuL2FzY2lpZG9jdG9yLXBhbmVsLmNvbXBvbmVudC5zY3NzJ10sXG4gIGNoYW5nZURldGVjdGlvbjogQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3kuT25QdXNoLFxuICBlbmNhcHN1bGF0aW9uOiAgIFZpZXdFbmNhcHN1bGF0aW9uLk5vbmVcbn0pXG5leHBvcnQgY2xhc3MgQXNjaWlkb2N0b3JDb21wb25lbnQgaW1wbGVtZW50cyBBZnRlckNvbnRlbnRJbml0IHtcblxuICBwcml2YXRlIF9jb250ZW50OiBzdHJpbmcgPSAnJztcbiAgcHJpdmF0ZSBhc2NpaWRvY3RvclJlbmRlcmVyOiBBc2NpaWRvY3RvclBhbmVsUmVuZGVyZXIgPSBudWxsO1xuXG4gIGNvbnN0cnVjdG9yKHByaXZhdGUgZWxlbWVudFJlZjogRWxlbWVudFJlZikgeyB9XG5cbiAgbmdBZnRlckNvbnRlbnRJbml0KCkge1xuICAgIHRoaXMuYXNjaWlkb2N0b3JSZW5kZXJlciA9IG5ldyBBc2NpaWRvY3RvclBhbmVsUmVuZGVyZXIodGhpcy5lbGVtZW50UmVmKTtcbiAgICB0aGlzLmFzY2lpZG9jdG9yUmVuZGVyZXIudXBkYXRlQ29udGVudCh0aGlzLl9jb250ZW50KVxuICB9XG5cbiAgQElucHV0KClcbiAgZ2V0IGNvbnRlbnQoKTogc3RyaW5nIHtcbiAgICByZXR1cm4gdGhpcy5fY29udGVudDtcbiAgfVxuXG4gIHNldCBjb250ZW50KHZhbHVlOiBzdHJpbmcpIHtcbiAgICBpZiAodGhpcy5fY29udGVudCAhPT0gdmFsdWUpIHtcbiAgICAgIHRoaXMuX2NvbnRlbnQgPSB2YWx1ZTtcbiAgICAgIGlmICh0aGlzLmFzY2lpZG9jdG9yUmVuZGVyZXIpIHtcbiAgICAgICAgdGhpcy5hc2NpaWRvY3RvclJlbmRlcmVyLnVwZGF0ZUNvbnRlbnQodGhpcy5fY29udGVudClcbiAgICAgIH1cbiAgICB9XG4gIH1cbn1cblxuIiwiPGRpdiBjbGFzcz1cInRhbmotYXNjaWlkb2N0b3ItY29udGFpbmVyXCI+XG4gIDxkaXYgY2xhc3M9XCJ0YW5qLWFzY2lpZG9jdG9yLWJvZHlcIj48L2Rpdj5cbjwvZGl2PlxuIl19