@asd20/ui 3.2.446 → 3.2.449
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
|
@@ -27,16 +27,6 @@
|
|
|
27
27
|
</asd20-list-item>
|
|
28
28
|
<asd20-accordion :opened="true" label="Favorites">
|
|
29
29
|
<transition-group name="fade" mode="in-out">
|
|
30
|
-
<!-- <asd20-checkbox
|
|
31
|
-
v-for="item in trueItems"
|
|
32
|
-
:key="item.id"
|
|
33
|
-
:label="item.label"
|
|
34
|
-
:value="item.value"
|
|
35
|
-
:link="item.website"
|
|
36
|
-
@input="editFavorites(item.id)"
|
|
37
|
-
:icon="icon"
|
|
38
|
-
v-on:eventLabelClick="catchFavorites"
|
|
39
|
-
/> -->
|
|
40
30
|
<div
|
|
41
31
|
class="favorite-list-item"
|
|
42
32
|
v-for="item in trueItems"
|
|
@@ -56,21 +46,10 @@
|
|
|
56
46
|
</asd20-accordion>
|
|
57
47
|
<asd20-accordion
|
|
58
48
|
v-for="(categoryItem, index) in itemsByCategoryOptions"
|
|
59
|
-
:label="categoryItem.title"
|
|
49
|
+
:label="categoryItem.title + ' Schools'"
|
|
60
50
|
:key="index"
|
|
61
51
|
>
|
|
62
52
|
<transition-group name="fade" mode="in-out">
|
|
63
|
-
<!-- <asd20-checkbox
|
|
64
|
-
v-for="item in categoryItem.itemsSorted"
|
|
65
|
-
:key="(index, item.id)"
|
|
66
|
-
:label="item.title"
|
|
67
|
-
:value="item.value"
|
|
68
|
-
:link="item.website"
|
|
69
|
-
@input="editFavorites(item.id)"
|
|
70
|
-
:icon="icon"
|
|
71
|
-
v-on:eventLabelClick="catchFavorites"
|
|
72
|
-
/> -->
|
|
73
|
-
|
|
74
53
|
<div
|
|
75
54
|
class="favorite-list-item"
|
|
76
55
|
v-for="item in categoryItem.itemsSorted"
|
|
@@ -243,6 +222,7 @@ export default {
|
|
|
243
222
|
.asd20-picker {
|
|
244
223
|
position: relative;
|
|
245
224
|
display: flex;
|
|
225
|
+
align-items: center;
|
|
246
226
|
.picker-button {
|
|
247
227
|
// margin: space(0.1) space(0);
|
|
248
228
|
}
|
|
@@ -328,19 +308,4 @@ export default {
|
|
|
328
308
|
height: auto;
|
|
329
309
|
}
|
|
330
310
|
}
|
|
331
|
-
// @media (min-width: 900px) {
|
|
332
|
-
// .asd20-picker__modal {
|
|
333
|
-
// padding: space(1) space(3);
|
|
334
|
-
// }
|
|
335
|
-
// }
|
|
336
|
-
// @media (min-width: 1100px) {
|
|
337
|
-
// .asd20-picker__modal {
|
|
338
|
-
// padding: space(1) space(10);
|
|
339
|
-
// }
|
|
340
|
-
// .asd20-picker {
|
|
341
|
-
// &__button {
|
|
342
|
-
// padding: space(0.5);
|
|
343
|
-
// }
|
|
344
|
-
// }
|
|
345
|
-
// }
|
|
346
311
|
</style>
|
|
@@ -104,8 +104,10 @@ export default {
|
|
|
104
104
|
|
|
105
105
|
.asd20-organization-picker {
|
|
106
106
|
.asd20-district-logo {
|
|
107
|
-
margin: auto;
|
|
108
107
|
padding-left: space(0.25);
|
|
108
|
+
&::v-deep svg {
|
|
109
|
+
height: inherit;
|
|
110
|
+
}
|
|
109
111
|
}
|
|
110
112
|
}
|
|
111
113
|
@media (min-width: 768px) {
|
|
@@ -120,9 +122,8 @@ export default {
|
|
|
120
122
|
@media (min-width: 1024px) {
|
|
121
123
|
.asd20-organization-picker {
|
|
122
124
|
.asd20-district-logo {
|
|
123
|
-
height: space(1.5);
|
|
124
125
|
margin: space(1) auto space(1) 0;
|
|
125
|
-
display:
|
|
126
|
+
// display: flex;
|
|
126
127
|
--fill-one: var(--color__primary);
|
|
127
128
|
--fill-two: var(--color__secondary-t30);
|
|
128
129
|
}
|
|
@@ -130,7 +131,7 @@ export default {
|
|
|
130
131
|
.asd20-district-logo {
|
|
131
132
|
height: space(1.5);
|
|
132
133
|
margin: space(1) auto space(1) 0;
|
|
133
|
-
display: block;
|
|
134
|
+
// display: block;
|
|
134
135
|
--fill-one: #fff;
|
|
135
136
|
--fill-two: #ccc;
|
|
136
137
|
}
|
|
@@ -15,8 +15,8 @@
|
|
|
15
15
|
</div>
|
|
16
16
|
<div class="swiper-slide">
|
|
17
17
|
<asd20-card
|
|
18
|
-
:title="linkLabel"
|
|
19
|
-
:link="link"
|
|
18
|
+
:title="cards.length > 9 ? linkLabel : 'That\'s all, folks!'"
|
|
19
|
+
:link="cards.length > 9 ? link : null"
|
|
20
20
|
expanded-header
|
|
21
21
|
zoom
|
|
22
22
|
reversed
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
</template>
|
|
31
31
|
</asd20-swiper>
|
|
32
32
|
<asd20-button
|
|
33
|
-
v-if="link && linkLabel"
|
|
33
|
+
v-if="link && linkLabel && cards.length > 9"
|
|
34
34
|
:label="linkLabel"
|
|
35
35
|
:link="link"
|
|
36
36
|
size="md"
|