@bildvitta/quasar-ui-asteroid 3.20.0-beta.21 → 3.20.0-beta.22

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.21",
4
+ "version": "3.20.0-beta.22",
5
5
  "author": "Bild & Vitta <systemteam@bild.com.br>",
6
6
  "license": "MIT",
7
7
  "main": "./src/asteroid.js",
@@ -49,7 +49,7 @@
49
49
  </div>
50
50
 
51
51
  <slot v-else name="footer">
52
- <q-expansion-item v-if="hasExpansion" class="full-width" dense expand-icon-class="text-grey-10" header-class="qas-card__expansion-header q-mt-sm q-pa-none" :label="props.expansionProps.label">
52
+ <q-expansion-item v-if="hasExpansion" class="full-width" v-bind="expansionItemProps">
53
53
  <div class="q-mt-xs">
54
54
  <q-separator vertical />
55
55
 
@@ -222,6 +222,16 @@ const formattedActionsMenuProps = computed(() => {
222
222
  useLabel: false
223
223
  }
224
224
  })
225
+
226
+ const expansionItemProps = computed(() => {
227
+ return {
228
+ ...props.expansionProps,
229
+ dense: true,
230
+ expandIconClass: 'text-grey-10',
231
+ headerClass: 'qas-card__expansion-header q-mt-sm q-pa-none',
232
+ label: props.expansionProps.label
233
+ }
234
+ })
225
235
  </script>
226
236
 
227
237
  <style lang="scss">