@constructor-io/constructorio-ui-quizzes 1.10.3 → 1.10.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/dist/constructorio-ui-quizzes-bundled.js +13 -14
- package/lib/cjs/utils.js +1 -1
- package/lib/cjs/version.js +1 -1
- package/lib/mjs/utils.js +1 -1
- package/lib/mjs/version.js +1 -1
- package/lib/types/version.d.ts +1 -1
- package/package.json +1 -1
package/lib/cjs/utils.js
CHANGED
|
@@ -10,7 +10,7 @@ const renderImages = (images, cssClasses) => {
|
|
|
10
10
|
if (primaryUrl) {
|
|
11
11
|
const windowWidth = window.innerWidth;
|
|
12
12
|
let src = primaryUrl;
|
|
13
|
-
let alt = primaryAlt || '
|
|
13
|
+
let alt = primaryAlt || '';
|
|
14
14
|
if (windowWidth > 768 && secondaryUrl) {
|
|
15
15
|
src = secondaryUrl;
|
|
16
16
|
if (secondaryAlt) {
|
package/lib/cjs/version.js
CHANGED
package/lib/mjs/utils.js
CHANGED
|
@@ -6,7 +6,7 @@ export const renderImages = (images, cssClasses) => {
|
|
|
6
6
|
if (primaryUrl) {
|
|
7
7
|
const windowWidth = window.innerWidth;
|
|
8
8
|
let src = primaryUrl;
|
|
9
|
-
let alt = primaryAlt || '
|
|
9
|
+
let alt = primaryAlt || '';
|
|
10
10
|
if (windowWidth > 768 && secondaryUrl) {
|
|
11
11
|
src = secondaryUrl;
|
|
12
12
|
if (secondaryAlt) {
|
package/lib/mjs/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export default '1.10.
|
|
1
|
+
export default '1.10.4';
|
package/lib/types/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: "1.10.
|
|
1
|
+
declare const _default: "1.10.4";
|
|
2
2
|
export default _default;
|