@byu-oit/vue-decision-processing-components 9.7.12 → 9.7.13
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/DetailsHeader.vue +4 -4
- package/QuickLinks.vue +6 -1
- package/package.json +1 -1
package/DetailsHeader.vue
CHANGED
|
@@ -34,8 +34,8 @@
|
|
|
34
34
|
<slot name="actionsCompact"></slot>
|
|
35
35
|
</div>
|
|
36
36
|
<div class="bug" v-if="!hideBug">
|
|
37
|
-
<button class="btn btn-sm btn-outline-warning" title="Submit an incident" @click="openSupportModal">
|
|
38
|
-
<font-awesome-icon :icon="bug" />
|
|
37
|
+
<button type="button" class="btn btn-sm btn-outline-warning" aria-label="Submit an incident" title="Submit an incident" @click="openSupportModal">
|
|
38
|
+
<font-awesome-icon :icon="bug" aria-hidden="true" />
|
|
39
39
|
</button>
|
|
40
40
|
</div>
|
|
41
41
|
</div>
|
|
@@ -60,8 +60,8 @@
|
|
|
60
60
|
<slot name="actions"></slot>
|
|
61
61
|
</div>
|
|
62
62
|
<div class="bug" v-if="!hideBug">
|
|
63
|
-
<button class="btn btn-sm btn-outline-warning" @click="openSupportModal">
|
|
64
|
-
<font-awesome-icon :icon="bug" />
|
|
63
|
+
<button type="button" class="btn btn-sm btn-outline-warning" aria-label="Submit an incident" @click="openSupportModal">
|
|
64
|
+
<font-awesome-icon :icon="bug" aria-hidden="true" />
|
|
65
65
|
</button>
|
|
66
66
|
</div>
|
|
67
67
|
</div>
|
package/QuickLinks.vue
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
<svg class="corner-cutout" height="25px" width="25px" viewBox="0 0 25 25">
|
|
4
4
|
<path d="M0,0 L25,0 0,25 Z" fill="white" />
|
|
5
5
|
</svg>
|
|
6
|
-
<
|
|
6
|
+
<h2 class="quick-links-heading">Quick Links</h2>
|
|
7
7
|
<slot></slot>
|
|
8
8
|
</div>
|
|
9
9
|
</template>
|
|
@@ -22,4 +22,9 @@
|
|
|
22
22
|
left: -1px;
|
|
23
23
|
top: -1px;
|
|
24
24
|
}
|
|
25
|
+
.quick-links-heading{
|
|
26
|
+
font-size: 1.75rem;
|
|
27
|
+
font-weight: 500;
|
|
28
|
+
text-transform: uppercase;
|
|
29
|
+
}
|
|
25
30
|
</style>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@byu-oit/vue-decision-processing-components",
|
|
3
|
-
"version": "9.7.
|
|
3
|
+
"version": "9.7.13",
|
|
4
4
|
"description": "Vue components shared between decision processing systems for the CES schools.",
|
|
5
5
|
"dependencies": {
|
|
6
6
|
"@fortawesome/fontawesome-free": "^5.15.4",
|