@bildvitta/quasar-ui-asteroid 3.20.0-beta.15 → 3.20.0-beta.16

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,7 +1,7 @@
1
1
  {
2
2
  "name": "@bildvitta/quasar-ui-asteroid",
3
3
  "description": "Asteroid",
4
- "version": "3.20.0-beta.15",
4
+ "version": "3.20.0-beta.16",
5
5
  "author": "Bild & Vitta <systemteam@bild.com.br>",
6
6
  "license": "MIT",
7
7
  "main": "./src/asteroid.js",
@@ -7,7 +7,7 @@
7
7
  </slot>
8
8
  </span>
9
9
 
10
- <qas-btn class="q-ml-xs" color="primary" :icon="props.icon" :loading="isLoading" variant="tertiary" @click.stop.prevent="copy">
10
+ <qas-btn class="q-ml-xs" color="primary" :icon="props.icon" :loading="isLoading" variant="tertiary" v-bind="props.buttonProps" @click.stop.prevent="copy">
11
11
  <qas-tooltip text="Copiar" />
12
12
  </qas-btn>
13
13
  </span>
@@ -41,6 +41,11 @@ const props = defineProps({
41
41
  rawText: {
42
42
  default: '',
43
43
  type: String
44
+ },
45
+
46
+ buttonProps: {
47
+ type: Object,
48
+ default: () => ({})
44
49
  }
45
50
  })
46
51
 
@@ -21,3 +21,8 @@ props:
21
21
  raw-text:
22
22
  desc: Caso o texto a ser copiado precise ser diferente do texto a ser exibido, utilize esta propriedade.
23
23
  type: String
24
+
25
+ button-props:
26
+ desc: Propriedades adicionais que serão repassadas ao botão.
27
+ type: Object
28
+ default: () => ({})