comand-component-library 3.1.99 → 3.2.0
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
@@ -3,7 +3,7 @@
|
|
3
3
|
<div v-if="showFancyBox"
|
4
4
|
:class="['cmd-fancybox', {'show-overlay': showOverlay}]"
|
5
5
|
role="dialog"
|
6
|
-
:aria-labelledby="
|
6
|
+
:aria-labelledby="ariaLabelText">
|
7
7
|
<div class="popup" :class="{'image' : fancyBoxImageUrl || fancyBoxGallery }">
|
8
8
|
<!-- begin print buttons -->
|
9
9
|
<div class="button-wrapper no-flex"
|
@@ -127,6 +127,15 @@
|
|
127
127
|
}
|
128
128
|
},
|
129
129
|
props: {
|
130
|
+
/**
|
131
|
+
* sets aria-label-text on component
|
132
|
+
*
|
133
|
+
* @requiredForAccessibility: true
|
134
|
+
*/
|
135
|
+
ariaLabelText: {
|
136
|
+
type: String,
|
137
|
+
required: true
|
138
|
+
},
|
130
139
|
/**
|
131
140
|
* set if content should be loaded by url
|
132
141
|
*/
|