@cuemath/leap 3.5.36 → 3.5.37

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.
@@ -15,7 +15,7 @@ const q = ({ category: $, milestone: L, isExpended: o = !1 }) => {
15
15
  user_chapters: d,
16
16
  progress_stat: k,
17
17
  previous_progress_stat: a
18
- } = L, { completed: x, total: g } = k, { completed: u, total: n } = a ?? {}, c = B(x, g), f = a && u && n ? B(u, n) : 0, i = c - f, m = !!(a && i > 0 && g === n), I = !!(a && (i <= 0 || g !== n)), _ = c === 100, K = Math.round(c), S = Math.round(i), b = d.length, D = d.slice(0, 2), A = Math.max(0, b - 2), M = p ? d.slice(2) : [], N = A > 0, l = O(() => j[$], [$]), X = l.icon, w = W(() => {
18
+ } = L, { completed: x, total: g } = k, { completed: u, total: n } = a ?? {}, c = B(x, g), f = a && u && n ? B(u, n) : 0, i = c - f, m = !!(a && i > 0 && g === n), I = !!(a && (i < 0 || g !== n)), _ = c === 100, K = Math.round(c), S = Math.round(i), b = d.length, D = d.slice(0, 2), A = Math.max(0, b - 2), M = p ? d.slice(2) : [], N = A > 0, l = O(() => j[$], [$]), X = l.icon, w = W(() => {
19
19
  v((R) => !R);
20
20
  }, []);
21
21
  return /* @__PURE__ */ e(t, { children: [
@@ -1 +1 @@
1
- {"version":3,"file":"goals-card.js","sources":["../../../../../../../../src/features/timeline/monthly-timeline/monthly-report/comps/goals/goals-card/goals-card.tsx"],"sourcesContent":["import { type FC, memo, useCallback, useMemo, useState } from 'react';\n\nimport { type IGoalsCardProps } from '../goals-types';\nimport { calculateProgress, GOAL_CATEGORY_CONFIG } from '../goals-constants';\nimport * as Styled from './goals-card-styled';\nimport Text from '../../../../../../ui/text/text';\nimport FlexView from '../../../../../../ui/layout/flex-view';\nimport Separator from '../../../../../../ui/separator/separator';\nimport Image from '../../../../../../ui/image/image';\nimport GoalsCardChapters from './goal-chapter-card';\nimport LinearProgressBar from '../../../../../../ui/linear-progress-bar/linear-progress-bar';\nimport TextButton from '../../../../../../ui/buttons/text-button/text-button';\n\nconst GoalsCard: FC<IGoalsCardProps> = ({ category, milestone, isExpended = false }) => {\n const [showAllChapters, setShowAllChapters] = useState(false);\n const {\n milestone_name: milestoneName,\n user_chapters: userChapters,\n progress_stat: progressStat,\n previous_progress_stat: prevProgressStat,\n } = milestone;\n const { completed, total } = progressStat;\n const { completed: prevCompleted, total: prevTotal } = prevProgressStat ?? {};\n const currentProgress = calculateProgress(completed, total);\n const previousProgress =\n prevProgressStat && prevCompleted && prevTotal\n ? calculateProgress(prevCompleted, prevTotal)\n : 0;\n\n const progressDifference = currentProgress - previousProgress;\n const showIndicator = Boolean(prevProgressStat && progressDifference > 0 && total === prevTotal);\n const showTag = Boolean(prevProgressStat && (progressDifference <= 0 || total !== prevTotal));\n const isCompleted = currentProgress === 100;\n const roundedProgress = Math.round(currentProgress);\n const roundedDifference = Math.round(progressDifference);\n\n const totalChapters = userChapters.length;\n const visibleChapters = userChapters.slice(0, 2);\n const remainingChapters = Math.max(0, totalChapters - 2);\n const hiddenChapters = showAllChapters ? userChapters.slice(2) : [];\n const hasRemainingChapters = remainingChapters > 0;\n\n const categoryConfig = useMemo(() => GOAL_CATEGORY_CONFIG[category], [category]);\n const icon = categoryConfig.icon;\n\n const handleToggleChapters = useCallback(() => {\n setShowAllChapters(prev => !prev);\n }, []);\n\n return (\n <FlexView>\n <FlexView\n $position=\"relative\"\n $background={categoryConfig.backgroundColor}\n $borderColor={isExpended ? 'WHITE_5' : undefined}\n $gutterX={1}\n $gapX={1}\n >\n <FlexView $flexDirection=\"row\" $flexGapX={isExpended ? 1 : 0.5}>\n {icon && (\n <Image\n src={icon}\n withLoader\n width={isExpended ? 40 : 32}\n height={isExpended ? 40 : 32}\n alt={categoryConfig.label}\n />\n )}\n <FlexView>\n {isExpended && (\n <>\n <Text $renderAs=\"ac5\" $color={categoryConfig.labelColor}>\n {categoryConfig.label}\n </Text>\n <Separator heightX={0.25} />\n </>\n )}\n <Text $renderAs=\"ab2\" $color=\"BLACK_1\">\n {milestoneName}\n </Text>\n <Separator heightX={isExpended ? 0.5 : 0.125} />\n <FlexView $flexDirection=\"row\" $alignItems=\"center\" $flexGapX={0.25}>\n <Text $renderAs=\"ab3\" $color=\"BLACK_T_60\">\n {isCompleted ? 'Completed' : `${roundedProgress}% complete`}\n </Text>\n {showIndicator && !isCompleted && (\n <Text $renderAs=\"ab3\" $color=\"GREEN_6\">\n (+{roundedDifference}%)\n </Text>\n )}\n </FlexView>\n </FlexView>\n <Styled.ProgressBarContainer>\n <LinearProgressBar\n percentage={showIndicator ? previousProgress : currentProgress}\n delta={showIndicator ? progressDifference : 0}\n height={4}\n backgroundColor=\"WHITE_5\"\n fillColor=\"BLACK_1\"\n deltaProgressColor=\"GREEN_5\"\n />\n </Styled.ProgressBarContainer>\n </FlexView>\n {showTag && (\n <>\n <Separator heightX={0.875} />\n <Styled.TagContainer $gapX={0.5} $gutterX={1} $background={categoryConfig.tagColor}>\n <Text $renderAs=\"ub3\" $color=\"BLACK_1\">\n Learning plan was modified — progress updated accordingly.\n </Text>\n </Styled.TagContainer>\n </>\n )}\n </FlexView>\n {isExpended && totalChapters > 0 && (\n <Styled.ChaptersContainer\n $gapX={1}\n $flexDirection=\"column\"\n $flexGapX={1.25}\n $borderColor=\"WHITE_5\"\n >\n <GoalsCardChapters chapters={visibleChapters} />\n {hasRemainingChapters && (\n <>\n {!showAllChapters && (\n <FlexView $gutterX={4.5}>\n <TextButton\n label={`+${remainingChapters} chapters`}\n size=\"regular\"\n color=\"BLACK_1\"\n onClick={handleToggleChapters}\n />\n </FlexView>\n )}\n {showAllChapters && (\n <>\n <GoalsCardChapters chapters={hiddenChapters} />\n <FlexView $gutterX={4.5}>\n <TextButton\n label=\"Show less\"\n size=\"regular\"\n color=\"BLACK_1\"\n onClick={handleToggleChapters}\n />\n </FlexView>\n </>\n )}\n </>\n )}\n </Styled.ChaptersContainer>\n )}\n </FlexView>\n );\n};\n\nexport default memo(GoalsCard);\n"],"names":["GoalsCard","category","milestone","isExpended","showAllChapters","setShowAllChapters","useState","milestoneName","userChapters","progressStat","prevProgressStat","completed","total","prevCompleted","prevTotal","currentProgress","calculateProgress","previousProgress","progressDifference","showIndicator","showTag","isCompleted","roundedProgress","roundedDifference","totalChapters","visibleChapters","remainingChapters","hiddenChapters","hasRemainingChapters","categoryConfig","useMemo","GOAL_CATEGORY_CONFIG","icon","handleToggleChapters","useCallback","prev","FlexView","jsxs","jsx","Image","Fragment","Text","Separator","Styled.ProgressBarContainer","LinearProgressBar","Styled.TagContainer","Styled.ChaptersContainer","GoalsCardChapters","TextButton","GoalsCard$1","memo"],"mappings":"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"}
1
+ {"version":3,"file":"goals-card.js","sources":["../../../../../../../../src/features/timeline/monthly-timeline/monthly-report/comps/goals/goals-card/goals-card.tsx"],"sourcesContent":["import { type FC, memo, useCallback, useMemo, useState } from 'react';\n\nimport { type IGoalsCardProps } from '../goals-types';\nimport { calculateProgress, GOAL_CATEGORY_CONFIG } from '../goals-constants';\nimport * as Styled from './goals-card-styled';\nimport Text from '../../../../../../ui/text/text';\nimport FlexView from '../../../../../../ui/layout/flex-view';\nimport Separator from '../../../../../../ui/separator/separator';\nimport Image from '../../../../../../ui/image/image';\nimport GoalsCardChapters from './goal-chapter-card';\nimport LinearProgressBar from '../../../../../../ui/linear-progress-bar/linear-progress-bar';\nimport TextButton from '../../../../../../ui/buttons/text-button/text-button';\n\nconst GoalsCard: FC<IGoalsCardProps> = ({ category, milestone, isExpended = false }) => {\n const [showAllChapters, setShowAllChapters] = useState(false);\n const {\n milestone_name: milestoneName,\n user_chapters: userChapters,\n progress_stat: progressStat,\n previous_progress_stat: prevProgressStat,\n } = milestone;\n const { completed, total } = progressStat;\n const { completed: prevCompleted, total: prevTotal } = prevProgressStat ?? {};\n const currentProgress = calculateProgress(completed, total);\n const previousProgress =\n prevProgressStat && prevCompleted && prevTotal\n ? calculateProgress(prevCompleted, prevTotal)\n : 0;\n\n const progressDifference = currentProgress - previousProgress;\n const showIndicator = Boolean(prevProgressStat && progressDifference > 0 && total === prevTotal);\n const showTag = Boolean(prevProgressStat && (progressDifference < 0 || total !== prevTotal));\n const isCompleted = currentProgress === 100;\n const roundedProgress = Math.round(currentProgress);\n const roundedDifference = Math.round(progressDifference);\n\n const totalChapters = userChapters.length;\n const visibleChapters = userChapters.slice(0, 2);\n const remainingChapters = Math.max(0, totalChapters - 2);\n const hiddenChapters = showAllChapters ? userChapters.slice(2) : [];\n const hasRemainingChapters = remainingChapters > 0;\n\n const categoryConfig = useMemo(() => GOAL_CATEGORY_CONFIG[category], [category]);\n const icon = categoryConfig.icon;\n\n const handleToggleChapters = useCallback(() => {\n setShowAllChapters(prev => !prev);\n }, []);\n\n return (\n <FlexView>\n <FlexView\n $position=\"relative\"\n $background={categoryConfig.backgroundColor}\n $borderColor={isExpended ? 'WHITE_5' : undefined}\n $gutterX={1}\n $gapX={1}\n >\n <FlexView $flexDirection=\"row\" $flexGapX={isExpended ? 1 : 0.5}>\n {icon && (\n <Image\n src={icon}\n withLoader\n width={isExpended ? 40 : 32}\n height={isExpended ? 40 : 32}\n alt={categoryConfig.label}\n />\n )}\n <FlexView>\n {isExpended && (\n <>\n <Text $renderAs=\"ac5\" $color={categoryConfig.labelColor}>\n {categoryConfig.label}\n </Text>\n <Separator heightX={0.25} />\n </>\n )}\n <Text $renderAs=\"ab2\" $color=\"BLACK_1\">\n {milestoneName}\n </Text>\n <Separator heightX={isExpended ? 0.5 : 0.125} />\n <FlexView $flexDirection=\"row\" $alignItems=\"center\" $flexGapX={0.25}>\n <Text $renderAs=\"ab3\" $color=\"BLACK_T_60\">\n {isCompleted ? 'Completed' : `${roundedProgress}% complete`}\n </Text>\n {showIndicator && !isCompleted && (\n <Text $renderAs=\"ab3\" $color=\"GREEN_6\">\n (+{roundedDifference}%)\n </Text>\n )}\n </FlexView>\n </FlexView>\n <Styled.ProgressBarContainer>\n <LinearProgressBar\n percentage={showIndicator ? previousProgress : currentProgress}\n delta={showIndicator ? progressDifference : 0}\n height={4}\n backgroundColor=\"WHITE_5\"\n fillColor=\"BLACK_1\"\n deltaProgressColor=\"GREEN_5\"\n />\n </Styled.ProgressBarContainer>\n </FlexView>\n {showTag && (\n <>\n <Separator heightX={0.875} />\n <Styled.TagContainer $gapX={0.5} $gutterX={1} $background={categoryConfig.tagColor}>\n <Text $renderAs=\"ub3\" $color=\"BLACK_1\">\n Learning plan was modified — progress updated accordingly.\n </Text>\n </Styled.TagContainer>\n </>\n )}\n </FlexView>\n {isExpended && totalChapters > 0 && (\n <Styled.ChaptersContainer\n $gapX={1}\n $flexDirection=\"column\"\n $flexGapX={1.25}\n $borderColor=\"WHITE_5\"\n >\n <GoalsCardChapters chapters={visibleChapters} />\n {hasRemainingChapters && (\n <>\n {!showAllChapters && (\n <FlexView $gutterX={4.5}>\n <TextButton\n label={`+${remainingChapters} chapters`}\n size=\"regular\"\n color=\"BLACK_1\"\n onClick={handleToggleChapters}\n />\n </FlexView>\n )}\n {showAllChapters && (\n <>\n <GoalsCardChapters chapters={hiddenChapters} />\n <FlexView $gutterX={4.5}>\n <TextButton\n label=\"Show less\"\n size=\"regular\"\n color=\"BLACK_1\"\n onClick={handleToggleChapters}\n />\n </FlexView>\n </>\n )}\n </>\n )}\n </Styled.ChaptersContainer>\n )}\n </FlexView>\n );\n};\n\nexport default memo(GoalsCard);\n"],"names":["GoalsCard","category","milestone","isExpended","showAllChapters","setShowAllChapters","useState","milestoneName","userChapters","progressStat","prevProgressStat","completed","total","prevCompleted","prevTotal","currentProgress","calculateProgress","previousProgress","progressDifference","showIndicator","showTag","isCompleted","roundedProgress","roundedDifference","totalChapters","visibleChapters","remainingChapters","hiddenChapters","hasRemainingChapters","categoryConfig","useMemo","GOAL_CATEGORY_CONFIG","icon","handleToggleChapters","useCallback","prev","FlexView","jsxs","jsx","Image","Fragment","Text","Separator","Styled.ProgressBarContainer","LinearProgressBar","Styled.TagContainer","Styled.ChaptersContainer","GoalsCardChapters","TextButton","GoalsCard$1","memo"],"mappings":"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"}
package/dist/index.js CHANGED
@@ -8,19 +8,19 @@ import { default as i } from "./assets/line-icons/icons/alert.js";
8
8
  import { default as I } from "./assets/line-icons/icons/back.js";
9
9
  import { default as T } from "./assets/line-icons/icons/bin.js";
10
10
  import { default as C } from "./assets/line-icons/icons/bin2.js";
11
- import { default as P } from "./assets/line-icons/icons/book-closed.js";
11
+ import { default as A } from "./assets/line-icons/icons/book-closed.js";
12
12
  import { default as h } from "./assets/line-icons/icons/book.js";
13
- import { default as R } from "./assets/line-icons/icons/book2.js";
13
+ import { default as M } from "./assets/line-icons/icons/book2.js";
14
14
  import { default as k } from "./assets/line-icons/icons/bookmark.js";
15
15
  import { default as N } from "./assets/line-icons/icons/bulb.js";
16
- import { default as H } from "./assets/line-icons/icons/bulb2.js";
16
+ import { default as O } from "./assets/line-icons/icons/bulb2.js";
17
17
  import { default as y } from "./assets/line-icons/icons/calendar.js";
18
18
  import { default as U } from "./assets/line-icons/icons/change-icon.js";
19
19
  import { default as v } from "./assets/line-icons/icons/check.js";
20
20
  import { default as z } from "./assets/line-icons/icons/check2.js";
21
21
  import { default as F } from "./assets/line-icons/icons/clipboard.js";
22
22
  import { default as V } from "./assets/line-icons/icons/clock.js";
23
- import { default as Y } from "./assets/line-icons/icons/clock2.js";
23
+ import { default as J } from "./assets/line-icons/icons/clock2.js";
24
24
  import { default as Q } from "./assets/line-icons/icons/code.js";
25
25
  import { default as Z } from "./assets/line-icons/icons/copy.js";
26
26
  import { default as X } from "./assets/line-icons/icons/cross.js";
@@ -35,19 +35,19 @@ import { default as ie } from "./assets/line-icons/icons/edit2.js";
35
35
  import { default as Ie } from "./assets/line-icons/icons/edit-star.js";
36
36
  import { default as Te } from "./assets/line-icons/icons/eraser.js";
37
37
  import { default as Ce } from "./assets/line-icons/icons/eye.js";
38
- import { default as Pe } from "./assets/line-icons/icons/eye2.js";
38
+ import { default as Ae } from "./assets/line-icons/icons/eye2.js";
39
39
  import { default as he } from "./assets/line-icons/icons/exclamation.js";
40
- import { default as Re } from "./assets/line-icons/icons/hand.js";
40
+ import { default as Me } from "./assets/line-icons/icons/hand.js";
41
41
  import { default as ke } from "./assets/line-icons/icons/hint-fill.js";
42
42
  import { default as Ne } from "./assets/line-icons/icons/help.js";
43
- import { default as He } from "./assets/line-icons/icons/highlighter.js";
43
+ import { default as Oe } from "./assets/line-icons/icons/highlighter.js";
44
44
  import { default as ye } from "./assets/line-icons/icons/home.js";
45
45
  import { default as Ue } from "./assets/line-icons/icons/image.js";
46
46
  import { default as ve } from "./assets/line-icons/icons/info.js";
47
47
  import { default as ze } from "./assets/line-icons/icons/info2.js";
48
48
  import { default as Fe } from "./assets/line-icons/icons/info3.js";
49
49
  import { default as Ve } from "./assets/line-icons/icons/left.js";
50
- import { default as Ye } from "./assets/line-icons/icons/lock.js";
50
+ import { default as Je } from "./assets/line-icons/icons/lock.js";
51
51
  import { default as Qe } from "./assets/line-icons/icons/lock2.js";
52
52
  import { default as Ze } from "./assets/line-icons/icons/lock3.js";
53
53
  import { default as Xe } from "./assets/line-icons/icons/minus.js";
@@ -61,19 +61,19 @@ import { default as no } from "./assets/line-icons/icons/pointer.js";
61
61
  import { default as co } from "./assets/line-icons/icons/play.js";
62
62
  import { default as So } from "./assets/line-icons/icons/play2.js";
63
63
  import { default as Eo } from "./assets/line-icons/icons/plus.js";
64
- import { default as Ao } from "./assets/line-icons/icons/plus2.js";
64
+ import { default as Po } from "./assets/line-icons/icons/plus2.js";
65
65
  import { default as _o } from "./assets/line-icons/icons/practice.js";
66
- import { default as Mo } from "./assets/line-icons/icons/progress.js";
66
+ import { default as Ro } from "./assets/line-icons/icons/progress.js";
67
67
  import { default as Do } from "./assets/line-icons/icons/puzzle-icon.js";
68
68
  import { default as Lo } from "./assets/line-icons/icons/puzzle2.js";
69
69
  import { default as go } from "./assets/line-icons/icons/question.js";
70
- import { default as Oo } from "./assets/line-icons/icons/question-letter.js";
70
+ import { default as Ho } from "./assets/line-icons/icons/question-letter.js";
71
71
  import { default as Go } from "./assets/line-icons/icons/redo.js";
72
72
  import { default as bo } from "./assets/line-icons/icons/right.js";
73
73
  import { default as Bo } from "./assets/line-icons/icons/ruler.js";
74
74
  import { default as wo } from "./assets/line-icons/icons/search.js";
75
75
  import { default as Wo } from "./assets/line-icons/icons/sheet.js";
76
- import { default as Jo } from "./assets/line-icons/icons/star.js";
76
+ import { default as Yo } from "./assets/line-icons/icons/star.js";
77
77
  import { default as Ko } from "./assets/line-icons/icons/skip-colored.js";
78
78
  import { default as jo } from "./assets/line-icons/icons/skip.js";
79
79
  import { default as qo } from "./assets/line-icons/icons/skip2.js";
@@ -88,19 +88,19 @@ import { default as nr } from "./assets/line-icons/icons/trophy.js";
88
88
  import { default as cr } from "./assets/line-icons/icons/undo.js";
89
89
  import { default as Sr } from "./assets/line-icons/icons/unlock.js";
90
90
  import { default as Er } from "./assets/line-icons/icons/unlock2.js";
91
- import { default as Ar } from "./assets/line-icons/icons/up.js";
91
+ import { default as Pr } from "./assets/line-icons/icons/up.js";
92
92
  import { default as _r } from "./assets/line-icons/icons/user.js";
93
- import { default as Mr } from "./assets/line-icons/icons/user2.js";
93
+ import { default as Rr } from "./assets/line-icons/icons/user2.js";
94
94
  import { default as Dr } from "./assets/line-icons/icons/wins-common-icon.js";
95
95
  import { default as Lr, default as Nr } from "./assets/line-icons/icons/sketch.js";
96
- import { default as Hr } from "./assets/line-icons/icons/back2.js";
96
+ import { default as Or } from "./assets/line-icons/icons/back2.js";
97
97
  import { default as yr } from "./assets/line-icons/icons/chevron-right.js";
98
98
  import { default as Ur } from "./assets/line-icons/icons/chevron-left.js";
99
99
  import { default as vr } from "./assets/line-icons/icons/chevron-down.js";
100
100
  import { default as zr } from "./assets/line-icons/icons/game.js";
101
101
  import { default as Fr } from "./assets/line-icons/icons/tutoring.js";
102
102
  import { default as Vr } from "./assets/line-icons/icons/chat.js";
103
- import { default as Yr } from "./assets/line-icons/icons/cuemath-logo.js";
103
+ import { default as Jr } from "./assets/line-icons/icons/cuemath-logo.js";
104
104
  import { default as Qr } from "./assets/line-icons/icons/next2.js";
105
105
  import { default as Zr } from "./assets/line-icons/icons/evening.js";
106
106
  import { default as Xr } from "./assets/line-icons/icons/after-noon.js";
@@ -115,19 +115,19 @@ import { default as it } from "./assets/line-icons/icons/pause-icon.js";
115
115
  import { default as It } from "./assets/line-icons/icons/dots-icon.js";
116
116
  import { AutoPlayPermissionProvider as Tt } from "./features/hooks/use-auto-play-permission/use-auto-play-permission-context-provider.js";
117
117
  import { default as Ct } from "./features/hooks/use-zoom-disable.js";
118
- import { default as Pt } from "./features/hooks/use-force-reload.js";
118
+ import { default as At } from "./features/hooks/use-force-reload.js";
119
119
  import { default as ht } from "./features/notification/notification.js";
120
- import { default as Rt } from "./features/ui/accordion/accordion.js";
120
+ import { default as Mt } from "./features/ui/accordion/accordion.js";
121
121
  import { default as kt } from "./features/ui/accordion-section/accordion-section.js";
122
122
  import { default as Nt } from "./features/ui/arrow-tooltip/arrow-tooltip.js";
123
- import { default as Ht } from "./features/ui/context-menu/context-menu.js";
123
+ import { default as Ot } from "./features/ui/context-menu/context-menu.js";
124
124
  import { default as yt } from "./features/ui/timers/countdown-timer/countdown-timer.js";
125
125
  import { default as Ut } from "./features/ui/timers/countdown-text-timer/countdown-text-timer.js";
126
126
  import { default as vt } from "./features/ui/nudge/nudge.js";
127
127
  import { default as zt } from "./features/ui/buttons/button/button.js";
128
128
  import { default as Ft } from "./features/ui/buttons/clickable/clickable.js";
129
129
  import { default as Vt } from "./features/ui/buttons/icon-button/icon-button.js";
130
- import { default as Yt } from "./features/ui/buttons/text-button/text-button.js";
130
+ import { default as Jt } from "./features/ui/buttons/text-button/text-button.js";
131
131
  import { ArcButton as Qt } from "./features/ui/arc-button/arc-button.js";
132
132
  import { default as Zt } from "./features/ui/error/error.js";
133
133
  import { default as Xt } from "./features/ui/inputs/checkbox-input/checkbox-input.js";
@@ -142,18 +142,18 @@ import { default as ia } from "./features/ui/inputs/cascading-select-input/casca
142
142
  import { default as Ia } from "./features/ui/inputs/num-range-input/num-range-input.js";
143
143
  import { default as Ta } from "./features/ui/inputs/percentile-input/percentile-input.js";
144
144
  import { default as Ca } from "./features/ui/selection-cards/selection-cards.js";
145
- import { default as Pa } from "./features/ui/layout/flex-view.js";
145
+ import { default as Aa } from "./features/ui/layout/flex-view.js";
146
146
  import { default as ha } from "./features/ui/loader/app-loader/app-loader.js";
147
- import { CircularLoader as Ra } from "./features/ui/loader/circular-loader/circular-loader.js";
147
+ import { CircularLoader as Ma } from "./features/ui/loader/circular-loader/circular-loader.js";
148
148
  import { default as ka } from "./features/ui/modals/modal-provider.js";
149
149
  import { default as Na } from "./features/ui/modals/use-modal-actions.js";
150
- import { default as Ha } from "./features/ui/modals/use-modal-params.js";
150
+ import { default as Oa } from "./features/ui/modals/use-modal-params.js";
151
151
  import { default as ya } from "./features/ui/radio-cards/radio-cards.js";
152
152
  import { default as Ua } from "./features/ui/section-list/section-list.js";
153
153
  import { default as va } from "./features/ui/text/text.js";
154
154
  import { default as za } from "./features/ui/tag/tag.js";
155
155
  import { default as Fa } from "./features/ui/callout/callout.js";
156
- import { default as Va, useUIContext as Ja } from "./features/ui/context/context.js";
156
+ import { default as Va, useUIContext as Ya } from "./features/ui/context/context.js";
157
157
  import { default as Ka } from "./features/ui/context/use-tracking-context.js";
158
158
  import { default as ja } from "./features/ui/hooks/use-context-menu-click-handler.js";
159
159
  import { default as qa } from "./features/ui/timers/hooks/use-time-remaining.js";
@@ -168,19 +168,19 @@ import { default as nf } from "./features/ui/video/index.js";
168
168
  import { default as If } from "./features/ui/perfect-hits/perfect-hits.js";
169
169
  import { default as Tf } from "./features/ui/image/image.js";
170
170
  import { default as Cf } from "./features/ui/animated-arc/animated-arc.js";
171
- import { default as Pf } from "./features/ui/carousal/carousal.js";
171
+ import { default as Af } from "./features/ui/carousal/carousal.js";
172
172
  import { default as hf } from "./features/ui/drawer/drawer.js";
173
- import { default as Rf } from "./features/ui/dot-lottie-animations/dot-lottie-animation.js";
173
+ import { default as Mf } from "./features/ui/dot-lottie-animations/dot-lottie-animation.js";
174
174
  import { default as kf } from "./features/ui/tabs/tabs.js";
175
175
  import { default as Nf } from "./features/ui/linear-progress-bar/linear-progress-bar.js";
176
- import { default as Hf } from "./features/ui/swipeable-component/swipeable-component.js";
176
+ import { default as Of } from "./features/ui/swipeable-component/swipeable-component.js";
177
177
  import { default as yf } from "./features/ui/swipeable-carousel/swipeable-carousel.js";
178
178
  import { PLATFORM_EVENTS_STUDENT as Uf } from "./features/analytics-events/platform-events-student.js";
179
179
  import { PLATFORM_EVENTS_TEACHER as vf } from "./features/analytics-events/platform-events-teacher.js";
180
180
  import { WHITELIST_EVENTS as zf } from "./features/analytics-events/whitelist-events.js";
181
181
  import { default as Ff } from "./features/auth/comps/auth-static-panel/auth-static-panel.js";
182
182
  import { default as Vf } from "./features/auth/comps/auth-page-layout/auth-page-layout.js";
183
- import { default as Yf } from "./features/auth/comps/overlay-loader/overlay-loader.js";
183
+ import { default as Jf } from "./features/auth/comps/overlay-loader/overlay-loader.js";
184
184
  import { default as Qf } from "./features/auth/comps/input-status-icon/input-status-icon.js";
185
185
  import { default as Zf } from "./features/auth/comps/resend-otp/resend-otp.js";
186
186
  import { default as Xf } from "./features/auth/comps/otp-input/otp-input.js";
@@ -195,19 +195,19 @@ import { default as is } from "./features/auth/signup/custom-input-field/date-pi
195
195
  import { default as Is } from "./features/auth/signup/custom-input-field/custom-input-field.js";
196
196
  import { default as Ts } from "./features/auth/signup/circular-step-wrapper/circular-step-wrapper.js";
197
197
  import { default as Cs } from "./features/auth/signup/signup-methods/signup-methods.js";
198
- import { default as Ps } from "./features/auth/pla-signup/onboarding-guide/onboarding-guide.js";
198
+ import { default as As } from "./features/auth/pla-signup/onboarding-guide/onboarding-guide.js";
199
199
  import { default as hs } from "./features/auth/pla-signup/signup-header/signup-header.js";
200
- import { default as Rs } from "./features/auth/pla-signup/signup-options/signup-options.js";
200
+ import { default as Ms } from "./features/auth/pla-signup/signup-options/signup-options.js";
201
201
  import { default as ks } from "./features/auth/signup-unavailable/signup-unavailable.js";
202
202
  import { default as Ns } from "./features/auth/account-selector/account-selector.js";
203
- import { default as Hs } from "./features/auth/login/social-login-methods/social-login-methods.js";
203
+ import { default as Os } from "./features/auth/login/social-login-methods/social-login-methods.js";
204
204
  import { default as ys } from "./features/auth/login/social-account-not-found/social-account-not-found.js";
205
205
  import { default as Us } from "./features/auth/login/username-password-form/username-password-form.js";
206
206
  import { default as vs } from "./features/auth/login/identifier-otp-form/identifier-otp-form.js";
207
207
  import { default as zs } from "./features/auth/forgot-password/otp-form/otp-form.js";
208
208
  import { default as Fs } from "./features/auth/forgot-password/reset-password-form/reset-password-form.js";
209
209
  import { default as Vs } from "./features/auth/forgot-password/user-identifier-form/user-identifier-form.js";
210
- import { AUTH_TABS as Ys } from "./features/auth/login/login-constants.js";
210
+ import { AUTH_TABS as Js } from "./features/auth/login/login-constants.js";
211
211
  import { AuthApiErrorCode as Qs } from "./features/auth/auth-constants.js";
212
212
  import { PLA_ANALYTICS_EVENTS as Zs } from "./features/auth/pla-signup/pla-analytics-events.js";
213
213
  import { default as Xs } from "./features/av/av-preview/av-preview.js";
@@ -222,19 +222,19 @@ import { checkIfPPTNodeType as il } from "./features/chapters/lpar-chapter/utils
222
222
  import { getActiveSATSheet as Il } from "./features/chapters/lpar-chapter/block-section/sat-sheet-item/sat-sheet-utils.js";
223
223
  import { default as Tl } from "./features/chapters-v2/chapter-details/chapter-details.js";
224
224
  import { invalidateGetChapterDetails as Cl } from "./features/chapters-v2/api/chapter.js";
225
- import { GAME_LAUNCHER_ASSET_PADDING as Pl } from "./features/circle-games/game-launcher/comps/circular-game-card/constants.js";
225
+ import { GAME_LAUNCHER_ASSET_PADDING as Al } from "./features/circle-games/game-launcher/comps/circular-game-card/constants.js";
226
226
  import { default as hl } from "./features/circle-games/about-game-activities/about-game-activities.js";
227
- import { GAME_LAUNCHER_SIZE as Rl } from "./features/circle-games/game-launcher/comps/card-container/constants.js";
227
+ import { GAME_LAUNCHER_SIZE as Ml } from "./features/circle-games/game-launcher/comps/card-container/constants.js";
228
228
  import { useCircleSounds as kl } from "./features/circle-games/hooks/use-circle-sounds/use-circle-sounds.js";
229
229
  import { CircleSoundKey as Nl } from "./features/circle-games/hooks/use-circle-sounds/use-circle-sounds-enums.js";
230
- import { useGetLeaderboardDal as Hl } from "./features/circle-games/leaderboard/dal/use-get-leaderboard-dal/use-get-leaderboard-dal.js";
230
+ import { useGetLeaderboardDal as Ol } from "./features/circle-games/leaderboard/dal/use-get-leaderboard-dal/use-get-leaderboard-dal.js";
231
231
  import { ELeaderboardType as yl } from "./features/circle-games/leaderboard/enums/leaderboard-type-enum.js";
232
232
  import { StreakReductionLocalStorageUtil as Ul } from "./features/circle-games/utils/streak-reduction-localstorage-util.js";
233
233
  import { Tutorial as vl } from "./features/circle-games/games/tutorial/tutorial.js";
234
234
  import { WebView as zl } from "./features/circle-games/games/web-view/web-view.js";
235
235
  import { ProjectOutcome as Fl } from "./features/circle-games/games/web-view/enums/project-outcomes-enum.js";
236
236
  import { WebViewEvent as Vl } from "./features/circle-games/games/web-view/enums/web-view-events-enum.js";
237
- import { ProjectType as Yl } from "./features/circle-games/games/web-view/enums/project-type-enum.js";
237
+ import { ProjectType as Jl } from "./features/circle-games/games/web-view/enums/project-type-enum.js";
238
238
  import { PlayerType as Ql } from "./features/circle-games/games/web-view/enums/player-type-enum.js";
239
239
  import { IStatsToAwardErrorCode as Zl } from "./features/circle-games/games/web-view/web-view-types.js";
240
240
  import { CIRCLE_ONBOARDING_ANALYTICS_STEPS as Xl } from "./features/circle-games/enum/circle-onboarding-steps.js";
@@ -248,19 +248,19 @@ import { SignUp as nu } from "./features/circle-games/sign-up/sign-up.js";
248
248
  import { default as cu } from "./features/cue-canvas/cue-canvas-provider.js";
249
249
  import { default as Su } from "./features/cue-canvas/toolbar/toolbar.js";
250
250
  import { default as Eu } from "./features/cue-canvas/cue-canvas.js";
251
- import { default as Au } from "./features/cue-canvas/hooks/use-canvas-sync-broker.js";
251
+ import { default as Pu } from "./features/cue-canvas/hooks/use-canvas-sync-broker.js";
252
252
  import { default as _u } from "./features/cue-canvas/sidebar/sidebar.js";
253
- import { default as Mu } from "./features/cue-canvas/bottombar/homework-controls.js";
253
+ import { default as Ru } from "./features/cue-canvas/bottombar/homework-controls.js";
254
254
  import { default as Du } from "./features/communication/hooks/use-inclass-message-broker/use-inclass-message-broker.js";
255
255
  import { default as Lu } from "./features/communication/hooks/use-trial-session-message-broker/use-trial-session-message-broker.js";
256
256
  import { EVENTS as gu } from "./features/communication/pub-sub/constants.js";
257
- import { useInClassActionDispatcher as Ou, useInClassActionListener as yu } from "./features/communication/pub-sub/hooks.js";
257
+ import { useInClassActionDispatcher as Hu, useInClassActionListener as yu } from "./features/communication/pub-sub/hooks.js";
258
258
  import { default as Uu } from "./features/trial-session/trial-session.js";
259
259
  import { default as vu } from "./features/trial-session/comps/session-report/report-information/report-information.js";
260
260
  import { default as zu } from "./features/trial-session/comps/student-profile/student-profile-highlights/student-profile-highlights.js";
261
261
  import { EClassTimeAlertLevel as Fu } from "./features/trial-session/trial-session-types.js";
262
262
  import { ESessionStatus as Vu } from "./features/parent-dashboard/comps/upcoming-sessions/upcoming-sessions-types.js";
263
- import { useGetSessionReports as Yu } from "./features/trial-session/api/trial-home.js";
263
+ import { useGetSessionReports as Ju } from "./features/trial-session/api/trial-home.js";
264
264
  import { useClassTimeAlerts as Qu } from "./features/trial-session/hooks/use-class-time-alerts.js";
265
265
  import { default as Zu } from "./features/timeline/daily-timeline/daily-timeline.js";
266
266
  import { USER_TYPE as Xu } from "./features/timeline/daily-timeline/daily-timeline-types.js";
@@ -268,129 +268,130 @@ import { default as ep } from "./features/timeline/timeline-tabs/timeline-tabs.j
268
268
  import { ETAB_IDS as rp } from "./features/timeline/timeline-tabs/timeline-tabs-types.js";
269
269
  import { default as ap } from "./features/timeline/monthly-timeline/monthly-timeline.js";
270
270
  import { default as sp } from "./features/timeline/monthly-timeline/monthly-report/monthly-report.js";
271
- import { default as up } from "./features/timeline/monthly-timeline/ptm-report/ptm-report.js";
272
- import { default as mp } from "./features/timeline/comps/new-progress-intro-modal/new-progress-intro-modal.js";
273
- import { default as xp } from "./features/talk-meter/talk-meter.js";
274
- import { default as ip } from "./features/extra-practice/extra-practice.js";
275
- import { default as Ip } from "./features/homework/hw-card-list/hw-card-list.js";
276
- import { invalidateHomeworks as Tp } from "./features/homework/hw-card-list/api/get-homeworks.js";
277
- import { default as Cp } from "./features/homework/card-title.js";
278
- import { useAutoPlayPermission as Pp } from "./features/hooks/use-auto-play-permission/use-auto-play-permission.js";
279
- import { JOURNEY_ID_STUDENT as hp } from "./features/journey/journey-id/journey-id-student.js";
280
- import { JOURNEY_ID_TEACHER as Rp } from "./features/journey/journey-id/journey-id-teacher.js";
281
- import { TRACKING_ID_STUDENT as kp } from "./features/journey/tracking-id/tracking-id-student.js";
282
- import { TRACKING_ID_TEACHER as Np } from "./features/journey/tracking-id/tracking-id-teacher.js";
283
- import { useJourney as Hp } from "./features/journey/use-journey/use-journey.js";
284
- import { useGetEligibleJourneysViaRoute as yp } from "./features/journey/hooks/use-get-eligible-journeys-via-route.js";
285
- import { useGetTrackedViews as Up } from "./features/journey/hooks/use-get-tracked-views.js";
286
- import { JourneyProvider as vp } from "./features/journey/use-journey/journey-context-provider.js";
287
- import { IndicatorType as zp } from "./features/journey/use-journey/constants.js";
288
- import { Coachmark as Fp } from "./features/journey/comps/coachmark/coachmark.js";
289
- import { useHomePageJourney as Vp } from "./features/journey/hooks/use-home-page-journey/use-home-page-journey.js";
290
- import { useChapterPageJourney as Yp } from "./features/journey/hooks/use-chapter-page-journey/use-chapter-journey.js";
291
- import { usePuzzleDashboardJourney as Qp } from "./features/journey/hooks/use-puzzles-journey/use-puzzle-dashboard-journey.js";
292
- import { usePuzzleIntroJourney as Zp } from "./features/journey/hooks/use-puzzles-journey/use-puzzle-intro-journey.js";
293
- import { usePuzzleProgressJourney as Xp } from "./features/journey/hooks/use-puzzles-journey/use-puzzle-progress-journey.js";
294
- import { useTeacherPuzzleAssignedJourney as em } from "./features/journey/hooks/use-puzzles-journey/use-teacher-puzzle-assigned-journey.js";
295
- import { usePuzzleAttemptJourney as rm } from "./features/journey/hooks/use-puzzles-journey/use-puzzle-attempt-journey.js";
296
- import { usePuzzleReviewJourney as am } from "./features/journey/hooks/use-puzzles-journey/use-puzzle-review-journey.js";
297
- import { usePuzzleUnassignJourney as sm } from "./features/journey/hooks/use-puzzles-journey/use-puzzle-unassign-journey.js";
298
- import { default as um } from "./features/maintenance/maintenance.js";
299
- import { default as mm } from "./features/milestone/create/submit-modal/submit-modal.js";
300
- import { default as xm } from "./features/milestone/create/comps/confirmation-modals/goal-creation-confirmation.js";
301
- import { default as im } from "./features/milestone/create/comps/confirmation-modals/chapter-clearance-confirmation.js";
302
- import { default as Im } from "./features/milestone/create/milestone-create-container.js";
303
- import { default as Tm } from "./features/milestone/edit/goal-drafts/goal-draft-edit-container.js";
304
- import { default as Cm } from "./features/milestone/outcome/milestone-outcome-container.js";
305
- import { default as Pm } from "./features/milestone/outcome/comps/achievement/reason-submit-modal.js";
306
- import { default as hm } from "./features/milestone/outcome/comps/achievement/share-instructions-modal.js";
307
- import { default as Rm } from "./features/milestone/edit/comps/edit-milestone-modal/index.js";
308
- import { default as km } from "./features/milestone/edit/goal-edit-container.js";
309
- import { default as Nm } from "./features/milestone/edit/milestone-edit-container.js";
310
- import { default as Hm } from "./features/milestone/milestone-list-container/milestone-list-container.js";
311
- import { default as ym } from "./features/milestone/milestone-action-widget/milestone-action-widget.js";
312
- import { default as Um } from "./features/milestone/start/milestone-start.js";
313
- import { default as vm } from "./features/milestone/milestone-tests/tests-creation/tests-creation.js";
314
- import { default as zm } from "./features/milestone/milestone-resources/resources-assign/resources-assign.js";
315
- import { ACHIEVEMENT_ACTIONS as Fm, STAGES as Wm } from "./features/milestone/outcome/milestone-outcome-constants.js";
316
- import { COURSE_STREAMS as Jm, PREFERENCE_CATEGORY as Ym } from "./features/milestone/constants.js";
317
- import { invalidateMilestonesData as Qm, useGetAllMilestonesdata as jm } from "./features/milestone/milestone-list-container/api/get-milestones.js";
318
- import { invalidatePastMilestoneCount as qm, useGetPastMilestoneCount as Xm } from "./features/milestone/milestone-list-container/api/get-past-milestone-count.js";
319
- import { invalidateTestHelpData as ed, useGetTestHelpData as od } from "./features/milestone/milestone-list-container/api/get-tests-list.js";
320
- import { invalidateMilestoneResources as td, useGetMilestoneResources as ad } from "./features/milestone/milestone-list-container/api/get-milestone-resources.js";
321
- import { useGetMileStoneConfig as sd } from "./features/milestone/create/api/milestone-config.js";
322
- import { getPreferencesFromConfig as ud } from "./features/milestone/create/milestone-create-helpers.js";
323
- import { default as md } from "./features/pointer-sync/pointer.js";
324
- import { default as xd } from "./features/pointer-sync/hooks/use-pointer-sync.js";
325
- import { DigitalMeter as id } from "./features/post-game-stats/digital-meter/digital-meter.js";
326
- import { EPostGameStat as Id } from "./features/post-game-stats/enums/post-game-stats-enum.js";
327
- import { PostGameStats as Td } from "./features/post-game-stats/post-game-stats.js";
328
- import { default as Cd } from "./features/puzzles/puzzle-container/puzzle-container.js";
329
- import { default as Pd } from "./features/puzzles/puzzle-feedback-celebration/puzzle-feedback-celebration.js";
330
- import { default as hd } from "./features/puzzles/puzzle-dashboard/puzzle-dashboard.js";
331
- import { default as Rd } from "./features/puzzles/app/puzzle-app.js";
332
- import { invalidatePuzzleToAssign as kd, useGetPuzzleToAssign as Ld } from "./features/puzzles/api/puzzle-assign.js";
333
- import { default as gd } from "./features/recent-chapters/recent-chapters.js";
334
- import { SENTRY_DENIED_URLS as Od, SENTRY_IGNORED_ERRORS as yd } from "./features/sentry/constants/ignored.js";
335
- import { default as Ud } from "./features/sheet-tools/desmos-calculator/desmos-calculator.js";
336
- import { default as vd } from "./features/sheet-tools/tool-header/tool-header.js";
337
- import { default as zd } from "./features/sheets/sheets-list/sheets-list.js";
338
- import { default as Fd } from "./features/sheets/reference-sheet/reference-sheet.js";
339
- import { WORKSHEET_V3_NODE_TYPES as Vd } from "./features/sheets/utils/is-v3-worksheet.js";
340
- import { COMPLETED_SHEET_STATE as Yd, NODE_LABELS as Kd, NODE_SUB_GROUP as Qd, NODE_TYPE as jd, PYTHON_NODE_TYPES as Zd, REWARDS_LIST as qd, SAT_NODE_TYPE as Xd, SHEET_ACTIONS as $d, SHEET_ATTEMPT_LOCATION as ex, SHEET_ATTEMPT_LOCATION_MAP as ox, SHEET_ATTEMPT_STATE as rx, SHEET_DATA_TYPE as tx, SHEET_STATE as ax } from "./features/sheets/constants/sheet.js";
341
- import { default as sx } from "./features/stickers/stickers-effects/stickers-effects.js";
342
- import { default as ux } from "./features/stickers/sticker-selector/sticker-selector.js";
343
- import { StickersProvider as mx } from "./features/stickers/stickers-effects/context/sticker-provider.js";
344
- import { useStickers as xx } from "./features/stickers/stickers-effects/hooks/use-stickers.js";
345
- import { useHandleStickerSend as ix } from "./features/stickers/hooks/use-handle-sticker-send/use-handle-sticker-send.js";
346
- import { useStickersJourney as Ix } from "./features/stickers/hooks/use-stickers-journey/use-stickers-journey.js";
347
- import { default as Tx } from "./features/student-details/student-details.js";
348
- import { default as Cx } from "./features/utils/load-script.js";
349
- import { default as Px } from "./features/wins-dashboard/belts-elements-stickers/belts-elements-stickers.js";
350
- import { default as hx } from "./features/wins-dashboard/student-badges/student-badges-lists.js";
351
- import { default as Rx } from "./features/wins-dashboard/header/wins-header.js";
352
- import { STUDENT_BADGE_STATUS as kx, STUDENT_BADGE_TYPE as Lx } from "./features/wins-dashboard/constants.js";
353
- import { ACTION_BAR_HEIGHT as gx, QUESTIONS_GAP as Hx, QUESTION_WIDTH as Ox, TOP_NAVIGATION_HEIGHT as yx } from "./features/worksheet/worksheet/constants.js";
354
- import { isOkayTypeQuestion as Ux } from "./features/worksheet/worksheet/worksheet-helpers.js";
355
- import { default as vx } from "./features/worksheet/worksheet/worksheet.js";
356
- import { default as zx } from "./features/worksheet/worksheet-preview/worksheet-preview.js";
357
- import { default as Fx } from "./features/worksheet/worksheet-preview/dynamic-worksheet-preview/dynamic-worksheet-preview.js";
358
- import { default as Vx } from "./features/worksheet/worksheet/worksheet-permissions/sheet-locked.js";
359
- import { default as Yx } from "./features/worksheet/worksheet/worksheet-permissions/error.js";
360
- import { default as Qx } from "./features/worksheet/learnosity-preloader/learnosity-preloader.js";
361
- import { default as Zx } from "./features/worksheet/learnosity-preloader/use-is-learnosity-loaded.js";
362
- import { default as Xx } from "./features/worksheet/worksheet-preview/hooks/use-worksheet-layout.js";
363
- import { default as en } from "./features/parent-dashboard/comps/cuemath-app-features/cuemath-app-features.js";
364
- import { default as rn } from "./features/parent-dashboard/comps/math-practice/math-practice.js";
365
- import { default as an } from "./features/parent-dashboard/comps/parent-dashboard-faqs/parent-dashboard-faqs.js";
366
- import { default as sn } from "./features/parent-dashboard/comps/compact-header/compact-header.js";
367
- import { default as un } from "./features/parent-dashboard/comps/pla-first-session-introduction/pla-first-session-introduction.js";
368
- import { default as mn } from "./features/parent-dashboard/modals/cancellation-confirmation/cancellation-confirmation.js";
369
- import { default as xn } from "./features/parent-dashboard/modals/cancellation-reason/cancellation-reason.js";
370
- import { default as cn } from "./features/parent-dashboard/modals/cancel-subscription/cancel-subscription.js";
371
- import { default as Sn } from "./features/parent-dashboard/modals/student-profile-summary/student-profile-summary.js";
372
- import { default as En } from "./features/parent-dashboard/modals/trial-report/trial-report.js";
373
- import { default as An } from "./features/parent-dashboard/modals/help-and-support/help-and-support.js";
374
- import { default as _n } from "./features/parent-dashboard/modals/student-login-info/student-login-info.js";
375
- import { default as Mn } from "./features/parent-dashboard/modals/tutor-change/tutor-change.js";
376
- import { default as Dn } from "./features/parent-dashboard/modals/view-payment-method/view-payment-method.js";
377
- import { default as Ln } from "./features/parent-dashboard/parent-dashboard.js";
378
- import { usePLASwitchUserJourney as gn } from "./features/parent-dashboard/hooks/use-switch-user-journey.js";
379
- import { default as On } from "./features/parent-dashboard/hooks/use-fetch-parent-home.js";
380
- import { default as Gn } from "./features/parent-dashboard/hooks/use-parent-home-data.js";
381
- import { invalidateParentHome as bn } from "./features/parent-dashboard/api/parent-home.js";
382
- import { EPLAState as Bn, ESummaryType as zn } from "./features/parent-dashboard/parent-dashboard-types.js";
383
- import { COUNTRY_CODE_MAP as Fn } from "./constants/country.js";
271
+ import { REPORT_TYPE as up } from "./features/timeline/monthly-timeline/monthly-timeline-types.js";
272
+ import { default as mp } from "./features/timeline/monthly-timeline/ptm-report/ptm-report.js";
273
+ import { default as xp } from "./features/timeline/comps/new-progress-intro-modal/new-progress-intro-modal.js";
274
+ import { default as ip } from "./features/talk-meter/talk-meter.js";
275
+ import { default as Ip } from "./features/extra-practice/extra-practice.js";
276
+ import { default as Tp } from "./features/homework/hw-card-list/hw-card-list.js";
277
+ import { invalidateHomeworks as Cp } from "./features/homework/hw-card-list/api/get-homeworks.js";
278
+ import { default as Ap } from "./features/homework/card-title.js";
279
+ import { useAutoPlayPermission as hp } from "./features/hooks/use-auto-play-permission/use-auto-play-permission.js";
280
+ import { JOURNEY_ID_STUDENT as Mp } from "./features/journey/journey-id/journey-id-student.js";
281
+ import { JOURNEY_ID_TEACHER as kp } from "./features/journey/journey-id/journey-id-teacher.js";
282
+ import { TRACKING_ID_STUDENT as Np } from "./features/journey/tracking-id/tracking-id-student.js";
283
+ import { TRACKING_ID_TEACHER as Op } from "./features/journey/tracking-id/tracking-id-teacher.js";
284
+ import { useJourney as yp } from "./features/journey/use-journey/use-journey.js";
285
+ import { useGetEligibleJourneysViaRoute as Up } from "./features/journey/hooks/use-get-eligible-journeys-via-route.js";
286
+ import { useGetTrackedViews as vp } from "./features/journey/hooks/use-get-tracked-views.js";
287
+ import { JourneyProvider as zp } from "./features/journey/use-journey/journey-context-provider.js";
288
+ import { IndicatorType as Fp } from "./features/journey/use-journey/constants.js";
289
+ import { Coachmark as Vp } from "./features/journey/comps/coachmark/coachmark.js";
290
+ import { useHomePageJourney as Jp } from "./features/journey/hooks/use-home-page-journey/use-home-page-journey.js";
291
+ import { useChapterPageJourney as Qp } from "./features/journey/hooks/use-chapter-page-journey/use-chapter-journey.js";
292
+ import { usePuzzleDashboardJourney as Zp } from "./features/journey/hooks/use-puzzles-journey/use-puzzle-dashboard-journey.js";
293
+ import { usePuzzleIntroJourney as Xp } from "./features/journey/hooks/use-puzzles-journey/use-puzzle-intro-journey.js";
294
+ import { usePuzzleProgressJourney as em } from "./features/journey/hooks/use-puzzles-journey/use-puzzle-progress-journey.js";
295
+ import { useTeacherPuzzleAssignedJourney as rm } from "./features/journey/hooks/use-puzzles-journey/use-teacher-puzzle-assigned-journey.js";
296
+ import { usePuzzleAttemptJourney as am } from "./features/journey/hooks/use-puzzles-journey/use-puzzle-attempt-journey.js";
297
+ import { usePuzzleReviewJourney as sm } from "./features/journey/hooks/use-puzzles-journey/use-puzzle-review-journey.js";
298
+ import { usePuzzleUnassignJourney as um } from "./features/journey/hooks/use-puzzles-journey/use-puzzle-unassign-journey.js";
299
+ import { default as mm } from "./features/maintenance/maintenance.js";
300
+ import { default as xm } from "./features/milestone/create/submit-modal/submit-modal.js";
301
+ import { default as im } from "./features/milestone/create/comps/confirmation-modals/goal-creation-confirmation.js";
302
+ import { default as Im } from "./features/milestone/create/comps/confirmation-modals/chapter-clearance-confirmation.js";
303
+ import { default as Tm } from "./features/milestone/create/milestone-create-container.js";
304
+ import { default as Cm } from "./features/milestone/edit/goal-drafts/goal-draft-edit-container.js";
305
+ import { default as Am } from "./features/milestone/outcome/milestone-outcome-container.js";
306
+ import { default as hm } from "./features/milestone/outcome/comps/achievement/reason-submit-modal.js";
307
+ import { default as Mm } from "./features/milestone/outcome/comps/achievement/share-instructions-modal.js";
308
+ import { default as km } from "./features/milestone/edit/comps/edit-milestone-modal/index.js";
309
+ import { default as Nm } from "./features/milestone/edit/goal-edit-container.js";
310
+ import { default as Om } from "./features/milestone/edit/milestone-edit-container.js";
311
+ import { default as ym } from "./features/milestone/milestone-list-container/milestone-list-container.js";
312
+ import { default as Um } from "./features/milestone/milestone-action-widget/milestone-action-widget.js";
313
+ import { default as vm } from "./features/milestone/start/milestone-start.js";
314
+ import { default as zm } from "./features/milestone/milestone-tests/tests-creation/tests-creation.js";
315
+ import { default as Fm } from "./features/milestone/milestone-resources/resources-assign/resources-assign.js";
316
+ import { ACHIEVEMENT_ACTIONS as Vm, STAGES as Ym } from "./features/milestone/outcome/milestone-outcome-constants.js";
317
+ import { COURSE_STREAMS as Km, PREFERENCE_CATEGORY as Qm } from "./features/milestone/constants.js";
318
+ import { invalidateMilestonesData as Zm, useGetAllMilestonesdata as qm } from "./features/milestone/milestone-list-container/api/get-milestones.js";
319
+ import { invalidatePastMilestoneCount as $m, useGetPastMilestoneCount as ed } from "./features/milestone/milestone-list-container/api/get-past-milestone-count.js";
320
+ import { invalidateTestHelpData as rd, useGetTestHelpData as td } from "./features/milestone/milestone-list-container/api/get-tests-list.js";
321
+ import { invalidateMilestoneResources as fd, useGetMilestoneResources as sd } from "./features/milestone/milestone-list-container/api/get-milestone-resources.js";
322
+ import { useGetMileStoneConfig as ud } from "./features/milestone/create/api/milestone-config.js";
323
+ import { getPreferencesFromConfig as md } from "./features/milestone/create/milestone-create-helpers.js";
324
+ import { default as xd } from "./features/pointer-sync/pointer.js";
325
+ import { default as id } from "./features/pointer-sync/hooks/use-pointer-sync.js";
326
+ import { DigitalMeter as Id } from "./features/post-game-stats/digital-meter/digital-meter.js";
327
+ import { EPostGameStat as Td } from "./features/post-game-stats/enums/post-game-stats-enum.js";
328
+ import { PostGameStats as Cd } from "./features/post-game-stats/post-game-stats.js";
329
+ import { default as Ad } from "./features/puzzles/puzzle-container/puzzle-container.js";
330
+ import { default as hd } from "./features/puzzles/puzzle-feedback-celebration/puzzle-feedback-celebration.js";
331
+ import { default as Md } from "./features/puzzles/puzzle-dashboard/puzzle-dashboard.js";
332
+ import { default as kd } from "./features/puzzles/app/puzzle-app.js";
333
+ import { invalidatePuzzleToAssign as Nd, useGetPuzzleToAssign as gd } from "./features/puzzles/api/puzzle-assign.js";
334
+ import { default as Hd } from "./features/recent-chapters/recent-chapters.js";
335
+ import { SENTRY_DENIED_URLS as Gd, SENTRY_IGNORED_ERRORS as Ud } from "./features/sentry/constants/ignored.js";
336
+ import { default as vd } from "./features/sheet-tools/desmos-calculator/desmos-calculator.js";
337
+ import { default as zd } from "./features/sheet-tools/tool-header/tool-header.js";
338
+ import { default as Fd } from "./features/sheets/sheets-list/sheets-list.js";
339
+ import { default as Vd } from "./features/sheets/reference-sheet/reference-sheet.js";
340
+ import { WORKSHEET_V3_NODE_TYPES as Jd } from "./features/sheets/utils/is-v3-worksheet.js";
341
+ import { COMPLETED_SHEET_STATE as Qd, NODE_LABELS as jd, NODE_SUB_GROUP as Zd, NODE_TYPE as qd, PYTHON_NODE_TYPES as Xd, REWARDS_LIST as $d, SAT_NODE_TYPE as ex, SHEET_ACTIONS as ox, SHEET_ATTEMPT_LOCATION as rx, SHEET_ATTEMPT_LOCATION_MAP as tx, SHEET_ATTEMPT_STATE as ax, SHEET_DATA_TYPE as fx, SHEET_STATE as sx } from "./features/sheets/constants/sheet.js";
342
+ import { default as ux } from "./features/stickers/stickers-effects/stickers-effects.js";
343
+ import { default as mx } from "./features/stickers/sticker-selector/sticker-selector.js";
344
+ import { StickersProvider as xx } from "./features/stickers/stickers-effects/context/sticker-provider.js";
345
+ import { useStickers as ix } from "./features/stickers/stickers-effects/hooks/use-stickers.js";
346
+ import { useHandleStickerSend as Ix } from "./features/stickers/hooks/use-handle-sticker-send/use-handle-sticker-send.js";
347
+ import { useStickersJourney as Tx } from "./features/stickers/hooks/use-stickers-journey/use-stickers-journey.js";
348
+ import { default as Cx } from "./features/student-details/student-details.js";
349
+ import { default as Ax } from "./features/utils/load-script.js";
350
+ import { default as hx } from "./features/wins-dashboard/belts-elements-stickers/belts-elements-stickers.js";
351
+ import { default as Mx } from "./features/wins-dashboard/student-badges/student-badges-lists.js";
352
+ import { default as kx } from "./features/wins-dashboard/header/wins-header.js";
353
+ import { STUDENT_BADGE_STATUS as Nx, STUDENT_BADGE_TYPE as gx } from "./features/wins-dashboard/constants.js";
354
+ import { ACTION_BAR_HEIGHT as Hx, QUESTIONS_GAP as yx, QUESTION_WIDTH as Gx, TOP_NAVIGATION_HEIGHT as Ux } from "./features/worksheet/worksheet/constants.js";
355
+ import { isOkayTypeQuestion as vx } from "./features/worksheet/worksheet/worksheet-helpers.js";
356
+ import { default as zx } from "./features/worksheet/worksheet/worksheet.js";
357
+ import { default as Fx } from "./features/worksheet/worksheet-preview/worksheet-preview.js";
358
+ import { default as Vx } from "./features/worksheet/worksheet-preview/dynamic-worksheet-preview/dynamic-worksheet-preview.js";
359
+ import { default as Jx } from "./features/worksheet/worksheet/worksheet-permissions/sheet-locked.js";
360
+ import { default as Qx } from "./features/worksheet/worksheet/worksheet-permissions/error.js";
361
+ import { default as Zx } from "./features/worksheet/learnosity-preloader/learnosity-preloader.js";
362
+ import { default as Xx } from "./features/worksheet/learnosity-preloader/use-is-learnosity-loaded.js";
363
+ import { default as en } from "./features/worksheet/worksheet-preview/hooks/use-worksheet-layout.js";
364
+ import { default as rn } from "./features/parent-dashboard/comps/cuemath-app-features/cuemath-app-features.js";
365
+ import { default as an } from "./features/parent-dashboard/comps/math-practice/math-practice.js";
366
+ import { default as sn } from "./features/parent-dashboard/comps/parent-dashboard-faqs/parent-dashboard-faqs.js";
367
+ import { default as un } from "./features/parent-dashboard/comps/compact-header/compact-header.js";
368
+ import { default as mn } from "./features/parent-dashboard/comps/pla-first-session-introduction/pla-first-session-introduction.js";
369
+ import { default as xn } from "./features/parent-dashboard/modals/cancellation-confirmation/cancellation-confirmation.js";
370
+ import { default as cn } from "./features/parent-dashboard/modals/cancellation-reason/cancellation-reason.js";
371
+ import { default as Sn } from "./features/parent-dashboard/modals/cancel-subscription/cancel-subscription.js";
372
+ import { default as En } from "./features/parent-dashboard/modals/student-profile-summary/student-profile-summary.js";
373
+ import { default as Pn } from "./features/parent-dashboard/modals/trial-report/trial-report.js";
374
+ import { default as _n } from "./features/parent-dashboard/modals/help-and-support/help-and-support.js";
375
+ import { default as Rn } from "./features/parent-dashboard/modals/student-login-info/student-login-info.js";
376
+ import { default as Dn } from "./features/parent-dashboard/modals/tutor-change/tutor-change.js";
377
+ import { default as Ln } from "./features/parent-dashboard/modals/view-payment-method/view-payment-method.js";
378
+ import { default as gn } from "./features/parent-dashboard/parent-dashboard.js";
379
+ import { usePLASwitchUserJourney as Hn } from "./features/parent-dashboard/hooks/use-switch-user-journey.js";
380
+ import { default as Gn } from "./features/parent-dashboard/hooks/use-fetch-parent-home.js";
381
+ import { default as bn } from "./features/parent-dashboard/hooks/use-parent-home-data.js";
382
+ import { invalidateParentHome as Bn } from "./features/parent-dashboard/api/parent-home.js";
383
+ import { EPLAState as wn, ESummaryType as Fn } from "./features/parent-dashboard/parent-dashboard-types.js";
384
+ import { COUNTRY_CODE_MAP as Vn } from "./constants/country.js";
384
385
  export {
385
- Fm as ACHIEVEMENT_ACTIONS,
386
- Ys as AUTH_TABS,
386
+ Vm as ACHIEVEMENT_ACTIONS,
387
+ Js as AUTH_TABS,
387
388
  Xs as AVPreview,
388
389
  hl as AboutGameActivities,
389
- Rt as Accordion,
390
+ Mt as Accordion,
390
391
  kt as AccordionSection,
391
392
  Ns as AccountSelector,
392
- Pm as AchievementNotShareReasonModal,
393
- hm as AchievementShareInstructionModal,
393
+ hm as AchievementNotShareReasonModal,
394
+ Mm as AchievementShareInstructionModal,
394
395
  Xr as AfternoonIcon,
395
396
  i as AlertIcon,
396
397
  Cf as AnimatedArc,
@@ -403,36 +404,36 @@ export {
403
404
  Ff as AuthStaticPanel,
404
405
  Tt as AutoPlayPermissionProvider,
405
406
  tf as Avatar,
406
- Hr as Back2Icon,
407
+ Or as Back2Icon,
407
408
  I as BackIcon,
408
409
  uu as BackgroundImage,
409
410
  xa as BaseInput,
410
- Px as BeltsElementsStickers,
411
+ hx as BeltsElementsStickers,
411
412
  C as Bin2Icon,
412
413
  T as BinIcon,
413
- R as Book2Icon,
414
- P as BookClosedIcon,
414
+ M as Book2Icon,
415
+ A as BookClosedIcon,
415
416
  h as BookIcon,
416
417
  k as BookmarkIcon,
417
- H as Bulb2Icon,
418
+ O as Bulb2Icon,
418
419
  N as BulbIcon,
419
420
  zt as Button,
420
421
  eu as CIRCLE_ACTION_IDS,
421
422
  Xl as CIRCLE_ONBOARDING_ANALYTICS_STEPS,
422
- Yd as COMPLETED_SHEET_STATE,
423
- Fn as COUNTRY_CODE_MAP,
424
- Jm as COURSE_STREAMS,
423
+ Qd as COMPLETED_SHEET_STATE,
424
+ Vn as COUNTRY_CODE_MAP,
425
+ Km as COURSE_STREAMS,
425
426
  y as CalendarIcon,
426
427
  Fa as Callout,
427
- cn as CancelSubscriptionModal,
428
- mn as CancellationConfirmationModal,
429
- xn as CancellationReasonModal,
430
- Cp as CardTitle,
431
- Pf as Carousel,
428
+ Sn as CancelSubscriptionModal,
429
+ xn as CancellationConfirmationModal,
430
+ cn as CancellationReasonModal,
431
+ Ap as CardTitle,
432
+ Af as Carousel,
432
433
  ia as CascadingSelectInput,
433
434
  U as ChangeIcon,
434
435
  al as Chapter,
435
- im as ChapterClearanceConfirmationModal,
436
+ Im as ChapterClearanceConfirmationModal,
436
437
  Tl as ChapterDetails,
437
438
  sl as ChaptersList,
438
439
  Vr as ChatIcon,
@@ -444,18 +445,18 @@ export {
444
445
  Ur as ChevronLeftIcon,
445
446
  yr as ChevronRightIcon,
446
447
  Nl as CircleSoundKey,
447
- Ra as CircularLoader,
448
+ Ma as CircularLoader,
448
449
  Ts as CircularStepWrapper,
449
450
  pu as CircularSteps,
450
451
  ms as ClaimUserAccount,
451
452
  Ft as Clickable,
452
453
  F as ClipboardIcon,
453
- Y as Clock2Icon,
454
+ J as Clock2Icon,
454
455
  V as ClockIcon,
455
- Fp as Coachmark,
456
+ Vp as Coachmark,
456
457
  Q as CodeIcon,
457
- sn as CompactHeader,
458
- Ht as ContextMenu,
458
+ un as CompactHeader,
459
+ Ot as ContextMenu,
459
460
  Z as CopyIcon,
460
461
  Ut as CountdownTextTimer,
461
462
  yt as CountdownTimer,
@@ -464,66 +465,66 @@ export {
464
465
  ut as CueBoardIcon,
465
466
  Eu as CueCanvas,
466
467
  Su as CueCanvasController,
467
- Mu as CueCanvasHomeworkController,
468
+ Ru as CueCanvasHomeworkController,
468
469
  cu as CueCanvasProvider,
469
470
  _u as CueCanvasSideBar,
470
471
  re as CueCoinIcon,
471
472
  ee as CueRocket,
472
- en as CuemathAppFeatures,
473
- Yr as CuemathLogo,
473
+ rn as CuemathAppFeatures,
474
+ Jr as CuemathLogo,
474
475
  Is as CustomInputField,
475
476
  Zu as DailyTimeline,
476
477
  ae as DashArrowIcon,
477
478
  is as DatePickerInput,
478
- Ud as DesmosCalculator,
479
- id as DigitalMeter,
479
+ vd as DesmosCalculator,
480
+ Id as DigitalMeter,
480
481
  It as DotIcon,
481
- Rf as DotLottieAnimation,
482
+ Mf as DotLottieAnimation,
482
483
  se as DownIcon,
483
484
  ue as DraftIcon,
484
485
  me as DragIcon,
485
486
  hf as Drawer,
486
- Fx as DynamicPreviewWorksheet,
487
+ Vx as DynamicPreviewWorksheet,
487
488
  Fu as EClassTimeAlertLevel,
488
489
  $a as EDeviceType,
489
490
  yl as ELeaderboardType,
490
- Bn as EPLAState,
491
- zm as EPResourceAssign,
492
- Id as EPostGameStat,
491
+ wn as EPLAState,
492
+ Fm as EPResourceAssign,
493
+ Td as EPostGameStat,
493
494
  Vu as ESessionStatus,
494
- zn as ESummaryType,
495
+ Fn as ESummaryType,
495
496
  rp as ETAB_IDS,
496
497
  gu as EVENTS,
497
498
  ie as Edit2Icon,
498
499
  xe as EditIcon,
499
- Rm as EditMilestoneModal,
500
+ km as EditMilestoneModal,
500
501
  Ie as EditStarIcon,
501
502
  Te as EraserIcon,
502
503
  Zt as Error,
503
504
  Zr as EveningIcon,
504
505
  he as ExclamationIcon,
505
- vd as ExpandableHeader,
506
- ip as ExtraPractice,
507
- Pe as Eye2Icon,
506
+ zd as ExpandableHeader,
507
+ Ip as ExtraPractice,
508
+ Ae as Eye2Icon,
508
509
  Ce as EyeIcon,
509
- Pa as FlexView,
510
- Pl as GAME_LAUNCHER_ASSET_PADDING,
511
- Rl as GAME_LAUNCHER_SIZE,
510
+ Aa as FlexView,
511
+ Al as GAME_LAUNCHER_ASSET_PADDING,
512
+ Ml as GAME_LAUNCHER_SIZE,
512
513
  x as GIF,
513
514
  zr as GameIcon,
514
515
  ru as GameLauncher,
515
- xm as GoalCreationConfirmationModal,
516
- Tm as GoalDraftEdit,
517
- km as GoalEdit,
516
+ im as GoalCreationConfirmationModal,
517
+ Cm as GoalDraftEdit,
518
+ Nm as GoalEdit,
518
519
  ua as GooglePlacesSearchInput,
519
520
  xs as GradeInput,
520
521
  r as GradeSelector,
521
- Re as HandIcon,
522
+ Me as HandIcon,
522
523
  Ne as HelpIcon,
523
- He as HighlighterIcon,
524
+ Oe as HighlighterIcon,
524
525
  ke as HintFillIcon,
525
526
  ye as HomeIcon,
526
- Ip as HomeworkCardList,
527
+ Tp as HomeworkCardList,
527
528
  s as ILLUSTRATIONS,
528
529
  u as IMAGES,
529
530
  Zl as IStatsToAwardErrorCode,
@@ -531,32 +532,32 @@ export {
531
532
  vs as IdentifierOtpForm,
532
533
  Tf as Image,
533
534
  Ue as ImageIcon,
534
- zp as IndicatorType,
535
+ Fp as IndicatorType,
535
536
  ze as Info2Icon,
536
537
  Fe as Info3Icon,
537
538
  ve as InfoIcon,
538
539
  Qf as InputStatusIcon,
539
- hp as JOURNEY_ID_STUDENT,
540
- Rp as JOURNEY_ID_TEACHER,
541
- vp as JourneyProvider,
540
+ Mp as JOURNEY_ID_STUDENT,
541
+ kp as JOURNEY_ID_TEACHER,
542
+ zp as JourneyProvider,
542
543
  m as LOTTIE,
543
544
  ul as LPARChapter,
544
545
  ml as LPARMilestoneChapter,
545
546
  su as Leaderboard,
546
- Qx as LearnosityPreloader,
547
+ Zx as LearnosityPreloader,
547
548
  Ve as LeftIcon,
548
549
  Nf as LinearProgressBar,
549
550
  Qe as Lock2Icon,
550
551
  Ze as Lock3Icon,
551
- Ye as LockIcon,
552
- um as Maintenance,
553
- rn as MathPractice,
554
- ym as MilestoneActionWidget,
555
- Im as MilestoneCreate,
556
- Nm as MilestoneEdit,
557
- Hm as MilestoneList,
558
- Cm as MilestoneOutcome,
559
- Um as MilestoneStart,
552
+ Je as LockIcon,
553
+ mm as Maintenance,
554
+ an as MathPractice,
555
+ Um as MilestoneActionWidget,
556
+ Tm as MilestoneCreate,
557
+ Om as MilestoneEdit,
558
+ ym as MilestoneList,
559
+ Am as MilestoneOutcome,
560
+ vm as MilestoneStart,
560
561
  eo as Minus2Icon,
561
562
  Xe as MinusIcon,
562
563
  ro as MistakeIcon,
@@ -567,10 +568,10 @@ export {
567
568
  so as MoreVerticalIcon,
568
569
  et as MorningIcon,
569
570
  rl as MultiTabBlocker,
570
- Kd as NODE_LABELS,
571
- Qd as NODE_SUB_GROUP,
572
- jd as NODE_TYPE,
573
- mp as NewProgressIntroModal,
571
+ jd as NODE_LABELS,
572
+ Zd as NODE_SUB_GROUP,
573
+ qd as NODE_TYPE,
574
+ xp as NewProgressIntroModal,
574
575
  Qr as Next2Icon,
575
576
  uo as NextIcon,
576
577
  ht as Notification,
@@ -578,68 +579,69 @@ export {
578
579
  Ia as NumRangeInput,
579
580
  zs as OTPForm,
580
581
  Xf as OTPInput,
581
- Ps as OnboardingGuide,
582
- Yf as OverlayLoader,
583
- An as PLAHelpAndSupportModal,
582
+ As as OnboardingGuide,
583
+ Jf as OverlayLoader,
584
+ _n as PLAHelpAndSupportModal,
584
585
  Uf as PLATFORM_EVENTS_STUDENT,
585
586
  vf as PLATFORM_EVENTS_TEACHER,
586
587
  Zs as PLA_ANALYTICS_EVENTS,
587
- Ym as PREFERENCE_CATEGORY,
588
- up as PTMReport,
589
- Zd as PYTHON_NODE_TYPES,
590
- Ln as ParentDashboard,
591
- an as ParentDashboardFaqs,
588
+ Qm as PREFERENCE_CATEGORY,
589
+ mp as PTMReport,
590
+ Xd as PYTHON_NODE_TYPES,
591
+ gn as ParentDashboard,
592
+ sn as ParentDashboardFaqs,
592
593
  it as PauseIcon,
593
594
  mo as PencilIcon,
594
595
  Ta as PercentileInput,
595
596
  If as PerfectHits,
596
597
  es as PillButton,
597
- un as PlaFirstSessionIntroduction,
598
+ mn as PlaFirstSessionIntroduction,
598
599
  So as Play2Icon,
599
600
  co as PlayIcon,
600
601
  Ql as PlayerType,
601
- Ao as Plus2Icon,
602
+ Po as Plus2Icon,
602
603
  Eo as PlusIcon,
603
604
  no as PointerIcon,
604
- Td as PostGameStats,
605
+ Cd as PostGameStats,
605
606
  _o as PracticeIcon,
606
- zx as PreviewWorksheet,
607
- Mo as ProgressIcon,
607
+ Fx as PreviewWorksheet,
608
+ Ro as ProgressIcon,
608
609
  Fl as ProjectOutcome,
609
- Yl as ProjectType,
610
+ Jl as ProjectType,
610
611
  Lo as Puzzle2Icon,
611
- Rd as PuzzleApp,
612
- Cd as PuzzleCard,
613
- hd as PuzzleDashboard,
614
- Pd as PuzzleFeedbackCelebration,
612
+ kd as PuzzleApp,
613
+ Ad as PuzzleCard,
614
+ Md as PuzzleDashboard,
615
+ hd as PuzzleFeedbackCelebration,
615
616
  Do as PuzzleIcon,
616
617
  go as QuestionIcon,
617
- Oo as QuestionLetterIcon,
618
- qd as REWARDS_LIST,
618
+ Ho as QuestionLetterIcon,
619
+ up as REPORT_TYPE,
620
+ $d as REWARDS_LIST,
619
621
  ya as RadioCard,
620
622
  ra as RadioInput,
621
- gd as RecentChapters,
623
+ Hd as RecentChapters,
622
624
  Go as RedoIcon,
623
- Fd as ReferenceSheet,
624
- md as RemotePeerPointer,
625
+ Vd as ReferenceSheet,
626
+ xd as RemotePeerPointer,
625
627
  vu as ReportInformation,
626
628
  Zf as ResendOTP,
627
629
  Fs as ResetPasswordForm,
628
630
  bo as RightIcon,
629
631
  Bo as RulerIcon,
630
632
  xl as SATSheetSummary,
631
- Xd as SAT_NODE_TYPE,
632
- Od as SENTRY_DENIED_URLS,
633
- yd as SENTRY_IGNORED_ERRORS,
634
- $d as SHEET_ACTIONS,
635
- ex as SHEET_ATTEMPT_LOCATION,
636
- ox as SHEET_ATTEMPT_LOCATION_MAP,
637
- rx as SHEET_ATTEMPT_STATE,
638
- tx as SHEET_DATA_TYPE,
639
- ax as SHEET_STATE,
640
- Wm as STAGES,
641
- kx as STUDENT_BADGE_STATUS,
642
- Lx as STUDENT_BADGE_TYPE,
633
+ ex as SAT_NODE_TYPE,
634
+ Gd as SENTRY_DENIED_URLS,
635
+ Ud as SENTRY_IGNORED_ERRORS,
636
+ ox as SHEET_ACTIONS,
637
+ rx as SHEET_ATTEMPT_LOCATION,
638
+ tx as SHEET_ATTEMPT_LOCATION_MAP,
639
+ ax as SHEET_ATTEMPT_STATE,
640
+ fx as SHEET_DATA_TYPE,
641
+ sx as SHEET_STATE,
642
+ Ym as STAGES,
643
+ Nx as STUDENT_BADGE_STATUS,
644
+ gx as STUDENT_BADGE_TYPE,
643
645
  rt as ScreenGrabFilledIcon,
644
646
  mt as ScreenGrabIcon,
645
647
  Lr as ScribbleIcon,
@@ -650,62 +652,62 @@ export {
650
652
  rs as SelectableInfoCard,
651
653
  Ca as SelectionCards,
652
654
  df as Separator,
653
- Yx as SheetError,
655
+ Qx as SheetError,
654
656
  Wo as SheetIcon,
655
- zd as SheetList,
656
- Vx as SheetLocked,
657
+ Fd as SheetList,
658
+ Jx as SheetLocked,
657
659
  nu as SignUp,
658
660
  hs as SignupHeader,
659
661
  Cs as SignupMethods,
660
- Rs as SignupOptions,
662
+ Ms as SignupOptions,
661
663
  ks as SignupUnavailable,
662
664
  Nr as SketchIcon,
663
665
  qo as Skip2Icon,
664
666
  Ko as SkipColoredIcon,
665
667
  jo as SkipIcon,
666
668
  ys as SocialAccountNotFound,
667
- Hs as SocialLoginMethods,
669
+ Os as SocialLoginMethods,
668
670
  $o as SolutionIcon,
669
671
  du as SplashScreen,
670
672
  or as Star2Icon,
671
673
  tr as Star3Icon,
672
- Jo as StarIcon,
674
+ Yo as StarIcon,
673
675
  fr as StatusIcon,
674
676
  a as Stepper,
675
677
  at as StickerFilledIcon,
676
678
  xt as StickerIcon,
677
- ux as StickerSelector,
678
- sx as StickersEffects,
679
- mx as StickersProvider,
679
+ mx as StickerSelector,
680
+ ux as StickersEffects,
681
+ xx as StickersProvider,
680
682
  pf as StreakIcon,
681
683
  Ul as StreakReductionLocalStorageUtil,
682
684
  lr as StrikedEyeIcon,
683
- hx as StudentBadgeList,
684
- Tx as StudentDetails,
685
- _n as StudentLoginInfoModal,
685
+ Mx as StudentBadgeList,
686
+ Cx as StudentDetails,
687
+ Rn as StudentLoginInfoModal,
686
688
  zu as StudentProfileHighlights,
687
- Sn as StudentProfileSummaryModal,
688
- En as StudentTrialReportModal,
689
- mm as SubmitMilestoneModal,
689
+ En as StudentProfileSummaryModal,
690
+ Pn as StudentTrialReportModal,
691
+ xm as SubmitMilestoneModal,
690
692
  yf as SwipeableCarousel,
691
- Hf as SwipeableComponent,
693
+ Of as SwipeableComponent,
692
694
  pr as SwitchIcon,
693
- kp as TRACKING_ID_STUDENT,
694
- Np as TRACKING_ID_TEACHER,
695
+ Np as TRACKING_ID_STUDENT,
696
+ Op as TRACKING_ID_TEACHER,
695
697
  lf as TabComponent,
696
698
  kf as Tabs,
697
699
  za as Tag,
698
- xp as TalkMeter,
699
- vm as TestsCreation,
700
+ ip as TalkMeter,
701
+ zm as TestsCreation,
700
702
  va as Text,
701
- Yt as TextButton,
703
+ Jt as TextButton,
702
704
  ma as TextInput,
703
705
  dr as TickIcon,
704
706
  ff as TimeLeftTimeline,
705
707
  ep as TimelineTabs,
706
708
  Uu as TrialSession,
707
709
  nr as TrophyIcon,
708
- Mn as TutorChangeModal,
710
+ Dn as TutorChangeModal,
709
711
  vl as Tutorial,
710
712
  Fr as TutoringIcon,
711
713
  Va as UIContext,
@@ -713,86 +715,86 @@ export {
713
715
  cr as UndoIcon,
714
716
  Er as Unlock2Icon,
715
717
  Sr as UnlockIcon,
716
- Ar as UpIcon,
717
- Mr as User2Icon,
718
+ Pr as UpIcon,
719
+ Rr as User2Icon,
718
720
  _r as UserIcon,
719
721
  Vs as UserIdentifierForm,
720
722
  ss as UserList,
721
723
  us as UserTypeSelector,
722
724
  Us as UsernamePasswordForm,
723
725
  nf as Video,
724
- Dn as ViewPaymentMethodModal,
726
+ Ln as ViewPaymentMethodModal,
725
727
  zf as WHITELIST_EVENTS,
726
- gx as WORKSHEET_ACTION_BAR_HEIGHT,
727
- Hx as WORKSHEET_QUESTIONS_GAP,
728
- Ox as WORKSHEET_QUESTION_WIDTH,
729
- yx as WORKSHEET_TOP_NAVIGATION_HEIGHT,
730
- Vd as WORKSHEET_V3_NODE_TYPES,
728
+ Hx as WORKSHEET_ACTION_BAR_HEIGHT,
729
+ yx as WORKSHEET_QUESTIONS_GAP,
730
+ Gx as WORKSHEET_QUESTION_WIDTH,
731
+ Ux as WORKSHEET_TOP_NAVIGATION_HEIGHT,
732
+ Jd as WORKSHEET_V3_NODE_TYPES,
731
733
  zl as WebView,
732
734
  Vl as WebViewEvent,
733
735
  Dr as WinsCommonIcon,
734
- Rx as WinsHeader,
735
- vx as Worksheet,
736
+ kx as WinsHeader,
737
+ zx as Worksheet,
736
738
  il as checkIfPPTNodeType,
737
739
  Il as getActiveSATSheet,
738
- ud as getPreferencesFromConfig,
740
+ md as getPreferencesFromConfig,
739
741
  of as getTheme,
740
742
  Cl as invalidateGetChapterDetails,
741
- Tp as invalidateHomeworks,
742
- td as invalidateMilestoneResources,
743
- Qm as invalidateMilestonesData,
744
- bn as invalidateParentHome,
745
- qm as invalidatePastMilestoneCount,
746
- kd as invalidatePuzzleToAssign,
747
- ed as invalidateTestHelpData,
748
- Ux as isOkayTypeQuestion,
749
- Cx as loadScript,
750
- Pp as useAutoPlayPermission,
751
- Au as useCanvasSyncBroker,
752
- Yp as useChapterPageJourney,
743
+ Cp as invalidateHomeworks,
744
+ fd as invalidateMilestoneResources,
745
+ Zm as invalidateMilestonesData,
746
+ Bn as invalidateParentHome,
747
+ $m as invalidatePastMilestoneCount,
748
+ Nd as invalidatePuzzleToAssign,
749
+ rd as invalidateTestHelpData,
750
+ vx as isOkayTypeQuestion,
751
+ Ax as loadScript,
752
+ hp as useAutoPlayPermission,
753
+ Pu as useCanvasSyncBroker,
754
+ Qp as useChapterPageJourney,
753
755
  kl as useCircleSounds,
754
756
  Qu as useClassTimeAlerts,
755
757
  ja as useContextMenuClickHandler,
756
- On as useFetchParentHome,
757
- Pt as useForceReload,
758
- jm as useGetAllMilestonesdata,
758
+ Gn as useFetchParentHome,
759
+ At as useForceReload,
760
+ qm as useGetAllMilestonesdata,
759
761
  au as useGetCircleHomeDetailsDal,
760
- yp as useGetEligibleJourneysViaRoute,
761
- Hl as useGetLeaderboardDal,
762
- sd as useGetMileStoneConfig,
763
- ad as useGetMilestoneResources,
764
- Xm as useGetPastMilestoneCount,
765
- Ld as useGetPuzzleToAssign,
766
- Yu as useGetSessionReports,
767
- od as useGetTestHelpData,
768
- Up as useGetTrackedViews,
769
- ix as useHandleStickerSend,
770
- Vp as useHomePageJourney,
771
- Ou as useInClassActionDispatcher,
762
+ Up as useGetEligibleJourneysViaRoute,
763
+ Ol as useGetLeaderboardDal,
764
+ ud as useGetMileStoneConfig,
765
+ sd as useGetMilestoneResources,
766
+ ed as useGetPastMilestoneCount,
767
+ gd as useGetPuzzleToAssign,
768
+ Ju as useGetSessionReports,
769
+ td as useGetTestHelpData,
770
+ vp as useGetTrackedViews,
771
+ Ix as useHandleStickerSend,
772
+ Jp as useHomePageJourney,
773
+ Hu as useInClassActionDispatcher,
772
774
  yu as useInClassActionListener,
773
775
  Du as useInClassMessageBroker,
774
- Zx as useIsLearnosityLoaded,
776
+ Xx as useIsLearnosityLoaded,
775
777
  el as useIsTabBlocked,
776
- Hp as useJourney,
778
+ yp as useJourney,
777
779
  Na as useModalActions,
778
- Ha as useModalParams,
779
- gn as usePLASwitchUserJourney,
780
- Gn as useParentHomeData,
781
- xd as usePointerSync,
782
- rm as usePuzzleAttemptJourney,
783
- Qp as usePuzzleDashboardJourney,
784
- Zp as usePuzzleIntroJourney,
785
- Xp as usePuzzleProgressJourney,
786
- am as usePuzzleReviewJourney,
787
- sm as usePuzzleUnassignJourney,
788
- xx as useStickers,
789
- Ix as useStickersJourney,
790
- em as useTeacherPuzzleAssignedJourney,
780
+ Oa as useModalParams,
781
+ Hn as usePLASwitchUserJourney,
782
+ bn as useParentHomeData,
783
+ id as usePointerSync,
784
+ am as usePuzzleAttemptJourney,
785
+ Zp as usePuzzleDashboardJourney,
786
+ Xp as usePuzzleIntroJourney,
787
+ em as usePuzzleProgressJourney,
788
+ sm as usePuzzleReviewJourney,
789
+ um as usePuzzleUnassignJourney,
790
+ ix as useStickers,
791
+ Tx as useStickersJourney,
792
+ rm as useTeacherPuzzleAssignedJourney,
791
793
  qa as useTimeRemaining,
792
794
  Ka as useTrackingContext,
793
795
  Lu as useTrialSessionMessageBroker,
794
- Ja as useUIContext,
795
- Xx as useWorksheetLayout,
796
+ Ya as useUIContext,
797
+ en as useWorksheetLayout,
796
798
  Ct as useZoomDisable
797
799
  };
798
800
  //# sourceMappingURL=index.js.map
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
1
+ {"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cuemath/leap",
3
- "version": "3.5.36",
3
+ "version": "3.5.37",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "dist"