@burh/nuxt-core 1.0.26 → 1.0.27

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.
@@ -0,0 +1,50 @@
1
+ <template>
2
+ <div class="label-context-icon">
3
+ <span class="d-inline-block" :class="[
4
+ `label-context-icon-${iconSize}`
5
+ ]">
6
+ <font-awesome-icon :icon="icon" :aria-label="iconAria" />
7
+ </span>
8
+ <div class="d-inline-block">
9
+ <component :is="titleTag" class="text-muted display-5">{{title}}</component>
10
+ <p>{{subtitle}}</p>
11
+ </div>
12
+ </div>
13
+ </template>
14
+
15
+ <script>
16
+ export default {
17
+ props: {
18
+ icon: {
19
+ type: Array,
20
+ default: () => ['fas', 'paper-plane']
21
+ },
22
+ iconAria: {
23
+ type: String,
24
+ default: 'Icone',
25
+ },
26
+ title: {
27
+ type: String,
28
+ default: 'Titulo',
29
+ },
30
+ titleTag: {
31
+ type: String,
32
+ default: 'h3',
33
+ },
34
+ subtitle: {
35
+ type: String,
36
+ default: 'Subtitulo',
37
+ },
38
+ iconSize: String
39
+ }
40
+ }
41
+ </script>
42
+
43
+ <style lang="scss">
44
+ .label-context-icon {
45
+ &-lg {
46
+ font-size: 2rem;
47
+ }
48
+ }
49
+
50
+ </style>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@burh/nuxt-core",
3
- "version": "1.0.26",
3
+ "version": "1.0.27",
4
4
  "description": "Design System and Components.",
5
5
  "author": "Burh",
6
6
  "scripts": {