lido-player 0.0.2-alpha-19 → 0.0.2-alpha-21
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/cjs/lido-avatar_17.cjs.entry.js +7 -8
- package/dist/collection/components/home/lido-home.js +7 -8
- package/dist/components/lido-home.js +1 -1
- package/dist/components/lido-root.js +1 -1
- package/dist/components/{p-342bd0f2.js → p-4272a4b0.js} +7 -8
- package/dist/esm/lido-avatar_17.entry.js +7 -8
- package/dist/lido-player/lido-player.esm.js +1 -1
- package/dist/lido-player/{p-bc54975d.entry.js → p-397463d6.entry.js} +1 -1
- package/package.json +1 -1
|
@@ -7161,7 +7161,7 @@ const LidoHome = class {
|
|
|
7161
7161
|
else {
|
|
7162
7162
|
rightbtn.style.visibility = 'visible';
|
|
7163
7163
|
}
|
|
7164
|
-
},
|
|
7164
|
+
}, 100);
|
|
7165
7165
|
};
|
|
7166
7166
|
this.popUpClick = (comment) => {
|
|
7167
7167
|
const alertElement = this.el.querySelector('.lido-alert-popup');
|
|
@@ -7214,12 +7214,11 @@ const LidoHome = class {
|
|
|
7214
7214
|
this.showDotsandbtn = true;
|
|
7215
7215
|
}, 10);
|
|
7216
7216
|
this.updateArrowVisibility();
|
|
7217
|
-
if (this.height == '' || this.height === '0' || this.height === '0px' || this.height === '0%') {
|
|
7218
|
-
|
|
7219
|
-
}
|
|
7220
|
-
|
|
7221
|
-
|
|
7222
|
-
}
|
|
7217
|
+
// if (this.height == '' || this.height === '0' || this.height === '0px' || this.height === '0%') {
|
|
7218
|
+
this.scaleNavbarContainer();
|
|
7219
|
+
// } else {
|
|
7220
|
+
// this.updateBackgroundImage();
|
|
7221
|
+
// }
|
|
7223
7222
|
window.addEventListener('resize', () => {
|
|
7224
7223
|
this.scaleNavbarContainer(); // re-scale navbar on resize
|
|
7225
7224
|
});
|
|
@@ -7418,7 +7417,7 @@ const LidoHome = class {
|
|
|
7418
7417
|
// If no XML data is provided, prompt the user to provide it
|
|
7419
7418
|
return index.h("div", null, "Please provide XML data.");
|
|
7420
7419
|
}
|
|
7421
|
-
return (index.h(index.Host, { class: "lido-home", index: this.currentContainerIndex, totalIndex: this.containers.length }, index.h("div", { key: this.currentContainerIndex }, (_b = (_a = this.containers)[this.currentContainerIndex]) === null || _b === void 0 ? void 0 : _b.call(_a)), this.
|
|
7420
|
+
return (index.h(index.Host, { class: "lido-home", index: this.currentContainerIndex, totalIndex: this.containers.length }, index.h("div", { key: this.currentContainerIndex }, (_b = (_a = this.containers)[this.currentContainerIndex]) === null || _b === void 0 ? void 0 : _b.call(_a)), this.renderDots(), this.exitFlag && (index.h("div", { class: "lido-alert-parent" }, index.h("div", { class: "lido-alert-popup" }, index.h("lido-cell", { class: "lido-alert-content", visible: "true", layout: "col", width: "340px", height: "210px", "bg-color": "#fff", "border-radius": "16px", onEntry: "this.box-shadow= '0 4px 8px 0 rgba(0, 0, 0, 0.25)';" }, index.h("lido-text", { visible: "true", string: "Do you want to exit?", width: "294px", height: "38px", class: "popup-exit-text", "font-size": "22px", onEntry: "this.margin-bottom =' -36px';" }), index.h("lido-cell", { visible: "true", layout: "row", width: "294px", class: "btn-cell" }, index.h("lido-text", { visible: "true", string: "EXIT", width: "92px", height: "53px", "font-size": "16px", margin: "0px 50px 0px 0px", class: "popup-button", onClick: () => this.popUpClick('exit'), borderRadius: "16px", onEntry: 'this.color="#F34D08"; this.font-weight="700"; this.box-shadow="0 2px 0 #F34D08";', fontFamily: "Baloo Bhai 2", "font-weight": "700", bgColor: "white", "border-radius": "16px" }), index.h("lido-text", { visible: "true", string: "KEEP PLAYING", width: "155px", height: "53px", "font-size": "16px", class: "popup-button", onClick: () => this.popUpClick('cancel'), borderRadius: "16px", onEntry: 'this.color=white; this.font-weight="700"; this.box-shadow="0 2px 0 #F34D08";', "font-family": "Baloo Bhai 2", "font-weight": "700", bgColor: "#F34D08", "border-radius": "16px" }))))))));
|
|
7422
7421
|
}
|
|
7423
7422
|
get el() { return index.getElement(this); }
|
|
7424
7423
|
static get watchers() { return {
|
|
@@ -78,7 +78,7 @@ export class LidoHome {
|
|
|
78
78
|
else {
|
|
79
79
|
rightbtn.style.visibility = 'visible';
|
|
80
80
|
}
|
|
81
|
-
},
|
|
81
|
+
}, 100);
|
|
82
82
|
};
|
|
83
83
|
this.popUpClick = (comment) => {
|
|
84
84
|
const alertElement = this.el.querySelector('.lido-alert-popup');
|
|
@@ -131,12 +131,11 @@ export class LidoHome {
|
|
|
131
131
|
this.showDotsandbtn = true;
|
|
132
132
|
}, 10);
|
|
133
133
|
this.updateArrowVisibility();
|
|
134
|
-
if (this.height == '' || this.height === '0' || this.height === '0px' || this.height === '0%') {
|
|
135
|
-
|
|
136
|
-
}
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
}
|
|
134
|
+
// if (this.height == '' || this.height === '0' || this.height === '0px' || this.height === '0%') {
|
|
135
|
+
this.scaleNavbarContainer();
|
|
136
|
+
// } else {
|
|
137
|
+
// this.updateBackgroundImage();
|
|
138
|
+
// }
|
|
140
139
|
window.addEventListener('resize', () => {
|
|
141
140
|
this.scaleNavbarContainer(); // re-scale navbar on resize
|
|
142
141
|
});
|
|
@@ -335,7 +334,7 @@ export class LidoHome {
|
|
|
335
334
|
// If no XML data is provided, prompt the user to provide it
|
|
336
335
|
return h("div", null, "Please provide XML data.");
|
|
337
336
|
}
|
|
338
|
-
return (h(Host, { class: "lido-home", index: this.currentContainerIndex, totalIndex: this.containers.length }, h("div", { key: this.currentContainerIndex }, (_b = (_a = this.containers)[this.currentContainerIndex]) === null || _b === void 0 ? void 0 : _b.call(_a)), this.
|
|
337
|
+
return (h(Host, { class: "lido-home", index: this.currentContainerIndex, totalIndex: this.containers.length }, h("div", { key: this.currentContainerIndex }, (_b = (_a = this.containers)[this.currentContainerIndex]) === null || _b === void 0 ? void 0 : _b.call(_a)), this.renderDots(), this.exitFlag && (h("div", { class: "lido-alert-parent" }, h("div", { class: "lido-alert-popup" }, h("lido-cell", { class: "lido-alert-content", visible: "true", layout: "col", width: "340px", height: "210px", "bg-color": "#fff", "border-radius": "16px", onEntry: "this.box-shadow= '0 4px 8px 0 rgba(0, 0, 0, 0.25)';" }, h("lido-text", { visible: "true", string: "Do you want to exit?", width: "294px", height: "38px", class: "popup-exit-text", "font-size": "22px", onEntry: "this.margin-bottom =' -36px';" }), h("lido-cell", { visible: "true", layout: "row", width: "294px", class: "btn-cell" }, h("lido-text", { visible: "true", string: "EXIT", width: "92px", height: "53px", "font-size": "16px", margin: "0px 50px 0px 0px", class: "popup-button", onClick: () => this.popUpClick('exit'), borderRadius: "16px", onEntry: 'this.color="#F34D08"; this.font-weight="700"; this.box-shadow="0 2px 0 #F34D08";', fontFamily: "Baloo Bhai 2", "font-weight": "700", bgColor: "white", "border-radius": "16px" }), h("lido-text", { visible: "true", string: "KEEP PLAYING", width: "155px", height: "53px", "font-size": "16px", class: "popup-button", onClick: () => this.popUpClick('cancel'), borderRadius: "16px", onEntry: 'this.color=white; this.font-weight="700"; this.box-shadow="0 2px 0 #F34D08";', "font-family": "Baloo Bhai 2", "font-weight": "700", bgColor: "#F34D08", "border-radius": "16px" }))))))));
|
|
339
338
|
}
|
|
340
339
|
static get is() { return "lido-home"; }
|
|
341
340
|
static get originalStyleUrls() {
|
|
@@ -5,7 +5,7 @@ import { d as defineCustomElement$f } from './p-bcd6fcc5.js';
|
|
|
5
5
|
import { d as defineCustomElement$e } from './p-0c349e4c.js';
|
|
6
6
|
import { d as defineCustomElement$d } from './p-7f5a97ff.js';
|
|
7
7
|
import { d as defineCustomElement$c } from './p-f47d09ca.js';
|
|
8
|
-
import { d as defineCustomElement$b } from './p-
|
|
8
|
+
import { d as defineCustomElement$b } from './p-4272a4b0.js';
|
|
9
9
|
import { d as defineCustomElement$a } from './p-8173be9b.js';
|
|
10
10
|
import { d as defineCustomElement$9 } from './p-cb3950d0.js';
|
|
11
11
|
import { d as defineCustomElement$8 } from './p-cbc2a355.js';
|
|
@@ -94,7 +94,7 @@ const LidoHome = /*@__PURE__*/ proxyCustomElement(class LidoHome extends H {
|
|
|
94
94
|
else {
|
|
95
95
|
rightbtn.style.visibility = 'visible';
|
|
96
96
|
}
|
|
97
|
-
},
|
|
97
|
+
}, 100);
|
|
98
98
|
};
|
|
99
99
|
this.popUpClick = (comment) => {
|
|
100
100
|
const alertElement = this.el.querySelector('.lido-alert-popup');
|
|
@@ -147,12 +147,11 @@ const LidoHome = /*@__PURE__*/ proxyCustomElement(class LidoHome extends H {
|
|
|
147
147
|
this.showDotsandbtn = true;
|
|
148
148
|
}, 10);
|
|
149
149
|
this.updateArrowVisibility();
|
|
150
|
-
if (this.height == '' || this.height === '0' || this.height === '0px' || this.height === '0%') {
|
|
151
|
-
|
|
152
|
-
}
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
}
|
|
150
|
+
// if (this.height == '' || this.height === '0' || this.height === '0px' || this.height === '0%') {
|
|
151
|
+
this.scaleNavbarContainer();
|
|
152
|
+
// } else {
|
|
153
|
+
// this.updateBackgroundImage();
|
|
154
|
+
// }
|
|
156
155
|
window.addEventListener('resize', () => {
|
|
157
156
|
this.scaleNavbarContainer(); // re-scale navbar on resize
|
|
158
157
|
});
|
|
@@ -351,7 +350,7 @@ const LidoHome = /*@__PURE__*/ proxyCustomElement(class LidoHome extends H {
|
|
|
351
350
|
// If no XML data is provided, prompt the user to provide it
|
|
352
351
|
return h("div", null, "Please provide XML data.");
|
|
353
352
|
}
|
|
354
|
-
return (h(Host, { class: "lido-home", index: this.currentContainerIndex, totalIndex: this.containers.length }, h("div", { key: this.currentContainerIndex }, (_b = (_a = this.containers)[this.currentContainerIndex]) === null || _b === void 0 ? void 0 : _b.call(_a)), this.
|
|
353
|
+
return (h(Host, { class: "lido-home", index: this.currentContainerIndex, totalIndex: this.containers.length }, h("div", { key: this.currentContainerIndex }, (_b = (_a = this.containers)[this.currentContainerIndex]) === null || _b === void 0 ? void 0 : _b.call(_a)), this.renderDots(), this.exitFlag && (h("div", { class: "lido-alert-parent" }, h("div", { class: "lido-alert-popup" }, h("lido-cell", { class: "lido-alert-content", visible: "true", layout: "col", width: "340px", height: "210px", "bg-color": "#fff", "border-radius": "16px", onEntry: "this.box-shadow= '0 4px 8px 0 rgba(0, 0, 0, 0.25)';" }, h("lido-text", { visible: "true", string: "Do you want to exit?", width: "294px", height: "38px", class: "popup-exit-text", "font-size": "22px", onEntry: "this.margin-bottom =' -36px';" }), h("lido-cell", { visible: "true", layout: "row", width: "294px", class: "btn-cell" }, h("lido-text", { visible: "true", string: "EXIT", width: "92px", height: "53px", "font-size": "16px", margin: "0px 50px 0px 0px", class: "popup-button", onClick: () => this.popUpClick('exit'), borderRadius: "16px", onEntry: 'this.color="#F34D08"; this.font-weight="700"; this.box-shadow="0 2px 0 #F34D08";', fontFamily: "Baloo Bhai 2", "font-weight": "700", bgColor: "white", "border-radius": "16px" }), h("lido-text", { visible: "true", string: "KEEP PLAYING", width: "155px", height: "53px", "font-size": "16px", class: "popup-button", onClick: () => this.popUpClick('cancel'), borderRadius: "16px", onEntry: 'this.color=white; this.font-weight="700"; this.box-shadow="0 2px 0 #F34D08";', "font-family": "Baloo Bhai 2", "font-weight": "700", bgColor: "#F34D08", "border-radius": "16px" }))))))));
|
|
355
354
|
}
|
|
356
355
|
get el() { return this; }
|
|
357
356
|
static get watchers() { return {
|
|
@@ -7157,7 +7157,7 @@ const LidoHome = class {
|
|
|
7157
7157
|
else {
|
|
7158
7158
|
rightbtn.style.visibility = 'visible';
|
|
7159
7159
|
}
|
|
7160
|
-
},
|
|
7160
|
+
}, 100);
|
|
7161
7161
|
};
|
|
7162
7162
|
this.popUpClick = (comment) => {
|
|
7163
7163
|
const alertElement = this.el.querySelector('.lido-alert-popup');
|
|
@@ -7210,12 +7210,11 @@ const LidoHome = class {
|
|
|
7210
7210
|
this.showDotsandbtn = true;
|
|
7211
7211
|
}, 10);
|
|
7212
7212
|
this.updateArrowVisibility();
|
|
7213
|
-
if (this.height == '' || this.height === '0' || this.height === '0px' || this.height === '0%') {
|
|
7214
|
-
|
|
7215
|
-
}
|
|
7216
|
-
|
|
7217
|
-
|
|
7218
|
-
}
|
|
7213
|
+
// if (this.height == '' || this.height === '0' || this.height === '0px' || this.height === '0%') {
|
|
7214
|
+
this.scaleNavbarContainer();
|
|
7215
|
+
// } else {
|
|
7216
|
+
// this.updateBackgroundImage();
|
|
7217
|
+
// }
|
|
7219
7218
|
window.addEventListener('resize', () => {
|
|
7220
7219
|
this.scaleNavbarContainer(); // re-scale navbar on resize
|
|
7221
7220
|
});
|
|
@@ -7414,7 +7413,7 @@ const LidoHome = class {
|
|
|
7414
7413
|
// If no XML data is provided, prompt the user to provide it
|
|
7415
7414
|
return h("div", null, "Please provide XML data.");
|
|
7416
7415
|
}
|
|
7417
|
-
return (h(Host, { class: "lido-home", index: this.currentContainerIndex, totalIndex: this.containers.length }, h("div", { key: this.currentContainerIndex }, (_b = (_a = this.containers)[this.currentContainerIndex]) === null || _b === void 0 ? void 0 : _b.call(_a)), this.
|
|
7416
|
+
return (h(Host, { class: "lido-home", index: this.currentContainerIndex, totalIndex: this.containers.length }, h("div", { key: this.currentContainerIndex }, (_b = (_a = this.containers)[this.currentContainerIndex]) === null || _b === void 0 ? void 0 : _b.call(_a)), this.renderDots(), this.exitFlag && (h("div", { class: "lido-alert-parent" }, h("div", { class: "lido-alert-popup" }, h("lido-cell", { class: "lido-alert-content", visible: "true", layout: "col", width: "340px", height: "210px", "bg-color": "#fff", "border-radius": "16px", onEntry: "this.box-shadow= '0 4px 8px 0 rgba(0, 0, 0, 0.25)';" }, h("lido-text", { visible: "true", string: "Do you want to exit?", width: "294px", height: "38px", class: "popup-exit-text", "font-size": "22px", onEntry: "this.margin-bottom =' -36px';" }), h("lido-cell", { visible: "true", layout: "row", width: "294px", class: "btn-cell" }, h("lido-text", { visible: "true", string: "EXIT", width: "92px", height: "53px", "font-size": "16px", margin: "0px 50px 0px 0px", class: "popup-button", onClick: () => this.popUpClick('exit'), borderRadius: "16px", onEntry: 'this.color="#F34D08"; this.font-weight="700"; this.box-shadow="0 2px 0 #F34D08";', fontFamily: "Baloo Bhai 2", "font-weight": "700", bgColor: "white", "border-radius": "16px" }), h("lido-text", { visible: "true", string: "KEEP PLAYING", width: "155px", height: "53px", "font-size": "16px", class: "popup-button", onClick: () => this.popUpClick('cancel'), borderRadius: "16px", onEntry: 'this.color=white; this.font-weight="700"; this.box-shadow="0 2px 0 #F34D08";', "font-family": "Baloo Bhai 2", "font-weight": "700", bgColor: "#F34D08", "border-radius": "16px" }))))))));
|
|
7418
7417
|
}
|
|
7419
7418
|
get el() { return getElement(this); }
|
|
7420
7419
|
static get watchers() { return {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{p as e,b as o}from"./p-ddf627b0.js";export{s as setNonce}from"./p-ddf627b0.js";import{g as i}from"./p-e1255160.js";(()=>{const o=import.meta.url,i={};return""!==o&&(i.resourcesUrl=new URL(".",o).href),e(i)})().then((async e=>(await i(),o([["p-
|
|
1
|
+
import{p as e,b as o}from"./p-ddf627b0.js";export{s as setNonce}from"./p-ddf627b0.js";import{g as i}from"./p-e1255160.js";(()=>{const o=import.meta.url,i={};return""!==o&&(i.resourcesUrl=new URL(".",o).href),e(i)})().then((async e=>(await i(),o([["p-397463d6",[[0,"lido-root",{xmlPath:[1,"xml-path"],initialIndex:[2,"initial-index"],margin:[1],canplay:[4],baseUrl:[1,"base-url"],xmlData:[32]}],[0,"lido-home",{xmlData:[1,"xml-data"],initialIndex:[2,"initial-index"],canplay:[4],baseUrl:[1,"base-url"],height:[1],currentContainerIndex:[32],exitFlag:[32],containers:[32],showDotsandbtn:[32]},null,{xmlData:["onXmlDataChange"]}],[0,"lido-avatar",{id:[1],value:[1],height:[1],width:[1],ariaLabel:[1,"aria-label"],ariaHidden:[1,"aria-hidden"],x:[1],y:[1],z:[1],bgColor:[1,"bg-color"],type:[1],tabIndex:[2,"tab-index"],visible:[4],audio:[1],src:[1],onTouch:[1,"on-touch"],onInCorrect:[1,"on-in-correct"],onCorrect:[1,"on-correct"],onEntry:[1,"on-entry"],delayVisible:[1,"delay-visible"]}],[4,"lido-cell",{showSpeakIcon:[4,"show-speak-icon"],scrollbarWidth:[1,"scrollbar-width"],id:[1],value:[1],height:[1],width:[1],ariaLabel:[1,"aria-label"],ariaHidden:[1,"aria-hidden"],x:[1],y:[1],z:[1],gap:[1],bgColor:[1,"bg-color"],type:[1],tabIndex:[2,"tab-index"],visible:[1],audio:[1],onTouch:[1,"on-touch"],onInCorrect:[1,"on-in-correct"],onCorrect:[1,"on-correct"],onEntry:[1,"on-entry"],childElementsLength:[2,"child-elements-length"],minLength:[2,"min-length"],maxLength:[2,"max-length"],layout:[1],minDrops:[2,"min-drops"],maxDrops:[2,"max-drops"],margin:[1],padding:[1],alignItems:[1,"align-items"],borderRadius:[1,"border-radius"],flexDirection:[1,"flex-direction"],delayVisible:[1,"delay-visible"],style:[32]}],[4,"lido-col",{showSpeakIcon:[4,"show-speak-icon"],id:[1],value:[1],height:[1],width:[1],ariaLabel:[1,"aria-label"],ariaHidden:[1,"aria-hidden"],x:[1],y:[1],z:[1],bgColor:[1,"bg-color"],type:[1],tabIndex:[2,"tab-index"],visible:[4],audio:[1],onTouch:[1,"on-touch"],onInCorrect:[1,"on-in-correct"],onCorrect:[1,"on-correct"],onEntry:[1,"on-entry"],childElementsLength:[2,"child-elements-length"],minLength:[2,"min-length"],maxLength:[2,"max-length"],direction:[1],borderImage:[1,"border-image"],boxShadow:[1,"box-shadow"],minDrops:[2,"min-drops"],maxDrops:[2,"max-drops"],margin:[1],style:[32]}],[4,"lido-container",{showDropBorder:[4,"show-drop-border"],appendToDropOnCompletion:[4,"append-to-drop-on-completion"],id:[1],objective:[1],customStyle:[1,"custom-style"],value:[1],height:[1],width:[1],ariaLabel:[1,"aria-label"],ariaHidden:[1,"aria-hidden"],x:[1],y:[1],z:[1],bgColor:[1,"bg-color"],bgImage:[1,"bg-image"],type:[1],tabIndex:[2,"tab-index"],visible:[4],audio:[1],onTouch:[1,"on-touch"],onInCorrect:[1,"on-in-correct"],onCorrect:[1,"on-correct"],onEntry:[1,"on-entry"],canplay:[4],showCheck:[4,"show-check"],isContinueOnCorrect:[4,"is-continue-on-correct"],isAllowOnlyCorrect:[4,"is-allow-only-correct"],baseUrl:[1,"base-url"],margin:[1],showPrevButton:[1,"show-prev-button"],showNextButton:[1,"show-next-button"],delayVisible:[1,"delay-visible"]}],[4,"lido-flash-card",{value:[1],height:[1],width:[1],ariaLabel:[1,"aria-label"],ariaHidden:[1,"aria-hidden"],x:[1],y:[1],z:[1],bgColor:[1,"bg-color"],type:[1],tabIndex:[2,"tab-index"],visible:[4],audio:[1],onTouch:[1,"on-touch"],onInCorrect:[1,"on-in-correct"],onCorrect:[1,"on-correct"],onEntry:[1,"on-entry"],direction:[1],display:[1],front:[8],back:[8],flipped:[1540],margin:[1],delayVisible:[1,"delay-visible"],style:[32]},null,{flipped:["handleFlippedChange"]}],[4,"lido-float",{id:[1],value:[1],z:[1],tabIndex:[2,"tab-index"],visible:[4],onEntry:[1,"on-entry"],width:[1],height:[1],bgColor:[1,"bg-color"],delayVisible:[1,"delay-visible"],style:[32]}],[0,"lido-image",{showSpeakIcon:[4,"show-speak-icon"],id:[1],value:[1],height:[1],width:[1],ariaLabel:[1,"aria-label"],ariaHidden:[1,"aria-hidden"],x:[1],y:[1],z:[1],bgColor:[1,"bg-color"],type:[1],tabIndex:[2,"tab-index"],visible:[8],audio:[1],onTouch:[1,"on-touch"],onInCorrect:[1,"on-in-correct"],onCorrect:[1,"on-correct"],onEntry:[1,"on-entry"],src:[1],isSlice:[1,"is-slice"],sliceWidth:[1,"slice-width"],minDrops:[2,"min-drops"],maxDrops:[2,"max-drops"],margin:[1],padding:[1],filter:[1],borderRadius:[1,"border-radius"],transform:[1],delayVisible:[1,"delay-visible"],style:[32]}],[4,"lido-pos",{id:[1],value:[1],height:[1],width:[1],ariaLabel:[1,"aria-label"],ariaHidden:[1,"aria-hidden"],x:[1],y:[1],z:[1],bgColor:[1,"bg-color"],type:[1],tabIndex:[2,"tab-index"],visible:[8],audio:[1],onTouch:[1,"on-touch"],onInCorrect:[1,"on-in-correct"],onCorrect:[1,"on-correct"],onEntry:[1,"on-entry"],minDrops:[2,"min-drops"],maxDrops:[2,"max-drops"],margin:[1],style:[32]}],[4,"lido-random",{showSpeakIcon:[4,"show-speak-icon"],id:[1],value:[1],height:[1],width:[1],ariaLabel:[1,"aria-label"],ariaHidden:[1,"aria-hidden"],x:[1],y:[1],z:[1],bgColor:[1,"bg-color"],type:[1],tabIndex:[2,"tab-index"],visible:[4],audio:[1],onTouch:[1,"on-touch"],onInCorrect:[1,"on-in-correct"],onCorrect:[1,"on-correct"],onEntry:[1,"on-entry"],minDrops:[2,"min-drops"],maxDrops:[2,"max-drops"],margin:[1]}],[4,"lido-row",{showSpeakIcon:[4,"show-speak-icon"],value:[1],height:[1],width:[1],ariaLabel:[1,"aria-label"],ariaHidden:[1,"aria-hidden"],x:[1],y:[1],z:[1],bgColor:[1,"bg-color"],type:[1],tabIndex:[2,"tab-index"],visible:[4],audio:[1],onTouch:[1,"on-touch"],onInCorrect:[1,"on-in-correct"],onCorrect:[1,"on-correct"],onEntry:[1,"on-entry"],childElementsLength:[2,"child-elements-length"],minLength:[2,"min-length"],maxLength:[2,"max-length"],direction:[1],minDrops:[2,"min-drops"],maxDrops:[2,"max-drops"],display:[1],margin:[1],style:[32]}],[0,"lido-shape",{id:[1],value:[1],height:[1],width:[1],ariaLabel:[1,"aria-label"],ariaHidden:[1,"aria-hidden"],x:[1],y:[1],z:[1],bgColor:[1,"bg-color"],type:[1],tabIndex:[2,"tab-index"],shapeType:[1,"shape-type"],visible:[4],audio:[1],onTouch:[1,"on-touch"],onInCorrect:[1,"on-in-correct"],onCorrect:[1,"on-correct"],onEntry:[1,"on-entry"],minDrops:[2,"min-drops"],maxDrops:[2,"max-drops"],margin:[1],delayVisible:[1,"delay-visible"]}],[0,"lido-slide-fill",{id:[1],width:[1],fill:[1],numberType:[1,"number-type"],min:[2],division:[2],max:[2],slider:[4],src:[1],fillDirection:[1,"fill-direction"],delayVisible:[1,"delay-visible"],svgContent:[32]},null,{src:["onSrcChange"],fill:["onPropChange"],division:["onPropChange"],fillDirection:["onPropChange"],numberType:["onPropChange"],min:["onPropChange"],max:["onPropChange"]}],[0,"lido-text",{showSpeakIcon:[4,"show-speak-icon"],id:[1],value:[1],string:[1],fontFamily:[1,"font-family"],fontSize:[1,"font-size"],fontColor:[1,"font-color"],highlightWhileSpeaking:[4,"highlight-while-speaking"],height:[1],width:[1],ariaLabel:[1,"aria-label"],ariaHidden:[1,"aria-hidden"],x:[1],y:[1],z:[1],bgColor:[1,"bg-color"],borderImage:[1,"border-image"],type:[1],tabIndex:[2,"tab-index"],visible:[8],audio:[1],onTouch:[1,"on-touch"],onInCorrect:[1,"on-in-correct"],onCorrect:[1,"on-correct"],minDrops:[2,"min-drops"],maxDrops:[2,"max-drops"],onEntry:[1,"on-entry"],margin:[1],padding:[1],borderRadius:[1,"border-radius"],spanType:[1,"span-type"],delayVisible:[1,"delay-visible"],style:[32]}],[0,"lido-trace",{showSpeakIcon:[4,"show-speak-icon"],id:[1],svgSource:[1,"svg-source"],value:[1],height:[1],width:[1],x:[1],y:[1],z:[1],ariaLabel:[1,"aria-label"],ariaHidden:[1,"aria-hidden"],tabIndex:[2,"tab-index"],mode:[1],fingerHintUrl:[1,"finger-hint-url"],onInCorrect:[1,"on-in-correct"],onCorrect:[1,"on-correct"],highlightTextId:[1,"highlight-text-id"],animationTrace:[4,"animation-trace"],delayVisible:[1,"delay-visible"],svgUrls:[32],currentSvgIndex:[32],fileIndex:[32],isDragging:[32],activePointerId:[32],idleTimer:[32],fingerImg:[32]},null,{svgSource:["initializeSVG"],mode:["initializeSVG"]}],[4,"lido-wrap",{showSpeakIcon:[4,"show-speak-icon"],id:[1],value:[1],height:[1],width:[1],ariaLabel:[1,"aria-label"],ariaHidden:[1,"aria-hidden"],x:[1],y:[1],z:[1],bgColor:[1,"bg-color"],type:[1],tabIndex:[2,"tab-index"],visible:[4],audio:[1],onTouch:[1,"on-touch"],onInCorrect:[1,"on-in-correct"],onCorrect:[1,"on-correct"],onEntry:[1,"on-entry"],childElementsLength:[2,"child-elements-length"],minLength:[2,"min-length"],maxLength:[2,"max-length"],flex:[1],minDrops:[2,"min-drops"],maxDrops:[2,"max-drops"],margin:[1],style:[32]}]]]],e))));
|