@burh/nuxt-core 1.0.424 → 1.0.425

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.
@@ -8,11 +8,20 @@
8
8
  <slot name="header-top" />
9
9
 
10
10
  <div class="header__content">
11
- <div class="d-flex align-items-center flex-row">
11
+ <div class="d-flex align-items-center justify-content-center flex-row">
12
12
  <button class="back__button" v-if="hasBackButton" @click="goBack()">
13
13
  <i class="fas fa-arrow-left"></i>
14
14
  </button>
15
15
  <h2 class="font-weight-bold display-3">{{name}}</h2>
16
+ <badge
17
+ v-if="beta"
18
+ rounded
19
+ size="md"
20
+ class="badge-bg-color badge-font ml-2 mb-2"
21
+ type="primary"
22
+ >
23
+ BETA
24
+ </badge>
16
25
  </div>
17
26
  <div class="images" v-if="users.length">
18
27
  <el-tooltip
@@ -75,6 +84,10 @@ export default {
75
84
  type: String,
76
85
  default: 'Teste de matematica'
77
86
  },
87
+ beta:{
88
+ type: Boolean,
89
+ default: false
90
+ },
78
91
  subheader: {
79
92
  type: Number,
80
93
  default: null
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@burh/nuxt-core",
3
- "version": "1.0.424",
3
+ "version": "1.0.425",
4
4
  "description": "Design System and Components.",
5
5
  "author": "Burh",
6
6
  "scripts": {