eat-js-sdk 1.0.34 → 1.0.35
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.
|
@@ -4093,13 +4093,16 @@
|
|
|
4093
4093
|
function create_if_block_14(ctx) {
|
|
4094
4094
|
let div;
|
|
4095
4095
|
let img;
|
|
4096
|
+
let img_id_value;
|
|
4096
4097
|
let img_alt_value;
|
|
4097
4098
|
let img_src_value;
|
|
4098
4099
|
return {
|
|
4099
4100
|
c() {
|
|
4100
4101
|
div = element("div");
|
|
4101
4102
|
img = element("img");
|
|
4102
|
-
attr(img, "
|
|
4103
|
+
attr(img, "id", img_id_value = "img-" + /*index*/
|
|
4104
|
+
ctx[32]);
|
|
4105
|
+
attr(img, "alt", img_alt_value = "Graphic, " + /*option*/
|
|
4103
4106
|
ctx[30].media.alternative_text);
|
|
4104
4107
|
attr(img, "class", "min-h-[154px] max-h-[184px] w-auto max-w-full object-contain pointer-events-none");
|
|
4105
4108
|
if (!src_url_equal(img.src, img_src_value = /*option*/
|
|
@@ -4235,6 +4238,7 @@
|
|
|
4235
4238
|
let t9;
|
|
4236
4239
|
let button_role_value;
|
|
4237
4240
|
let button_tabindex_value;
|
|
4241
|
+
let button_aria_describedby_value;
|
|
4238
4242
|
let button_aria_checked_value;
|
|
4239
4243
|
let button_aria_disabled_value;
|
|
4240
4244
|
let button_aria_label_value;
|
|
@@ -4328,6 +4332,8 @@
|
|
|
4328
4332
|
ctx[5] > 1 ? "checkbox" : null);
|
|
4329
4333
|
attr(button, "tabindex", button_tabindex_value = /*correctAnswersLength*/
|
|
4330
4334
|
ctx[5] > 1 ? 0 : null);
|
|
4335
|
+
attr(button, "aria-describedby", button_aria_describedby_value = "img-" + /*index*/
|
|
4336
|
+
ctx[32]);
|
|
4331
4337
|
attr(button, "aria-checked", button_aria_checked_value = /*correctAnswersLength*/
|
|
4332
4338
|
ctx[5] > 1 ? (
|
|
4333
4339
|
/*selectedOptions*/
|