rename all components to new namespace (#1515)

Co-authored-by: Andrew Bastin <andrewbastin.k@gmail.com>
This commit is contained in:
Liyas Thomas
2021-03-01 09:28:14 +05:30
committed by GitHub
parent 37bdd525ea
commit dc5ca76d05
86 changed files with 2761 additions and 3077 deletions

View File

@@ -1,6 +1,6 @@
<template>
<div>
<pw-section class="blue" :label="$t('request')" no-legend>
<AppSection class="blue" :label="$t('request')" no-legend>
<ul>
<li>
<label for="mqtt-url">{{ $t("url") }}</label>
@@ -30,12 +30,12 @@
</li>
</div>
</ul>
</pw-section>
</Appsection>
<pw-section class="blue" :label="$t('communication')" no-legend>
<AppSection class="blue" :label="$t('communication')" no-legend>
<ul>
<li>
<log :title="$t('log')" :log="this.log" />
<RealtimeLog :title="$t('log')" :log="this.log" />
</li>
</ul>
<ul>
@@ -94,7 +94,7 @@
</li>
</div>
</ul>
</pw-section>
</Appsection>
</div>
</template>

View File

@@ -1,6 +1,6 @@
<template>
<div>
<pw-section class="blue" :label="$t('request')" ref="request" no-legend>
<AppSection class="blue" :label="$t('request')" ref="request" no-legend>
<ul>
<li>
<label for="socketio-url">{{ $t("url") }}</label>
@@ -41,12 +41,12 @@
</li>
</div>
</ul>
</pw-section>
</AppSection>
<pw-section class="purple" :label="$t('communication')" id="response" ref="response" no-legend>
<AppSection class="purple" :label="$t('communication')" id="response" ref="response" no-legend>
<ul>
<li>
<log :title="$t('log')" :log="communication.log" />
<RealtimeLog :title="$t('log')" :log="communication.log" />
</li>
</ul>
<ul>
@@ -113,7 +113,7 @@
</button>
</li>
</ul>
</pw-section>
</AppSection>
</div>
</template>

View File

@@ -1,6 +1,6 @@
<template>
<div class="page">
<pw-section class="blue" :label="$t('request')" ref="request" no-legend>
<AppSection class="blue" :label="$t('request')" ref="request" no-legend>
<ul>
<li>
<label for="server">{{ $t("server") }}</label>
@@ -34,16 +34,16 @@
</li>
</div>
</ul>
</pw-section>
</AppSection>
<pw-section class="purple" :label="$t('communication')" id="response" ref="response" no-legend>
<AppSection class="purple" :label="$t('communication')" id="response" ref="response" no-legend>
<ul>
<li>
<log :title="$t('events')" :log="events.log" />
<RealtimeLog :title="$t('events')" :log="events.log" />
<div id="result"></div>
</li>
</ul>
</pw-section>
</AppSection>
</div>
</template>

View File

@@ -1,6 +1,6 @@
<template>
<div class="page">
<pw-section class="blue" :label="$t('request')" ref="request" no-legend>
<AppSection class="blue" :label="$t('request')" ref="request" no-legend>
<ul>
<li>
<label for="websocket-url">{{ $t("url") }}</label>
@@ -35,12 +35,12 @@
</li>
</div>
</ul>
</pw-section>
</AppSection>
<pw-section class="purple" :label="$t('communication')" id="response" ref="response" no-legend>
<AppSection class="purple" :label="$t('communication')" id="response" ref="response" no-legend>
<ul>
<li>
<log :title="$t('log')" :log="communication.log" />
<RealtimeLog :title="$t('log')" :log="communication.log" />
</li>
</ul>
<ul>
@@ -76,7 +76,7 @@
</li>
</div>
</ul>
</pw-section>
</AppSection>
</div>
</template>