Skip to content

Commit

Permalink
build: update npm dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
selul committed Feb 13, 2019
1 parent f7812e3 commit b33dbca
Show file tree
Hide file tree
Showing 5 changed files with 3,941 additions and 5,321 deletions.
2 changes: 1 addition & 1 deletion assets/css/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
align-self: center;
}
.api-key-control {
padding: 0 15px 0 0;
padding: 0;
}

.api-key-field .button.is-danger {
Expand Down
16 changes: 8 additions & 8 deletions assets/js/bundle.min.js

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions assets/vue/components/api-key-form.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,17 @@
<label v-if="isConnected"
class="label api-key-label has-text-grey-dark">{{strings.api_key_placeholder}}:</label>
<div class="control is-expanded api-key-control">
<input :type="isConnected ? 'password' : 'text'" :disabled="isConnected" name="api_key" class="input is-small"
<input :type="isConnected ? 'password' : 'text'" :disabled="isConnected" name="api_key" class="input "
:class="validKey ? '' : 'is-danger'" :placeholder="strings.api_key_placeholder"
v-model="apiKey">
</div>
<div class="control">
<button v-if="! isConnected" class="button button is-success is-small"
<button v-if="! isConnected" class="button button is-success "
@click="connect" :class="{ 'is-loading' : this.$store.state.isConnecting }">
<span class="icon"><i class="dashicons dashicons-admin-plugins"></i></span>
<span>{{strings.connect_btn}}</span>
</button>
<button v-else class="button is-danger is-small" @click="disconnect"
<button v-else class="button is-danger " @click="disconnect"
:class="{ 'is-loading' : this.$store.state.isConnecting }">
<span class="icon"><i class="dashicons dashicons-dismiss"></i></span>
<span>{{strings.disconnect_btn}}</span>
Expand Down
Loading

0 comments on commit b33dbca

Please sign in to comment.