@cuemath/leap 2.8.60-aa1 → 2.8.60-aa3
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.
@@ -1,12 +1,12 @@
|
|
1
1
|
import { NODE_TYPE as E } from "../constants/sheet.js";
|
2
|
-
const
|
2
|
+
const T = [
|
3
3
|
"SAT_MATH_ASSESSMENT",
|
4
4
|
"SAT_ENGLISH_ASSESSMENT",
|
5
5
|
"SAT_MATH_RECAP",
|
6
6
|
"SAT_MATH_LEARNING",
|
7
7
|
"SAT_ENGLISH_LEARNING"
|
8
|
-
],
|
9
|
-
...
|
8
|
+
], R = [
|
9
|
+
...T,
|
10
10
|
E.REMEDIAL,
|
11
11
|
E.LEGACY,
|
12
12
|
E.RECAP,
|
@@ -31,9 +31,13 @@ const S = [
|
|
31
31
|
E.DIAGNOSTIC,
|
32
32
|
E.SUBJECTIVE,
|
33
33
|
E.TURING_SUBJECTIVE
|
34
|
-
],
|
34
|
+
], e = (S, A) => !0, t = (S) => {
|
35
|
+
const { node_type: A, is_worksheet_v3: _, is_lesson_v3_enabled: I } = S;
|
36
|
+
return _ || I || T.includes(A);
|
37
|
+
};
|
35
38
|
export {
|
36
|
-
|
37
|
-
|
39
|
+
R as WORKSHEET_V3_NODE_TYPES,
|
40
|
+
e as isV3Worksheet,
|
41
|
+
t as isV3WorksheetAttempt
|
38
42
|
};
|
39
43
|
//# sourceMappingURL=is-v3-worksheet.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"is-v3-worksheet.js","sources":["../../../../src/features/sheets/utils/is-v3-worksheet.ts"],"sourcesContent":["import type { IWorksheetAttemptModel } from '../../../types/models/worksheet';\nimport type { TLPARSheetData } from '../../chapters/lpar-chapter/block-section/sheet-item/sheet-item-type';\nimport type { ISheetDataProps, TNodeTypeProps } from '../sheets-list/sheet-item/sheet-item-types';\n\nimport { NODE_TYPE } from '../constants/sheet';\n\nconst SAT_V3_NODE_TYPES: TNodeTypeProps[] = [\n 'SAT_MATH_ASSESSMENT',\n 'SAT_ENGLISH_ASSESSMENT',\n 'SAT_MATH_RECAP',\n 'SAT_MATH_LEARNING',\n 'SAT_ENGLISH_LEARNING',\n];\nconst WORKSHEET_V3_NODE_TYPES: TNodeTypeProps[] = [\n ...SAT_V3_NODE_TYPES,\n NODE_TYPE.REMEDIAL,\n NODE_TYPE.LEGACY,\n NODE_TYPE.RECAP,\n NODE_TYPE.GENERAL,\n NODE_TYPE.LEVEL3,\n NODE_TYPE.LEVEL2,\n NODE_TYPE.REVISION,\n NODE_TYPE.TARGET_PRACTICE,\n NODE_TYPE.EXTRA_PRACTICE,\n NODE_TYPE.PRACTICE,\n NODE_TYPE.LEARNING,\n NODE_TYPE.PUZZLE_EASY,\n NODE_TYPE.PUZZLE_MEDIUM,\n NODE_TYPE.PUZZLE_HARD,\n NODE_TYPE.CHAPTER_ASSESSMENT,\n NODE_TYPE.ASSESSMENT,\n NODE_TYPE.MASTERY,\n NODE_TYPE.TRIAL_DIAGNOSTIC,\n NODE_TYPE.DYNAMIC,\n NODE_TYPE.TURING_ASSESSMENT,\n NODE_TYPE.TURING_PRACTICE,\n NODE_TYPE.DIAGNOSTIC,\n NODE_TYPE.SUBJECTIVE,\n NODE_TYPE.TURING_SUBJECTIVE,\n];\n\nconst isV3Worksheet = (\n sheet: ISheetDataProps | TLPARSheetData,\n mode?: 'resume' | 'review',\n): boolean => {\n return true;\n};\n\nconst isV3WorksheetAttempt = (attempt: IWorksheetAttemptModel): boolean => {\n const { node_type, is_worksheet_v3, is_lesson_v3_enabled } = attempt;\n\n return (\n is_worksheet_v3 ||\n is_lesson_v3_enabled ||\n SAT_V3_NODE_TYPES.includes(node_type as TNodeTypeProps)\n );\n};\n\nexport { isV3Worksheet, isV3WorksheetAttempt, WORKSHEET_V3_NODE_TYPES };\n"],"names":["SAT_V3_NODE_TYPES","WORKSHEET_V3_NODE_TYPES","NODE_TYPE","isV3Worksheet","sheet","mode"],"mappings":";AAMA,MAAMA,IAAsC;AAAA,EAC1C;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AACF,GACMC,IAA4C;AAAA,EAChD,GAAGD;AAAA,EACHE,EAAU;AAAA,EACVA,EAAU;AAAA,EACVA,EAAU;AAAA,EACVA,EAAU;AAAA,EACVA,EAAU;AAAA,EACVA,EAAU;AAAA,EACVA,EAAU;AAAA,EACVA,EAAU;AAAA,EACVA,EAAU;AAAA,EACVA,EAAU;AAAA,EACVA,EAAU;AAAA,EACVA,EAAU;AAAA,EACVA,EAAU;AAAA,EACVA,EAAU;AAAA,EACVA,EAAU;AAAA,EACVA,EAAU;AAAA,EACVA,EAAU;AAAA,EACVA,EAAU;AAAA,EACVA,EAAU;AAAA,EACVA,EAAU;AAAA,EACVA,EAAU;AAAA,EACVA,EAAU;AAAA,EACVA,EAAU;AAAA,EACVA,EAAU;AACZ,GAEMC,IAAgB,CACpBC,GACAC,MAEO;"}
|
1
|
+
{"version":3,"file":"is-v3-worksheet.js","sources":["../../../../src/features/sheets/utils/is-v3-worksheet.ts"],"sourcesContent":["import type { IWorksheetAttemptModel } from '../../../types/models/worksheet';\nimport type { TLPARSheetData } from '../../chapters/lpar-chapter/block-section/sheet-item/sheet-item-type';\nimport type { ISheetDataProps, TNodeTypeProps } from '../sheets-list/sheet-item/sheet-item-types';\n\nimport { NODE_TYPE } from '../constants/sheet';\n\nconst SAT_V3_NODE_TYPES: TNodeTypeProps[] = [\n 'SAT_MATH_ASSESSMENT',\n 'SAT_ENGLISH_ASSESSMENT',\n 'SAT_MATH_RECAP',\n 'SAT_MATH_LEARNING',\n 'SAT_ENGLISH_LEARNING',\n];\nconst WORKSHEET_V3_NODE_TYPES: TNodeTypeProps[] = [\n ...SAT_V3_NODE_TYPES,\n NODE_TYPE.REMEDIAL,\n NODE_TYPE.LEGACY,\n NODE_TYPE.RECAP,\n NODE_TYPE.GENERAL,\n NODE_TYPE.LEVEL3,\n NODE_TYPE.LEVEL2,\n NODE_TYPE.REVISION,\n NODE_TYPE.TARGET_PRACTICE,\n NODE_TYPE.EXTRA_PRACTICE,\n NODE_TYPE.PRACTICE,\n NODE_TYPE.LEARNING,\n NODE_TYPE.PUZZLE_EASY,\n NODE_TYPE.PUZZLE_MEDIUM,\n NODE_TYPE.PUZZLE_HARD,\n NODE_TYPE.CHAPTER_ASSESSMENT,\n NODE_TYPE.ASSESSMENT,\n NODE_TYPE.MASTERY,\n NODE_TYPE.TRIAL_DIAGNOSTIC,\n NODE_TYPE.DYNAMIC,\n NODE_TYPE.TURING_ASSESSMENT,\n NODE_TYPE.TURING_PRACTICE,\n NODE_TYPE.DIAGNOSTIC,\n NODE_TYPE.SUBJECTIVE,\n NODE_TYPE.TURING_SUBJECTIVE,\n];\n\nconst isV3Worksheet = (\n sheet: ISheetDataProps | TLPARSheetData,\n mode?: 'resume' | 'review',\n): boolean => {\n return true;\n};\n\nconst isV3WorksheetAttempt = (attempt: IWorksheetAttemptModel): boolean => {\n const { node_type, is_worksheet_v3, is_lesson_v3_enabled } = attempt;\n\n return (\n is_worksheet_v3 ||\n is_lesson_v3_enabled ||\n SAT_V3_NODE_TYPES.includes(node_type as TNodeTypeProps)\n );\n};\n\nexport { isV3Worksheet, isV3WorksheetAttempt, WORKSHEET_V3_NODE_TYPES };\n"],"names":["SAT_V3_NODE_TYPES","WORKSHEET_V3_NODE_TYPES","NODE_TYPE","isV3Worksheet","sheet","mode","isV3WorksheetAttempt","attempt","node_type","is_worksheet_v3","is_lesson_v3_enabled"],"mappings":";AAMA,MAAMA,IAAsC;AAAA,EAC1C;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AACF,GACMC,IAA4C;AAAA,EAChD,GAAGD;AAAA,EACHE,EAAU;AAAA,EACVA,EAAU;AAAA,EACVA,EAAU;AAAA,EACVA,EAAU;AAAA,EACVA,EAAU;AAAA,EACVA,EAAU;AAAA,EACVA,EAAU;AAAA,EACVA,EAAU;AAAA,EACVA,EAAU;AAAA,EACVA,EAAU;AAAA,EACVA,EAAU;AAAA,EACVA,EAAU;AAAA,EACVA,EAAU;AAAA,EACVA,EAAU;AAAA,EACVA,EAAU;AAAA,EACVA,EAAU;AAAA,EACVA,EAAU;AAAA,EACVA,EAAU;AAAA,EACVA,EAAU;AAAA,EACVA,EAAU;AAAA,EACVA,EAAU;AAAA,EACVA,EAAU;AAAA,EACVA,EAAU;AAAA,EACVA,EAAU;AACZ,GAEMC,IAAgB,CACpBC,GACAC,MAEO,IAGHC,IAAuB,CAACC,MAA6C;AACzE,QAAM,EAAE,WAAAC,GAAW,iBAAAC,GAAiB,sBAAAC,EAAA,IAAyBH;AAE7D,SACEE,KACAC,KACAV,EAAkB,SAASQ,CAA2B;AAE1D;"}
|
package/dist/index.d.ts
CHANGED
@@ -2671,6 +2671,10 @@ declare interface ISubmitModalProps_2 {
|
|
2671
2671
|
courseStream: TCourseStream;
|
2672
2672
|
}
|
2673
2673
|
|
2674
|
+
export declare const isV3Worksheet: (sheet: ISheetDataProps | TLPARSheetData, mode?: "resume" | "review") => boolean;
|
2675
|
+
|
2676
|
+
export declare const isV3WorksheetAttempt: (attempt: IWorksheetAttemptModel) => boolean;
|
2677
|
+
|
2674
2678
|
declare interface ISyncableWebGameProps {
|
2675
2679
|
joinByRoomId?: string;
|
2676
2680
|
enableSync?: boolean;
|
package/dist/index.js
CHANGED
@@ -9,8 +9,8 @@ import { default as i } from "./assets/line-icons/icons/bin.js";
|
|
9
9
|
import { default as E } 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 _ } from "./assets/line-icons/icons/book.js";
|
12
|
-
import { default as
|
13
|
-
import { default as
|
12
|
+
import { default as h } from "./assets/line-icons/icons/book2.js";
|
13
|
+
import { default as k } from "./assets/line-icons/icons/bookmark.js";
|
14
14
|
import { default as N } from "./assets/line-icons/icons/bulb.js";
|
15
15
|
import { default as H } from "./assets/line-icons/icons/bulb2.js";
|
16
16
|
import { default as D } from "./assets/line-icons/icons/calendar.js";
|
@@ -36,8 +36,8 @@ import { default as ie } from "./assets/line-icons/icons/eye2.js";
|
|
36
36
|
import { default as Ee } from "./assets/line-icons/icons/hand.js";
|
37
37
|
import { default as Ce } from "./assets/line-icons/icons/help.js";
|
38
38
|
import { default as _e } from "./assets/line-icons/icons/highlighter.js";
|
39
|
-
import { default as
|
40
|
-
import { default as
|
39
|
+
import { default as he } from "./assets/line-icons/icons/home.js";
|
40
|
+
import { default as ke } from "./assets/line-icons/icons/image.js";
|
41
41
|
import { default as Ne } from "./assets/line-icons/icons/info.js";
|
42
42
|
import { default as He } from "./assets/line-icons/icons/info2.js";
|
43
43
|
import { default as De } from "./assets/line-icons/icons/left.js";
|
@@ -63,8 +63,8 @@ import { default as To } from "./assets/line-icons/icons/redo.js";
|
|
63
63
|
import { default as So } from "./assets/line-icons/icons/right.js";
|
64
64
|
import { default as Ao } from "./assets/line-icons/icons/ruler.js";
|
65
65
|
import { default as Po } from "./assets/line-icons/icons/search.js";
|
66
|
-
import { default as
|
67
|
-
import { default as
|
66
|
+
import { default as Lo } from "./assets/line-icons/icons/sheet.js";
|
67
|
+
import { default as Mo } from "./assets/line-icons/icons/star.js";
|
68
68
|
import { default as Oo } from "./assets/line-icons/icons/skip.js";
|
69
69
|
import { default as Ro } from "./assets/line-icons/icons/skip2.js";
|
70
70
|
import { default as Go } from "./assets/line-icons/icons/star2.js";
|
@@ -89,8 +89,8 @@ import { default as ir } from "./assets/line-icons/icons/cuemath-logo.js";
|
|
89
89
|
import { default as Er } from "./assets/line-icons/icons/next2.js";
|
90
90
|
import { AutoPlayPermissionProvider as Cr } from "./features/hooks/use-auto-play-permission/use-auto-play-permission-context-provider.js";
|
91
91
|
import { default as _r } from "./features/hooks/use-zoom-disable.js";
|
92
|
-
import { default as
|
93
|
-
import { default as
|
92
|
+
import { default as hr } from "./features/hooks/use-force-reload.js";
|
93
|
+
import { default as kr } from "./features/ui/accordion-section/accordion-section.js";
|
94
94
|
import { default as Nr } from "./features/ui/arrow-tooltip/arrow-tooltip.js";
|
95
95
|
import { default as Hr } from "./features/ui/context-menu/context-menu.js";
|
96
96
|
import { default as Dr } from "./features/ui/timers/countdown-timer/countdown-timer.js";
|
@@ -116,8 +116,8 @@ import { default as it } from "./features/ui/layout/flex-view.js";
|
|
116
116
|
import { default as Et } from "./features/ui/loader/app-loader/app-loader.js";
|
117
117
|
import { CircularLoader as Ct } from "./features/ui/loader/circular-loader/circular-loader.js";
|
118
118
|
import { default as _t } from "./features/ui/radio-cards/radio-cards.js";
|
119
|
-
import { default as
|
120
|
-
import { default as
|
119
|
+
import { default as ht } from "./features/ui/section-list/section-list.js";
|
120
|
+
import { default as kt } from "./features/ui/text/text.js";
|
121
121
|
import { default as Nt } from "./features/ui/tag/tag.js";
|
122
122
|
import { default as Ht } from "./features/ui/callout/callout.js";
|
123
123
|
import { default as Dt, useUIContext as Gt } from "./features/ui/context/context.js";
|
@@ -143,8 +143,8 @@ import { default as Ta } from "./features/chapters/lpar-milestone-chapter/lpar-m
|
|
143
143
|
import { default as Sa } from "./features/chapters/lpar-chapter/block-section/sat-sheet-item/sat-sheet-summary/sat-sheet-summary.js";
|
144
144
|
import { checkIfPPTNodeType as Aa } from "./features/chapters/lpar-chapter/utils/index.js";
|
145
145
|
import { GAME_LAUNCHER_ASSET_PADDING as Pa } from "./features/circle-games/game-launcher/comps/segmented-game-card/constants.js";
|
146
|
-
import { GAME_LAUNCHER_SIZE as
|
147
|
-
import { useCircleSounds as
|
146
|
+
import { GAME_LAUNCHER_SIZE as La } from "./features/circle-games/game-launcher/comps/card-container/constants.js";
|
147
|
+
import { useCircleSounds as Ma } from "./features/circle-games/hooks/use-circle-sounds/use-circle-sounds.js";
|
148
148
|
import { CircleSoundKey as Oa } from "./features/circle-games/hooks/use-circle-sounds/use-circle-sounds-enums.js";
|
149
149
|
import { useGetLeaderboardDal as Ra } from "./features/circle-games/leaderboard/dal/use-get-leaderboard-dal/use-get-leaderboard-dal.js";
|
150
150
|
import { ELeaderboardType as Ga } from "./features/circle-games/leaderboard/enums/leaderboard-type-enum.js";
|
@@ -169,8 +169,8 @@ import { default as Tf } from "./features/cue-canvas/cue-canvas-provider.js";
|
|
169
169
|
import { default as Sf } from "./features/cue-canvas/toolbar/toolbar.js";
|
170
170
|
import { default as Af } from "./features/cue-canvas/cue-canvas.js";
|
171
171
|
import { default as Pf } from "./features/cue-canvas/hooks/use-canvas-sync-broker.js";
|
172
|
-
import { default as
|
173
|
-
import { default as
|
172
|
+
import { default as Lf } from "./features/communication/hooks/use-inclass-message-broker/use-inclass-message-broker.js";
|
173
|
+
import { default as Mf } from "./features/communication/hooks/use-trial-session-message-broker/use-trial-session-message-broker.js";
|
174
174
|
import { EVENTS as Of } from "./features/communication/pub-sub/constants.js";
|
175
175
|
import { useInClassActionDispatcher as Rf, useInClassActionListener as Df } from "./features/communication/pub-sub/hooks.js";
|
176
176
|
import { default as yf } from "./features/trial-session/trial-session.js";
|
@@ -195,8 +195,8 @@ import { default as is } from "./features/milestone/outcome/comps/achievement/sh
|
|
195
195
|
import { default as Es } from "./features/milestone/edit/comps/edit-milestone-modal/index.js";
|
196
196
|
import { default as Cs } from "./features/milestone/edit/goal-edit-container.js";
|
197
197
|
import { default as _s } from "./features/milestone/edit/milestone-edit-container.js";
|
198
|
-
import { default as
|
199
|
-
import { default as
|
198
|
+
import { default as hs } from "./features/milestone/milestone-list-container/milestone-list-container.js";
|
199
|
+
import { default as ks } from "./features/milestone/milestone-action-widget/milestone-action-widget.js";
|
200
200
|
import { default as Ns } from "./features/milestone/start/milestone-start.js";
|
201
201
|
import { default as Hs } from "./features/milestone/milestone-tests/tests-creation/tests-creation.js";
|
202
202
|
import { default as Ds } from "./features/milestone/milestone-resources/resources-assign/resources-assign.js";
|
@@ -213,23 +213,23 @@ import { default as rl } from "./features/sheet-tools/desmos-calculator/desmos-c
|
|
213
213
|
import { default as al } from "./features/sheet-tools/tool-header/tool-header.js";
|
214
214
|
import { default as sl } from "./features/sheets/sheets-list/sheets-list.js";
|
215
215
|
import { default as pl } from "./features/sheets/reference-sheet/reference-sheet.js";
|
216
|
-
import { WORKSHEET_V3_NODE_TYPES as ul } from "./features/sheets/utils/is-v3-worksheet.js";
|
217
|
-
import { COMPLETED_SHEET_STATE as
|
218
|
-
import { default as
|
219
|
-
import { default as
|
220
|
-
import { ACTION_BAR_HEIGHT as
|
221
|
-
import { isOkayTypeQuestion as
|
222
|
-
import { default as
|
223
|
-
import { default as
|
224
|
-
import { default as
|
225
|
-
import { default as
|
226
|
-
import { default as
|
227
|
-
import { default as
|
228
|
-
import { default as
|
229
|
-
import { default as
|
216
|
+
import { WORKSHEET_V3_NODE_TYPES as ul, isV3Worksheet as xl, isV3WorksheetAttempt as dl } from "./features/sheets/utils/is-v3-worksheet.js";
|
217
|
+
import { COMPLETED_SHEET_STATE as cl, NODE_LABELS as Il, NODE_SUB_GROUP as il, NODE_TYPE as Tl, PYTHON_NODE_TYPES as El, REWARDS_LIST as Sl, SHEET_ACTIONS as Cl, SHEET_ATTEMPT_LOCATION as Al, SHEET_ATTEMPT_LOCATION_MAP as _l, SHEET_ATTEMPT_STATE as Pl, SHEET_DATA_TYPE as hl, SHEET_STATE as Ll } from "./features/sheets/constants/sheet.js";
|
218
|
+
import { default as Ml } from "./features/student-details/student-details.js";
|
219
|
+
import { default as Ol } from "./features/utils/load-script.js";
|
220
|
+
import { ACTION_BAR_HEIGHT as Rl, QUESTIONS_GAP as Dl, QUESTION_WIDTH as Gl, TOP_NAVIGATION_HEIGHT as yl } from "./features/worksheet/worksheet/constants.js";
|
221
|
+
import { isOkayTypeQuestion as Bl } from "./features/worksheet/worksheet/worksheet-helpers.js";
|
222
|
+
import { default as bl } from "./features/worksheet/worksheet/worksheet-container.js";
|
223
|
+
import { default as Wl } from "./features/worksheet/worksheet-preview/worksheet-preview.js";
|
224
|
+
import { default as wl } from "./features/worksheet/worksheet/worksheet-permissions/sheet-locked.js";
|
225
|
+
import { default as Yl } from "./features/worksheet/worksheet/worksheet-permissions/error.js";
|
226
|
+
import { default as Fl } from "./features/worksheet/learnosity-preloader/learnosity-preloader.js";
|
227
|
+
import { default as jl } from "./features/worksheet/learnosity-preloader/use-is-learnosity-loaded.js";
|
228
|
+
import { default as ql } from "./features/worksheet/worksheet-preview/hooks/use-worksheet-layout.js";
|
229
|
+
import { default as Xl } from "./features/maintenance/maintenance.js";
|
230
230
|
export {
|
231
231
|
ys as ACHIEVEMENT_ACTIONS,
|
232
|
-
|
232
|
+
kr as AccordionSection,
|
233
233
|
cs as AchievementNotShareReasonModal,
|
234
234
|
is as AchievementShareInstructionModal,
|
235
235
|
d as AlertIcon,
|
@@ -243,16 +243,16 @@ export {
|
|
243
243
|
mf as BackgroundImage,
|
244
244
|
E as Bin2Icon,
|
245
245
|
i as BinIcon,
|
246
|
-
|
246
|
+
h as Book2Icon,
|
247
247
|
C as BookClosedIcon,
|
248
248
|
_ as BookIcon,
|
249
|
-
|
249
|
+
k as BookmarkIcon,
|
250
250
|
H as Bulb2Icon,
|
251
251
|
N as BulbIcon,
|
252
252
|
Br as Button,
|
253
253
|
$a as CIRCLE_ACTION_IDS,
|
254
254
|
za as CIRCLE_ONBOARDING_ANALYTICS_STEPS,
|
255
|
-
|
255
|
+
cl as COMPLETED_SHEET_STATE,
|
256
256
|
D as CalendarIcon,
|
257
257
|
Ht as Callout,
|
258
258
|
pt as CascadingSelectInput,
|
@@ -308,7 +308,7 @@ export {
|
|
308
308
|
ce as EyeIcon,
|
309
309
|
it as FlexView,
|
310
310
|
Pa as GAME_LAUNCHER_ASSET_PADDING,
|
311
|
-
|
311
|
+
La as GAME_LAUNCHER_SIZE,
|
312
312
|
ur as GameIcon,
|
313
313
|
of as GameLauncher,
|
314
314
|
as as GoalCreationConfirmationModal,
|
@@ -319,12 +319,12 @@ export {
|
|
319
319
|
Ee as HandIcon,
|
320
320
|
Ce as HelpIcon,
|
321
321
|
_e as HighlighterIcon,
|
322
|
-
|
322
|
+
he as HomeIcon,
|
323
323
|
s as ILLUSTRATIONS,
|
324
324
|
p as IMAGES,
|
325
325
|
Za as IStatsToAwardErrorCode,
|
326
326
|
Wr as IconButton,
|
327
|
-
|
327
|
+
ke as ImageIcon,
|
328
328
|
Xf as IndicatorType,
|
329
329
|
He as Info2Icon,
|
330
330
|
Ne as InfoIcon,
|
@@ -334,15 +334,15 @@ export {
|
|
334
334
|
Ia as LPARChapter,
|
335
335
|
Ta as LPARMilestoneChapter,
|
336
336
|
lf as Leaderboard,
|
337
|
-
|
337
|
+
Fl as LearnosityPreloader,
|
338
338
|
De as LeftIcon,
|
339
339
|
Be as Lock2Icon,
|
340
340
|
ye as LockIcon,
|
341
|
-
|
342
|
-
|
341
|
+
Xl as Maintenance,
|
342
|
+
ks as MilestoneActionWidget,
|
343
343
|
ps as MilestoneCreate,
|
344
344
|
_s as MilestoneEdit,
|
345
|
-
|
345
|
+
hs as MilestoneList,
|
346
346
|
ds as MilestoneOutcome,
|
347
347
|
Ns as MilestoneStart,
|
348
348
|
We as Minus2Icon,
|
@@ -351,16 +351,16 @@ export {
|
|
351
351
|
Ye as Mobile,
|
352
352
|
Fe as MoreVerticalIcon,
|
353
353
|
ma as MultiTabBlocker,
|
354
|
-
|
355
|
-
|
356
|
-
|
354
|
+
Il as NODE_LABELS,
|
355
|
+
il as NODE_SUB_GROUP,
|
356
|
+
Tl as NODE_TYPE,
|
357
357
|
Er as Next2Icon,
|
358
358
|
je as NextIcon,
|
359
359
|
yr as Nudge,
|
360
360
|
ut as NumRangeInput,
|
361
361
|
oa as PLATFORM_EVENTS_STUDENT,
|
362
362
|
ta as PLATFORM_EVENTS_TEACHER,
|
363
|
-
|
363
|
+
El as PYTHON_NODE_TYPES,
|
364
364
|
qe as PencilIcon,
|
365
365
|
dt as PercentileInput,
|
366
366
|
$t as PerfectHits,
|
@@ -372,13 +372,13 @@ export {
|
|
372
372
|
Xe as PointerIcon,
|
373
373
|
el as PostGameStats,
|
374
374
|
po as PracticeIcon,
|
375
|
-
|
375
|
+
Wl as PreviewWorksheet,
|
376
376
|
uo as ProgressIcon,
|
377
377
|
Va as ProjectOutcome,
|
378
378
|
Ka as ProjectType,
|
379
379
|
no as QuestionIcon,
|
380
380
|
Io as QuestionLetterIcon,
|
381
|
-
|
381
|
+
Sl as REWARDS_LIST,
|
382
382
|
_t as RadioCard,
|
383
383
|
Xr as RadioInput,
|
384
384
|
To as RedoIcon,
|
@@ -387,43 +387,43 @@ export {
|
|
387
387
|
So as RightIcon,
|
388
388
|
Ao as RulerIcon,
|
389
389
|
Sa as SATSheetSummary,
|
390
|
-
|
391
|
-
|
392
|
-
|
393
|
-
|
394
|
-
|
395
|
-
|
390
|
+
Cl as SHEET_ACTIONS,
|
391
|
+
Al as SHEET_ATTEMPT_LOCATION,
|
392
|
+
_l as SHEET_ATTEMPT_LOCATION_MAP,
|
393
|
+
Pl as SHEET_ATTEMPT_STATE,
|
394
|
+
hl as SHEET_DATA_TYPE,
|
395
|
+
Ll as SHEET_STATE,
|
396
396
|
gs as STAGES,
|
397
397
|
$o as ScribbleIcon,
|
398
398
|
Po as SearchIcon,
|
399
399
|
rt as SearchableSelectInput,
|
400
|
-
|
400
|
+
ht as SectionList,
|
401
401
|
et as SelectInput,
|
402
402
|
ct as SelectionCards,
|
403
403
|
Zt as Separator,
|
404
|
-
|
405
|
-
|
404
|
+
Yl as SheetError,
|
405
|
+
Lo as SheetIcon,
|
406
406
|
sl as SheetList,
|
407
|
-
|
407
|
+
wl as SheetLocked,
|
408
408
|
cf as SignUp,
|
409
409
|
er as SketchIcon,
|
410
410
|
Ro as Skip2Icon,
|
411
411
|
Oo as SkipIcon,
|
412
412
|
df as SplashScreen,
|
413
413
|
Go as Star2Icon,
|
414
|
-
|
414
|
+
Mo as StarIcon,
|
415
415
|
a as Stepper,
|
416
416
|
Jt as StreakIcon,
|
417
417
|
ga as StreakReductionLocalStorageUtil,
|
418
418
|
go as StrikedEyeIcon,
|
419
|
-
|
419
|
+
Ml as StudentDetails,
|
420
420
|
rs as SubmitMilestoneModal,
|
421
421
|
Uo as SwitchIcon,
|
422
422
|
Kt as TabComponent,
|
423
423
|
Nt as Tag,
|
424
424
|
Wf as TalkMeter,
|
425
425
|
Hs as TestsCreation,
|
426
|
-
|
426
|
+
kt as Text,
|
427
427
|
wr as TextButton,
|
428
428
|
st as TextInput,
|
429
429
|
vo as TickIcon,
|
@@ -440,27 +440,29 @@ export {
|
|
440
440
|
Zo as UserIcon,
|
441
441
|
zt as Video,
|
442
442
|
fa as WHITELIST_EVENTS,
|
443
|
-
|
444
|
-
|
445
|
-
|
446
|
-
|
443
|
+
Rl as WORKSHEET_ACTION_BAR_HEIGHT,
|
444
|
+
Dl as WORKSHEET_QUESTIONS_GAP,
|
445
|
+
Gl as WORKSHEET_QUESTION_WIDTH,
|
446
|
+
yl as WORKSHEET_TOP_NAVIGATION_HEIGHT,
|
447
447
|
ul as WORKSHEET_V3_NODE_TYPES,
|
448
448
|
va as WebView,
|
449
449
|
Qa as WebViewEvent,
|
450
|
-
|
450
|
+
bl as Worksheet,
|
451
451
|
Aa as checkIfPPTNodeType,
|
452
452
|
vt as getTheme,
|
453
453
|
Qs as invalidateMilestoneResources,
|
454
454
|
Us as invalidateMilestonesData,
|
455
455
|
Ws as invalidateTestHelpData,
|
456
|
-
|
457
|
-
|
456
|
+
Bl as isOkayTypeQuestion,
|
457
|
+
xl as isV3Worksheet,
|
458
|
+
dl as isV3WorksheetAttempt,
|
459
|
+
Ol as loadScript,
|
458
460
|
Yf as useAutoPlayPermission,
|
459
461
|
Pf as useCanvasSyncBroker,
|
460
|
-
|
462
|
+
Ma as useCircleSounds,
|
461
463
|
bf as useClassTimeAlerts,
|
462
464
|
Ut as useContextMenuClickHandler,
|
463
|
-
|
465
|
+
hr as useForceReload,
|
464
466
|
bs as useGetAllMilestonesdata,
|
465
467
|
tf as useGetCircleHomeDetailsDal,
|
466
468
|
Ra as useGetLeaderboardDal,
|
@@ -468,16 +470,16 @@ export {
|
|
468
470
|
Vs as useGetTestHelpData,
|
469
471
|
Rf as useInClassActionDispatcher,
|
470
472
|
Df as useInClassActionListener,
|
471
|
-
|
472
|
-
|
473
|
+
Lf as useInClassMessageBroker,
|
474
|
+
jl as useIsLearnosityLoaded,
|
473
475
|
la as useIsTabBlocked,
|
474
476
|
jf as useJourney,
|
475
477
|
js as usePointerSync,
|
476
478
|
ff as usePostUpdateCircleJourneyDal,
|
477
479
|
gt as useTrackingContext,
|
478
|
-
|
480
|
+
Mf as useTrialSessionMessageBroker,
|
479
481
|
Gt as useUIContext,
|
480
|
-
|
482
|
+
ql as useWorksheetLayout,
|
481
483
|
_r as useZoomDisable
|
482
484
|
};
|
483
485
|
//# sourceMappingURL=index.js.map
|