lido-player 0.0.2-beta-00 → 0.0.2-beta-02
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/{decode-DweIsOMk.js → decode-BvT284iq.js} +1 -1
- package/dist/cjs/{index-BLk7DH9M.js → index-BhikEYm-.js} +101 -10
- package/dist/cjs/index.cjs.js +1 -1
- package/dist/cjs/lido-avatar_22.cjs.entry.js +66 -19
- package/dist/cjs/lido-player.cjs.js +1 -1
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/collection/components/home/lido-home.js +55 -8
- package/dist/collection/components/slideFill/lido-slide-fill.css +1 -1
- package/dist/collection/components/slideFill/lido-slide-fill.js +5 -5
- package/dist/collection/components/trace/lido-trace.css +1 -1
- package/dist/collection/components/trace/lido-trace.js +3 -2
- package/dist/collection/utils/audioPlayer.js +86 -5
- package/dist/collection/utils/utilsHandlers/clickHandler.js +5 -1
- package/dist/collection/utils/utilsHandlers/dragDropHandler.js +9 -3
- package/dist/components/index.js +1 -1
- package/dist/components/lido-home.js +1 -1
- package/dist/components/lido-root.js +1 -1
- package/dist/components/lido-slide-fill.js +1 -1
- package/dist/components/lido-trace.js +1 -1
- package/dist/components/p-BY1E9s1O.js +1 -0
- package/dist/components/p-CYA3cHAL.js +1 -0
- package/dist/components/p-yHq43npj.js +1 -0
- package/dist/esm/{decode-C_JRsKjk.js → decode-B2R73LQH.js} +1 -1
- package/dist/esm/{index-qr00vrOg.js → index-C1lqv26k.js} +101 -10
- package/dist/esm/index.js +1 -1
- package/dist/esm/lido-avatar_22.entry.js +66 -19
- package/dist/esm/lido-player.js +1 -1
- package/dist/esm/loader.js +1 -1
- package/dist/lido-player/index.esm.js +1 -1
- package/dist/lido-player/lido-player.esm.js +1 -1
- package/dist/lido-player/{p-DsjGEy2a.js → p-C61UwQXx.js} +1 -1
- package/dist/lido-player/p-DLiAHqUu.js +1 -0
- package/dist/lido-player/{p-b5b16f42.entry.js → p-b98f209c.entry.js} +1 -1
- package/dist/types/components/home/lido-home.d.ts +7 -0
- package/dist/types/utils/audioPlayer.d.ts +13 -2
- package/package.json +1 -1
- package/dist/components/p-CTJcKeEK.js +0 -1
- package/dist/components/p-CtU7FitD.js +0 -1
- package/dist/components/p-Dr5sh_El.js +0 -1
- package/dist/lido-player/p-CmFYpNuR.js +0 -1
|
@@ -343,11 +343,12 @@ function enableDraggingWithScaling(element) {
|
|
|
343
343
|
if (container.getAttribute("canplay") === "false")
|
|
344
344
|
return;
|
|
345
345
|
handlingElementFlexibleWidth(element, 'drag');
|
|
346
|
+
let dragingElementTransform;
|
|
346
347
|
const onStart = (event) => {
|
|
347
348
|
var _a, _b;
|
|
348
349
|
if (container && container.getAttribute("game-completed") === "true")
|
|
349
350
|
return;
|
|
350
|
-
|
|
351
|
+
dragingElementTransform = element.style.transform;
|
|
351
352
|
if (isDraggingDisabled) {
|
|
352
353
|
isDragging = false;
|
|
353
354
|
return;
|
|
@@ -570,7 +571,12 @@ function enableDraggingWithScaling(element) {
|
|
|
570
571
|
}
|
|
571
572
|
element.style.pointerEvents = 'none'; // Disable pointer events on drag element to prevent interference during drop handling
|
|
572
573
|
mostOverlappedElement.style.pointerEvents = 'none';
|
|
573
|
-
|
|
574
|
+
if (mostOverlappedElement.id === element.getAttribute("drop-to")) {
|
|
575
|
+
element.style.transform = dragingElementTransform;
|
|
576
|
+
}
|
|
577
|
+
else {
|
|
578
|
+
onElementDropComplete(element, mostOverlappedElement);
|
|
579
|
+
}
|
|
574
580
|
if (templateId === "blender" && element && mostOverlappedElement) {
|
|
575
581
|
const allElements = document.querySelectorAll(`*`);
|
|
576
582
|
allElements.forEach(el => {
|
|
@@ -1056,7 +1062,7 @@ function handleDropElement(element) {
|
|
|
1056
1062
|
}
|
|
1057
1063
|
async function onClickDropOrDragElement(element, type) {
|
|
1058
1064
|
const container = document.getElementById(LidoContainer);
|
|
1059
|
-
if (container.getAttribute('canplay') === 'false')
|
|
1065
|
+
if (container.getAttribute('canplay') === 'false' || container.getAttribute("game-completed") === "true")
|
|
1060
1066
|
return;
|
|
1061
1067
|
// Remove the highlight class from elements matching the selector
|
|
1062
1068
|
const highlightedElements = document.querySelectorAll(`[type='${type}']`);
|
|
@@ -1358,21 +1364,39 @@ function highlightElement() {
|
|
|
1358
1364
|
|
|
1359
1365
|
class AudioPlayer {
|
|
1360
1366
|
constructor() {
|
|
1367
|
+
this.currentTargetElement = null;
|
|
1368
|
+
this.pendingReplayElement = null;
|
|
1361
1369
|
this.highlightOverlay = null;
|
|
1362
1370
|
this.wordRects = [];
|
|
1363
1371
|
this.activeWordIndex = -1;
|
|
1364
1372
|
this.highlightRAF = null;
|
|
1365
1373
|
this.endPromiseResolve = null;
|
|
1366
|
-
this.
|
|
1374
|
+
this.visibilityWaitResolvers = [];
|
|
1375
|
+
this.isVisibilityChangeRegistered = false;
|
|
1376
|
+
this.handleUserClick = (event) => {
|
|
1367
1377
|
const container = document.getElementById(LidoContainer);
|
|
1378
|
+
if (container && (event === null || event === void 0 ? void 0 : event.target) === container)
|
|
1379
|
+
return;
|
|
1368
1380
|
if ((container === null || container === void 0 ? void 0 : container.getAttribute('game-completed')) === 'true')
|
|
1369
1381
|
return;
|
|
1370
1382
|
this.stop();
|
|
1371
1383
|
};
|
|
1384
|
+
this.handleVisibilityChange = async () => {
|
|
1385
|
+
if (this.isWindowVisible()) {
|
|
1386
|
+
this.resolveVisibilityWaiters();
|
|
1387
|
+
return;
|
|
1388
|
+
}
|
|
1389
|
+
if (!this.currentTargetElement) {
|
|
1390
|
+
return;
|
|
1391
|
+
}
|
|
1392
|
+
this.pendingReplayElement = this.currentTargetElement;
|
|
1393
|
+
await this.stop(true);
|
|
1394
|
+
};
|
|
1372
1395
|
this.audioElement = document.createElement('audio');
|
|
1373
1396
|
this.audioElement.id = 'audio';
|
|
1374
1397
|
document.body.appendChild(this.audioElement);
|
|
1375
1398
|
this.registerGlobalStopEvents();
|
|
1399
|
+
this.registerVisibilityEvents();
|
|
1376
1400
|
}
|
|
1377
1401
|
static getI() {
|
|
1378
1402
|
if (!AudioPlayer.instance) {
|
|
@@ -1380,7 +1404,12 @@ class AudioPlayer {
|
|
|
1380
1404
|
}
|
|
1381
1405
|
return AudioPlayer.instance;
|
|
1382
1406
|
}
|
|
1383
|
-
|
|
1407
|
+
static destroyI() {
|
|
1408
|
+
if (AudioPlayer.instance) {
|
|
1409
|
+
AudioPlayer.instance.destroy();
|
|
1410
|
+
}
|
|
1411
|
+
}
|
|
1412
|
+
stop(preserveReplay = false) {
|
|
1384
1413
|
const container = document.getElementById(LidoContainer);
|
|
1385
1414
|
if (container && container.getAttribute('highlight-word-by-word') === 'true') {
|
|
1386
1415
|
// stop any highlight loop
|
|
@@ -1396,6 +1425,10 @@ class AudioPlayer {
|
|
|
1396
1425
|
this.endPromiseResolve = null;
|
|
1397
1426
|
resolve();
|
|
1398
1427
|
}
|
|
1428
|
+
if (!preserveReplay) {
|
|
1429
|
+
this.pendingReplayElement = null;
|
|
1430
|
+
}
|
|
1431
|
+
this.currentTargetElement = null;
|
|
1399
1432
|
this.audioElement.pause();
|
|
1400
1433
|
this.audioElement.currentTime = 0;
|
|
1401
1434
|
this.audioElement.src = '';
|
|
@@ -1410,12 +1443,38 @@ class AudioPlayer {
|
|
|
1410
1443
|
pauseElement.style.visibility = 'hidden';
|
|
1411
1444
|
}
|
|
1412
1445
|
}
|
|
1446
|
+
isWindowVisible() {
|
|
1447
|
+
return document.visibilityState === 'visible' && !document.hidden;
|
|
1448
|
+
}
|
|
1449
|
+
waitUntilWindowIsVisible() {
|
|
1450
|
+
if (this.isWindowVisible()) {
|
|
1451
|
+
return Promise.resolve();
|
|
1452
|
+
}
|
|
1453
|
+
this.registerVisibilityEvents();
|
|
1454
|
+
return new Promise(resolve => {
|
|
1455
|
+
this.visibilityWaitResolvers.push(resolve);
|
|
1456
|
+
});
|
|
1457
|
+
}
|
|
1458
|
+
resolveVisibilityWaiters() {
|
|
1459
|
+
const resolvers = this.visibilityWaitResolvers.splice(0);
|
|
1460
|
+
resolvers.forEach(resolve => resolve());
|
|
1461
|
+
}
|
|
1413
1462
|
getLidoTextElement(el) {
|
|
1414
1463
|
if (el.tagName.toLowerCase() === 'lido-text')
|
|
1415
1464
|
return el;
|
|
1416
1465
|
return el.closest('lido-text');
|
|
1417
1466
|
}
|
|
1418
1467
|
async play(targetElement) {
|
|
1468
|
+
this.registerVisibilityEvents();
|
|
1469
|
+
if (!this.isWindowVisible()) {
|
|
1470
|
+
this.pendingReplayElement = targetElement;
|
|
1471
|
+
await this.stop(true);
|
|
1472
|
+
await this.waitUntilWindowIsVisible();
|
|
1473
|
+
if (this.pendingReplayElement !== targetElement) {
|
|
1474
|
+
return;
|
|
1475
|
+
}
|
|
1476
|
+
this.pendingReplayElement = null;
|
|
1477
|
+
}
|
|
1419
1478
|
// Stop any currently playing audio first if target element has audio given
|
|
1420
1479
|
try {
|
|
1421
1480
|
await AudioPlayer.getI().stop();
|
|
@@ -1443,6 +1502,7 @@ class AudioPlayer {
|
|
|
1443
1502
|
this.stopOverlayHighlightLoop(); // stop any highlight loop;
|
|
1444
1503
|
targetElement = textElement;
|
|
1445
1504
|
}
|
|
1505
|
+
this.currentTargetElement = targetElement;
|
|
1446
1506
|
// then play the target element audio.
|
|
1447
1507
|
let audioUrl = targetElement.getAttribute('audio') || '';
|
|
1448
1508
|
// If no direct audio attribute, check childrens for audio
|
|
@@ -1459,7 +1519,7 @@ class AudioPlayer {
|
|
|
1459
1519
|
if (audioUrl) {
|
|
1460
1520
|
audioUrl = convertUrlToRelative(audioUrl);
|
|
1461
1521
|
this.audioElement.src = audioUrl;
|
|
1462
|
-
console.log('🚀 Playing audio:', this.audioElement.src);
|
|
1522
|
+
// console.log('🚀 Playing audio:', this.audioElement.src);
|
|
1463
1523
|
try {
|
|
1464
1524
|
// setDraggingDisabled(true);
|
|
1465
1525
|
const language = container.getAttribute('Lang') || 'en';
|
|
@@ -1523,10 +1583,10 @@ class AudioPlayer {
|
|
|
1523
1583
|
else if (targetElement.textContent) {
|
|
1524
1584
|
try {
|
|
1525
1585
|
highlightSpeakingElement(targetElement);
|
|
1526
|
-
window.addEventListener('click', this.handleUserClick, true);
|
|
1586
|
+
// window.addEventListener('click', this.handleUserClick, true);
|
|
1527
1587
|
await speakText(targetElement.textContent, targetElement);
|
|
1528
|
-
|
|
1529
|
-
highlightedElements.forEach(element => stopHighlightForSpeakingElement(element));
|
|
1588
|
+
document.querySelectorAll('.speaking-highlight');
|
|
1589
|
+
// highlightedElements.forEach(element => stopHighlightForSpeakingElement(element as HTMLElement));
|
|
1530
1590
|
}
|
|
1531
1591
|
catch (error) {
|
|
1532
1592
|
console.log('🎧 TTS Error:', error);
|
|
@@ -1535,6 +1595,17 @@ class AudioPlayer {
|
|
|
1535
1595
|
setDraggingDisabled(false);
|
|
1536
1596
|
}
|
|
1537
1597
|
}
|
|
1598
|
+
const shouldReplayFromStart = this.pendingReplayElement === targetElement;
|
|
1599
|
+
if (shouldReplayFromStart) {
|
|
1600
|
+
await this.waitUntilWindowIsVisible();
|
|
1601
|
+
if (this.pendingReplayElement === targetElement) {
|
|
1602
|
+
this.pendingReplayElement = null;
|
|
1603
|
+
return this.play(targetElement);
|
|
1604
|
+
}
|
|
1605
|
+
}
|
|
1606
|
+
if (this.currentTargetElement === targetElement) {
|
|
1607
|
+
this.currentTargetElement = null;
|
|
1608
|
+
}
|
|
1538
1609
|
}
|
|
1539
1610
|
// GLOBAL STOP EVENTS (container change, activity change…)
|
|
1540
1611
|
registerGlobalStopEvents() {
|
|
@@ -1546,10 +1617,26 @@ class AudioPlayer {
|
|
|
1546
1617
|
window.addEventListener(key, () => this.stop());
|
|
1547
1618
|
});
|
|
1548
1619
|
}
|
|
1620
|
+
registerVisibilityEvents() {
|
|
1621
|
+
if (this.isVisibilityChangeRegistered) {
|
|
1622
|
+
return;
|
|
1623
|
+
}
|
|
1624
|
+
document.addEventListener('visibilitychange', this.handleVisibilityChange);
|
|
1625
|
+
this.isVisibilityChangeRegistered = true;
|
|
1626
|
+
}
|
|
1627
|
+
unregisterVisibilityEvents() {
|
|
1628
|
+
if (!this.isVisibilityChangeRegistered) {
|
|
1629
|
+
return;
|
|
1630
|
+
}
|
|
1631
|
+
document.removeEventListener('visibilitychange', this.handleVisibilityChange);
|
|
1632
|
+
this.isVisibilityChangeRegistered = false;
|
|
1633
|
+
this.resolveVisibilityWaiters();
|
|
1634
|
+
}
|
|
1549
1635
|
// DESTROY (for hot-reload)
|
|
1550
1636
|
destroy() {
|
|
1551
1637
|
console.log("AudioPlayer destroyed (hot-reload safe)");
|
|
1552
1638
|
this.stop();
|
|
1639
|
+
this.unregisterVisibilityEvents();
|
|
1553
1640
|
// Remove DOM element
|
|
1554
1641
|
if (this.audioElement.parentNode) {
|
|
1555
1642
|
this.audioElement.parentNode.removeChild(this.audioElement);
|
|
@@ -3654,6 +3741,8 @@ function addClickListenerForClickType(element) {
|
|
|
3654
3741
|
}
|
|
3655
3742
|
const onClick = async () => {
|
|
3656
3743
|
var _a;
|
|
3744
|
+
if (element === container)
|
|
3745
|
+
return;
|
|
3657
3746
|
if (container.getAttribute("game-completed") === "true")
|
|
3658
3747
|
return;
|
|
3659
3748
|
const lido_buttons = element.getAttribute('id');
|
|
@@ -3745,7 +3834,9 @@ function addClickListenerForClickType(element) {
|
|
|
3745
3834
|
container.setAttribute(SelectedValuesKey, JSON.stringify(sortedValues));
|
|
3746
3835
|
const isCorrect = objective.includes(element['value']);
|
|
3747
3836
|
dispatchClickEvent(element, isCorrect);
|
|
3748
|
-
|
|
3837
|
+
if (hasValidAudio) {
|
|
3838
|
+
AudioPlayer.getI().stop();
|
|
3839
|
+
}
|
|
3749
3840
|
if (isCorrect) {
|
|
3750
3841
|
const onCorrect = element.getAttribute('onCorrect');
|
|
3751
3842
|
await executeActions(onCorrect, element);
|
package/dist/cjs/index.cjs.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
3
|
var index = require('./index-Bsk4M2Qz.js');
|
|
4
|
-
var index$1 = require('./index-
|
|
4
|
+
var index$1 = require('./index-BhikEYm-.js');
|
|
5
5
|
|
|
6
6
|
var rive$1 = {exports: {}};
|
|
7
7
|
|
|
@@ -12638,6 +12638,10 @@ const LidoHome = class {
|
|
|
12638
12638
|
* Current index of the container being displayed.
|
|
12639
12639
|
*/
|
|
12640
12640
|
this.currentContainerIndex = this.initialIndex;
|
|
12641
|
+
/**
|
|
12642
|
+
* Tracks window resizes to force a complete unmount and remount of the container tree.
|
|
12643
|
+
*/
|
|
12644
|
+
this.resizeTrigger = 0;
|
|
12641
12645
|
/**
|
|
12642
12646
|
* Boolean that controls the visibility of the exit confirmation popup.
|
|
12643
12647
|
* This is set to true when the user attempts to exit the game.
|
|
@@ -12734,13 +12738,19 @@ const LidoHome = class {
|
|
|
12734
12738
|
}, 100);
|
|
12735
12739
|
};
|
|
12736
12740
|
this.btnpopupRunId = 0;
|
|
12737
|
-
this.
|
|
12738
|
-
|
|
12741
|
+
this.activeBtnpopupRunId = null;
|
|
12742
|
+
this.shouldStopActiveBtnpopupAudio = true;
|
|
12743
|
+
this.handleWindowTouch = (event) => {
|
|
12744
|
+
if (this.activeBtnpopupRunId === null)
|
|
12745
|
+
return;
|
|
12746
|
+
void this.cancelBtnpopupRun(this.hasAudioOnInteractionTarget(event.target));
|
|
12739
12747
|
};
|
|
12740
12748
|
this.handleWindowPointer = (event) => {
|
|
12741
12749
|
if (event.pointerType !== 'touch')
|
|
12742
12750
|
return;
|
|
12743
|
-
|
|
12751
|
+
if (this.activeBtnpopupRunId === null)
|
|
12752
|
+
return;
|
|
12753
|
+
void this.cancelBtnpopupRun(this.hasAudioOnInteractionTarget(event.target));
|
|
12744
12754
|
};
|
|
12745
12755
|
this.popUpClick = (comment) => {
|
|
12746
12756
|
const alertElement = this.el.querySelector('.lido-alert-popup');
|
|
@@ -12876,7 +12886,7 @@ const LidoHome = class {
|
|
|
12876
12886
|
}
|
|
12877
12887
|
// Pure-JS fallback (no wasm asset required)
|
|
12878
12888
|
try {
|
|
12879
|
-
const brotliDecodeModule = await Promise.resolve().then(function () { return require('./decode-
|
|
12889
|
+
const brotliDecodeModule = await Promise.resolve().then(function () { return require('./decode-BvT284iq.js'); }).then(function (n) { return n.decode; });
|
|
12880
12890
|
const brotliDecompressBuffer = brotliDecodeModule.BrotliDecompressBuffer || ((_a = brotliDecodeModule.default) === null || _a === void 0 ? void 0 : _a.BrotliDecompressBuffer);
|
|
12881
12891
|
if (typeof brotliDecompressBuffer !== 'function') {
|
|
12882
12892
|
throw new Error('BrotliDecompressBuffer function not found in brotli/dec/decode');
|
|
@@ -12904,6 +12914,8 @@ const LidoHome = class {
|
|
|
12904
12914
|
this.handleIcons();
|
|
12905
12915
|
window.addEventListener('resize', () => {
|
|
12906
12916
|
this.scaleNavbarContainer(); // re-scale navbar on resize
|
|
12917
|
+
this.resizeTrigger++; // Force Stencil to view the container as a new element
|
|
12918
|
+
this.containers = [...this.containers]; // trigger a full re-render
|
|
12907
12919
|
});
|
|
12908
12920
|
window.addEventListener('touchstart', this.handleWindowTouch, { passive: true });
|
|
12909
12921
|
window.addEventListener('pointerdown', this.handleWindowPointer, { passive: true });
|
|
@@ -12967,6 +12979,7 @@ const LidoHome = class {
|
|
|
12967
12979
|
* Lifecycle method that cleans up event listeners when the component is removed from the DOM.
|
|
12968
12980
|
*/
|
|
12969
12981
|
disconnectedCallback() {
|
|
12982
|
+
index$1.AudioPlayer.destroyI();
|
|
12970
12983
|
window.removeEventListener(index$1.NextContainerKey, () => {
|
|
12971
12984
|
this.NextContainerKey();
|
|
12972
12985
|
});
|
|
@@ -13067,7 +13080,7 @@ const LidoHome = class {
|
|
|
13067
13080
|
}
|
|
13068
13081
|
// Map XML tags to Stencil components
|
|
13069
13082
|
const componentMapping = {
|
|
13070
|
-
'lido-container': (index.h("lido-container", Object.assign({}, props, { canplay: this.canplay, baseUrl: this.baseUrl, height: this.height }), children)),
|
|
13083
|
+
'lido-container': (index.h("lido-container", Object.assign({ key: this.resizeTrigger }, props, { canplay: this.canplay, baseUrl: this.baseUrl, height: this.height }), children)),
|
|
13071
13084
|
'lido-flash-card': index.h("lido-flash-card", Object.assign({}, props), children),
|
|
13072
13085
|
'lido-col': index.h("lido-col", Object.assign({}, props), children),
|
|
13073
13086
|
'lido-trace': index.h("lido-trace", Object.assign({}, props), children),
|
|
@@ -13167,7 +13180,9 @@ const LidoHome = class {
|
|
|
13167
13180
|
await index$1.AudioPlayer.getI().play(htmlel);
|
|
13168
13181
|
}
|
|
13169
13182
|
if (index$1.getCancelBtnPopup() || isStale()) {
|
|
13170
|
-
|
|
13183
|
+
if (this.shouldStopActiveBtnpopupAudio) {
|
|
13184
|
+
await index$1.AudioPlayer.getI().stop();
|
|
13185
|
+
}
|
|
13171
13186
|
break;
|
|
13172
13187
|
}
|
|
13173
13188
|
await new Promise(resolve => setTimeout(resolve, 300));
|
|
@@ -13193,10 +13208,31 @@ const LidoHome = class {
|
|
|
13193
13208
|
console.log('Not yet filled ');
|
|
13194
13209
|
}
|
|
13195
13210
|
}
|
|
13196
|
-
|
|
13211
|
+
hasAudioOnInteractionTarget(target) {
|
|
13212
|
+
const element = target;
|
|
13213
|
+
if (!element)
|
|
13214
|
+
return false;
|
|
13215
|
+
const hasValidAudio = (candidate) => {
|
|
13216
|
+
if (!(candidate instanceof HTMLElement))
|
|
13217
|
+
return false;
|
|
13218
|
+
const audioAttr = candidate.getAttribute('audio');
|
|
13219
|
+
return !!audioAttr && audioAttr.trim().length > 0;
|
|
13220
|
+
};
|
|
13221
|
+
if (hasValidAudio(element))
|
|
13222
|
+
return true;
|
|
13223
|
+
if (hasValidAudio(element.closest('[audio]')))
|
|
13224
|
+
return true;
|
|
13225
|
+
if (hasValidAudio(element.querySelector('[audio]')))
|
|
13226
|
+
return true;
|
|
13227
|
+
return false;
|
|
13228
|
+
}
|
|
13229
|
+
async cancelBtnpopupRun(shouldStopAudio = true) {
|
|
13197
13230
|
this.btnpopupRunId++;
|
|
13231
|
+
this.shouldStopActiveBtnpopupAudio = shouldStopAudio;
|
|
13198
13232
|
index$1.setCancelBtnPopup(true);
|
|
13199
|
-
|
|
13233
|
+
if (shouldStopAudio) {
|
|
13234
|
+
await index$1.AudioPlayer.getI().stop();
|
|
13235
|
+
}
|
|
13200
13236
|
}
|
|
13201
13237
|
async handleBtnpopupClick() {
|
|
13202
13238
|
// Invalidate any in-flight run and stop audio immediately.
|
|
@@ -13204,7 +13240,17 @@ const LidoHome = class {
|
|
|
13204
13240
|
// Start fresh run.
|
|
13205
13241
|
const nextRunId = this.btnpopupRunId;
|
|
13206
13242
|
index$1.setCancelBtnPopup(false);
|
|
13207
|
-
|
|
13243
|
+
this.activeBtnpopupRunId = nextRunId;
|
|
13244
|
+
this.shouldStopActiveBtnpopupAudio = true;
|
|
13245
|
+
try {
|
|
13246
|
+
await this.btnpopup(nextRunId);
|
|
13247
|
+
}
|
|
13248
|
+
finally {
|
|
13249
|
+
if (this.activeBtnpopupRunId === nextRunId) {
|
|
13250
|
+
this.activeBtnpopupRunId = null;
|
|
13251
|
+
}
|
|
13252
|
+
this.shouldStopActiveBtnpopupAudio = true;
|
|
13253
|
+
}
|
|
13208
13254
|
}
|
|
13209
13255
|
scaleNavbarContainer() {
|
|
13210
13256
|
setTimeout(() => {
|
|
@@ -17373,7 +17419,7 @@ const LidoShape = class {
|
|
|
17373
17419
|
};
|
|
17374
17420
|
LidoShape.style = lidoShapeCss();
|
|
17375
17421
|
|
|
17376
|
-
const lidoSlideFillCss = () => `.svg-element
|
|
17422
|
+
const lidoSlideFillCss = () => `.lido-svg-element,.lido-slide-svg{width:100%;height:100%}`;
|
|
17377
17423
|
|
|
17378
17424
|
const LidoSlideFill = class {
|
|
17379
17425
|
constructor(hostRef) {
|
|
@@ -17465,8 +17511,8 @@ const LidoSlideFill = class {
|
|
|
17465
17511
|
<use xlink:href="#glassPath" />
|
|
17466
17512
|
</clipPath>
|
|
17467
17513
|
`;
|
|
17468
|
-
svgText = svgText.replace(/<svg([^>]*)>/, `<svg$1>
|
|
17469
|
-
${clipPathDef}
|
|
17514
|
+
svgText = svgText.replace(/<svg([^>]*)>/, `<svg class="lido-slide-svg"$1>
|
|
17515
|
+
${clipPathDef}
|
|
17470
17516
|
`);
|
|
17471
17517
|
svgText = svgText.replace(/<rect([^>]*)\/?>/, `<rect id="fillArea" $1 clip-path="url(#clipGlass)" />`);
|
|
17472
17518
|
this.svgContent = svgText;
|
|
@@ -17501,7 +17547,7 @@ const LidoSlideFill = class {
|
|
|
17501
17547
|
}
|
|
17502
17548
|
updateFill() {
|
|
17503
17549
|
var _a;
|
|
17504
|
-
const svgEl = (_a = this.el.querySelector('.svg-element')) === null || _a === void 0 ? void 0 : _a.querySelector('svg');
|
|
17550
|
+
const svgEl = (_a = this.el.querySelector('.lido-svg-element')) === null || _a === void 0 ? void 0 : _a.querySelector('svg');
|
|
17505
17551
|
if (!svgEl)
|
|
17506
17552
|
return;
|
|
17507
17553
|
const rect = svgEl.querySelector('#fillArea');
|
|
@@ -17555,7 +17601,7 @@ const LidoSlideFill = class {
|
|
|
17555
17601
|
}
|
|
17556
17602
|
addRulerNumbers() {
|
|
17557
17603
|
var _a;
|
|
17558
|
-
const svgEl = (_a = this.el.querySelector('.svg-element')) === null || _a === void 0 ? void 0 : _a.querySelector('svg');
|
|
17604
|
+
const svgEl = (_a = this.el.querySelector('.lido-svg-element')) === null || _a === void 0 ? void 0 : _a.querySelector('svg');
|
|
17559
17605
|
if (!svgEl)
|
|
17560
17606
|
return;
|
|
17561
17607
|
const rulerPath = svgEl.querySelector('#rulerPath');
|
|
@@ -17591,7 +17637,7 @@ const LidoSlideFill = class {
|
|
|
17591
17637
|
}
|
|
17592
17638
|
}
|
|
17593
17639
|
render() {
|
|
17594
|
-
return (index.h(index.Host, { key: '
|
|
17640
|
+
return (index.h(index.Host, { key: 'b9d026d02c325b4f1bc4d78a9ab1035a4da582f4', id: this.id, class: "lido-slide-fill", src: this.src, fill: this.fill, fillDirection: this.fillDirection, slider: this.slider, style: this.style, min: this.min, max: this.max, division: this.division, numberType: this.numberType, onEntry: this.onEntry, type: this.type, "disable-speak": this.disableSpeak }, index.h("div", { key: '53f70e11440aad0f60736a87489b488a81177c1a', innerHTML: this.svgContent, class: "lido-svg-element" })));
|
|
17595
17641
|
}
|
|
17596
17642
|
get el() { return index.getElement(this); }
|
|
17597
17643
|
static get watchers() { return {
|
|
@@ -17876,7 +17922,7 @@ const LidoText = class {
|
|
|
17876
17922
|
};
|
|
17877
17923
|
LidoText.style = lidoTextCss();
|
|
17878
17924
|
|
|
17879
|
-
const lidoTraceCss = () => `:host{display:block;position:relative}#lido-svgContainer{display:flex;justify-content:center;align-items:center;overflow:hidden}svg{width:100%;height:100%;touch-action:none}#lido-draggableCircle{cursor:pointer;fill:#CF1565;transition:fill 0.2s, r 0.2s}.lido-blindTracing{stroke:none !important}.lido-blindFreeTrace{stroke:none !important}.lido-hovered{cursor:grab;fill:darkred}#lido-controls{position:fixed;bottom:0;left:0;right:0;display:flex;justify-content:space-between;padding:10px;background-color:#f0f0f0;border-top:1px solid #ccc}button{padding:10px;font-size:16px}@media (max-width: 600px){button{padding:8px;font-size:14px}}.lido-trace-path-green{}.lido-flow-indicator{stroke:blue;stroke-width:2;stroke-dasharray:6, 6;fill:none}.lido-trace{height:700px;width:700px;z-index:1;justify-items:center;align-content:center}.trace-animate{animation:trace-bounce 0.5s}@keyframes trace-bounce{0%{transform:scale(1)}30%{transform:scale(1.05)}60%{transform:scale(0.95)}100%{transform:scale(1)}}`;
|
|
17925
|
+
const lidoTraceCss = () => `:host{display:block;position:relative}#lido-svgContainer{display:flex;justify-content:center;align-items:center;overflow:hidden}.lido-trace-svg{width:100%;height:100%;touch-action:none}#lido-draggableCircle{cursor:pointer;fill:#CF1565;transition:fill 0.2s, r 0.2s}.lido-blindTracing{stroke:none !important}.lido-blindFreeTrace{stroke:none !important}.lido-hovered{cursor:grab;fill:darkred}#lido-controls{position:fixed;bottom:0;left:0;right:0;display:flex;justify-content:space-between;padding:10px;background-color:#f0f0f0;border-top:1px solid #ccc}button{padding:10px;font-size:16px}@media (max-width: 600px){button{padding:8px;font-size:14px}}.lido-trace-path-green{}.lido-flow-indicator{stroke:blue;stroke-width:2;stroke-dasharray:6, 6;fill:none}.lido-trace{height:700px;width:700px;z-index:1;justify-items:center;align-content:center}.trace-animate{animation:trace-bounce 0.5s}@keyframes trace-bounce{0%{transform:scale(1)}30%{transform:scale(1.05)}60%{transform:scale(0.95)}100%{transform:scale(1)}}`;
|
|
17880
17926
|
|
|
17881
17927
|
const LidoTrace = class {
|
|
17882
17928
|
constructor(hostRef) {
|
|
@@ -18007,7 +18053,7 @@ const LidoTrace = class {
|
|
|
18007
18053
|
circle: null,
|
|
18008
18054
|
paths: [],
|
|
18009
18055
|
svg: null,
|
|
18010
|
-
proximityThreshold:
|
|
18056
|
+
proximityThreshold: 60, // Increased general proximity threshold (was 100)
|
|
18011
18057
|
freeTraceProximityThreshold: 350, // Increased proximity for free trace (was 50)
|
|
18012
18058
|
rafId: null,
|
|
18013
18059
|
pointerMoveEvent: null,
|
|
@@ -18148,6 +18194,7 @@ const LidoTrace = class {
|
|
|
18148
18194
|
svgContainer.innerHTML = svgText;
|
|
18149
18195
|
// After inserting, get the SVG element
|
|
18150
18196
|
const svgElement = svgContainer.querySelector('svg');
|
|
18197
|
+
svgElement.classList.add('lido-trace-svg');
|
|
18151
18198
|
// Remove the width and height attributes from the SVG element
|
|
18152
18199
|
svgElement.removeAttribute('width');
|
|
18153
18200
|
svgElement.removeAttribute('height');
|
|
@@ -18854,7 +18901,7 @@ const LidoTrace = class {
|
|
|
18854
18901
|
};
|
|
18855
18902
|
}
|
|
18856
18903
|
render() {
|
|
18857
|
-
return (index.h(index.Host, { key: '
|
|
18904
|
+
return (index.h(index.Host, { key: 'ad97a2d2c254f734133d045536f0401cc8b9d757', class: "lido-trace", id: this.id, audio: this.audio, onCorrect: this.onCorrect, onInCorrect: this.onInCorrect, style: this.style, "aria-label": this.ariaLabel, "aria-hidden": this.ariaHidden, tabindex: this.tabIndex, "disable-speak": this.disableSpeak }, index.h("div", { key: '49c77a05b424e8443ec5af28de1ca8bc2be190c2', style: this.style, id: "lido-svgContainer" })));
|
|
18858
18905
|
}
|
|
18859
18906
|
static get assetsDirs() { return ["svg", "images"]; }
|
|
18860
18907
|
get el() { return index.getElement(this); }
|
|
@@ -18,7 +18,7 @@ var patchBrowser = () => {
|
|
|
18
18
|
|
|
19
19
|
patchBrowser().then(async (options) => {
|
|
20
20
|
await index.globalScripts();
|
|
21
|
-
return index.bootstrapLazy(JSON.parse("[[\"lido-avatar_22.cjs\",[[0,\"lido-root\",{\"Lang\":[1,\"lang\"],\"xmlPath\":[1,\"xml-path\"],\"initialIndex\":[2,\"initial-index\"],\"margin\":[1],\"canplay\":[4],\"baseUrl\":[1,\"base-url\"],\"exitButtonUrl\":[1,\"exit-button-url\"],\"prevButtonUrl\":[1,\"prev-button-url\"],\"nextButtonUrl\":[1,\"next-button-url\"],\"speakerButtonUrl\":[1,\"speaker-button-url\"],\"xmlData\":[32]},null,{\"Lang\":[{\"onLangChange\":0}]}],[0,\"lido-home\",{\"commonAudioPath\":[1,\"common-audio-path\"],\"showNav\":[4,\"show-nav\"],\"activeContainerIndexes\":[16],\"Lang\":[1,\"lang\"],\"xmlData\":[1,\"xml-data\"],\"initialIndex\":[2,\"initial-index\"],\"canplay\":[4],\"baseUrl\":[1,\"base-url\"],\"height\":[1],\"exitButtonUrl\":[1,\"exit-button-url\"],\"prevButtonUrl\":[1,\"prev-button-url\"],\"nextButtonUrl\":[1,\"next-button-url\"],\"speakerButtonUrl\":[1,\"speaker-button-url\"],\"avatarUrl\":[1,\"avatar-url\"],\"uuid\":[1],\"navBarIcons\":[32],\"currentContainerIndex\":[32],\"exitFlag\":[32],\"containers\":[32],\"templateData\":[32],\"showDotsandbtn\":[32]},null,{\"Lang\":[{\"onLangChange\":0}],\"commonAudioPath\":[{\"onCommonAudioPathChange\":0}],\"xmlData\":[{\"onXmlDataChange\":0}]}],[0,\"lido-calculator\",{\"width\":[1],\"visible\":[8],\"height\":[1],\"objective\":[1],\"onEntry\":[1,\"on-entry\"],\"x\":[1],\"y\":[1],\"bgColor\":[1,\"bg-color\"],\"penIcon\":[1,\"pen-icon\"],\"displayValue\":[32],\"style\":[32]}],[1,\"lido-canvas\",{\"bgImage\":[1,\"bg-image\"],\"width\":[1],\"height\":[1],\"x\":[1],\"y\":[1],\"onEntry\":[1,\"on-entry\"],\"style\":[32]}],[260,\"lido-container\",{\"Lang\":[1,\"lang\"],\"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],\"exitButtonUrl\":[1,\"exit-button-url\"],\"prevButtonUrl\":[1,\"prev-button-url\"],\"nextButtonUrl\":[1,\"next-button-url\"],\"speakerButtonUrl\":[1,\"speaker-button-url\"],\"showPrevButton\":[1,\"show-prev-button\"],\"showNextButton\":[1,\"show-next-button\"],\"delayVisible\":[1,\"delay-visible\"],\"disableSpeak\":[4,\"disable-speak\"],\"templateId\":[1,\"template-id\"],\"highlightWordByWord\":[4,\"highlight-word-by-word\"],\"instructName\":[32],\"speakFlag\":[32]},null,{\"Lang\":[{\"languageChanged\":0}]}],[0,\"lido-keyboard\",{\"keys\":[1],\"width\":[1],\"height\":[1],\"fontSize\":[1,\"font-size\"],\"fontColor\":[1,\"font-color\"],\"fontFamily\":[1,\"font-family\"],\"gap\":[1],\"bgColor\":[1,\"bg-color\"],\"borderRadius\":[1,\"border-radius\"],\"y\":[1],\"x\":[1],\"z\":[1],\"margin\":[1],\"padding\":[1],\"visible\":[1],\"onEntry\":[1,\"on-entry\"],\"type\":[1],\"keyboardInput\":[4,\"keyboard-input\"],\"columns\":[1],\"letterLength\":[2,\"letter-length\"],\"disableSpeak\":[4,\"disable-speak\"],\"numberOfClick\":[32],\"inputString\":[32],\"style\":[32]}],[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\"]}],[0,\"lido-balance\",{\"pivotimage\":[1],\"scaleimage\":[1],\"handlerimage\":[1],\"fill\":[1],\"tilt\":[2],\"maxTilt\":[2,\"max-tilt\"],\"onEntry\":[1,\"on-entry\"],\"height\":[1],\"width\":[1],\"x\":[1],\"y\":[1],\"z\":[1],\"visible\":[8],\"margin\":[1],\"padding\":[1],\"balanceSymbol\":[1537,\"balance-symbol\"],\"showSymbol\":[1540,\"show-symbol\"],\"operation\":[1],\"pivotSvg\":[32],\"scaleSvg\":[32],\"handlerSvg\":[32],\"style\":[32],\"tiltf\":[32],\"leftVal\":[32],\"rightVal\":[32],\"revealSymbol\":[64],\"hideSymbol\":[64],\"updateTilt\":[64]},null,{\"tilt\":[{\"tiltChanged\":0}]}],[260,\"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]}],[260,\"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],\"disableSpeak\":[4,\"disable-speak\"],\"delayVisible\":[1,\"delay-visible\"],\"style\":[32]},null,{\"flipped\":[{\"handleFlippedChange\":0}]}],[260,\"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\"],\"type\":[1],\"delayVisible\":[1,\"delay-visible\"],\"floatDirection\":[1,\"float-direction\"],\"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\"],\"disableSpeak\":[4,\"disable-speak\"],\"style\":[32]}],[0,\"lido-math-matrix\",{\"rows\":[1],\"cols\":[1],\"defualtFill\":[1538,\"defualt-fill\"],\"leftIndex\":[4,\"left-index\"],\"topIndex\":[4,\"top-index\"],\"bottomIndex\":[4,\"bottom-index\"],\"clickable\":[4],\"activeOnlyVisible\":[4,\"active-only-visible\"],\"matrixImage\":[1,\"matrix-image\"],\"activeBgColor\":[1537,\"active-bg-color\"],\"deactiveBgColor\":[1537,\"deactive-bg-color\"],\"border\":[1537],\"height\":[1537],\"width\":[1537],\"borderRadius\":[1,\"border-radius\"],\"z\":[1],\"margin\":[1],\"padding\":[1],\"visible\":[1],\"text\":[1],\"type\":[1],\"value\":[1],\"tabIndex\":[2,\"tab-index\"],\"x\":[1],\"y\":[1],\"fontColor\":[1,\"font-color\"],\"onCorrect\":[1,\"on-correct\"],\"onInCorrect\":[1,\"on-in-correct\"],\"onEntry\":[1,\"on-entry\"],\"previousFilledSlot\":[32],\"previousFilledSlotElement\":[32],\"style\":[32]}],[260,\"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]}],[260,\"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]}],[260,\"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],\"disableSpeak\":[4,\"disable-speak\"],\"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\"],\"disableSpeak\":[4,\"disable-speak\"],\"style\":[32]}],[0,\"lido-slide-fill\",{\"id\":[1],\"width\":[1],\"height\":[1],\"x\":[1],\"y\":[1],\"z\":[1],\"bgColor\":[1,\"bg-color\"],\"visible\":[8],\"margin\":[1],\"padding\":[1],\"borderRadius\":[1,\"border-radius\"],\"fill\":[1],\"numberType\":[1,\"number-type\"],\"min\":[2],\"division\":[2],\"max\":[2],\"slider\":[4],\"src\":[1],\"fillDirection\":[1,\"fill-direction\"],\"type\":[1],\"onEntry\":[1,\"on-entry\"],\"delayVisible\":[1,\"delay-visible\"],\"disableSpeak\":[4,\"disable-speak\"],\"svgContent\":[32],\"style\":[32]},null,{\"src\":[{\"onSrcChange\":0}],\"fill\":[{\"onPropChange\":0}],\"division\":[{\"onPropChange\":0}],\"fillDirection\":[{\"onPropChange\":0}],\"numberType\":[{\"onPropChange\":0}],\"min\":[{\"onPropChange\":0}],\"max\":[{\"onPropChange\":0}]}],[0,\"lido-trace\",{\"showSpeakIcon\":[4,\"show-speak-icon\"],\"id\":[1],\"svgSource\":[1,\"svg-source\"],\"value\":[1],\"height\":[1],\"width\":[1],\"audio\":[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\"],\"disableSpeak\":[4,\"disable-speak\"],\"svgUrls\":[32],\"audioUrls\":[32],\"currentSvgIndex\":[32],\"moving\":[32],\"style\":[32],\"fileIndex\":[32],\"isDragging\":[32],\"activePointerId\":[32],\"freeTraceUpdateCounter\":[32],\"idleTimer\":[32],\"fingerImg\":[32]},null,{\"svgSource\":[{\"initializeSVG\":0}],\"mode\":[{\"initializeSVG\":0}]}],[260,\"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],\"disableSpeak\":[4,\"disable-speak\"],\"style\":[32]}],[260,\"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\"],\"disableSpeak\":[4,\"disable-speak\"],\"style\":[32]}],[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\"],\"disableSpeak\":[4,\"disable-speak\"],\"style\":[32]}]]]]"), options);
|
|
21
|
+
return index.bootstrapLazy(JSON.parse("[[\"lido-avatar_22.cjs\",[[0,\"lido-root\",{\"Lang\":[1,\"lang\"],\"xmlPath\":[1,\"xml-path\"],\"initialIndex\":[2,\"initial-index\"],\"margin\":[1],\"canplay\":[4],\"baseUrl\":[1,\"base-url\"],\"exitButtonUrl\":[1,\"exit-button-url\"],\"prevButtonUrl\":[1,\"prev-button-url\"],\"nextButtonUrl\":[1,\"next-button-url\"],\"speakerButtonUrl\":[1,\"speaker-button-url\"],\"xmlData\":[32]},null,{\"Lang\":[{\"onLangChange\":0}]}],[0,\"lido-home\",{\"commonAudioPath\":[1,\"common-audio-path\"],\"showNav\":[4,\"show-nav\"],\"activeContainerIndexes\":[16],\"Lang\":[1,\"lang\"],\"xmlData\":[1,\"xml-data\"],\"initialIndex\":[2,\"initial-index\"],\"canplay\":[4],\"baseUrl\":[1,\"base-url\"],\"height\":[1],\"exitButtonUrl\":[1,\"exit-button-url\"],\"prevButtonUrl\":[1,\"prev-button-url\"],\"nextButtonUrl\":[1,\"next-button-url\"],\"speakerButtonUrl\":[1,\"speaker-button-url\"],\"avatarUrl\":[1,\"avatar-url\"],\"uuid\":[1],\"navBarIcons\":[32],\"currentContainerIndex\":[32],\"resizeTrigger\":[32],\"exitFlag\":[32],\"containers\":[32],\"templateData\":[32],\"showDotsandbtn\":[32]},null,{\"Lang\":[{\"onLangChange\":0}],\"commonAudioPath\":[{\"onCommonAudioPathChange\":0}],\"xmlData\":[{\"onXmlDataChange\":0}]}],[0,\"lido-calculator\",{\"width\":[1],\"visible\":[8],\"height\":[1],\"objective\":[1],\"onEntry\":[1,\"on-entry\"],\"x\":[1],\"y\":[1],\"bgColor\":[1,\"bg-color\"],\"penIcon\":[1,\"pen-icon\"],\"displayValue\":[32],\"style\":[32]}],[1,\"lido-canvas\",{\"bgImage\":[1,\"bg-image\"],\"width\":[1],\"height\":[1],\"x\":[1],\"y\":[1],\"onEntry\":[1,\"on-entry\"],\"style\":[32]}],[260,\"lido-container\",{\"Lang\":[1,\"lang\"],\"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],\"exitButtonUrl\":[1,\"exit-button-url\"],\"prevButtonUrl\":[1,\"prev-button-url\"],\"nextButtonUrl\":[1,\"next-button-url\"],\"speakerButtonUrl\":[1,\"speaker-button-url\"],\"showPrevButton\":[1,\"show-prev-button\"],\"showNextButton\":[1,\"show-next-button\"],\"delayVisible\":[1,\"delay-visible\"],\"disableSpeak\":[4,\"disable-speak\"],\"templateId\":[1,\"template-id\"],\"highlightWordByWord\":[4,\"highlight-word-by-word\"],\"instructName\":[32],\"speakFlag\":[32]},null,{\"Lang\":[{\"languageChanged\":0}]}],[0,\"lido-keyboard\",{\"keys\":[1],\"width\":[1],\"height\":[1],\"fontSize\":[1,\"font-size\"],\"fontColor\":[1,\"font-color\"],\"fontFamily\":[1,\"font-family\"],\"gap\":[1],\"bgColor\":[1,\"bg-color\"],\"borderRadius\":[1,\"border-radius\"],\"y\":[1],\"x\":[1],\"z\":[1],\"margin\":[1],\"padding\":[1],\"visible\":[1],\"onEntry\":[1,\"on-entry\"],\"type\":[1],\"keyboardInput\":[4,\"keyboard-input\"],\"columns\":[1],\"letterLength\":[2,\"letter-length\"],\"disableSpeak\":[4,\"disable-speak\"],\"numberOfClick\":[32],\"inputString\":[32],\"style\":[32]}],[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\"]}],[0,\"lido-balance\",{\"pivotimage\":[1],\"scaleimage\":[1],\"handlerimage\":[1],\"fill\":[1],\"tilt\":[2],\"maxTilt\":[2,\"max-tilt\"],\"onEntry\":[1,\"on-entry\"],\"height\":[1],\"width\":[1],\"x\":[1],\"y\":[1],\"z\":[1],\"visible\":[8],\"margin\":[1],\"padding\":[1],\"balanceSymbol\":[1537,\"balance-symbol\"],\"showSymbol\":[1540,\"show-symbol\"],\"operation\":[1],\"pivotSvg\":[32],\"scaleSvg\":[32],\"handlerSvg\":[32],\"style\":[32],\"tiltf\":[32],\"leftVal\":[32],\"rightVal\":[32],\"revealSymbol\":[64],\"hideSymbol\":[64],\"updateTilt\":[64]},null,{\"tilt\":[{\"tiltChanged\":0}]}],[260,\"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]}],[260,\"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],\"disableSpeak\":[4,\"disable-speak\"],\"delayVisible\":[1,\"delay-visible\"],\"style\":[32]},null,{\"flipped\":[{\"handleFlippedChange\":0}]}],[260,\"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\"],\"type\":[1],\"delayVisible\":[1,\"delay-visible\"],\"floatDirection\":[1,\"float-direction\"],\"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\"],\"disableSpeak\":[4,\"disable-speak\"],\"style\":[32]}],[0,\"lido-math-matrix\",{\"rows\":[1],\"cols\":[1],\"defualtFill\":[1538,\"defualt-fill\"],\"leftIndex\":[4,\"left-index\"],\"topIndex\":[4,\"top-index\"],\"bottomIndex\":[4,\"bottom-index\"],\"clickable\":[4],\"activeOnlyVisible\":[4,\"active-only-visible\"],\"matrixImage\":[1,\"matrix-image\"],\"activeBgColor\":[1537,\"active-bg-color\"],\"deactiveBgColor\":[1537,\"deactive-bg-color\"],\"border\":[1537],\"height\":[1537],\"width\":[1537],\"borderRadius\":[1,\"border-radius\"],\"z\":[1],\"margin\":[1],\"padding\":[1],\"visible\":[1],\"text\":[1],\"type\":[1],\"value\":[1],\"tabIndex\":[2,\"tab-index\"],\"x\":[1],\"y\":[1],\"fontColor\":[1,\"font-color\"],\"onCorrect\":[1,\"on-correct\"],\"onInCorrect\":[1,\"on-in-correct\"],\"onEntry\":[1,\"on-entry\"],\"previousFilledSlot\":[32],\"previousFilledSlotElement\":[32],\"style\":[32]}],[260,\"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]}],[260,\"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]}],[260,\"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],\"disableSpeak\":[4,\"disable-speak\"],\"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\"],\"disableSpeak\":[4,\"disable-speak\"],\"style\":[32]}],[0,\"lido-slide-fill\",{\"id\":[1],\"width\":[1],\"height\":[1],\"x\":[1],\"y\":[1],\"z\":[1],\"bgColor\":[1,\"bg-color\"],\"visible\":[8],\"margin\":[1],\"padding\":[1],\"borderRadius\":[1,\"border-radius\"],\"fill\":[1],\"numberType\":[1,\"number-type\"],\"min\":[2],\"division\":[2],\"max\":[2],\"slider\":[4],\"src\":[1],\"fillDirection\":[1,\"fill-direction\"],\"type\":[1],\"onEntry\":[1,\"on-entry\"],\"delayVisible\":[1,\"delay-visible\"],\"disableSpeak\":[4,\"disable-speak\"],\"svgContent\":[32],\"style\":[32]},null,{\"src\":[{\"onSrcChange\":0}],\"fill\":[{\"onPropChange\":0}],\"division\":[{\"onPropChange\":0}],\"fillDirection\":[{\"onPropChange\":0}],\"numberType\":[{\"onPropChange\":0}],\"min\":[{\"onPropChange\":0}],\"max\":[{\"onPropChange\":0}]}],[0,\"lido-trace\",{\"showSpeakIcon\":[4,\"show-speak-icon\"],\"id\":[1],\"svgSource\":[1,\"svg-source\"],\"value\":[1],\"height\":[1],\"width\":[1],\"audio\":[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\"],\"disableSpeak\":[4,\"disable-speak\"],\"svgUrls\":[32],\"audioUrls\":[32],\"currentSvgIndex\":[32],\"moving\":[32],\"style\":[32],\"fileIndex\":[32],\"isDragging\":[32],\"activePointerId\":[32],\"freeTraceUpdateCounter\":[32],\"idleTimer\":[32],\"fingerImg\":[32]},null,{\"svgSource\":[{\"initializeSVG\":0}],\"mode\":[{\"initializeSVG\":0}]}],[260,\"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],\"disableSpeak\":[4,\"disable-speak\"],\"style\":[32]}],[260,\"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\"],\"disableSpeak\":[4,\"disable-speak\"],\"style\":[32]}],[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\"],\"disableSpeak\":[4,\"disable-speak\"],\"style\":[32]}]]]]"), options);
|
|
22
22
|
});
|
|
23
23
|
|
|
24
24
|
exports.setNonce = index.setNonce;
|