@burh/nuxt-core 1.1.21 → 1.1.23

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.
@@ -74,11 +74,11 @@
74
74
 
75
75
  <span id="credits-amount" v-if="subheader !== null">
76
76
  <template v-if="subheader >= 0">
77
- {{ subheader }} Créditos
77
+ {{ subheader }} {{ $t('app_header.credits') }}
78
78
  </template>
79
79
 
80
80
  <template v-else>
81
- Créditos Ilimitados
81
+ {{ $t('app_header.unlimited_credits') }}
82
82
  </template>
83
83
  </span>
84
84
 
@@ -127,11 +127,24 @@ export default {
127
127
  props:{
128
128
  icons:{
129
129
  type: Array,
130
- default: () =>[{ event: 'view', icon: ['fas', 'eye'], disabled: false, title: 'Visualizar' }, { event: 'config', icon: ['fas', 'cog'], disabled: false, title: 'Editar' } ]
130
+ default: () =>[
131
+ {
132
+ event: 'view',
133
+ icon: ['fas', 'eye'],
134
+ disabled: false,
135
+ title: this.$t('app_header.default_icons.view')
136
+ },
137
+ {
138
+ event: 'config',
139
+ icon: ['fas', 'cog'],
140
+ disabled: false,
141
+ title: this.$t('app_header.default_icons.edit')
142
+ }
143
+ ]
131
144
  },
132
145
  name: {
133
146
  type: String,
134
- default: 'Teste de matematica'
147
+ default: () => this.$t('app_header.default_name')
135
148
  },
136
149
  beta:{
137
150
  type: Boolean,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@burh/nuxt-core",
3
- "version": "1.1.21",
3
+ "version": "1.1.23",
4
4
  "description": "Design System and Components.",
5
5
  "author": "Burh",
6
6
  "private": false,