@nixweb/nixloc-ui 0.0.281 → 0.0.282

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nixweb/nixloc-ui",
3
- "version": "0.0.281",
3
+ "version": "0.0.282",
4
4
  "description": "Componentes UI",
5
5
  "author": "Fábio Ávila <fabio@nixweb.com.br>",
6
6
  "private": false,
@@ -1,19 +1,19 @@
1
1
  <template>
2
2
  <div class="c-div-button" v-b-tooltip.hover :title="tooltip">
3
3
  <button :style="'background-color:' + backGroundColor + ';color:' + color" class="button" :class="{
4
- small: size === 'small',
5
- medium: size === 'medium',
6
- large: size === 'large',
7
- primary: type === 'primary',
8
- success: type === 'success',
9
- warning: type === 'warning',
10
- info: type === 'info',
11
- edit: type === 'edit',
12
- danger: type === 'danger',
13
- disabled: disabled,
14
- }" :disabled="disabled" @click="execute()">
4
+ small: size === 'small',
5
+ medium: size === 'medium',
6
+ large: size === 'large',
7
+ primary: type === 'primary',
8
+ success: type === 'success',
9
+ warning: type === 'warning',
10
+ info: type === 'info',
11
+ edit: type === 'edit',
12
+ danger: type === 'danger',
13
+ disabled: disabled,
14
+ }" :disabled="disabled" @click="execute()">
15
15
  <i class="div-icon-btn" :class="classIcon" v-if="!isLoading(this._key) && classIcon"></i>
16
- <span v-if="!isLoading(this._key)">{{ title }}</span>
16
+ <span class="title-btn" v-if="!isLoading(this._key)">{{ title }}</span>
17
17
  <vue-loading v-if="isLoading(this._key)" type="bubbles" color="#fff"
18
18
  :size="{ width: '26px', height: '26px' }"></vue-loading>
19
19
  </button>
@@ -65,11 +65,11 @@ export default {
65
65
  }
66
66
 
67
67
  .div-icon-btn {
68
- margin-right: 3px;
68
+ margin-right: 0px;
69
69
  }
70
70
 
71
- .title {
72
- margin: 2px;
71
+ .title-btn {
72
+ margin-left: 3px;
73
73
  }
74
74
 
75
75
  .button {
@@ -110,8 +110,8 @@ export default {
110
110
  border-radius: 8px;
111
111
  padding-left: 10px;
112
112
  padding-right: 7px;
113
- margin-right: 10px;
114
- margin-bottom: 10px;
113
+ margin-right: 5px;
114
+ margin-bottom: 5px;
115
115
  font-size: 16px;
116
116
  font-weight: normal;
117
117
  display: flex;