@bildvitta/quasar-ui-asteroid 3.14.0-beta.6 → 3.14.0-beta.8
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
|
@@ -449,7 +449,6 @@ function onNavigation (date) {
|
|
|
449
449
|
|
|
450
450
|
color: $primary;
|
|
451
451
|
font-size: 10px !important;
|
|
452
|
-
width: 100%;
|
|
453
452
|
line-height: 1;
|
|
454
453
|
transition: color var(--qas-generic-transition);
|
|
455
454
|
|
|
@@ -562,7 +561,7 @@ function onNavigation (date) {
|
|
|
562
561
|
box-shadow: none;
|
|
563
562
|
height: auto !important;
|
|
564
563
|
line-height: 1;
|
|
565
|
-
width:
|
|
564
|
+
min-width: min-content;
|
|
566
565
|
transition: color var(--qas-generic-transition);
|
|
567
566
|
|
|
568
567
|
.q-ripple,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<component :is="component" class="qas-list-items" :class="classes">
|
|
3
3
|
<q-list separator>
|
|
4
|
-
<q-item v-for="(item, index) in props.list" :key="index"
|
|
4
|
+
<q-item v-for="(item, index) in props.list" :key="index" :clickable="props.useClickableItem" @click="onClick({ item, index }, true)">
|
|
5
5
|
<slot :index="index" :item="item" name="item">
|
|
6
6
|
<q-item-section>
|
|
7
7
|
<slot :index="index" :item="item" name="item-section" />
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
|
|
10
10
|
<q-item-section v-if="props.useSectionActions" side>
|
|
11
11
|
<slot :index="index" :item="item" name="item-section-side">
|
|
12
|
-
<qas-btn color="
|
|
12
|
+
<qas-btn color="grey-10" :icon="props.icon" variant="tertiary" @click="onClick({ item, index })" />
|
|
13
13
|
</slot>
|
|
14
14
|
</q-item-section>
|
|
15
15
|
</slot>
|
|
@@ -82,7 +82,7 @@ function onClick ({ item, index }, fromItem) {
|
|
|
82
82
|
|
|
83
83
|
.q-list {
|
|
84
84
|
& > .q-item {
|
|
85
|
-
padding: var(--qas-spacing-
|
|
85
|
+
padding: var(--qas-spacing-md) 0;
|
|
86
86
|
}
|
|
87
87
|
|
|
88
88
|
& > .q-item:last-child {
|