@cuemath/leap 3.2.20-beta-0.1 → 3.2.20-beta-0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/features/chapters/lpar-chapter/block-section/sat-sheet-item/sat-sheet-item.js +1 -1
- package/dist/features/chapters/lpar-chapter/block-section/sat-sheet-item/sat-sheet-item.js.map +1 -1
- package/dist/features/chapters/lpar-chapter/block-section/sat-sheet-item/sat-sheet-utils.js +1 -1
- package/dist/features/chapters/lpar-chapter/block-section/sat-sheet-item/sat-sheet-utils.js.map +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.js +263 -261
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
@@ -7,7 +7,7 @@ import { RewardAccuracy as _ } from "../sheet-item/rewards-n-actions/reward-n-ac
|
|
7
7
|
import v from "../sheet-item/sheet-item-icon.js";
|
8
8
|
import { SheetItemContainer as O, VerticalLineWrapper as U, TopVerticalLine as j, SheetDetailsWrapper as B } from "../sheet-item/sheet-item-styled.js";
|
9
9
|
import { getUserNodeIdsToUnlockSAT as M, getSATSheetStatementStats as G } from "./sat-sheet-item-utils.js";
|
10
|
-
import {
|
10
|
+
import { getActiveSATSheet as V } from "./sat-sheet-utils.js";
|
11
11
|
import L from "./student-actions/student-actions.js";
|
12
12
|
import N from "./teacher-actions/teacher-actions.js";
|
13
13
|
const ee = ({
|
package/dist/features/chapters/lpar-chapter/block-section/sat-sheet-item/sat-sheet-item.js.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"sat-sheet-item.js","sources":["../../../../../../src/features/chapters/lpar-chapter/block-section/sat-sheet-item/sat-sheet-item.tsx"],"sourcesContent":["import type { ISATSheetItemProps } from './sat-sheet-item-types';\n\nimport { useCallback, type FC, useMemo } from 'react';\n\nimport { useUIContext } from '../../../../ui/context/context';\nimport FlexView from '../../../../ui/layout/flex-view';\nimport Text from '../../../../ui/text/text';\nimport { RewardAccuracy } from '../sheet-item/rewards-n-actions/reward-n-actions-styled';\nimport SheetItemIcon from '../sheet-item/sheet-item-icon';\nimport {\n SheetDetailsWrapper,\n SheetItemContainer,\n TopVerticalLine,\n VerticalLineWrapper,\n} from '../sheet-item/sheet-item-styled';\nimport { getSATSheetStatementStats, getUserNodeIdsToUnlockSAT } from './sat-sheet-item-utils';\nimport {
|
1
|
+
{"version":3,"file":"sat-sheet-item.js","sources":["../../../../../../src/features/chapters/lpar-chapter/block-section/sat-sheet-item/sat-sheet-item.tsx"],"sourcesContent":["import type { ISATSheetItemProps } from './sat-sheet-item-types';\n\nimport { useCallback, type FC, useMemo } from 'react';\n\nimport { useUIContext } from '../../../../ui/context/context';\nimport FlexView from '../../../../ui/layout/flex-view';\nimport Text from '../../../../ui/text/text';\nimport { RewardAccuracy } from '../sheet-item/rewards-n-actions/reward-n-actions-styled';\nimport SheetItemIcon from '../sheet-item/sheet-item-icon';\nimport {\n SheetDetailsWrapper,\n SheetItemContainer,\n TopVerticalLine,\n VerticalLineWrapper,\n} from '../sheet-item/sheet-item-styled';\nimport { getSATSheetStatementStats, getUserNodeIdsToUnlockSAT } from './sat-sheet-item-utils';\nimport { getActiveSATSheet } from './sat-sheet-utils';\nimport StudentActions from './student-actions/student-actions';\nimport TeacherActions from './teacher-actions/teacher-actions';\n\nconst SATSheetItem: FC<ISATSheetItemProps> = ({\n blockStatus,\n satMaxScore,\n satScore,\n ...restSATSheetItemProps\n}) => {\n const { blockId, sheets, userType, onSATReview, onSATUnlock, onSATStartOrResume } =\n restSATSheetItemProps;\n const {\n user_block_id: userBlockId,\n can_review: canReview,\n can_start: canStart,\n can_resume: canResume,\n order: questionOrder,\n } = getActiveSATSheet(sheets) || {};\n\n const { onEvent: trackEvent } = useUIContext();\n const analyticsProps = useMemo(\n () => ({\n user_block_id: userBlockId,\n block_id: blockId,\n }),\n [blockId, userBlockId],\n );\n\n const isMenuVisible = Boolean(\n (blockStatus === 'COMPLETED' || blockStatus === 'MASTERED') && canReview && userBlockId,\n );\n\n const handleOnReview = useCallback(() => {\n if (typeof onSATReview !== 'function') {\n throw new Error('onSATReview must be a function');\n }\n\n if (!userBlockId) {\n throw new Error('userBlockId must be a string');\n }\n\n trackEvent('clicked', analyticsProps);\n\n onSATReview(userBlockId);\n }, [analyticsProps, onSATReview, trackEvent, userBlockId]);\n\n const handleOnUnlock = useCallback(() => {\n if (typeof onSATUnlock !== 'function') {\n throw new Error('onSATUnlock must be a function');\n }\n\n const userNodeIds = getUserNodeIdsToUnlockSAT(sheets);\n\n if (userNodeIds.length === 0) {\n throw new Error('User node IDs are missing');\n }\n\n onSATUnlock(userNodeIds);\n }, [onSATUnlock, sheets]);\n\n const handleOnStartOrResume = useCallback(() => {\n if (typeof onSATStartOrResume !== 'function') {\n throw new Error('onSATStartOrResume must be a function');\n }\n\n if (!blockId) {\n throw new Error('blockId must be a string');\n }\n\n onSATStartOrResume(blockId);\n }, [onSATStartOrResume, blockId]);\n\n return (\n <SheetItemContainer\n $flexDirection=\"row\"\n $justifyContent=\"space-between\"\n $alignItems=\"center\"\n $flexGapX={1}\n >\n <FlexView $width=\"70%\" $flexGap={8} $flexDirection=\"row\">\n <VerticalLineWrapper>\n <TopVerticalLine />\n </VerticalLineWrapper>\n\n <SheetDetailsWrapper\n $width=\"100%\"\n $flexDirection=\"row\"\n $alignItems=\"center\"\n $flexGap={8}\n $marginBottom={12}\n >\n <SheetItemIcon chapterPermissionCode={blockStatus} />\n\n <FlexView $justifyContent=\"center\" $width=\"100%\">\n <Text $renderAs=\"body1Medium\">Assessment • Mock test</Text>\n\n <FlexView>\n {sheets.map(sheet => {\n const { statement, color } = getSATSheetStatementStats(sheet);\n\n return (\n <Text $renderAs=\"body2\" key={sheet.node_id} $color={color}>\n {statement}\n </Text>\n );\n })}\n </FlexView>\n </FlexView>\n </SheetDetailsWrapper>\n </FlexView>\n\n <FlexView $flexDirection=\"row\" $alignItems=\"center\" $justifyContent=\"center\" $flexGap={8}>\n {canReview && satMaxScore && (\n <FlexView $justifyContent=\"center\" $alignItems=\"center\">\n <RewardAccuracy $renderAs=\"eyebrow2\" $align=\"center\">\n {satScore}/{satMaxScore}\n </RewardAccuracy>\n </FlexView>\n )}\n\n {userType === 'STUDENT' ? (\n <StudentActions\n handleOnReview={handleOnReview}\n isMenuVisible={isMenuVisible}\n blockStatus={blockStatus}\n canResume={Boolean(canResume)}\n canStart={Boolean(canStart)}\n handleOnStartOrResume={handleOnStartOrResume}\n analyticsProps={analyticsProps}\n questionOrder={questionOrder}\n />\n ) : (\n <TeacherActions\n handleOnReview={handleOnReview}\n handleOnUnlock={handleOnUnlock}\n isMenuVisible={isMenuVisible}\n blockStatus={blockStatus}\n analyticsProps={analyticsProps}\n />\n )}\n </FlexView>\n </SheetItemContainer>\n );\n};\n\nexport default SATSheetItem;\n"],"names":["SATSheetItem","blockStatus","satMaxScore","satScore","restSATSheetItemProps","blockId","sheets","userType","onSATReview","onSATUnlock","onSATStartOrResume","userBlockId","canReview","canStart","canResume","questionOrder","getActiveSATSheet","trackEvent","useUIContext","analyticsProps","useMemo","isMenuVisible","handleOnReview","useCallback","handleOnUnlock","userNodeIds","getUserNodeIdsToUnlockSAT","handleOnStartOrResume","jsxs","SheetItemContainer","FlexView","jsx","VerticalLineWrapper","TopVerticalLine","SheetDetailsWrapper","SheetItemIcon","Text","sheet","statement","color","getSATSheetStatementStats","RewardAccuracy","StudentActions","TeacherActions"],"mappings":"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"}
|
package/dist/features/chapters/lpar-chapter/block-section/sat-sheet-item/sat-sheet-utils.js.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"sat-sheet-utils.js","sources":["../../../../../../src/features/chapters/lpar-chapter/block-section/sat-sheet-item/sat-sheet-utils.ts"],"sourcesContent":["import type { TLPARSheetData } from '../sheet-item/sheet-item-type';\n\nconst
|
1
|
+
{"version":3,"file":"sat-sheet-utils.js","sources":["../../../../../../src/features/chapters/lpar-chapter/block-section/sat-sheet-item/sat-sheet-utils.ts"],"sourcesContent":["import type { TLPARSheetData } from '../sheet-item/sheet-item-type';\n\nconst getActiveSATSheet = (sheets: TLPARSheetData[]) => {\n const activeSheet = sheets.find(sheet => sheet.can_start || sheet.can_resume) ?? sheets[0];\n\n return activeSheet;\n};\n\nexport { getActiveSATSheet };\n"],"names":["getActiveSATSheet","sheets","sheet"],"mappings":"AAEM,MAAAA,IAAoB,CAACC,MACLA,EAAO,KAAK,CAASC,MAAAA,EAAM,aAAaA,EAAM,UAAU,KAAKD,EAAO,CAAC;"}
|
package/dist/index.d.ts
CHANGED
@@ -531,6 +531,8 @@ declare enum GENDER {
|
|
531
531
|
OTHER = "OTHER"
|
532
532
|
}
|
533
533
|
|
534
|
+
export declare const getActiveSATSheet: (sheets: TLPARSheetData[]) => TLPARSheetData | undefined;
|
535
|
+
|
534
536
|
declare const getArrowTooltipConfig: IGetArrowTooltipConfig;
|
535
537
|
|
536
538
|
declare const getButtonConfig: IGetButtonConfig;
|
package/dist/index.js
CHANGED
@@ -6,10 +6,10 @@ import { LOTTIE as m } from "./assets/lottie/lottie.js";
|
|
6
6
|
import { default as x } from "./assets/line-icons/icons/alert.js";
|
7
7
|
import { default as c } from "./assets/line-icons/icons/back.js";
|
8
8
|
import { default as I } from "./assets/line-icons/icons/bin.js";
|
9
|
-
import { default as
|
9
|
+
import { default as T } from "./assets/line-icons/icons/bin2.js";
|
10
10
|
import { default as C } from "./assets/line-icons/icons/book-closed.js";
|
11
11
|
import { default as P } from "./assets/line-icons/icons/book.js";
|
12
|
-
import { default as
|
12
|
+
import { default as h } from "./assets/line-icons/icons/book2.js";
|
13
13
|
import { default as M } from "./assets/line-icons/icons/bookmark.js";
|
14
14
|
import { default as O } from "./assets/line-icons/icons/bulb.js";
|
15
15
|
import { default as N } from "./assets/line-icons/icons/bulb2.js";
|
@@ -33,10 +33,10 @@ import { default as me } from "./assets/line-icons/icons/edit-star.js";
|
|
33
33
|
import { default as xe } from "./assets/line-icons/icons/eraser.js";
|
34
34
|
import { default as ce } from "./assets/line-icons/icons/eye.js";
|
35
35
|
import { default as Ie } from "./assets/line-icons/icons/eye2.js";
|
36
|
-
import { default as
|
36
|
+
import { default as Te } from "./assets/line-icons/icons/exclamation.js";
|
37
37
|
import { default as Ce } from "./assets/line-icons/icons/hand.js";
|
38
38
|
import { default as Pe } from "./assets/line-icons/icons/hint-fill.js";
|
39
|
-
import { default as
|
39
|
+
import { default as he } from "./assets/line-icons/icons/help.js";
|
40
40
|
import { default as Me } from "./assets/line-icons/icons/highlighter.js";
|
41
41
|
import { default as Oe } from "./assets/line-icons/icons/home.js";
|
42
42
|
import { default as Ne } from "./assets/line-icons/icons/image.js";
|
@@ -59,11 +59,11 @@ import { default as po } from "./assets/line-icons/icons/play2.js";
|
|
59
59
|
import { default as mo } from "./assets/line-icons/icons/plus.js";
|
60
60
|
import { default as no } from "./assets/line-icons/icons/plus2.js";
|
61
61
|
import { default as io } from "./assets/line-icons/icons/practice.js";
|
62
|
-
import { default as
|
62
|
+
import { default as So } from "./assets/line-icons/icons/progress.js";
|
63
63
|
import { default as Eo } from "./assets/line-icons/icons/puzzle-icon.js";
|
64
64
|
import { default as Ao } from "./assets/line-icons/icons/puzzle2.js";
|
65
65
|
import { default as _o } from "./assets/line-icons/icons/question.js";
|
66
|
-
import { default as
|
66
|
+
import { default as ko } from "./assets/line-icons/icons/question-letter.js";
|
67
67
|
import { default as Lo } from "./assets/line-icons/icons/redo.js";
|
68
68
|
import { default as Ro } from "./assets/line-icons/icons/right.js";
|
69
69
|
import { default as Ho } from "./assets/line-icons/icons/ruler.js";
|
@@ -86,10 +86,10 @@ import { default as ur } from "./assets/line-icons/icons/up.js";
|
|
86
86
|
import { default as dr } from "./assets/line-icons/icons/user.js";
|
87
87
|
import { default as nr } from "./assets/line-icons/icons/user2.js";
|
88
88
|
import { default as ir, default as Ir } from "./assets/line-icons/icons/sketch.js";
|
89
|
-
import { default as
|
89
|
+
import { default as Tr } from "./assets/line-icons/icons/back2.js";
|
90
90
|
import { default as Cr } from "./assets/line-icons/icons/chevron-right.js";
|
91
91
|
import { default as Pr } from "./assets/line-icons/icons/chevron-left.js";
|
92
|
-
import { default as
|
92
|
+
import { default as hr } from "./assets/line-icons/icons/chevron-down.js";
|
93
93
|
import { default as Mr } from "./assets/line-icons/icons/game.js";
|
94
94
|
import { default as Or } from "./assets/line-icons/icons/tutoring.js";
|
95
95
|
import { default as Nr } from "./assets/line-icons/icons/chat.js";
|
@@ -113,10 +113,10 @@ import { default as mt } from "./features/ui/context-menu/context-menu.js";
|
|
113
113
|
import { default as xt } from "./features/ui/timers/countdown-timer/countdown-timer.js";
|
114
114
|
import { default as ct } from "./features/ui/nudge/nudge.js";
|
115
115
|
import { default as It } from "./features/ui/buttons/button/button.js";
|
116
|
-
import { default as
|
116
|
+
import { default as Tt } from "./features/ui/buttons/clickable/clickable.js";
|
117
117
|
import { default as Ct } from "./features/ui/buttons/icon-button/icon-button.js";
|
118
118
|
import { default as Pt } from "./features/ui/buttons/text-button/text-button.js";
|
119
|
-
import { ArcButton as
|
119
|
+
import { ArcButton as ht } from "./features/ui/arc-button/arc-button.js";
|
120
120
|
import { default as Mt } from "./features/ui/error/error.js";
|
121
121
|
import { default as Ot } from "./features/ui/inputs/checkbox-input/checkbox-input.js";
|
122
122
|
import { default as Nt } from "./features/ui/inputs/checkbox-input-list/checkbox-input-list.js";
|
@@ -140,10 +140,10 @@ import { default as ma } from "./features/ui/section-list/section-list.js";
|
|
140
140
|
import { default as xa } from "./features/ui/text/text.js";
|
141
141
|
import { default as ca } from "./features/ui/tag/tag.js";
|
142
142
|
import { default as Ia } from "./features/ui/callout/callout.js";
|
143
|
-
import { default as
|
143
|
+
import { default as Ta, useUIContext as Ea } from "./features/ui/context/context.js";
|
144
144
|
import { default as Aa } from "./features/ui/context/use-tracking-context.js";
|
145
145
|
import { default as _a } from "./features/ui/hooks/use-context-menu-click-handler.js";
|
146
|
-
import { EDeviceType as
|
146
|
+
import { EDeviceType as ka } from "./features/ui/theme/constants.js";
|
147
147
|
import { getTheme as La } from "./features/ui/theme/get-theme.js";
|
148
148
|
import { default as Ra } from "./features/ui/avatar/avatar.js";
|
149
149
|
import { default as Ha } from "./features/ui/time-left-timeline/time-left-timeline.js";
|
@@ -166,10 +166,10 @@ import { default as uf } from "./features/auth/comps/overlay-loader/overlay-load
|
|
166
166
|
import { default as df } from "./features/auth/comps/tabs/tabs.js";
|
167
167
|
import { default as nf } from "./features/auth/comps/input-status-icon/input-status-icon.js";
|
168
168
|
import { default as If } from "./features/auth/comps/resend-otp/resend-otp.js";
|
169
|
-
import { default as
|
169
|
+
import { default as Tf } from "./features/auth/comps/otp-input/otp-input.js";
|
170
170
|
import { default as Cf } from "./features/auth/comps/pill-button/pill-button.js";
|
171
171
|
import { default as Pf } from "./features/auth/comps/linear-progress-bar/linear-progress-bar.js";
|
172
|
-
import { default as
|
172
|
+
import { default as hf } from "./features/auth/comps/selectable-info-card/selectable-info-card.js";
|
173
173
|
import { default as Mf } from "./features/auth/comps/animated-avatar-message/animated-avatar-message.js";
|
174
174
|
import { default as Of } from "./features/auth/signup/user-type-selector/user-type-selector.js";
|
175
175
|
import { default as Nf } from "./features/auth/signup/claim-user-account/claim-user-account.js";
|
@@ -193,177 +193,178 @@ import { AUTH_TABS as ms } from "./features/auth/login/login-constants.js";
|
|
193
193
|
import { AuthApiErrorCode as xs } from "./features/auth/auth-constants.js";
|
194
194
|
import { default as cs } from "./features/av/av-preview/av-preview.js";
|
195
195
|
import { default as Is } from "./features/blockers/multi-tab-blocker/use-is-tab-blocked.js";
|
196
|
-
import { default as
|
196
|
+
import { default as Ts } from "./features/blockers/multi-tab-blocker/multi-tab-blocker.js";
|
197
197
|
import { default as Cs } from "./features/chapters/chapter/chapter.js";
|
198
198
|
import { default as Ps } from "./features/chapters/chapters-list/chapters-list.js";
|
199
|
-
import { default as
|
199
|
+
import { default as hs } from "./features/chapters/lpar-chapter/lpar-chapter.js";
|
200
200
|
import { default as Ms } from "./features/chapters/lpar-milestone-chapter/lpar-milestone-chapter.js";
|
201
201
|
import { default as Os } from "./features/chapters/lpar-chapter/block-section/sat-sheet-item/sat-sheet-summary/sat-sheet-summary.js";
|
202
202
|
import { checkIfPPTNodeType as Ns } from "./features/chapters/lpar-chapter/utils/index.js";
|
203
|
-
import {
|
204
|
-
import {
|
205
|
-
import {
|
206
|
-
import {
|
207
|
-
import {
|
208
|
-
import {
|
209
|
-
import {
|
210
|
-
import {
|
211
|
-
import {
|
212
|
-
import {
|
213
|
-
import {
|
214
|
-
import {
|
215
|
-
import {
|
216
|
-
import {
|
217
|
-
import {
|
218
|
-
import {
|
219
|
-
import {
|
220
|
-
import {
|
221
|
-
import {
|
222
|
-
import {
|
223
|
-
import {
|
224
|
-
import {
|
225
|
-
import {
|
226
|
-
import {
|
227
|
-
import {
|
228
|
-
import { default as Rl } from "./features/cue-canvas/
|
229
|
-
import { default as Hl } from "./features/cue-canvas/
|
230
|
-
import { default as gl } from "./features/cue-canvas/
|
231
|
-
import { default as yl } from "./features/cue-canvas/
|
232
|
-
import { default as Bl } from "./features/cue-canvas/
|
233
|
-
import { default as bl } from "./features/
|
234
|
-
import { default as Wl } from "./features/communication/hooks/use-
|
235
|
-
import {
|
236
|
-
import {
|
237
|
-
import {
|
238
|
-
import {
|
239
|
-
import {
|
240
|
-
import {
|
241
|
-
import { default as rp } from "./features/
|
242
|
-
import { default as ap } from "./features/
|
243
|
-
import {
|
244
|
-
import {
|
245
|
-
import {
|
246
|
-
import {
|
247
|
-
import {
|
248
|
-
import {
|
249
|
-
import {
|
250
|
-
import {
|
251
|
-
import {
|
252
|
-
import {
|
253
|
-
import {
|
254
|
-
import {
|
255
|
-
import { default as Np } from "./features/
|
256
|
-
import { default as Dp } from "./features/milestone/create/
|
257
|
-
import { default as Gp } from "./features/milestone/create/comps/confirmation-modals/
|
258
|
-
import { default as vp } from "./features/milestone/create/
|
259
|
-
import { default as Up } from "./features/milestone/
|
260
|
-
import { default as wp } from "./features/milestone/
|
261
|
-
import { default as Fp } from "./features/milestone/outcome/
|
262
|
-
import { default as zp } from "./features/milestone/outcome/comps/achievement/
|
263
|
-
import { default as Jp } from "./features/milestone/
|
264
|
-
import { default as Kp } from "./features/milestone/edit/
|
265
|
-
import { default as Zp } from "./features/milestone/edit/
|
266
|
-
import { default as Xp } from "./features/milestone/
|
267
|
-
import { default as eu } from "./features/milestone/milestone-
|
268
|
-
import { default as ru } from "./features/milestone/
|
269
|
-
import { default as au } from "./features/milestone/milestone-
|
270
|
-
import { default as su } from "./features/milestone/milestone-
|
271
|
-
import {
|
272
|
-
import {
|
273
|
-
import {
|
274
|
-
import {
|
275
|
-
import {
|
276
|
-
import {
|
277
|
-
import { default as
|
278
|
-
import {
|
279
|
-
import {
|
280
|
-
import {
|
281
|
-
import {
|
282
|
-
import {
|
283
|
-
import {
|
284
|
-
import { default as wu } from "./features/sheet-tools/
|
285
|
-
import { default as Fu } from "./features/
|
286
|
-
import { default as zu } from "./features/sheets/
|
287
|
-
import {
|
288
|
-
import {
|
289
|
-
import {
|
290
|
-
import { default as um } from "./features/
|
291
|
-
import {
|
292
|
-
import {
|
293
|
-
import {
|
294
|
-
import { default as Cm } from "./features/worksheet/worksheet
|
295
|
-
import { default as Pm } from "./features/worksheet/worksheet-preview/
|
296
|
-
import { default as
|
297
|
-
import { default as Mm } from "./features/worksheet/worksheet/worksheet-permissions/
|
298
|
-
import { default as Om } from "./features/worksheet/
|
299
|
-
import { default as Nm } from "./features/worksheet/learnosity-preloader/
|
300
|
-
import { default as Dm } from "./features/worksheet/
|
301
|
-
import { default as Gm } from "./features/
|
302
|
-
import { default as vm } from "./features/puzzles/puzzle-
|
303
|
-
import { default as Um } from "./features/puzzles/
|
304
|
-
import {
|
305
|
-
import {
|
203
|
+
import { getActiveSATSheet as Ds } from "./features/chapters/lpar-chapter/block-section/sat-sheet-item/sat-sheet-utils.js";
|
204
|
+
import { default as Gs } from "./features/chapters-v2/chapter-details/chapter-details.js";
|
205
|
+
import { invalidateGetChapterDetails as vs } from "./features/chapters-v2/api/chapter.js";
|
206
|
+
import { GAME_LAUNCHER_ASSET_PADDING as Us } from "./features/circle-games/game-launcher/comps/segmented-game-card/constants.js";
|
207
|
+
import { GAME_LAUNCHER_SIZE as ws } from "./features/circle-games/game-launcher/comps/card-container/constants.js";
|
208
|
+
import { useCircleSounds as Fs } from "./features/circle-games/hooks/use-circle-sounds/use-circle-sounds.js";
|
209
|
+
import { CircleSoundKey as zs } from "./features/circle-games/hooks/use-circle-sounds/use-circle-sounds-enums.js";
|
210
|
+
import { useGetLeaderboardDal as Js } from "./features/circle-games/leaderboard/dal/use-get-leaderboard-dal/use-get-leaderboard-dal.js";
|
211
|
+
import { ELeaderboardType as Ks } from "./features/circle-games/leaderboard/enums/leaderboard-type-enum.js";
|
212
|
+
import { StreakReductionLocalStorageUtil as Zs } from "./features/circle-games/utils/streak-reduction-localstorage-util.js";
|
213
|
+
import { Tutorial as Xs } from "./features/circle-games/games/tutorial/tutorial.js";
|
214
|
+
import { WebView as el } from "./features/circle-games/games/web-view/web-view.js";
|
215
|
+
import { ProjectOutcome as rl } from "./features/circle-games/games/web-view/enums/project-outcomes-enum.js";
|
216
|
+
import { WebViewEvent as al } from "./features/circle-games/games/web-view/enums/web-view-events-enum.js";
|
217
|
+
import { ProjectType as sl } from "./features/circle-games/games/web-view/enums/project-type-enum.js";
|
218
|
+
import { PlayerType as pl } from "./features/circle-games/games/web-view/enums/player-type-enum.js";
|
219
|
+
import { IStatsToAwardErrorCode as ml } from "./features/circle-games/games/web-view/web-view-types.js";
|
220
|
+
import { CIRCLE_ONBOARDING_ANALYTICS_STEPS as xl } from "./features/circle-games/enum/circle-onboarding-steps.js";
|
221
|
+
import { CIRCLE_ACTION_IDS as cl } from "./features/circle-games/enum/circle-action-ids.js";
|
222
|
+
import { GameLauncher as Il } from "./features/circle-games/game-launcher/game-launcher.js";
|
223
|
+
import { useGetCircleHomeDetailsDal as Tl } from "./features/circle-games/game-launcher/dal/use-get-circle-home-details-dal/use-get-circle-home-details-dal.js";
|
224
|
+
import { Leaderboard as Cl } from "./features/circle-games/leaderboard/leaderboard.js";
|
225
|
+
import { BackgroundImage as Pl, CircularSteps as _l } from "./features/circle-games/sign-up/comp/circular-steps/circular-steps.js";
|
226
|
+
import { SplashScreen as kl } from "./features/circle-games/sign-up/comp/splash-screen/splash-screen.js";
|
227
|
+
import { SignUp as Ll } from "./features/circle-games/sign-up/sign-up.js";
|
228
|
+
import { default as Rl } from "./features/cue-canvas/cue-canvas-provider.js";
|
229
|
+
import { default as Hl } from "./features/cue-canvas/toolbar/toolbar.js";
|
230
|
+
import { default as gl } from "./features/cue-canvas/cue-canvas.js";
|
231
|
+
import { default as yl } from "./features/cue-canvas/hooks/use-canvas-sync-broker.js";
|
232
|
+
import { default as Bl } from "./features/cue-canvas/sidebar/sidebar.js";
|
233
|
+
import { default as bl } from "./features/cue-canvas/bottombar/homework-controls.js";
|
234
|
+
import { default as Wl } from "./features/communication/hooks/use-inclass-message-broker/use-inclass-message-broker.js";
|
235
|
+
import { default as Vl } from "./features/communication/hooks/use-trial-session-message-broker/use-trial-session-message-broker.js";
|
236
|
+
import { EVENTS as Yl } from "./features/communication/pub-sub/constants.js";
|
237
|
+
import { useInClassActionDispatcher as Ql, useInClassActionListener as Kl } from "./features/communication/pub-sub/hooks.js";
|
238
|
+
import { default as Zl } from "./features/trial-session/trial-session.js";
|
239
|
+
import { EClassTimeAlertLevel as Xl } from "./features/trial-session/trial-session-types.js";
|
240
|
+
import { useClassTimeAlerts as ep } from "./features/trial-session/hooks/use-class-time-alerts.js";
|
241
|
+
import { default as rp } from "./features/talk-meter/talk-meter.js";
|
242
|
+
import { default as ap } from "./features/extra-practice/extra-practice.js";
|
243
|
+
import { default as sp } from "./features/homework/hw-card-list/hw-card-list.js";
|
244
|
+
import { invalidateHomeworks as pp } from "./features/homework/hw-card-list/api/get-homeworks.js";
|
245
|
+
import { useAutoPlayPermission as mp } from "./features/hooks/use-auto-play-permission/use-auto-play-permission.js";
|
246
|
+
import { JOURNEY_ID_STUDENT as xp } from "./features/journey/journey-id/journey-id-student.js";
|
247
|
+
import { JOURNEY_ID_TEACHER as cp } from "./features/journey/journey-id/journey-id-teacher.js";
|
248
|
+
import { useJourney as Ip } from "./features/journey/use-journey/use-journey.js";
|
249
|
+
import { useGetEligibleJourneysViaRoute as Tp } from "./features/journey/hooks/use-get-eligible-journeys-via-route.js";
|
250
|
+
import { JourneyProvider as Cp } from "./features/journey/use-journey/journey-context-provider.js";
|
251
|
+
import { IndicatorType as Pp } from "./features/journey/use-journey/constants.js";
|
252
|
+
import { Coachmark as hp } from "./features/journey/comps/coachmark/coachmark.js";
|
253
|
+
import { useHomePageJourney as Mp } from "./features/journey/hooks/use-home-page-journey/use-home-page-journey.js";
|
254
|
+
import { useChapterPageJourney as Op } from "./features/journey/hooks/use-chapter-page-journey/use-chapter-journey.js";
|
255
|
+
import { default as Np } from "./features/maintenance/maintenance.js";
|
256
|
+
import { default as Dp } from "./features/milestone/create/submit-modal/submit-modal.js";
|
257
|
+
import { default as Gp } from "./features/milestone/create/comps/confirmation-modals/goal-creation-confirmation.js";
|
258
|
+
import { default as vp } from "./features/milestone/create/comps/confirmation-modals/chapter-clearance-confirmation.js";
|
259
|
+
import { default as Up } from "./features/milestone/create/milestone-create-container.js";
|
260
|
+
import { default as wp } from "./features/milestone/edit/goal-drafts/goal-draft-edit-container.js";
|
261
|
+
import { default as Fp } from "./features/milestone/outcome/milestone-outcome-container.js";
|
262
|
+
import { default as zp } from "./features/milestone/outcome/comps/achievement/reason-submit-modal.js";
|
263
|
+
import { default as Jp } from "./features/milestone/outcome/comps/achievement/share-instructions-modal.js";
|
264
|
+
import { default as Kp } from "./features/milestone/edit/comps/edit-milestone-modal/index.js";
|
265
|
+
import { default as Zp } from "./features/milestone/edit/goal-edit-container.js";
|
266
|
+
import { default as Xp } from "./features/milestone/edit/milestone-edit-container.js";
|
267
|
+
import { default as eu } from "./features/milestone/milestone-list-container/milestone-list-container.js";
|
268
|
+
import { default as ru } from "./features/milestone/milestone-action-widget/milestone-action-widget.js";
|
269
|
+
import { default as au } from "./features/milestone/start/milestone-start.js";
|
270
|
+
import { default as su } from "./features/milestone/milestone-tests/tests-creation/tests-creation.js";
|
271
|
+
import { default as pu } from "./features/milestone/milestone-resources/resources-assign/resources-assign.js";
|
272
|
+
import { ACHIEVEMENT_ACTIONS as mu, STAGES as du } from "./features/milestone/outcome/milestone-outcome-constants.js";
|
273
|
+
import { invalidateMilestonesData as nu, useGetAllMilestonesdata as cu } from "./features/milestone/milestone-list-container/api/get-milestones.js";
|
274
|
+
import { invalidatePastMilestoneCount as Iu, useGetPastMilestoneCount as Su } from "./features/milestone/milestone-list-container/api/get-past-milestone-count.js";
|
275
|
+
import { invalidateTestHelpData as Eu, useGetTestHelpData as Cu } from "./features/milestone/milestone-list-container/api/get-tests-list.js";
|
276
|
+
import { invalidateMilestoneResources as Pu, useGetMilestoneResources as _u } from "./features/milestone/milestone-list-container/api/get-milestone-resources.js";
|
277
|
+
import { default as ku } from "./features/pointer-sync/pointer.js";
|
278
|
+
import { default as Lu } from "./features/pointer-sync/hooks/use-pointer-sync.js";
|
279
|
+
import { DigitalMeter as Ru } from "./features/post-game-stats/digital-meter/digital-meter.js";
|
280
|
+
import { EPostGameStat as Hu } from "./features/post-game-stats/enums/post-game-stats-enum.js";
|
281
|
+
import { PostGameStats as gu } from "./features/post-game-stats/post-game-stats.js";
|
282
|
+
import { default as yu } from "./features/recent-chapters/recent-chapters.js";
|
283
|
+
import { SENTRY_DENIED_URLS as Bu, SENTRY_IGNORED_ERRORS as Uu } from "./features/sentry/constants/ignored.js";
|
284
|
+
import { default as wu } from "./features/sheet-tools/desmos-calculator/desmos-calculator.js";
|
285
|
+
import { default as Fu } from "./features/sheet-tools/tool-header/tool-header.js";
|
286
|
+
import { default as zu } from "./features/sheets/sheets-list/sheets-list.js";
|
287
|
+
import { default as Ju } from "./features/sheets/reference-sheet/reference-sheet.js";
|
288
|
+
import { WORKSHEET_V3_NODE_TYPES as Ku } from "./features/sheets/utils/is-v3-worksheet.js";
|
289
|
+
import { COMPLETED_SHEET_STATE as Zu, NODE_LABELS as qu, NODE_SUB_GROUP as Xu, NODE_TYPE as $u, PYTHON_NODE_TYPES as em, REWARDS_LIST as om, SHEET_ACTIONS as rm, SHEET_ATTEMPT_LOCATION as tm, SHEET_ATTEMPT_LOCATION_MAP as am, SHEET_ATTEMPT_STATE as fm, SHEET_DATA_TYPE as sm, SHEET_STATE as lm } from "./features/sheets/constants/sheet.js";
|
290
|
+
import { default as um } from "./features/student-details/student-details.js";
|
291
|
+
import { default as dm } from "./features/utils/load-script.js";
|
292
|
+
import { ACTION_BAR_HEIGHT as nm, QUESTIONS_GAP as cm, QUESTION_WIDTH as im, TOP_NAVIGATION_HEIGHT as Im } from "./features/worksheet/worksheet/constants.js";
|
293
|
+
import { isOkayTypeQuestion as Tm } from "./features/worksheet/worksheet/worksheet-helpers.js";
|
294
|
+
import { default as Cm } from "./features/worksheet/worksheet/worksheet-container.js";
|
295
|
+
import { default as Pm } from "./features/worksheet/worksheet-preview/worksheet-preview.js";
|
296
|
+
import { default as hm } from "./features/worksheet/worksheet-preview/dynamic-worksheet-preview/dynamic-worksheet-preview.js";
|
297
|
+
import { default as Mm } from "./features/worksheet/worksheet/worksheet-permissions/sheet-locked.js";
|
298
|
+
import { default as Om } from "./features/worksheet/worksheet/worksheet-permissions/error.js";
|
299
|
+
import { default as Nm } from "./features/worksheet/learnosity-preloader/learnosity-preloader.js";
|
300
|
+
import { default as Dm } from "./features/worksheet/learnosity-preloader/use-is-learnosity-loaded.js";
|
301
|
+
import { default as Gm } from "./features/worksheet/worksheet-preview/hooks/use-worksheet-layout.js";
|
302
|
+
import { default as vm } from "./features/puzzles/puzzle-container/puzzle-container.js";
|
303
|
+
import { default as Um } from "./features/puzzles/puzzle-feedback-celebration/puzzle-feedback-celebration.js";
|
304
|
+
import { default as wm } from "./features/puzzles/app/puzzle-app.js";
|
305
|
+
import { invalidatePuzzleToAssign as Fm, useGetPuzzleToAssign as Vm } from "./features/puzzles/api/puzzle-assign.js";
|
306
|
+
import { COUNTRY_CODE_MAP as Ym } from "./constants/country.js";
|
306
307
|
export {
|
307
|
-
|
308
|
+
mu as ACHIEVEMENT_ACTIONS,
|
308
309
|
ms as AUTH_TABS,
|
309
310
|
cs as AVPreview,
|
310
311
|
st as AccordionSection,
|
311
312
|
Kf as AccountSelector,
|
312
|
-
|
313
|
-
|
313
|
+
zp as AchievementNotShareReasonModal,
|
314
|
+
Jp as AchievementShareInstructionModal,
|
314
315
|
Ur as AfternoonIcon,
|
315
316
|
x as AlertIcon,
|
316
317
|
Ya as AnimatedArc,
|
317
318
|
Mf as AnimatedAvatarMessage,
|
318
319
|
Xt as AppLoader,
|
319
|
-
|
320
|
+
ht as ArcButton,
|
320
321
|
pt as ArrowTooltip,
|
321
322
|
xs as AuthApiErrorCode,
|
322
323
|
lf as AuthPageLayout,
|
323
324
|
ff as AuthStaticPanel,
|
324
325
|
et as AutoPlayPermissionProvider,
|
325
326
|
Ra as Avatar,
|
326
|
-
|
327
|
+
Tr as Back2Icon,
|
327
328
|
c as BackIcon,
|
328
|
-
|
329
|
-
|
329
|
+
Pl as BackgroundImage,
|
330
|
+
T as Bin2Icon,
|
330
331
|
I as BinIcon,
|
331
|
-
|
332
|
+
h as Book2Icon,
|
332
333
|
C as BookClosedIcon,
|
333
334
|
P as BookIcon,
|
334
335
|
M as BookmarkIcon,
|
335
336
|
N as Bulb2Icon,
|
336
337
|
O as BulbIcon,
|
337
338
|
It as Button,
|
338
|
-
|
339
|
-
|
340
|
-
|
341
|
-
|
339
|
+
cl as CIRCLE_ACTION_IDS,
|
340
|
+
xl as CIRCLE_ONBOARDING_ANALYTICS_STEPS,
|
341
|
+
Zu as COMPLETED_SHEET_STATE,
|
342
|
+
Ym as COUNTRY_CODE_MAP,
|
342
343
|
D as CalendarIcon,
|
343
344
|
Ia as Callout,
|
344
345
|
Ft as CascadingSelectInput,
|
345
346
|
Cs as Chapter,
|
346
|
-
|
347
|
-
|
347
|
+
vp as ChapterClearanceConfirmationModal,
|
348
|
+
Gs as ChapterDetails,
|
348
349
|
Ps as ChaptersList,
|
349
350
|
Nr as ChatIcon,
|
350
351
|
v as Check2Icon,
|
351
352
|
G as CheckIcon,
|
352
353
|
Ot as CheckboxInput,
|
353
354
|
Nt as CheckboxInputList,
|
354
|
-
|
355
|
+
hr as ChevronDownIcon,
|
355
356
|
Pr as ChevronLeftIcon,
|
356
357
|
Cr as ChevronRightIcon,
|
357
|
-
|
358
|
+
zs as CircleSoundKey,
|
358
359
|
ea as CircularLoader,
|
359
360
|
Uf as CircularStepWrapper,
|
360
|
-
|
361
|
+
_l as CircularSteps,
|
361
362
|
Nf as ClaimUserAccount,
|
362
|
-
|
363
|
+
Tt as Clickable,
|
363
364
|
U as ClipboardIcon,
|
364
365
|
F as Clock2Icon,
|
365
366
|
w as ClockIcon,
|
366
|
-
|
367
|
+
hp as Coachmark,
|
367
368
|
z as CodeIcon,
|
368
369
|
mt as ContextMenu,
|
369
370
|
J as CopyIcon,
|
@@ -371,89 +372,89 @@ export {
|
|
371
372
|
K as CrossIcon,
|
372
373
|
Jr as CueBoardFilledIcon,
|
373
374
|
Kr as CueBoardIcon,
|
374
|
-
|
375
|
-
|
376
|
-
|
377
|
-
|
378
|
-
|
375
|
+
gl as CueCanvas,
|
376
|
+
Hl as CueCanvasController,
|
377
|
+
bl as CueCanvasHomeworkController,
|
378
|
+
Rl as CueCanvasProvider,
|
379
|
+
Bl as CueCanvasSideBar,
|
379
380
|
Z as CueRocket,
|
380
381
|
Dr as CuemathLogo,
|
381
382
|
vf as CustomInputField,
|
382
383
|
X as DashArrowIcon,
|
383
384
|
Gf as DatePickerInput,
|
384
|
-
|
385
|
-
|
385
|
+
wu as DesmosCalculator,
|
386
|
+
Ru as DigitalMeter,
|
386
387
|
ee as DownIcon,
|
387
388
|
re as DraftIcon,
|
388
389
|
ae as DragIcon,
|
389
390
|
qa as Drawer,
|
390
|
-
|
391
|
-
|
392
|
-
|
393
|
-
|
394
|
-
|
395
|
-
|
396
|
-
|
391
|
+
hm as DynamicPreviewWorksheet,
|
392
|
+
Xl as EClassTimeAlertLevel,
|
393
|
+
ka as EDeviceType,
|
394
|
+
Ks as ELeaderboardType,
|
395
|
+
pu as EPResourceAssign,
|
396
|
+
Hu as EPostGameStat,
|
397
|
+
Yl as EVENTS,
|
397
398
|
pe as Edit2Icon,
|
398
399
|
se as EditIcon,
|
399
|
-
|
400
|
+
Kp as EditMilestoneModal,
|
400
401
|
me as EditStarIcon,
|
401
402
|
xe as EraserIcon,
|
402
403
|
Mt as Error,
|
403
404
|
vr as EveningIcon,
|
404
|
-
|
405
|
-
|
406
|
-
|
405
|
+
Te as ExclamationIcon,
|
406
|
+
Fu as ExpandableHeader,
|
407
|
+
ap as ExtraPractice,
|
407
408
|
Ie as Eye2Icon,
|
408
409
|
ce as EyeIcon,
|
409
410
|
Zt as FlexView,
|
410
|
-
|
411
|
-
|
411
|
+
Us as GAME_LAUNCHER_ASSET_PADDING,
|
412
|
+
ws as GAME_LAUNCHER_SIZE,
|
412
413
|
Mr as GameIcon,
|
413
|
-
|
414
|
-
|
415
|
-
|
416
|
-
|
414
|
+
Il as GameLauncher,
|
415
|
+
Gp as GoalCreationConfirmationModal,
|
416
|
+
wp as GoalDraftEdit,
|
417
|
+
Zp as GoalEdit,
|
417
418
|
Ut as GooglePlacesSearchInput,
|
418
419
|
Df as GradeInput,
|
419
420
|
r as GradeSelector,
|
420
421
|
Ce as HandIcon,
|
421
|
-
|
422
|
+
he as HelpIcon,
|
422
423
|
Me as HighlighterIcon,
|
423
424
|
Pe as HintFillIcon,
|
424
425
|
Oe as HomeIcon,
|
425
|
-
|
426
|
+
sp as HomeworkCardList,
|
426
427
|
s as ILLUSTRATIONS,
|
427
428
|
p as IMAGES,
|
428
|
-
|
429
|
+
ml as IStatsToAwardErrorCode,
|
429
430
|
Ct as IconButton,
|
430
431
|
rs as IdentifierOtpForm,
|
431
432
|
Va as Image,
|
432
433
|
Ne as ImageIcon,
|
433
|
-
|
434
|
+
Pp as IndicatorType,
|
434
435
|
Ge as Info2Icon,
|
435
436
|
De as InfoIcon,
|
436
437
|
nf as InputStatusIcon,
|
437
|
-
|
438
|
-
|
439
|
-
|
438
|
+
xp as JOURNEY_ID_STUDENT,
|
439
|
+
cp as JOURNEY_ID_TEACHER,
|
440
|
+
Cp as JourneyProvider,
|
440
441
|
m as LOTTIE,
|
441
|
-
|
442
|
+
hs as LPARChapter,
|
442
443
|
Ms as LPARMilestoneChapter,
|
443
|
-
|
444
|
-
|
444
|
+
Cl as Leaderboard,
|
445
|
+
Nm as LearnosityPreloader,
|
445
446
|
ve as LeftIcon,
|
446
447
|
Pf as LinearProgressBar,
|
447
448
|
we as Lock2Icon,
|
448
449
|
Fe as Lock3Icon,
|
449
450
|
Ue as LockIcon,
|
450
|
-
|
451
|
-
|
452
|
-
|
453
|
-
|
454
|
-
|
455
|
-
|
456
|
-
|
451
|
+
Np as Maintenance,
|
452
|
+
ru as MilestoneActionWidget,
|
453
|
+
Up as MilestoneCreate,
|
454
|
+
Xp as MilestoneEdit,
|
455
|
+
eu as MilestoneList,
|
456
|
+
Fp as MilestoneOutcome,
|
457
|
+
au as MilestoneStart,
|
457
458
|
Je as Minus2Icon,
|
458
459
|
ze as MinusIcon,
|
459
460
|
Ke as MistakeIcon,
|
@@ -461,65 +462,65 @@ export {
|
|
461
462
|
ra as ModalProvider,
|
462
463
|
Xe as MoreVerticalIcon,
|
463
464
|
wr as MorningIcon,
|
464
|
-
|
465
|
-
|
466
|
-
|
467
|
-
|
465
|
+
Ts as MultiTabBlocker,
|
466
|
+
qu as NODE_LABELS,
|
467
|
+
Xu as NODE_SUB_GROUP,
|
468
|
+
$u as NODE_TYPE,
|
468
469
|
Gr as Next2Icon,
|
469
470
|
eo as NextIcon,
|
470
471
|
ct as Nudge,
|
471
472
|
zt as NumRangeInput,
|
472
473
|
as as OTPForm,
|
473
|
-
|
474
|
+
Tf as OTPInput,
|
474
475
|
Ff as OnboardingGuide,
|
475
476
|
uf as OverlayLoader,
|
476
477
|
$a as PLATFORM_EVENTS_STUDENT,
|
477
478
|
of as PLATFORM_EVENTS_TEACHER,
|
478
|
-
|
479
|
+
em as PYTHON_NODE_TYPES,
|
479
480
|
ro as PencilIcon,
|
480
481
|
Jt as PercentileInput,
|
481
482
|
Wa as PerfectHits,
|
482
483
|
Cf as PillButton,
|
483
484
|
po as Play2Icon,
|
484
485
|
so as PlayIcon,
|
485
|
-
|
486
|
+
pl as PlayerType,
|
486
487
|
no as Plus2Icon,
|
487
488
|
mo as PlusIcon,
|
488
489
|
ao as PointerIcon,
|
489
|
-
|
490
|
+
gu as PostGameStats,
|
490
491
|
io as PracticeIcon,
|
491
|
-
|
492
|
-
|
493
|
-
|
494
|
-
|
492
|
+
Pm as PreviewWorksheet,
|
493
|
+
So as ProgressIcon,
|
494
|
+
rl as ProjectOutcome,
|
495
|
+
sl as ProjectType,
|
495
496
|
Ao as Puzzle2Icon,
|
496
|
-
|
497
|
-
|
498
|
-
|
497
|
+
wm as PuzzleApp,
|
498
|
+
vm as PuzzleCard,
|
499
|
+
Um as PuzzleFeedbackCelebration,
|
499
500
|
Eo as PuzzleIcon,
|
500
501
|
_o as QuestionIcon,
|
501
|
-
|
502
|
-
|
502
|
+
ko as QuestionLetterIcon,
|
503
|
+
om as REWARDS_LIST,
|
503
504
|
pa as RadioCard,
|
504
505
|
Dt as RadioInput,
|
505
|
-
|
506
|
+
yu as RecentChapters,
|
506
507
|
Lo as RedoIcon,
|
507
|
-
|
508
|
-
|
508
|
+
Ju as ReferenceSheet,
|
509
|
+
ku as RemotePeerPointer,
|
509
510
|
If as ResendOTP,
|
510
511
|
ss as ResetPasswordForm,
|
511
512
|
Ro as RightIcon,
|
512
513
|
Ho as RulerIcon,
|
513
514
|
Os as SATSheetSummary,
|
514
|
-
|
515
|
-
|
516
|
-
|
517
|
-
|
518
|
-
|
519
|
-
|
520
|
-
|
521
|
-
|
522
|
-
|
515
|
+
Bu as SENTRY_DENIED_URLS,
|
516
|
+
Uu as SENTRY_IGNORED_ERRORS,
|
517
|
+
rm as SHEET_ACTIONS,
|
518
|
+
tm as SHEET_ATTEMPT_LOCATION,
|
519
|
+
am as SHEET_ATTEMPT_LOCATION_MAP,
|
520
|
+
fm as SHEET_ATTEMPT_STATE,
|
521
|
+
sm as SHEET_DATA_TYPE,
|
522
|
+
lm as SHEET_STATE,
|
523
|
+
du as STAGES,
|
523
524
|
Fr as ScreenGrabFilledIcon,
|
524
525
|
Zr as ScreenGrabIcon,
|
525
526
|
ir as ScribbleIcon,
|
@@ -527,14 +528,14 @@ export {
|
|
527
528
|
vt as SearchableSelectInput,
|
528
529
|
ma as SectionList,
|
529
530
|
Gt as SelectInput,
|
530
|
-
|
531
|
+
hf as SelectableInfoCard,
|
531
532
|
Kt as SelectionCards,
|
532
533
|
Ba as Separator,
|
533
|
-
|
534
|
+
Om as SheetError,
|
534
535
|
yo as SheetIcon,
|
535
|
-
|
536
|
-
|
537
|
-
|
536
|
+
zu as SheetList,
|
537
|
+
Mm as SheetLocked,
|
538
|
+
Ll as SignUp,
|
538
539
|
zf as SignupHeader,
|
539
540
|
wf as SignupMethods,
|
540
541
|
Jf as SignupOptions,
|
@@ -544,7 +545,7 @@ export {
|
|
544
545
|
Wo as SkipIcon,
|
545
546
|
Xf as SocialAccountNotFound,
|
546
547
|
Zf as SocialLoginMethods,
|
547
|
-
|
548
|
+
kl as SplashScreen,
|
548
549
|
Yo as Star2Icon,
|
549
550
|
Bo as StarIcon,
|
550
551
|
Qo as StatusIcon,
|
@@ -554,26 +555,26 @@ export {
|
|
554
555
|
Qa as Stickers,
|
555
556
|
ja as StickersSelector,
|
556
557
|
ya as StreakIcon,
|
557
|
-
|
558
|
+
Zs as StreakReductionLocalStorageUtil,
|
558
559
|
jo as StrikedEyeIcon,
|
559
|
-
|
560
|
-
|
560
|
+
um as StudentDetails,
|
561
|
+
Dp as SubmitMilestoneModal,
|
561
562
|
qo as SwitchIcon,
|
562
563
|
ga as TabComponent,
|
563
564
|
df as Tabs,
|
564
565
|
ca as Tag,
|
565
|
-
|
566
|
-
|
566
|
+
rp as TalkMeter,
|
567
|
+
su as TestsCreation,
|
567
568
|
xa as Text,
|
568
569
|
Pt as TextButton,
|
569
570
|
wt as TextInput,
|
570
571
|
$o as TickIcon,
|
571
572
|
Ha as TimeLeftTimeline,
|
572
|
-
|
573
|
+
Zl as TrialSession,
|
573
574
|
or as TrophyIcon,
|
574
|
-
|
575
|
+
Xs as Tutorial,
|
575
576
|
Or as TutoringIcon,
|
576
|
-
|
577
|
+
Ta as UIContext,
|
577
578
|
tr as UndoIcon,
|
578
579
|
lr as Unlock2Icon,
|
579
580
|
fr as UnlockIcon,
|
@@ -585,54 +586,55 @@ export {
|
|
585
586
|
es as UsernamePasswordForm,
|
586
587
|
ba as Video,
|
587
588
|
tf as WHITELIST_EVENTS,
|
588
|
-
|
589
|
-
|
590
|
-
|
591
|
-
|
592
|
-
|
593
|
-
|
594
|
-
|
595
|
-
|
589
|
+
nm as WORKSHEET_ACTION_BAR_HEIGHT,
|
590
|
+
cm as WORKSHEET_QUESTIONS_GAP,
|
591
|
+
im as WORKSHEET_QUESTION_WIDTH,
|
592
|
+
Im as WORKSHEET_TOP_NAVIGATION_HEIGHT,
|
593
|
+
Ku as WORKSHEET_V3_NODE_TYPES,
|
594
|
+
el as WebView,
|
595
|
+
al as WebViewEvent,
|
596
|
+
Cm as Worksheet,
|
596
597
|
Ns as checkIfPPTNodeType,
|
598
|
+
Ds as getActiveSATSheet,
|
597
599
|
La as getTheme,
|
598
|
-
|
599
|
-
|
600
|
-
|
601
|
-
|
602
|
-
|
603
|
-
|
604
|
-
|
605
|
-
|
606
|
-
|
607
|
-
|
608
|
-
|
609
|
-
|
610
|
-
|
611
|
-
|
600
|
+
vs as invalidateGetChapterDetails,
|
601
|
+
pp as invalidateHomeworks,
|
602
|
+
Pu as invalidateMilestoneResources,
|
603
|
+
nu as invalidateMilestonesData,
|
604
|
+
Iu as invalidatePastMilestoneCount,
|
605
|
+
Fm as invalidatePuzzleToAssign,
|
606
|
+
Eu as invalidateTestHelpData,
|
607
|
+
Tm as isOkayTypeQuestion,
|
608
|
+
dm as loadScript,
|
609
|
+
mp as useAutoPlayPermission,
|
610
|
+
yl as useCanvasSyncBroker,
|
611
|
+
Op as useChapterPageJourney,
|
612
|
+
Fs as useCircleSounds,
|
613
|
+
ep as useClassTimeAlerts,
|
612
614
|
_a as useContextMenuClickHandler,
|
613
615
|
at as useForceReload,
|
614
|
-
|
615
|
-
|
616
|
-
|
617
|
-
|
618
|
-
|
619
|
-
|
620
|
-
|
621
|
-
|
622
|
-
|
623
|
-
|
624
|
-
|
625
|
-
|
626
|
-
|
616
|
+
cu as useGetAllMilestonesdata,
|
617
|
+
Tl as useGetCircleHomeDetailsDal,
|
618
|
+
Tp as useGetEligibleJourneysViaRoute,
|
619
|
+
Js as useGetLeaderboardDal,
|
620
|
+
_u as useGetMilestoneResources,
|
621
|
+
Su as useGetPastMilestoneCount,
|
622
|
+
Vm as useGetPuzzleToAssign,
|
623
|
+
Cu as useGetTestHelpData,
|
624
|
+
Mp as useHomePageJourney,
|
625
|
+
Ql as useInClassActionDispatcher,
|
626
|
+
Kl as useInClassActionListener,
|
627
|
+
Wl as useInClassMessageBroker,
|
628
|
+
Dm as useIsLearnosityLoaded,
|
627
629
|
Is as useIsTabBlocked,
|
628
|
-
|
630
|
+
Ip as useJourney,
|
629
631
|
aa as useModalActions,
|
630
632
|
sa as useModalParams,
|
631
|
-
|
633
|
+
Lu as usePointerSync,
|
632
634
|
Aa as useTrackingContext,
|
633
|
-
|
635
|
+
Vl as useTrialSessionMessageBroker,
|
634
636
|
Ea as useUIContext,
|
635
|
-
|
637
|
+
Gm as useWorksheetLayout,
|
636
638
|
rt as useZoomDisable
|
637
639
|
};
|
638
640
|
//# 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":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|