fix(demo): replace @akveo with @nebular

This commit is contained in:
Alexander Zhukov 2017-08-01 17:42:21 +03:00
parent b772882cd6
commit 210c6f2355
129 changed files with 1010 additions and 1010 deletions

View file

@ -1,40 +1,40 @@
<div class="row">
<div class="col-md-12 col-lg-6">
<nga-card size="small">
<nga-tabset>
<nga-tab tabTitle="Simple Tab #1">
<nb-card size="small">
<nb-tabset>
<nb-tab tabTitle="Simple Tab #1">
<p>In 1975, the first general purpose home automation network technology, <a href="/wiki/X10_(industry_standard)" title="X10 (industry standard)">X10</a>, was developed. It is a communication protocol for electronic devices. It primarily uses <a href="/wiki/Electric_power_transmission" title="Electric power transmission">electric power transmission</a> wiring for signalling and control, where the signals involve brief <a href="/wiki/Radio_frequency" title="Radio frequency">radio frequency</a> bursts of <a href="/wiki/Digital_data" title="Digital data">digital data</a>, and remains the most widely available.<sup id="cite_ref-8" class="reference"><a href="#cite_note-8">[8]</a></sup> By 1978, X10 products included a 16 channel command console, a lamp module, and an appliance module. Soon after came the wall switch module and the first X10 timer.</p>
</nga-tab>
<nga-tab tabTitle="Simple Tab #2">
</nb-tab>
<nb-tab tabTitle="Simple Tab #2">
<span>Content #2</span>
</nga-tab>
<nga-tab tabTitle="Simple Tab #3">
</nb-tab>
<nb-tab tabTitle="Simple Tab #3">
<span>Content #3</span>
</nga-tab>
</nga-tabset>
</nga-card>
</nb-tab>
</nb-tabset>
</nb-card>
</div>
<div class="col-md-6">
<nga-card size="small">
<nga-tabset fullWidth>
<nga-tab tabTitle="Full width tab #1">
<nb-card size="small">
<nb-tabset fullWidth>
<nb-tab tabTitle="Full width tab #1">
<p><b>Home automation</b> or <b>smart home</b><sup id="cite_ref-Smart_Home_1-0" class="reference"><a href="#cite_note-Smart_Home-1">[1]</a></sup> (also known as <b>domotics</b><sup id="cite_ref-t3_2-0" class="reference"><a href="#cite_note-t3-2">[2]</a></sup>) is <a href="/wiki/Building_automation" title="Building automation">building automation</a> for the home. It involves the control and automation of lighting, heating (such as <a href="/wiki/Smart_thermostat" title="Smart thermostat">smart thermostats</a>), ventilation, air conditioning (<a href="/wiki/HVAC" title="HVAC">HVAC</a>), and security, as well as <a href="/wiki/Home_appliance" title="Home appliance">home appliances</a> such as washer/dryers, ovens or refrigerators/freezers. <a href="/wiki/Wi-Fi" title="Wi-Fi">Wi-Fi</a> is often used for remote monitoring and control. Home devices, when remotely monitored and controlled via the Internet, are an important constituent of the <a href="/wiki/Internet_of_Things" class="mw-redirect" title="Internet of Things">Internet of Things</a>. Modern systems generally consist of switches and sensors connected to a central hub sometimes called a "gateway" from which the system is controlled with a <a href="/wiki/User_interface" title="User interface">user interface</a> that is interacted either with a wall-mounted terminal, mobile phone software, <a href="/wiki/Tablet_computer" title="Tablet computer">tablet computer</a> or a web interface, often but not always via Internet cloud services.</p>
<p>While there are many competing vendors, there are very few worldwide accepted industry standards and the smart home space is heavily fragmented.<sup id="cite_ref-3" class="reference"><a href="#cite_note-3">[3]</a></sup> Popular <a href="/wiki/Communications_protocol" title="Communications protocol">communications protocol</a> for products include <a href="/wiki/X10_(industry_standard)" title="X10 (industry standard)">X10</a>, <a href="/wiki/Ethernet" title="Ethernet">Ethernet</a>, <a href="/wiki/RS-485" title="RS-485">RS-485</a>, <a href="/wiki/6LoWPAN" title="6LoWPAN">6LoWPAN</a>, <a href="/wiki/Bluetooth_low_energy" class="mw-redirect" title="Bluetooth low energy">Bluetooth LE (BLE)</a>, <a href="/wiki/ZigBee" class="mw-redirect" title="ZigBee">ZigBee</a> and <a href="/wiki/Z-Wave" title="Z-Wave">Z-Wave</a>, or other proprietary protocols all of which are incompatible with each other.<sup id="cite_ref-crhomephone_4-0" class="reference"><a href="#cite_note-crhomephone-4">[4]</a></sup> Manufacturers often prevent independent implementations by withholding documentation and by litigation.<sup id="cite_ref-5" class="reference"><a href="#cite_note-5">[5]</a></sup></p>
</nga-tab>
<nga-tab tabTitle="Full width tab #2">
</nb-tab>
<nb-tab tabTitle="Full width tab #2">
<span>Content #2</span>
</nga-tab>
<nga-tab tabTitle="Full width tab #3">
</nb-tab>
<nb-tab tabTitle="Full width tab #3">
<span>Content #3</span>
</nga-tab>
</nga-tabset>
</nga-card>
</nb-tab>
</nb-tabset>
</nb-card>
</div>
<div class="col-md-6">
<nga-card size="small">
<nga-route-tabset [tabs]="tabs"></nga-route-tabset>
</nga-card>
<nb-card size="small">
<nb-route-tabset [tabs]="tabs"></nb-route-tabset>
</nb-card>
</div>
</div>

View file

@ -1,18 +1,18 @@
@import '../../../@theme/styles/variables';
@include nga-install-component() {
nga-tabset {
@include nb-install-component() {
nb-tabset {
height: 100%;
display: flex;
flex-direction: column;
}
nga-tab {
padding: nga-theme(padding);
nb-tab {
padding: nb-theme(padding);
}
/deep/ ngx-tab1, /deep/ ngx-tab2 {
display: block;
padding: nga-theme(padding);
padding: nb-theme(padding);
}
}