lido-player 0.0.2-alpha-58-dev → 0.0.2-alpha-60-dev

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.
Files changed (153) hide show
  1. package/dist/cjs/index.cjs.js +1 -1
  2. package/dist/cjs/lido-avatar_22.cjs.entry.js +96 -34
  3. package/dist/cjs/lido-player.cjs.js +1 -1
  4. package/dist/cjs/loader.cjs.js +1 -1
  5. package/dist/cjs/{utils-470fe410.js → utils-28faa755.js} +142 -108
  6. package/dist/collection/components/container/lido-container.js +62 -3
  7. package/dist/collection/components/flashCard/lido-flash-card.js +10 -1
  8. package/dist/collection/components/float/lido-float.js +1 -1
  9. package/dist/collection/components/home/lido-home.js +22 -12
  10. package/dist/collection/components/keyboard/lido-keyboard.js +2 -2
  11. package/dist/collection/components/mathMatrix/lido-math-matrix.js +1 -1
  12. package/dist/collection/components/position/lido-pos.js +1 -1
  13. package/dist/collection/components/random/lido-random.js +1 -1
  14. package/dist/collection/components/row/lido-row.js +1 -1
  15. package/dist/collection/components/scale/lido-balance.js +1 -1
  16. package/dist/collection/components/shape/lido-shape.js +2 -2
  17. package/dist/collection/components/slideFill/lido-slide-fill.js +1 -1
  18. package/dist/collection/components/text/lido-text.js +1 -1
  19. package/dist/collection/components/trace/lido-trace.js +18 -7
  20. package/dist/collection/components/wrap/lido-wrap.js +1 -1
  21. package/dist/collection/css/animation.css +17 -0
  22. package/dist/collection/css/index.css +1 -1
  23. package/dist/collection/stories/Templates/LetterPairing/LetterPairing.stories.js +3 -3
  24. package/dist/collection/stories/Templates/balancing/balancing.stories.js +1 -1
  25. package/dist/collection/stories/Templates/imageMatch/imageMatch.stories.js +79 -0
  26. package/dist/collection/stories/Templates/matchBox/matchBox2.stories.js +74 -44
  27. package/dist/collection/stories/Templates/matchingCard/matching-card.stories.js +4 -4
  28. package/dist/collection/stories/Templates/numberIdentification/numberIdentificationimageTotext.stories.js +91 -0
  29. package/dist/collection/stories/Templates/numberIdentification/numberIdentificationtextTotext.stories.js +84 -0
  30. package/dist/collection/stories/Templates/openwindow/openwindow.stories.js +0 -2
  31. package/dist/collection/stories/Templates/openwindow/openwindow2.stories.js +0 -2
  32. package/dist/collection/stories/Templates/palEgmaCalculateSum/palEgmaMultiOption.stories.js +106 -0
  33. package/dist/collection/stories/Templates/palEgmaCalculateSum/palEgmaSumTogether.stories.js +89 -0
  34. package/dist/collection/stories/Templates/palEgmaPatternMatching/palEgmaPatternMatching.stories.js +86 -0
  35. package/dist/collection/stories/Templates/palEgmaWordProblem/palEgmaWordProblem.stories.js +131 -0
  36. package/dist/collection/stories/Templates/palEgraInventedSpelling/pal_egra_invented_spelling_schema.stories.js +61 -0
  37. package/dist/collection/stories/Templates/palEgraMCQWithImage/palEgraMCQWithImage.stories.js +87 -0
  38. package/dist/collection/stories/Templates/palEgraOptionWithAudio/palEgraOptionWithAudio.stories.js +98 -0
  39. package/dist/collection/stories/Templates/palEgraStoryMaking/pal_egra_story_making.stories.js +72 -0
  40. package/dist/collection/stories/Templates/palEgraTemplate1/palEgraLetterIdentification.stories.js +61 -0
  41. package/dist/collection/stories/Templates/palEgra_OddOneOut/palEgra_oddOneOut.stories.js +60 -0
  42. package/dist/collection/stories/Templates/palEgra_arrange_pictures/palEgra_arrange_pictures.stories.js +78 -0
  43. package/dist/collection/stories/Templates/palEgra_build_word/palEgra_build_word.stories.js +78 -0
  44. package/dist/collection/stories/Templates/palEgra_word_formation/palEgra_WordFormation.stories.js +73 -0
  45. package/dist/collection/stories/Templates/palStorytale/palStorytale.stories.js +35 -0
  46. package/dist/collection/stories/Templates/pictureClues/pictureClues.stories.js +88 -0
  47. package/dist/collection/stories/Templates/pictureWordMatch/pictureWordMatch1.stories.js +88 -0
  48. package/dist/collection/stories/Templates/pictureWordMatch/pictureWordMatch2.stories.js +66 -0
  49. package/dist/collection/stories/Templates/picturemeaning/pictureMeaningCocos.stories.js +1 -1
  50. package/dist/collection/stories/Templates/quizMaths/quizMaths.stories.js +7 -7
  51. package/dist/collection/stories/Templates/rowBlocks/rowBlocks.stories.js +1 -1
  52. package/dist/collection/stories/Templates/sequenceBox/sequenceBox1.stories.js +2 -2
  53. package/dist/collection/stories/Templates/sequenceBox/sequenceBox2.stories.js +2 -2
  54. package/dist/collection/stories/Templates/substraction/substractionWithimg.stories.js +111 -0
  55. package/dist/collection/stories/Templates/substraction/substractionWithoutImg.stories.js +70 -0
  56. package/dist/collection/stories/Templates/total/total.stories.js +2 -0
  57. package/dist/collection/stories/Templates/wordBuilding/wordBuildingwithimg.stories.js +76 -0
  58. package/dist/collection/stories/Templates/wordBuilding/wordBuildingwithoutimg.stories.js +74 -0
  59. package/dist/collection/stories/Templates/writeSet/writeSet.stories.js +1 -1
  60. package/dist/collection/utils/constants.js +2 -1
  61. package/dist/collection/utils/utils.js +10 -4
  62. package/dist/collection/utils/utilsHandlers/clickHandler.js +2 -0
  63. package/dist/collection/utils/utilsHandlers/dragDropHandler.js +25 -21
  64. package/dist/collection/utils/utilsHandlers/highlightHandler.js +50 -2
  65. package/dist/collection/utils/utilsHandlers/lidoBalanceHandler.js +5 -4
  66. package/dist/components/index.js +1 -1
  67. package/dist/components/lido-avatar.js +1 -1
  68. package/dist/components/lido-balance.js +1 -1
  69. package/dist/components/lido-calculator.js +1 -1
  70. package/dist/components/lido-canvas.js +1 -1
  71. package/dist/components/lido-cell.js +1 -1
  72. package/dist/components/lido-col.js +1 -1
  73. package/dist/components/lido-container.js +1 -1
  74. package/dist/components/lido-flash-card.js +1 -1
  75. package/dist/components/lido-float.js +1 -1
  76. package/dist/components/lido-home.js +1 -1
  77. package/dist/components/lido-image.js +1 -1
  78. package/dist/components/lido-keyboard.js +1 -1
  79. package/dist/components/lido-math-matrix.js +1 -1
  80. package/dist/components/lido-pos.js +1 -1
  81. package/dist/components/lido-random.js +1 -1
  82. package/dist/components/lido-root.js +22 -23
  83. package/dist/components/lido-row.js +1 -1
  84. package/dist/components/lido-shape.js +1 -1
  85. package/dist/components/lido-slide-fill.js +1 -1
  86. package/dist/components/lido-text.js +1 -1
  87. package/dist/components/lido-trace.js +1 -1
  88. package/dist/components/lido-wrap.js +1 -1
  89. package/dist/components/{p-ee4759de.js → p-06cecca5.js} +2 -2
  90. package/dist/components/{p-17cdbc3d.js → p-16604098.js} +1 -1
  91. package/dist/components/{p-6953efe0.js → p-235091a1.js} +141 -109
  92. package/dist/components/{p-bc7835fc.js → p-32c89979.js} +18 -7
  93. package/dist/components/{p-822b692a.js → p-354f7b19.js} +2 -2
  94. package/dist/components/{p-73e3f0f4.js → p-37c86a94.js} +203 -1
  95. package/dist/components/{p-53a7d4cb.js → p-3acada8c.js} +1 -1
  96. package/dist/components/{p-984ef5d1.js → p-3acd9a2e.js} +2 -2
  97. package/dist/components/{p-6f451328.js → p-4d01394c.js} +1 -1
  98. package/dist/components/{p-c62da3ed.js → p-57400ebc.js} +1 -1
  99. package/dist/components/{p-cfde157c.js → p-5e7c6afa.js} +2 -2
  100. package/dist/components/{p-f36d02e9.js → p-74c270d2.js} +4 -4
  101. package/dist/components/{p-9eb8593c.js → p-8a32f7cb.js} +3 -3
  102. package/dist/components/{p-0fa0ada9.js → p-8c0667eb.js} +2 -2
  103. package/dist/components/{p-9c7f08c4.js → p-8f082c62.js} +11 -2
  104. package/dist/components/{p-8c526c86.js → p-93acfbb2.js} +2 -2
  105. package/dist/components/{p-97ddbda4.js → p-a182c9a2.js} +2 -2
  106. package/dist/components/{p-348f95ba.js → p-b151457d.js} +47 -6
  107. package/dist/components/{p-d0c4d5a7.js → p-b867548e.js} +2 -2
  108. package/dist/components/{p-6f91a337.js → p-c90d92db.js} +2 -2
  109. package/dist/components/{p-67d97edc.js → p-db2a05f5.js} +3 -3
  110. package/dist/components/{p-f729ff82.js → p-de45dcab.js} +41 -33
  111. package/dist/esm/index.js +1 -1
  112. package/dist/esm/lido-avatar_22.entry.js +96 -34
  113. package/dist/esm/lido-player.js +1 -1
  114. package/dist/esm/loader.js +1 -1
  115. package/dist/esm/{utils-d0f004f8.js → utils-2edeb213.js} +141 -109
  116. package/dist/lido-player/index.esm.js +1 -1
  117. package/dist/lido-player/lido-player.css +1 -1
  118. package/dist/lido-player/lido-player.esm.js +1 -1
  119. package/dist/lido-player/p-280e3d34.entry.js +1 -0
  120. package/dist/lido-player/{p-bde62361.js → p-add7f36e.js} +2 -2
  121. package/dist/types/components/container/lido-container.d.ts +15 -2
  122. package/dist/types/components/trace/lido-trace.d.ts +3 -3
  123. package/dist/types/components.d.ts +10 -2
  124. package/dist/types/stories/Templates/imageMatch/imageMatch.stories.d.ts +4 -0
  125. package/dist/types/stories/Templates/numberIdentification/numberIdentificationimageTotext.stories.d.ts +4 -0
  126. package/dist/types/stories/Templates/numberIdentification/numberIdentificationtextTotext.stories.d.ts +4 -0
  127. package/dist/types/stories/Templates/palEgmaCalculateSum/palEgmaMultiOption.stories.d.ts +11 -0
  128. package/dist/types/stories/Templates/palEgmaCalculateSum/palEgmaSumTogether.stories.d.ts +12 -0
  129. package/dist/types/stories/Templates/palEgmaPatternMatching/palEgmaPatternMatching.stories.d.ts +4 -0
  130. package/dist/types/stories/Templates/palEgmaWordProblem/palEgmaWordProblem.stories.d.ts +5 -0
  131. package/dist/types/stories/Templates/palEgraInventedSpelling/pal_egra_invented_spelling_schema.stories.d.ts +4 -0
  132. package/dist/types/stories/Templates/palEgraMCQWithImage/palEgraMCQWithImage.stories.d.ts +4 -0
  133. package/dist/types/stories/Templates/palEgraOptionWithAudio/palEgraOptionWithAudio.stories.d.ts +4 -0
  134. package/dist/types/stories/Templates/palEgraStoryMaking/pal_egra_story_making.stories.d.ts +4 -0
  135. package/dist/types/stories/Templates/palEgraTemplate1/palEgraLetterIdentification.stories.d.ts +4 -0
  136. package/dist/types/stories/Templates/palEgra_OddOneOut/palEgra_oddOneOut.stories.d.ts +4 -0
  137. package/dist/types/stories/Templates/palEgra_arrange_pictures/palEgra_arrange_pictures.stories.d.ts +4 -0
  138. package/dist/types/stories/Templates/palEgra_build_word/palEgra_build_word.stories.d.ts +4 -0
  139. package/dist/types/stories/Templates/palEgra_word_formation/palEgra_WordFormation.stories.d.ts +4 -0
  140. package/dist/types/stories/Templates/palStorytale/palStorytale.stories.d.ts +4 -0
  141. package/dist/types/stories/Templates/pictureClues/pictureClues.stories.d.ts +4 -0
  142. package/dist/types/stories/Templates/pictureWordMatch/pictureWordMatch1.stories.d.ts +4 -0
  143. package/dist/types/stories/Templates/pictureWordMatch/pictureWordMatch2.stories.d.ts +4 -0
  144. package/dist/types/stories/Templates/substraction/substractionWithimg.stories.d.ts +4 -0
  145. package/dist/types/stories/Templates/substraction/substractionWithoutImg.stories.d.ts +4 -0
  146. package/dist/types/stories/Templates/wordBuilding/wordBuildingwithimg.stories.d.ts +4 -0
  147. package/dist/types/stories/Templates/wordBuilding/wordBuildingwithoutimg.stories.d.ts +4 -0
  148. package/dist/types/utils/constants.d.ts +9 -1
  149. package/dist/types/utils/utils.d.ts +1 -0
  150. package/dist/types/utils/utilsHandlers/highlightHandler.d.ts +1 -0
  151. package/package.json +1 -1
  152. package/dist/components/p-0e645e5b.js +0 -204
  153. package/dist/lido-player/p-06248bc2.entry.js +0 -1
@@ -0,0 +1,74 @@
1
+ import { html } from "lit";
2
+ const meta = {
3
+ title: 'Templates/wordBuildingwithoutimg',
4
+ argTypes: {
5
+ option1: { control: 'text' },
6
+ option2: { control: 'text' },
7
+ option3: { control: 'text' },
8
+ option4: { control: 'text' },
9
+ option5: { control: 'text' },
10
+ isAllowOnlyCorrect: { control: 'boolean' },
11
+ letter1: { control: 'text' },
12
+ letter2: { control: 'text' },
13
+ img: { control: 'file' },
14
+ word: { control: 'text' },
15
+ answer: { control: 'text' },
16
+ },
17
+ };
18
+ export default meta;
19
+ export const wordBuildingwithoutimg = {
20
+ args: {
21
+ option1: "C",
22
+ option2: "W",
23
+ option3: "S",
24
+ option4: "P",
25
+ option5: "M",
26
+ isAllowOnlyCorrect: true,
27
+ word: "CAT",
28
+ letter1: "A",
29
+ letter2: "T",
30
+ answer: "C",
31
+ },
32
+ render: args => {
33
+ const xml = getContainerXml(args);
34
+ return html `<lido-home .xmlData="${xml}"></lido-home>`;
35
+ },
36
+ };
37
+ function getContainerXml(args) {
38
+ const { isAllowOnlyCorrect = true } = args;
39
+ return `<main>
40
+ <lido-container visible="true" id="lido-container" template-id="mcq" objective="${args.answer}" bg-image="https://aeakbcdznktpsbrfsgys.supabase.co/storage/v1/object/public/template-assets/WordBuilding/bgImage.png" onInCorrect="lido-avatar.avatarAnimate='Fail';this.sleep='2000';" onCorrect="lido-avatar.avatarAnimate='Success';data.speak='true';this.sleep='1200';data.z-index='100'; data.boxShadow='0 0 40px #FFC107';this.sleep='300'; this.sleep='400'; data.boxShadow='none';this.sleep='2000';" is-continue-on-correct="${isAllowOnlyCorrect}" is-allow-only-correct="true" onEntry="inst.speak='true';blank.z-index='12';">
41
+ <!-- Chimple Avatar -->
42
+ <lido-cell layout="pos" id="pos1" disable-edit="true" value="pos2" height="landscape. 373px,portrait.402px" width="landscape.304px,portrait.398px" x="landscape.0%, portrait.28%" y="landscape.51%, portrait.77%" aria-hidden="true" z="1" bg-color="transparent" visible="true" >
43
+ <lido-avatar id="lido-avatar" disable-edit="true" visible="true" height="100%" width="100%" src="https://aeakbcdznktpsbrfsgys.supabase.co/storage/v1/object/public/template-assets/temp2/chimplecharacter.riv" alt-text="{chimpleCharacterRive}">
44
+ </lido-avatar>
45
+
46
+
47
+ </lido-cell>
48
+ <lido-text visible="false" z-index="0" tab-index="19" audio="" id="inst" string="Choose the correct letter to form a word" ></lido-text>
49
+ <lido-text visible="false" z-index="1" height="114px" id="data" string="${args.word}" font-family="'Baloo Bhai 2'" font-color="black" font-size="146px" bg-color="transparent" y="179px" x="55px" onEntry="this.fontWeight='700';this.position='relative';" ></lido-text>
50
+ <!-- <lido-text visible="true" z-index="1" height="114px" id="data" string="${args.word}" font-family="'Baloo Bhai 2'" font-color="black" font-size="146px" bg-color="transparent" y="179px" x="55px" onEntry="this.fontWeight='700';this.position='relative';" ></lido-text>-->
51
+ <lido-cell visible="true" layout="col" height="84%" width="95%" bg-color="transparent" margin="5px -126px -107px 0px">
52
+ <lido-cell visible="true" id="xx" layout="row" height="300px" width="635px" bg-color="#FFF5BB" onEntry="this.align-items='center';this.justify-content='space-evenly';this.border='2px solid #FFB612';this.border-radius='16px';">
53
+ <lido-cell layout="row" id="blank" visible="true" z-index="2" height="200px" width="200px" onEntry="this.align-items='center';this.justify-content='center';">
54
+
55
+ <lido-text visible="true" string="_" font-family="'Baloo Bhai 2'" font-color="black" font-size="140px" bg-color="transparent" onEntry="this.fontWeight='700';" ></lido-text>
56
+ <lido-text visible="true" string="${args.letter1}" font-family="'Baloo Bhai 2'" font-color="black" font-size="140px" bg-color="transparent" onEntry="this.fontWeight='700';" ></lido-text>
57
+ <lido-text visible="true" string="${args.letter2}" font-family="'Baloo Bhai 2'" font-color="black" font-size="140px" bg-color="transparent" onEntry="this.fontWeight='700';" ></lido-text>
58
+ </lido-cell>
59
+
60
+ </lido-cell>
61
+ <lido-cell visible="true" height="40%" width="79%" layout="row" >
62
+ <lido-text visible="true" type="click" value="${args.option1}" id="option1" tab-index="8" bg-color="#FFAC4C" height="212.4px" width="210px" string="${args.option1}" font-family="'Baloo Bhai 2'" font-color="black" font-size="140px" onEntry="this.fontWeight='700';this.border-radius='16px';"></lido-text>
63
+ <lido-text visible="true" value="${args.option2}" type="click" id="option2" tab-index="9" bg-color="#FFAC4C" height="212.4px" width="210px" string="${args.option2}" font-family="'Baloo Bhai 2'" font-color="black" font-size="140px" onEntry="this.fontWeight='700';this.border-radius='16px';"></lido-text>
64
+ <lido-text visible="true" value="${args.option3}" type="click" id="option3" tab-index="10" bg-color="#FFAC4C" height="212.4px" width="210px" string="${args.option3}" font-family="'Baloo Bhai 2'" font-color="black" font-size="140px" onEntry="this.fontWeight='700';this.border-radius='16px';"></lido-text>
65
+ <lido-text visible="true" value="${args.option4}" type="click" id="option3" tab-index="10" bg-color="#FFAC4C" height="212.4px" width="210px" string="${args.option4}" font-family="'Baloo Bhai 2'" font-color="black" font-size="140px" onEntry="this.fontWeight='700';this.border-radius='16px';"></lido-text>
66
+ <lido-text visible="true" value="${args.option5}" type="click" id="option3" tab-index="10" bg-color="#FFAC4C" height="212.4px" width="210px" string="${args.option5}" font-family="'Baloo Bhai 2'" font-color="black" font-size="140px" onEntry="this.fontWeight='700';this.border-radius='16px';"></lido-text>
67
+
68
+
69
+ </lido-cell>
70
+
71
+ </lido-cell>
72
+ </lido-container>
73
+ </main>`;
74
+ }
@@ -32,7 +32,7 @@ function getContainerXml(args) {
32
32
  `;
33
33
  }).join('');
34
34
  return `<main>
35
- <lido-container visible="true" show-next-button="true" dropAttr="math-matrix" appendToDropOnCompletion="true" equationCheck="$#mat1,==,$#number" objective="" is-allow-only-correct="${isAllowOnlyCorrect}" bg-color="transparent" bg-image="https://aeakbcdznktpsbrfsgys.supabase.co/storage/v1/object/public/template-assets/background-images/Write%20Set.png" onInCorrect="lido-avatar.avatarAnimate='Fail'; this.sleep='2000';" onCorrect="lido-avatar.avatarAnimate='Success'; number.speak='true'; this.sleep='2000';" is-continue-on-correct="${isContinueOnCorrect}">
35
+ <lido-container visible="true" show-next-button="false" dropAttr="math-matrix" appendToDropOnCompletion="true" equationCheck="$#mat1,==,$#number" objective="" is-allow-only-correct="${isAllowOnlyCorrect}" bg-color="transparent" bg-image="https://aeakbcdznktpsbrfsgys.supabase.co/storage/v1/object/public/template-assets/background-images/Write%20Set.png" onInCorrect="lido-avatar.avatarAnimate='Fail'; this.sleep='2000';" onCorrect="lido-avatar.avatarAnimate='Success'; number.speak='true'; this.sleep='2000';" is-continue-on-correct="${isContinueOnCorrect}">
36
36
 
37
37
  <!-- Audio -->
38
38
  <lido-text visible="false" id="audio123" onEntry="this.display='none'; this.speak='true';" string="Fill the matrix according to the number given in the box."></lido-text>
@@ -19,6 +19,7 @@ export const LidoContainer = 'lido-container';
19
19
  export const LangChangeEvent = 'languageChanged';
20
20
  export const LIDO_COMMON_AUDIO_PATH = '__LIDO_COMMON_AUDIO_PATH__';
21
21
  export const LIDO_COMMON_AUDIO_READY_EVENT = 'lidoCommonAudioPathReady';
22
+ export const TemplateID = 'template-id';
22
23
  export var TraceMode;
23
24
  (function (TraceMode) {
24
25
  TraceMode["NoFlow"] = "noFlow";
@@ -50,5 +51,5 @@ export var DropAction;
50
51
  export const exitUrl = 'https://aeakbcdznktpsbrfsgys.supabase.co/storage/v1/object/public/template-assets/Navbar-buttons/Close.svg';
51
52
  export const prevUrl = 'https://aeakbcdznktpsbrfsgys.supabase.co/storage/v1/object/public/template-assets/Navbar-buttons/Previous.svg';
52
53
  export const nextUrl = 'https://aeakbcdznktpsbrfsgys.supabase.co/storage/v1/object/public/template-assets/Navbar-buttons/Next.svg';
53
- export const speakUrl = 'https://aeakbcdznktpsbrfsgys.supabase.co/storage/v1/object/public/template-assets/Navbar-buttons/Audio%20icon.svg';
54
+ export const speakUrl = 'https://aeakbcdznktpsbrfsgys.supabase.co/storage/v1/object/public/template-assets/Navbar-buttons/audio.png';
54
55
  export const fingerUrl = 'https://aeakbcdznktpsbrfsgys.supabase.co/storage/v1/object/public/template-assets/trace/Tracing-hand.svg';
@@ -10,7 +10,7 @@ import { enableDraggingWithScaling, enableOptionArea, getElementScale, handleDro
10
10
  import { addClickListenerForClickType, onTouchListenerForOnTouch } from "./utilsHandlers/clickHandler";
11
11
  import { evaluate, isArray } from "mathjs";
12
12
  import { fillSlideHandle } from "./utilsHandlers/floatHandler";
13
- import { stopHighlightForSpeakingElement } from "./utilsHandlers/highlightHandler";
13
+ import { highlightElement, stopHighlightForSpeakingElement } from "./utilsHandlers/highlightHandler";
14
14
  import { handleSolvedEquationSubmissionAndScoreUpdate } from "./utilsHandlers/lidoCalculatorHandler";
15
15
  import { handlingMatrix } from "./utilsHandlers/matrixHandler";
16
16
  import { balanceResult } from "./utilsHandlers/lidoBalanceHandler";
@@ -105,7 +105,7 @@ export const initEventsForElement = async (element, type) => {
105
105
  export const executeActions = async (actionsString, thisElement, element) => {
106
106
  var _a, _b, _c, _d, _e, _f, _g;
107
107
  const actions = parseActions(actionsString);
108
- body.style.pointerEvents = 'none';
108
+ // body.style.pointerEvents = 'none';
109
109
  for (let i = 0; i < actions.length; i++) {
110
110
  const action = actions[i];
111
111
  const queriedElement = document.querySelector(action.actor);
@@ -549,12 +549,16 @@ export const countPatternWords = (pattern) => {
549
549
  }
550
550
  return wordCount;
551
551
  };
552
+ export let countOfMistakes = 0;
552
553
  export const storingEachActivityScore = (flag) => {
553
554
  if (flag) {
554
555
  gameScore.rightMoves += 1;
556
+ countOfMistakes = 0;
557
+ highlightElement();
555
558
  }
556
559
  else {
557
560
  gameScore.wrongMoves += 1;
561
+ countOfMistakes += 1;
558
562
  }
559
563
  console.log('Right Moves : ', gameScore.rightMoves);
560
564
  console.log('Wrong Moves : ', gameScore.wrongMoves);
@@ -601,7 +605,7 @@ export async function onActivityComplete(dragElement, dropElement) {
601
605
  if (storedTabIndexes.includes(JSON.parse(otherElement.getAttribute('tab-index')))) {
602
606
  if (!(((_a = otherElement.getAttribute('dropAttr')) === null || _a === void 0 ? void 0 : _a.toLowerCase()) === DropMode.Diagonal)) {
603
607
  if (otherElement.tagName.toLowerCase() === 'lido-text') {
604
- otherElement.style.backgroundColor = 'transparent'; // Reset background color**
608
+ // otherElement.style.backgroundColor = 'transparent'; // Reset background color**
605
609
  }
606
610
  if (otherElement.tagName.toLowerCase() === 'lido-image') {
607
611
  otherElement.style.opacity = '0';
@@ -611,7 +615,7 @@ export async function onActivityComplete(dragElement, dropElement) {
611
615
  }
612
616
  else {
613
617
  if (otherElement.tagName.toLowerCase() === 'lido-text') {
614
- otherElement.style.backgroundColor = 'transparent'; // Reset background color**********
618
+ // otherElement.style.backgroundColor = 'transparent'; // Reset background color**********
615
619
  }
616
620
  if (otherElement.tagName.toLowerCase() === 'lido-image') {
617
621
  otherElement.style.opacity = '1';
@@ -738,8 +742,10 @@ export const validateObjectiveStatus = async () => {
738
742
  }
739
743
  else {
740
744
  const isContinueOnCorrect = container.getAttribute('is-continue-on-correct') === 'true';
745
+ const onCorrect = container.getAttribute('onCorrect');
741
746
  if (!isContinueOnCorrect) {
742
747
  await calculateScore();
748
+ await executeActions(onCorrect, container);
743
749
  triggerNextContainer();
744
750
  }
745
751
  else {
@@ -4,6 +4,7 @@ import { LidoContainer, SelectedValuesKey } from "../constants";
4
4
  import { dispatchClickEvent } from "../customEvents";
5
5
  import tinycolor from "tinycolor2";
6
6
  import { setDraggingDisabled } from "./dragDropHandler";
7
+ import { highlightElement } from "./highlightHandler";
7
8
  export function onTouchListenerForOnTouch(element) {
8
9
  if (!element)
9
10
  return;
@@ -104,6 +105,7 @@ export function addClickListenerForClickType(element) {
104
105
  if (!isInsideCalculator) {
105
106
  storingEachActivityScore(isCorrect);
106
107
  }
108
+ highlightElement();
107
109
  handleShowCheck();
108
110
  return;
109
111
  }
@@ -3,7 +3,7 @@ import { updateBalanceOnDrop } from "./lidoBalanceHandler";
3
3
  import { AudioPlayer } from "../audioPlayer";
4
4
  import { DropLength, SelectedValuesKey, DropMode, DropToAttr, DropTimeAttr, LidoContainer, DropAction, } from "../constants";
5
5
  import { dispatchElementDropEvent } from "../customEvents";
6
- import { removeHighlight } from "./highlightHandler";
6
+ import { highlightElement, removeHighlight } from "./highlightHandler";
7
7
  import { dragDropAnimation } from "./animationHandler";
8
8
  export function buildDropHasDragFromDOM() {
9
9
  const dropHasDrag = {};
@@ -218,8 +218,8 @@ export function enableDraggingWithScaling(element) {
218
218
  if (storedTabIndexes.includes(JSON.parse(otherElement.getAttribute('tab-index')))) {
219
219
  if (!(((_a = element.getAttribute('dropAttr')) === null || _a === void 0 ? void 0 : _a.toLowerCase()) === DropMode.Diagonal)) {
220
220
  if (otherElement.tagName.toLowerCase() === 'lido-text') {
221
- otherElement.style.border = ''; // Reset border
222
- otherElement.style.backgroundColor = 'transparent'; // Reset background color
221
+ // otherElement.style.border = ''; // Reset border
222
+ // otherElement.style.backgroundColor = 'transparent'; // Reset background color
223
223
  }
224
224
  if (otherElement.tagName.toLowerCase() === 'lido-image') {
225
225
  otherElement.style.opacity = '0';
@@ -228,8 +228,8 @@ export function enableDraggingWithScaling(element) {
228
228
  }
229
229
  else {
230
230
  if (otherElement.tagName.toLowerCase() === 'lido-text') {
231
- otherElement.style.border = ''; // Reset border
232
- otherElement.style.backgroundColor = ''; // Reset background color
231
+ // otherElement.style.border = ''; // Reset border
232
+ // otherElement.style.backgroundColor = ''; // Reset background color
233
233
  }
234
234
  if (otherElement.tagName.toLowerCase() === 'lido-image' || 'lido-cell') {
235
235
  otherElement.style.opacity = '1';
@@ -239,8 +239,8 @@ export function enableDraggingWithScaling(element) {
239
239
  // Apply styles only to the most overlapped element
240
240
  if (mostOverlappedElement) {
241
241
  if (mostOverlappedElement.tagName.toLowerCase() === 'lido-text') {
242
- mostOverlappedElement.style.border = '2px dashed #ff0000'; // Red dashed border
243
- mostOverlappedElement.style.backgroundColor = 'rgba(255, 0, 0, 0.1)'; // Light red background
242
+ // mostOverlappedElement.style.border = '2px dashed #ff0000'; // Red dashed border
243
+ // mostOverlappedElement.style.backgroundColor = 'rgba(255, 0, 0, 0.1)'; // Light red background
244
244
  }
245
245
  else {
246
246
  if (!document.getElementById('unitsDrop') || !document.getElementById('tensDrop') || !document.getElementById('hundredsDrop')) {
@@ -278,8 +278,8 @@ export function enableDraggingWithScaling(element) {
278
278
  if (storedTabIndexes.includes(JSON.parse(otherElement.getAttribute('tab-index')))) {
279
279
  if (!(((_a = element.getAttribute('dropAttr')) === null || _a === void 0 ? void 0 : _a.toLowerCase()) === DropMode.Diagonal)) {
280
280
  if (otherElement.tagName.toLowerCase() === 'lido-text') {
281
- otherElement.style.border = ''; // Reset border
282
- otherElement.style.backgroundColor = 'transparent'; // Reset background color
281
+ // otherElement.style.border = ''; // Reset border
282
+ // otherElement.style.backgroundColor = 'transparent'; // Reset background color
283
283
  }
284
284
  else if (otherElement.tagName.toLowerCase() === 'lido-image') {
285
285
  otherElement.style.opacity = '0';
@@ -291,8 +291,8 @@ export function enableDraggingWithScaling(element) {
291
291
  }
292
292
  else {
293
293
  if (otherElement.tagName.toLowerCase() === 'lido-text') {
294
- otherElement.style.border = ''; // Reset border
295
- otherElement.style.backgroundColor = ''; // Reset background color
294
+ // otherElement.style.border = ''; // Reset border
295
+ // otherElement.style.backgroundColor = ''; // Reset background color
296
296
  }
297
297
  if (otherElement.tagName.toLowerCase() === 'lido-image' || 'lido-cell') {
298
298
  otherElement.style.opacity = '1';
@@ -441,6 +441,7 @@ export function handleResetDragElement(dragElement, dropElement, dropHasDrag, se
441
441
  let prevDropItem = Object.values(dropHasDrag).find(item => document.getElementById(item.drop) === currentDrop);
442
442
  if (prevDropItem) {
443
443
  prevDropItem.isFull = false;
444
+ highlightElement();
444
445
  // container.setAttribute(DropHasDrag, JSON.stringify(dropHasDrag));
445
446
  const dropEl = document.getElementById(prevDropItem.drop);
446
447
  if (dropEl) {
@@ -473,7 +474,7 @@ export function handleResetDragElement(dragElement, dropElement, dropHasDrag, se
473
474
  if (storedTabIndexes.includes(JSON.parse(otherElement.getAttribute('tab-index')))) {
474
475
  if (!(((_a = otherElement.getAttribute('dropAttr')) === null || _a === void 0 ? void 0 : _a.toLowerCase()) === DropMode.Diagonal)) {
475
476
  if (otherElement.tagName.toLowerCase() === 'lido-text') {
476
- otherElement.style.backgroundColor = 'transparent'; // Reset background color
477
+ // otherElement.style.backgroundColor = 'transparent'; // Reset background color
477
478
  }
478
479
  if (otherElement.tagName.toLowerCase() === 'lido-image') {
479
480
  otherElement.style.opacity = '0';
@@ -483,7 +484,7 @@ export function handleResetDragElement(dragElement, dropElement, dropHasDrag, se
483
484
  }
484
485
  else {
485
486
  if (otherElement.tagName.toLowerCase() === 'lido-text') {
486
- otherElement.style.backgroundColor = 'transparent'; // Reset background color
487
+ // otherElement.style.backgroundColor = 'transparent'; // Reset background color
487
488
  }
488
489
  if (otherElement.tagName.toLowerCase() === 'lido-image') {
489
490
  otherElement.style.opacity = '1';
@@ -492,6 +493,7 @@ export function handleResetDragElement(dragElement, dropElement, dropHasDrag, se
492
493
  }
493
494
  });
494
495
  handleShowCheck();
496
+ highlightElement();
495
497
  }
496
498
  export async function onElementDropComplete(dragElement, dropElement) {
497
499
  var _a, _b, _c, _d, _e, _f, _g, _h;
@@ -500,7 +502,6 @@ export async function onElementDropComplete(dragElement, dropElement) {
500
502
  const dragSelectedData = JSON.stringify(buildDragSelectedMapFromDOM());
501
503
  const dropSelectedDataobject = buildDragSelectedMapFromDOM();
502
504
  const dropSelectedData = JSON.stringify(dropSelectedDataobject);
503
- console.log("dragggedddd elem", { value: dragElement.getAttribute("value") });
504
505
  let dropHasDrag = buildDropHasDragFromDOM();
505
506
  if (!dropElement) {
506
507
  handleResetDragElement(dragElement, dropElement, dropHasDrag, selectedValueData, dragSelectedData, dropSelectedData);
@@ -606,6 +607,7 @@ export async function onElementDropComplete(dragElement, dropElement) {
606
607
  if (isAllowOnlyOneDrop && isisFull) {
607
608
  isisFull.isFull = true;
608
609
  dropElement.setAttribute('is-full', 'true');
610
+ highlightElement();
609
611
  }
610
612
  else {
611
613
  console.warn('No matching drop item found for', dropElement);
@@ -650,8 +652,8 @@ export async function onElementDropComplete(dragElement, dropElement) {
650
652
  if (storedTabIndexes.includes(JSON.parse(otherElement.getAttribute('tab-index')))) {
651
653
  if (!(((_a = otherElement.getAttribute('dropAttr')) === null || _a === void 0 ? void 0 : _a.toLowerCase()) === DropMode.Diagonal)) {
652
654
  if (otherElement.tagName.toLowerCase() === 'lido-text') {
653
- otherElement.style.border = ''; // Reset border
654
- otherElement.style.backgroundColor = 'transparent'; // Reset background color
655
+ // otherElement.style.border = ''; // Reset border
656
+ // otherElement.style.backgroundColor = 'transparent'; // Reset background color
655
657
  }
656
658
  if (otherElement.tagName.toLowerCase() === 'lido-image') {
657
659
  otherElement.style.opacity = '0';
@@ -660,8 +662,8 @@ export async function onElementDropComplete(dragElement, dropElement) {
660
662
  }
661
663
  else {
662
664
  if (otherElement.tagName.toLowerCase() === 'lido-text') {
663
- otherElement.style.border = ''; // Reset border
664
- otherElement.style.backgroundColor = ''; // Reset background color
665
+ // otherElement.style.border = ''; // Reset border
666
+ // otherElement.style.backgroundColor = ''; // Reset background color
665
667
  }
666
668
  if (otherElement.tagName.toLowerCase() === 'lido-image' || 'lido-cell') {
667
669
  otherElement.style.opacity = '1';
@@ -721,6 +723,7 @@ export async function onElementDropComplete(dragElement, dropElement) {
721
723
  dragElement.style.opacity = '1';
722
724
  const allDropElements = document.querySelectorAll('.drop-element');
723
725
  allDropElements.forEach(el => updateDropBorder(el));
726
+ highlightElement();
724
727
  await onActivityComplete(dragElement, dropElement);
725
728
  }
726
729
  export function updateDropBorder(element) {
@@ -738,6 +741,7 @@ export function updateDropBorder(element) {
738
741
  if (dragSelectedElements.length > 0) {
739
742
  element.classList.add('filled');
740
743
  element.classList.remove('empty');
744
+ element.classList.remove('highlight-element');
741
745
  }
742
746
  else {
743
747
  if (!element.classList.contains('math-matrix')) {
@@ -786,10 +790,10 @@ export async function onClickDropOrDragElement(element, type) {
786
790
  `;
787
791
  document.head.appendChild(style);
788
792
  }
789
- element === null || element === void 0 ? void 0 : element.classList.add('highlight');
793
+ element === null || element === void 0 ? void 0 : element.classList.add('highlight-element');
790
794
  element.ariaPressed = 'true';
791
- const selectedDropElement = type === 'drop' ? element : document.querySelector("[type='drop'].highlight");
792
- const selectedDragElement = type === 'drag' ? element : document.querySelector("[type='drag'].highlight");
795
+ const selectedDropElement = type === 'drop' ? element : document.querySelector("[type='drop'].highlight-element");
796
+ const selectedDragElement = type === 'drag' ? element : document.querySelector("[type='drag'].highlight-element");
793
797
  if (!selectedDropElement) {
794
798
  onClickDragElement(element);
795
799
  }
@@ -1,4 +1,6 @@
1
- import { executeActions } from "../utils";
1
+ import { LidoContainer } from "../constants";
2
+ import { countOfMistakes, executeActions } from "../utils";
3
+ import { buildDropHasDragFromDOM } from "./dragDropHandler";
2
4
  export function showWrongAnswerAnimation(elements) {
3
5
  const styleId = '#wrong-answer-animation-style';
4
6
  executeActions("tryAgain.speak='true'", document.querySelector('#tryAgain'));
@@ -45,7 +47,7 @@ export function showWrongAnswerAnimation(elements) {
45
47
  });
46
48
  }
47
49
  export function removeHighlight(element) {
48
- element.classList.remove('highlight');
50
+ element.classList.remove('highlight-element');
49
51
  element.ariaPressed = 'false';
50
52
  }
51
53
  // Function to highlight the speaking element
@@ -101,3 +103,49 @@ export function stopHighlightForSpeakingElement(element) {
101
103
  // element.style.boxShadow = '';
102
104
  // element.style.border = '';
103
105
  }
106
+ export function highlightElement() {
107
+ const container = document.querySelector(LidoContainer);
108
+ if (!container)
109
+ return;
110
+ const dropElements = buildDropHasDragFromDOM();
111
+ let firstFalse = Object.values(dropElements).find(item => !item.isFull);
112
+ if (firstFalse) {
113
+ const dropEls = container.querySelectorAll(`[type="drop"]`);
114
+ dropEls.forEach(dropEl => {
115
+ dropEl.classList.remove('highlight-element');
116
+ });
117
+ const dropEle = container.querySelector(`#${firstFalse.drop}`);
118
+ if (dropEle) {
119
+ dropEle.classList.add('highlight-element');
120
+ }
121
+ // Highlight corresponding drag elements if mistakes are more than 2
122
+ const dragElements = container.querySelectorAll(`[type="drag"]`);
123
+ if (countOfMistakes > 2 && container.getAttribute("is-continue-on-correct") === "true") {
124
+ dragElements.forEach(dragEl => {
125
+ dragEl.classList.remove('highlight-element');
126
+ if (dragEl.getAttribute('value') === dropEle.getAttribute('value')) {
127
+ dragEl.classList.add('highlight-element');
128
+ dragEl.classList.remove('drag-element');
129
+ }
130
+ });
131
+ }
132
+ else {
133
+ dragElements.forEach(dragEl => {
134
+ dragEl.classList.remove('highlight-element');
135
+ dragEl.classList.add('drag-element');
136
+ });
137
+ }
138
+ }
139
+ else {
140
+ if (countOfMistakes <= 2 || container.getAttribute("is-continue-on-correct") === "false")
141
+ return;
142
+ const clickTemplate = container.querySelectorAll("[type='click']");
143
+ clickTemplate.forEach(clickEl => {
144
+ if (clickEl.getAttribute('value') === container.getAttribute('objective')) {
145
+ if (!clickEl.classList.contains('highlight-element')) {
146
+ clickEl.classList.add('highlight-element');
147
+ }
148
+ }
149
+ });
150
+ }
151
+ }
@@ -14,7 +14,7 @@ export function updateBalanceOnDrop(dragElement, dropElement) {
14
14
  }
15
15
  function calculateValue(elements, operation) {
16
16
  if (elements.length === 0)
17
- return null;
17
+ return 0;
18
18
  if (operation === "count") {
19
19
  return elements.length;
20
20
  }
@@ -46,17 +46,18 @@ function calculateValue(elements, operation) {
46
46
  }
47
47
  }
48
48
  export function balanceResult(container, objectiveString) {
49
+ var _a, _b, _c, _d, _e, _f;
49
50
  const additionalCheck = container.getAttribute('equationCheck');
50
51
  if (!additionalCheck)
51
52
  return false;
52
53
  const balanceEl = document.querySelector('lido-balance');
53
54
  if (!balanceEl)
54
55
  return false;
55
- const leftVal = balanceEl.leftVal;
56
- const rightVal = balanceEl.rightVal;
56
+ const leftVal = Number((_c = (_a = balanceEl.leftVal) !== null && _a !== void 0 ? _a : (_b = balanceEl.dataset) === null || _b === void 0 ? void 0 : _b.leftVal) !== null && _c !== void 0 ? _c : 0);
57
+ const rightVal = Number((_f = (_d = balanceEl.rightVal) !== null && _d !== void 0 ? _d : (_e = balanceEl.dataset) === null || _e === void 0 ? void 0 : _e.rightVal) !== null && _f !== void 0 ? _f : 0);
57
58
  const hasLeft = !isNaN(leftVal);
58
59
  const hasRight = !isNaN(rightVal);
59
- if (leftVal == null || rightVal == null) {
60
+ if (!hasLeft || !hasRight) {
60
61
  return false;
61
62
  }
62
63
  const symbol = leftVal > rightVal ? '>' : leftVal < rightVal ? '<' : '=';
@@ -1 +1 @@
1
- export { f as format, g as getAssetPath, s as setAssetPath, a as setNonce, b as setPlatformOptions } from './p-6953efe0.js';
1
+ export { f as format, g as getAssetPath, s as setAssetPath, a as setNonce, b as setPlatformOptions } from './p-235091a1.js';
@@ -1,4 +1,4 @@
1
- import { L as LidoAvatar$1, d as defineCustomElement$1 } from './p-6f451328.js';
1
+ import { L as LidoAvatar$1, d as defineCustomElement$1 } from './p-4d01394c.js';
2
2
 
3
3
  const LidoAvatar = LidoAvatar$1;
4
4
  const defineCustomElement = defineCustomElement$1;
@@ -1,4 +1,4 @@
1
- import { L as LidoBalance$1, d as defineCustomElement$1 } from './p-ee4759de.js';
1
+ import { L as LidoBalance$1, d as defineCustomElement$1 } from './p-06cecca5.js';
2
2
 
3
3
  const LidoBalance = LidoBalance$1;
4
4
  const defineCustomElement = defineCustomElement$1;
@@ -1,4 +1,4 @@
1
- import { L as LidoCalculator$1, d as defineCustomElement$1 } from './p-67d97edc.js';
1
+ import { L as LidoCalculator$1, d as defineCustomElement$1 } from './p-db2a05f5.js';
2
2
 
3
3
  const LidoCalculator = LidoCalculator$1;
4
4
  const defineCustomElement = defineCustomElement$1;
@@ -1,4 +1,4 @@
1
- import { L as LidoCanvas$1, d as defineCustomElement$1 } from './p-822b692a.js';
1
+ import { L as LidoCanvas$1, d as defineCustomElement$1 } from './p-354f7b19.js';
2
2
 
3
3
  const LidoCanvas = LidoCanvas$1;
4
4
  const defineCustomElement = defineCustomElement$1;
@@ -1,4 +1,4 @@
1
- import { L as LidoCell$1, d as defineCustomElement$1 } from './p-53a7d4cb.js';
1
+ import { L as LidoCell$1, d as defineCustomElement$1 } from './p-3acada8c.js';
2
2
 
3
3
  const LidoCell = LidoCell$1;
4
4
  const defineCustomElement = defineCustomElement$1;
@@ -1,4 +1,4 @@
1
- import { L as LidoCol$1, d as defineCustomElement$1 } from './p-c62da3ed.js';
1
+ import { L as LidoCol$1, d as defineCustomElement$1 } from './p-57400ebc.js';
2
2
 
3
3
  const LidoCol = LidoCol$1;
4
4
  const defineCustomElement = defineCustomElement$1;
@@ -1,4 +1,4 @@
1
- import { L as LidoContainer$1, d as defineCustomElement$1 } from './p-348f95ba.js';
1
+ import { L as LidoContainer$1, d as defineCustomElement$1 } from './p-b151457d.js';
2
2
 
3
3
  const LidoContainer = LidoContainer$1;
4
4
  const defineCustomElement = defineCustomElement$1;
@@ -1,4 +1,4 @@
1
- import { L as LidoFlash, d as defineCustomElement$1 } from './p-9c7f08c4.js';
1
+ import { L as LidoFlash, d as defineCustomElement$1 } from './p-8f082c62.js';
2
2
 
3
3
  const LidoFlashCard = LidoFlash;
4
4
  const defineCustomElement = defineCustomElement$1;
@@ -1,4 +1,4 @@
1
- import { L as LidoFloat$1, d as defineCustomElement$1 } from './p-d0c4d5a7.js';
1
+ import { L as LidoFloat$1, d as defineCustomElement$1 } from './p-b867548e.js';
2
2
 
3
3
  const LidoFloat = LidoFloat$1;
4
4
  const defineCustomElement = defineCustomElement$1;
@@ -1,4 +1,4 @@
1
- import { L as LidoHome$1, d as defineCustomElement$1 } from './p-f729ff82.js';
1
+ import { L as LidoHome$1, d as defineCustomElement$1 } from './p-de45dcab.js';
2
2
 
3
3
  const LidoHome = LidoHome$1;
4
4
  const defineCustomElement = defineCustomElement$1;
@@ -1,4 +1,4 @@
1
- import { L as LidoImage$1, d as defineCustomElement$1 } from './p-17cdbc3d.js';
1
+ import { L as LidoImage$1, d as defineCustomElement$1 } from './p-16604098.js';
2
2
 
3
3
  const LidoImage = LidoImage$1;
4
4
  const defineCustomElement = defineCustomElement$1;
@@ -1,4 +1,4 @@
1
- import { L as LidoKeyboard$1, d as defineCustomElement$1 } from './p-f36d02e9.js';
1
+ import { L as LidoKeyboard$1, d as defineCustomElement$1 } from './p-74c270d2.js';
2
2
 
3
3
  const LidoKeyboard = LidoKeyboard$1;
4
4
  const defineCustomElement = defineCustomElement$1;
@@ -1,4 +1,4 @@
1
- import { L as LidoMathMatrix$1, d as defineCustomElement$1 } from './p-8c526c86.js';
1
+ import { L as LidoMathMatrix$1, d as defineCustomElement$1 } from './p-93acfbb2.js';
2
2
 
3
3
  const LidoMathMatrix = LidoMathMatrix$1;
4
4
  const defineCustomElement = defineCustomElement$1;
@@ -1,4 +1,4 @@
1
- import { L as LidoPos$1, d as defineCustomElement$1 } from './p-6f91a337.js';
1
+ import { L as LidoPos$1, d as defineCustomElement$1 } from './p-c90d92db.js';
2
2
 
3
3
  const LidoPos = LidoPos$1;
4
4
  const defineCustomElement = defineCustomElement$1;
@@ -1,4 +1,4 @@
1
- import { L as LidoRandom$1, d as defineCustomElement$1 } from './p-0fa0ada9.js';
1
+ import { L as LidoRandom$1, d as defineCustomElement$1 } from './p-8c0667eb.js';
2
2
 
3
3
  const LidoRandom = LidoRandom$1;
4
4
  const defineCustomElement = defineCustomElement$1;
@@ -1,26 +1,25 @@
1
- import { p as proxyCustomElement, H, g as getAssetPath, h } from './p-6953efe0.js';
2
- import { i as instance } from './p-73e3f0f4.js';
3
- import { d as defineCustomElement$m } from './p-6f451328.js';
4
- import { d as defineCustomElement$l } from './p-ee4759de.js';
5
- import { d as defineCustomElement$k } from './p-67d97edc.js';
6
- import { d as defineCustomElement$j } from './p-822b692a.js';
7
- import { d as defineCustomElement$i } from './p-53a7d4cb.js';
8
- import { d as defineCustomElement$h } from './p-c62da3ed.js';
9
- import { d as defineCustomElement$g } from './p-348f95ba.js';
10
- import { d as defineCustomElement$f } from './p-9c7f08c4.js';
11
- import { d as defineCustomElement$e } from './p-d0c4d5a7.js';
12
- import { d as defineCustomElement$d } from './p-f729ff82.js';
13
- import { d as defineCustomElement$c } from './p-17cdbc3d.js';
14
- import { d as defineCustomElement$b } from './p-f36d02e9.js';
15
- import { d as defineCustomElement$a } from './p-8c526c86.js';
16
- import { d as defineCustomElement$9 } from './p-6f91a337.js';
17
- import { d as defineCustomElement$8 } from './p-0fa0ada9.js';
18
- import { d as defineCustomElement$7 } from './p-984ef5d1.js';
19
- import { d as defineCustomElement$6 } from './p-9eb8593c.js';
20
- import { d as defineCustomElement$5 } from './p-97ddbda4.js';
21
- import { d as defineCustomElement$4 } from './p-0e645e5b.js';
22
- import { d as defineCustomElement$3 } from './p-bc7835fc.js';
23
- import { d as defineCustomElement$2 } from './p-cfde157c.js';
1
+ import { p as proxyCustomElement, H, g as getAssetPath, h } from './p-235091a1.js';
2
+ import { d as defineCustomElement$4, i as instance } from './p-37c86a94.js';
3
+ import { d as defineCustomElement$m } from './p-4d01394c.js';
4
+ import { d as defineCustomElement$l } from './p-06cecca5.js';
5
+ import { d as defineCustomElement$k } from './p-db2a05f5.js';
6
+ import { d as defineCustomElement$j } from './p-354f7b19.js';
7
+ import { d as defineCustomElement$i } from './p-3acada8c.js';
8
+ import { d as defineCustomElement$h } from './p-57400ebc.js';
9
+ import { d as defineCustomElement$g } from './p-b151457d.js';
10
+ import { d as defineCustomElement$f } from './p-8f082c62.js';
11
+ import { d as defineCustomElement$e } from './p-b867548e.js';
12
+ import { d as defineCustomElement$d } from './p-de45dcab.js';
13
+ import { d as defineCustomElement$c } from './p-16604098.js';
14
+ import { d as defineCustomElement$b } from './p-74c270d2.js';
15
+ import { d as defineCustomElement$a } from './p-93acfbb2.js';
16
+ import { d as defineCustomElement$9 } from './p-c90d92db.js';
17
+ import { d as defineCustomElement$8 } from './p-8c0667eb.js';
18
+ import { d as defineCustomElement$7 } from './p-3acd9a2e.js';
19
+ import { d as defineCustomElement$6 } from './p-8a32f7cb.js';
20
+ import { d as defineCustomElement$5 } from './p-a182c9a2.js';
21
+ import { d as defineCustomElement$3 } from './p-32c89979.js';
22
+ import { d as defineCustomElement$2 } from './p-5e7c6afa.js';
24
23
 
25
24
  const LidoRoot$1 = /*@__PURE__*/ proxyCustomElement(class LidoRoot extends H {
26
25
  constructor() {
@@ -1,4 +1,4 @@
1
- import { L as LidoRow$1, d as defineCustomElement$1 } from './p-984ef5d1.js';
1
+ import { L as LidoRow$1, d as defineCustomElement$1 } from './p-3acd9a2e.js';
2
2
 
3
3
  const LidoRow = LidoRow$1;
4
4
  const defineCustomElement = defineCustomElement$1;