@asd20/ui-next 2.3.2 → 2.3.4
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/CHANGELOG.md +4 -0
- package/package.json +1 -1
- package/src/components/atoms/Asd20Button/index.vue +1 -1
- package/src/components/atoms/Asd20Icon/index.vue +1 -1
- package/src/components/molecules/Asd20Card/index.vue +1 -0
- package/src/components/molecules/Asd20CardGroup.vue +1 -1
- package/src/components/molecules/Asd20DepartmentContactCard/index.vue +1 -1
- package/src/components/molecules/Asd20MessagingGroup.vue +1 -1
- package/src/components/organisms/Asd20ActionMenu/index.vue +1 -1
- package/src/components/organisms/Asd20DigestFeed/index.vue +2 -2
- package/src/components/organisms/Asd20FileList/index.vue +7 -6
- package/src/components/organisms/Asd20LinkList/index.vue +5 -5
- package/src/components/organisms/Asd20NotificationGroup/index.vue +6 -3
- package/src/components/organisms/Asd20PageContent/index.vue +2 -2
- package/src/components/organisms/Asd20PeopleList/index.vue +1 -1
- package/src/components/organisms/Asd20PrimaryHeader/index.vue +1 -1
- package/src/components/organisms/Asd20SiteNavigation/index.vue +1 -2
- package/src/components/organisms/Asd20SiteSearch/index.vue +1 -1
- package/src/components/organisms/Asd20TabBar/index.vue +1 -1
- package/src/components/organisms/Asd20VideoHeaderContent/index.vue +1 -1
- package/src/components/organisms/Asd20WidgetsSection/index.vue +3 -3
- package/src/components/templates/Asd20ArticleDigestCompactTemplate/index.vue +2 -2
- package/src/components/templates/Asd20ArticleDigestTemplate/index.vue +2 -2
- package/src/components/templates/Asd20ArticleListTemplate/index.vue +2 -2
- package/src/components/templates/Asd20ArticleTemplate/index.vue +1 -1
- package/src/components/templates/Asd20BasePageTemplate/index.vue +7 -9
- package/src/components/templates/Asd20CampusDetailTemplate/index.vue +1 -1
- package/src/components/templates/Asd20CampusTemplate/index.vue +7 -9
- package/src/components/templates/Asd20ClubsTemplate/index.vue +2 -2
- package/src/components/templates/Asd20DetailAlternateTemplate/index.vue +1 -1
- package/src/components/templates/Asd20DetailImageFullTemplate/index.vue +1 -1
- package/src/components/templates/Asd20DetailImageTemplate/index.vue +1 -1
- package/src/components/templates/Asd20DetailTemplate/index.vue +1 -1
- package/src/components/templates/Asd20DistrictVideoTemplate/index.vue +1 -1
- package/src/components/templates/Asd20FileListPageTemplate/index.vue +2 -2
- package/src/components/templates/Asd20GroupFeatureTemplate/index.vue +1 -1
- package/src/components/templates/Asd20LoginsTemplate/index.vue +1 -1
- package/src/components/templates/Asd20PeopleFeatureTemplate/index.vue +2 -2
- package/src/components/templates/Asd20ProfileTemplate/index.vue +1 -1
- package/src/components/templates/Asd20SalaryCalculatorTemplate/index.vue +1 -1
- package/src/components/templates/Asd20SchoolHomeTemplate/index.vue +1 -1
- package/src/components/templates/Asd20SchoolHomeVideoTemplate/index.vue +1 -1
- package/src/components/templates/Asd20WayfindingAccessibilityTemplate/index.vue +1 -1
- package/src/components/templates/Asd20WayfindingAlternateTemplate/index.vue +1 -1
- package/src/components/templates/Asd20WayfindingImageTemplate/index.vue +1 -1
- package/src/components/templates/Asd20WayfindingTemplate/index.vue +1 -1
- package/src/components/utils/Multiselect.vue +1 -1
- package/src/helpers/mapPagesToListItems.js +4 -0
- package/src/mixins/pageTemplateMixin.js +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [2.3.4](https://github.com/academydistrict20/asd20-ui-next/compare/ui-next-v2.3.3...ui-next-v2.3.4) (2026-04-21)
|
|
4
|
+
|
|
5
|
+
## [2.3.3](https://github.com/academydistrict20/asd20-ui-next/compare/ui-next-v2.3.2...ui-next-v2.3.3) (2026-04-17)
|
|
6
|
+
|
|
3
7
|
## [2.3.2](https://github.com/academydistrict20/asd20-ui-next/compare/ui-next-v2.3.1...ui-next-v2.3.2) (2026-04-14)
|
|
4
8
|
|
|
5
9
|
## [2.3.1](https://github.com/academydistrict20/asd20-ui-next/compare/ui-next-v2.3.0...ui-next-v2.3.1) (2026-04-14)
|
package/package.json
CHANGED
|
@@ -294,6 +294,7 @@ export default {
|
|
|
294
294
|
selected: { type: Boolean, default: false },
|
|
295
295
|
reversed: { type: Boolean, default: false },
|
|
296
296
|
pinned: { type: Boolean, default: false },
|
|
297
|
+
isFeatured: { type: Boolean, default: false },
|
|
297
298
|
zoom: { type: Boolean, default: false },
|
|
298
299
|
separateImage: { type: Boolean, default: false },
|
|
299
300
|
seperateImage: { type: Boolean, default: false },
|
|
@@ -21,8 +21,8 @@
|
|
|
21
21
|
<div class="feed-items">
|
|
22
22
|
<asd20-card
|
|
23
23
|
v-for="(card, index) in cards.slice(0, numberToShow)"
|
|
24
|
-
:key="index"
|
|
25
24
|
v-bind="card"
|
|
25
|
+
:key="index"
|
|
26
26
|
zoom
|
|
27
27
|
expanded-description
|
|
28
28
|
></asd20-card>
|
|
@@ -49,8 +49,8 @@
|
|
|
49
49
|
<!-- <intersect @enter="$emit('stories-in-view')"> -->
|
|
50
50
|
<asd20-card
|
|
51
51
|
v-for="(card, index) in storyCards.slice(0, numberToShow)"
|
|
52
|
-
:key="index"
|
|
53
52
|
v-bind="card"
|
|
53
|
+
:key="index"
|
|
54
54
|
zoom
|
|
55
55
|
expanded-description
|
|
56
56
|
></asd20-card>
|
|
@@ -74,8 +74,8 @@
|
|
|
74
74
|
<asd20-list-category :label="category.name" />
|
|
75
75
|
<asd20-list-item
|
|
76
76
|
v-for="item in category.items"
|
|
77
|
-
:key="item.file.id + category.name"
|
|
78
77
|
v-bind="item"
|
|
78
|
+
:key="item.file.id + category.name"
|
|
79
79
|
/>
|
|
80
80
|
</div>
|
|
81
81
|
<div
|
|
@@ -532,20 +532,21 @@ export default {
|
|
|
532
532
|
},
|
|
533
533
|
]
|
|
534
534
|
},
|
|
535
|
+
fileWatchKey() {
|
|
536
|
+
return JSON.stringify(this.files || [])
|
|
537
|
+
},
|
|
535
538
|
},
|
|
536
539
|
|
|
537
540
|
watch: {
|
|
538
|
-
|
|
541
|
+
fileWatchKey: {
|
|
539
542
|
handler() {
|
|
540
543
|
this.currentPage = 1
|
|
541
544
|
this.resetVisibleCount()
|
|
542
545
|
this.$nextTick(() => {
|
|
543
|
-
|
|
544
|
-
this.
|
|
545
|
-
this.handleResize() // Ensure column resize happens after file changes
|
|
546
|
+
this.checkForOverflow()
|
|
547
|
+
this.handleResize()
|
|
546
548
|
})
|
|
547
549
|
},
|
|
548
|
-
deep: true,
|
|
549
550
|
immediate: true,
|
|
550
551
|
},
|
|
551
552
|
searchQuery() {
|
|
@@ -21,8 +21,8 @@
|
|
|
21
21
|
<asd20-list-category :label="category.name" />
|
|
22
22
|
<asd20-list-item
|
|
23
23
|
v-for="(item, index) in category.items"
|
|
24
|
-
:key="`${category.name}-${index}`"
|
|
25
24
|
v-bind="item"
|
|
25
|
+
:key="`${category.name}-${index}`"
|
|
26
26
|
/>
|
|
27
27
|
</div>
|
|
28
28
|
</asd20-list>
|
|
@@ -66,17 +66,17 @@ export default {
|
|
|
66
66
|
hasImages() {
|
|
67
67
|
return !!this.links.find(l => !!l.imageUrl)
|
|
68
68
|
},
|
|
69
|
+
linkWatchKey() {
|
|
70
|
+
return JSON.stringify(this.links || [])
|
|
71
|
+
},
|
|
69
72
|
},
|
|
70
73
|
watch: {
|
|
71
|
-
|
|
72
|
-
links: {
|
|
74
|
+
linkWatchKey: {
|
|
73
75
|
handler() {
|
|
74
76
|
this.$nextTick(() => {
|
|
75
|
-
// console.log('Change in Links detected:', this.links)
|
|
76
77
|
this.checkForOverflow()
|
|
77
78
|
})
|
|
78
79
|
},
|
|
79
|
-
deep: true,
|
|
80
80
|
immediate: true,
|
|
81
81
|
},
|
|
82
82
|
},
|
|
@@ -17,8 +17,8 @@
|
|
|
17
17
|
>
|
|
18
18
|
<asd20-notification
|
|
19
19
|
v-for="(notification, notificationIndex) of notificationsFromIndex"
|
|
20
|
-
:key="notification.key || notification.title"
|
|
21
20
|
v-bind="notificationBindings(notification, notificationIndex)"
|
|
21
|
+
:key="notification.key || notification.title"
|
|
22
22
|
/>
|
|
23
23
|
</transition-group>
|
|
24
24
|
</transition>
|
|
@@ -138,11 +138,14 @@ export default {
|
|
|
138
138
|
this.index - 1 < 0 ? this.notificationsFromIndex.length : this.index
|
|
139
139
|
} of ${this.notificationsFromIndex.length}`
|
|
140
140
|
},
|
|
141
|
+
notificationWatchKey() {
|
|
142
|
+
return JSON.stringify(this.notifications || [])
|
|
143
|
+
},
|
|
141
144
|
},
|
|
142
145
|
|
|
143
146
|
watch: {
|
|
144
|
-
|
|
145
|
-
this.initNotifications(
|
|
147
|
+
notificationWatchKey() {
|
|
148
|
+
this.initNotifications(this.notifications)
|
|
146
149
|
},
|
|
147
150
|
},
|
|
148
151
|
created() {
|
|
@@ -21,8 +21,8 @@
|
|
|
21
21
|
>
|
|
22
22
|
<asd20-messaging
|
|
23
23
|
v-for="(messaging, index) in formattedPrimaryMessages"
|
|
24
|
-
:key="index"
|
|
25
24
|
v-bind="messaging"
|
|
25
|
+
:key="index"
|
|
26
26
|
:fullscreen="fullscreen"
|
|
27
27
|
></asd20-messaging>
|
|
28
28
|
</section>
|
|
@@ -33,8 +33,8 @@
|
|
|
33
33
|
>
|
|
34
34
|
<asd20-messaging
|
|
35
35
|
v-for="(messaging, index) in formattedSecondaryMessages"
|
|
36
|
-
:key="index"
|
|
37
36
|
v-bind="messaging"
|
|
37
|
+
:key="index"
|
|
38
38
|
:fullscreen="fullscreen"
|
|
39
39
|
></asd20-messaging>
|
|
40
40
|
</section>
|
|
@@ -11,29 +11,29 @@
|
|
|
11
11
|
|
|
12
12
|
<asd20-link-list
|
|
13
13
|
v-if="relatedPages"
|
|
14
|
+
v-bind="relatedPagesProps"
|
|
14
15
|
class="relatedPages"
|
|
15
16
|
:links="relatedPages"
|
|
16
17
|
icon="website"
|
|
17
|
-
v-bind="relatedPagesProps"
|
|
18
18
|
:multi-column="full"
|
|
19
19
|
max-height="400px"
|
|
20
20
|
/>
|
|
21
21
|
|
|
22
22
|
<asd20-link-list
|
|
23
23
|
v-if="relatedLinks"
|
|
24
|
+
v-bind="relatedLinksProps"
|
|
24
25
|
class="relatedLinks"
|
|
25
26
|
:links="relatedLinks"
|
|
26
27
|
icon="link"
|
|
27
|
-
v-bind="relatedLinksProps"
|
|
28
28
|
:multi-column="full"
|
|
29
29
|
:max-height="relatedLinks.length > 20 ? '800px' : '400px'"
|
|
30
30
|
/>
|
|
31
31
|
|
|
32
32
|
<asd20-people-list
|
|
33
33
|
v-if="peopleFeedProps && people.length > 0 && !noPeople"
|
|
34
|
+
v-bind="peopleFeedProps"
|
|
34
35
|
class="relatedPeople"
|
|
35
36
|
:people="people"
|
|
36
|
-
v-bind="peopleFeedProps"
|
|
37
37
|
:multi-column="full"
|
|
38
38
|
max-height="400px"
|
|
39
39
|
/>
|
|
@@ -27,8 +27,8 @@
|
|
|
27
27
|
<!-- Page Header -->
|
|
28
28
|
<asd20-page-header
|
|
29
29
|
v-if="pageHeaderContent"
|
|
30
|
-
id="page-header"
|
|
31
30
|
v-bind="pageHeaderContent"
|
|
31
|
+
id="page-header"
|
|
32
32
|
:organization="organization"
|
|
33
33
|
:organization-options="organizationOptions"
|
|
34
34
|
:language-code="languageCode"
|
|
@@ -150,8 +150,8 @@
|
|
|
150
150
|
<div class="feed-items">
|
|
151
151
|
<asd20-card
|
|
152
152
|
v-for="(card, index) in cards.slice(counter - 1, counter2)"
|
|
153
|
-
:key="index"
|
|
154
153
|
v-bind="card"
|
|
154
|
+
:key="index"
|
|
155
155
|
zoom
|
|
156
156
|
></asd20-card>
|
|
157
157
|
</div>
|
|
@@ -27,8 +27,8 @@
|
|
|
27
27
|
<!-- Page Header -->
|
|
28
28
|
<asd20-page-header
|
|
29
29
|
v-if="pageHeaderContent"
|
|
30
|
-
id="page-header"
|
|
31
30
|
v-bind="pageHeaderContent"
|
|
31
|
+
id="page-header"
|
|
32
32
|
:organization="organization"
|
|
33
33
|
:organization-options="organizationOptions"
|
|
34
34
|
:language-code="languageCode"
|
|
@@ -150,8 +150,8 @@
|
|
|
150
150
|
<div class="feed-items">
|
|
151
151
|
<asd20-card
|
|
152
152
|
v-for="(card, index) in cards.slice(counter - 1, counter2)"
|
|
153
|
-
:key="index"
|
|
154
153
|
v-bind="card"
|
|
154
|
+
:key="index"
|
|
155
155
|
zoom
|
|
156
156
|
separate-image
|
|
157
157
|
></asd20-card>
|
|
@@ -26,8 +26,8 @@
|
|
|
26
26
|
<!-- Page Header -->
|
|
27
27
|
<asd20-page-header
|
|
28
28
|
v-if="pageHeaderContent"
|
|
29
|
-
id="page-header"
|
|
30
29
|
v-bind="pageHeaderContent"
|
|
30
|
+
id="page-header"
|
|
31
31
|
:organization="organization"
|
|
32
32
|
:organization-options="organizationOptions"
|
|
33
33
|
:language-code="languageCode"
|
|
@@ -162,8 +162,8 @@
|
|
|
162
162
|
<div class="feed-items">
|
|
163
163
|
<asd20-card
|
|
164
164
|
v-for="(card, index) in cards.slice(counter - 1, counter2 - 1)"
|
|
165
|
-
:key="index"
|
|
166
165
|
v-bind="card"
|
|
166
|
+
:key="index"
|
|
167
167
|
expanded-description
|
|
168
168
|
></asd20-card>
|
|
169
169
|
</div>
|
|
@@ -27,8 +27,8 @@
|
|
|
27
27
|
<!-- Page Header -->
|
|
28
28
|
<asd20-page-header
|
|
29
29
|
v-if="pageHeaderContent"
|
|
30
|
-
id="page-header"
|
|
31
30
|
v-bind="pageHeaderContent"
|
|
31
|
+
id="page-header"
|
|
32
32
|
:organization="organization"
|
|
33
33
|
:organization-options="organizationOptions"
|
|
34
34
|
:breadcrumb-links="breadcrumbLinks"
|
|
@@ -104,14 +104,12 @@
|
|
|
104
104
|
</asd20-widgets-section>
|
|
105
105
|
|
|
106
106
|
<!-- Inline-Notifications -->
|
|
107
|
-
<
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
></asd20-notification-group>
|
|
114
|
-
</template>
|
|
107
|
+
<asd20-notification-group
|
|
108
|
+
:notifications="activeNotificationsByType.inline"
|
|
109
|
+
group-type="inline"
|
|
110
|
+
@dismiss="$emit('dismiss-notification', $event)"
|
|
111
|
+
@toggle-all="$emit('toggle-all')"
|
|
112
|
+
></asd20-notification-group>
|
|
115
113
|
|
|
116
114
|
<slot name="before-footer" />
|
|
117
115
|
|
|
@@ -14,8 +14,8 @@
|
|
|
14
14
|
<!-- Page Header -->
|
|
15
15
|
<asd20-campus-header
|
|
16
16
|
v-show="pageHeaderContent"
|
|
17
|
-
id="campus-header"
|
|
18
17
|
v-bind="pageHeaderContent"
|
|
18
|
+
id="campus-header"
|
|
19
19
|
:organization="organization"
|
|
20
20
|
:organization-options="organizationOptions"
|
|
21
21
|
:language-code="languageCode"
|
|
@@ -93,14 +93,12 @@
|
|
|
93
93
|
grid
|
|
94
94
|
>
|
|
95
95
|
<!-- Inline-Notifications -->
|
|
96
|
-
<
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
></asd20-notification-group>
|
|
103
|
-
</template>
|
|
96
|
+
<asd20-notification-group
|
|
97
|
+
:notifications="activeNotificationsByType.inline"
|
|
98
|
+
group-type="inline"
|
|
99
|
+
@dismiss="$emit('dismiss-notification', $event)"
|
|
100
|
+
@toggle-all="$emit('toggle-all')"
|
|
101
|
+
></asd20-notification-group>
|
|
104
102
|
|
|
105
103
|
<slot></slot>
|
|
106
104
|
</asd20-page-content>
|
|
@@ -27,8 +27,8 @@
|
|
|
27
27
|
<!-- Page Header -->
|
|
28
28
|
<asd20-page-header
|
|
29
29
|
v-if="pageHeaderContent"
|
|
30
|
-
id="page-header"
|
|
31
30
|
v-bind="pageHeaderContent"
|
|
31
|
+
id="page-header"
|
|
32
32
|
:organization="organization"
|
|
33
33
|
:organization-options="organizationOptions"
|
|
34
34
|
:language-code="languageCode"
|
|
@@ -164,8 +164,8 @@
|
|
|
164
164
|
<div class="feed-items">
|
|
165
165
|
<asd20-card
|
|
166
166
|
v-for="(card, index) in cards.slice(counter - 1, counter2)"
|
|
167
|
-
:key="index"
|
|
168
167
|
v-bind="card"
|
|
168
|
+
:key="index"
|
|
169
169
|
zoom
|
|
170
170
|
></asd20-card>
|
|
171
171
|
</div>
|
|
@@ -27,8 +27,8 @@
|
|
|
27
27
|
<!-- Page Header -->
|
|
28
28
|
<asd20-image-header
|
|
29
29
|
v-if="pageHeaderContent"
|
|
30
|
-
id="image-header"
|
|
31
30
|
v-bind="pageHeaderContent"
|
|
31
|
+
id="image-header"
|
|
32
32
|
:organization="organization"
|
|
33
33
|
:organization-options="organizationOptions"
|
|
34
34
|
:language-code="languageCode"
|
|
@@ -27,8 +27,8 @@
|
|
|
27
27
|
<!-- Page Header -->
|
|
28
28
|
<asd20-image-header
|
|
29
29
|
v-if="pageHeaderContent"
|
|
30
|
-
id="image-header"
|
|
31
30
|
v-bind="pageHeaderContent"
|
|
31
|
+
id="image-header"
|
|
32
32
|
:organization="organization"
|
|
33
33
|
:organization-options="organizationOptions"
|
|
34
34
|
:language-code="languageCode"
|
|
@@ -27,8 +27,8 @@
|
|
|
27
27
|
<!-- Page Header -->
|
|
28
28
|
<asd20-page-header
|
|
29
29
|
v-if="pageHeaderContent"
|
|
30
|
-
id="page-header"
|
|
31
30
|
v-bind="pageHeaderContent"
|
|
31
|
+
id="page-header"
|
|
32
32
|
:organization="organization"
|
|
33
33
|
:organization-options="organizationOptions"
|
|
34
34
|
omit-detail-link
|
|
@@ -75,9 +75,9 @@
|
|
|
75
75
|
|
|
76
76
|
<!-- File List -->
|
|
77
77
|
<asd20-file-list
|
|
78
|
+
v-bind="filesFeedProps"
|
|
78
79
|
class="fileList"
|
|
79
80
|
:files="files"
|
|
80
|
-
v-bind="filesFeedProps"
|
|
81
81
|
:multi-column="true"
|
|
82
82
|
searchable
|
|
83
83
|
paginate
|
|
@@ -26,8 +26,8 @@
|
|
|
26
26
|
<!-- Page Header -->
|
|
27
27
|
<asd20-page-header
|
|
28
28
|
v-if="pageHeaderContentWithGroup"
|
|
29
|
-
id="page-header"
|
|
30
29
|
v-bind="pageHeaderContentWithGroup"
|
|
30
|
+
id="page-header"
|
|
31
31
|
:organization="organization"
|
|
32
32
|
:organization-options="organizationOptions"
|
|
33
33
|
:language-code="languageCode"
|
|
@@ -27,8 +27,8 @@
|
|
|
27
27
|
<!-- Page Header -->
|
|
28
28
|
<asd20-page-header
|
|
29
29
|
v-if="pageHeaderContent"
|
|
30
|
-
id="page-header"
|
|
31
30
|
v-bind="pageHeaderContent"
|
|
31
|
+
id="page-header"
|
|
32
32
|
:organization="organization"
|
|
33
33
|
:organization-options="organizationOptions"
|
|
34
34
|
:breadcrumb-links="breadcrumbLinks"
|
|
@@ -27,8 +27,8 @@
|
|
|
27
27
|
<!-- Page Header -->
|
|
28
28
|
<asd20-page-header
|
|
29
29
|
v-show="pageHeaderContent"
|
|
30
|
-
id="page-header"
|
|
31
30
|
v-bind="pageHeaderContent"
|
|
31
|
+
id="page-header"
|
|
32
32
|
:organization="organization"
|
|
33
33
|
:organization-options="organizationOptions"
|
|
34
34
|
:language-code="languageCode"
|
|
@@ -76,9 +76,9 @@
|
|
|
76
76
|
|
|
77
77
|
<!-- People List -->
|
|
78
78
|
<asd20-people-list
|
|
79
|
+
v-bind="peopleFeedProps"
|
|
79
80
|
:people="people"
|
|
80
81
|
icon="group"
|
|
81
|
-
v-bind="peopleFeedProps"
|
|
82
82
|
@people-in-view="$emit('people-in-view')"
|
|
83
83
|
/>
|
|
84
84
|
|
|
@@ -27,8 +27,8 @@
|
|
|
27
27
|
<!-- Page Header -->
|
|
28
28
|
<asd20-page-header
|
|
29
29
|
v-show="pageHeaderContent"
|
|
30
|
-
id="page-header"
|
|
31
30
|
v-bind="pageHeaderContent"
|
|
31
|
+
id="page-header"
|
|
32
32
|
:organization="organization"
|
|
33
33
|
:organization-options="organizationOptions"
|
|
34
34
|
:language-code="languageCode"
|
|
@@ -27,8 +27,8 @@
|
|
|
27
27
|
<!-- Page Header -->
|
|
28
28
|
<asd20-page-header
|
|
29
29
|
v-show="pageHeaderContent"
|
|
30
|
-
id="page-header"
|
|
31
30
|
v-bind="pageHeaderContent"
|
|
31
|
+
id="page-header"
|
|
32
32
|
:organization="organization"
|
|
33
33
|
:organization-options="organizationOptions"
|
|
34
34
|
:language-code="languageCode"
|
|
@@ -27,8 +27,8 @@
|
|
|
27
27
|
<!-- Page Header -->
|
|
28
28
|
<asd20-image-header
|
|
29
29
|
v-show="pageHeaderContent"
|
|
30
|
-
id="image-header"
|
|
31
30
|
v-bind="pageHeaderContent"
|
|
31
|
+
id="image-header"
|
|
32
32
|
:organization="organization"
|
|
33
33
|
:organization-options="organizationOptions"
|
|
34
34
|
:language-code="languageCode"
|
|
@@ -27,8 +27,8 @@
|
|
|
27
27
|
<!-- Page Header -->
|
|
28
28
|
<asd20-page-header
|
|
29
29
|
v-show="pageHeaderContent"
|
|
30
|
-
id="page-header"
|
|
31
30
|
v-bind="pageHeaderContent"
|
|
31
|
+
id="page-header"
|
|
32
32
|
:organization="organization"
|
|
33
33
|
:organization-options="organizationOptions"
|
|
34
34
|
:language-code="languageCode"
|
|
@@ -34,13 +34,13 @@
|
|
|
34
34
|
|
|
35
35
|
<input
|
|
36
36
|
v-show="showSearchInput"
|
|
37
|
+
v-bind="mergedInputAttrs"
|
|
37
38
|
:id="id"
|
|
38
39
|
ref="searchInput"
|
|
39
40
|
:value="search"
|
|
40
41
|
:disabled="disabled"
|
|
41
42
|
:placeholder="inputPlaceholder"
|
|
42
43
|
class="multiselect__input"
|
|
43
|
-
v-bind="mergedInputAttrs"
|
|
44
44
|
@click="open"
|
|
45
45
|
@focus="open"
|
|
46
46
|
@input="handleInput"
|