@cuemath/leap 2.8.61 → 2.8.62-aa1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (26) hide show
  1. package/dist/features/chapters/lpar-chapter/block-section/sheet-item/rewards-n-actions/student-actions/student-actions.js +45 -46
  2. package/dist/features/chapters/lpar-chapter/block-section/sheet-item/rewards-n-actions/student-actions/student-actions.js.map +1 -1
  3. package/dist/features/chapters/lpar-chapter/block-section/sheet-item/rewards-n-actions/teacher-actions/teacher-actions.js +25 -26
  4. package/dist/features/chapters/lpar-chapter/block-section/sheet-item/rewards-n-actions/teacher-actions/teacher-actions.js.map +1 -1
  5. package/dist/features/circle-games/games/web-view/web-view-types.js.map +1 -1
  6. package/dist/features/circle-games/games/web-view/web-view.js +47 -53
  7. package/dist/features/circle-games/games/web-view/web-view.js.map +1 -1
  8. package/dist/features/cue-canvas/cue-canvas-provider.js +9 -8
  9. package/dist/features/cue-canvas/cue-canvas-provider.js.map +1 -1
  10. package/dist/features/sheets/lessons-list/lesson-item/lesson-item-cta-info.js +59 -60
  11. package/dist/features/sheets/lessons-list/lesson-item/lesson-item-cta-info.js.map +1 -1
  12. package/dist/features/sheets/resources-list/resource-item/resource-item.js +89 -90
  13. package/dist/features/sheets/resources-list/resource-item/resource-item.js.map +1 -1
  14. package/dist/features/sheets/sheets-list/sheet-item/reward-n-actions/student-actions/student-actions.js +60 -61
  15. package/dist/features/sheets/sheets-list/sheet-item/reward-n-actions/student-actions/student-actions.js.map +1 -1
  16. package/dist/features/sheets/sheets-list/sheet-item/reward-n-actions/teacher-actions/teacher-actions.js +63 -64
  17. package/dist/features/sheets/sheets-list/sheet-item/reward-n-actions/teacher-actions/teacher-actions.js.map +1 -1
  18. package/dist/features/sheets/utils/is-v3-worksheet.js +4 -14
  19. package/dist/features/sheets/utils/is-v3-worksheet.js.map +1 -1
  20. package/dist/features/ui/section-list/section-list.js +12 -12
  21. package/dist/features/ui/section-list/section-list.js.map +1 -1
  22. package/dist/index.d.ts +11 -12
  23. package/dist/index.js +74 -75
  24. package/dist/library/polypad.js +24965 -0
  25. package/dist/library/polypad.js.map +1 -0
  26. package/package.json +4 -2
package/dist/index.d.ts CHANGED
@@ -1728,9 +1728,9 @@ declare interface ILPARMilestoneSheetItemCallbacks {
1728
1728
 
1729
1729
  declare interface ILPARSheetCallbacks extends ISATSheetItemCallbacks {
1730
1730
  onMenuActionAttempt?: (userAction: string, sheet: TLPARSheetData) => void;
1731
- onView?: (sheet: TLPARSheetData, isV3Worksheet: boolean) => void;
1732
- onStartOrResume?: (sheet: TLPARSheetData, isV3Worksheet: boolean) => void;
1733
- onReview?: (sheet: TLPARSheetData, isV3Worksheet: boolean) => void;
1731
+ onView?: (sheet: TLPARSheetData) => void;
1732
+ onStartOrResume?: (sheet: TLPARSheetData) => void;
1733
+ onReview?: (sheet: TLPARSheetData) => void;
1734
1734
  }
1735
1735
 
1736
1736
  export declare const ImageIcon: React.FC<React.SVGProps<SVGSVGElement>>;
@@ -2121,6 +2121,7 @@ export declare interface IPlayer {
2121
2121
  avatar?: IAvatarLayer[] | null;
2122
2122
  playerType: TUserTypes;
2123
2123
  countryCode: string;
2124
+ isAdmin?: boolean;
2124
2125
  }
2125
2126
 
2126
2127
  export declare interface IPlayerStats {
@@ -2525,11 +2526,11 @@ export declare interface ISheetDataProps {
2525
2526
  }
2526
2527
 
2527
2528
  declare interface ISheetItemCallbackProps {
2528
- onStart?: (nodeId: string, isV3Worksheet: boolean, userNodeId?: string | null) => void;
2529
- onResume?: (nodeId: string, isV3Worksheet: boolean, userNodeId?: string | null) => void;
2530
- onReattempt?: (nodeId: string, isV3Worksheet: boolean, userNodeId?: string | null) => void;
2531
- onPreview?: (sheetData: ISheetDataProps, isV3Worksheet: boolean) => void;
2532
- onReview?: (nodeId: string, isV3Worksheet: boolean, userMilestoneId?: string) => void;
2529
+ onStart?: (nodeId: string, userNodeId?: string | null) => void;
2530
+ onResume?: (nodeId: string, userNodeId?: string | null) => void;
2531
+ onReattempt?: (nodeId: string, userNodeId?: string | null) => void;
2532
+ onPreview?: (sheetData: ISheetDataProps) => void;
2533
+ onReview?: (nodeId: string, userMilestoneId?: string) => void;
2533
2534
  onChangeLocation?: (sheetData: ISheetDataProps, sheetDataType?: (typeof SHEET_DATA_TYPE)[keyof typeof SHEET_DATA_TYPE]) => void;
2534
2535
  onReset?: (sheetData: ISheetDataProps, userMilestoneId?: string) => void;
2535
2536
  onMarkAsFamiliar?: (nodeId: string) => void;
@@ -2674,10 +2675,6 @@ declare interface ISubmitModalProps_2 {
2674
2675
  courseStream: TCourseStream;
2675
2676
  }
2676
2677
 
2677
- export declare const isV3Worksheet: (sheet: ISheetDataProps | TLPARSheetData, mode?: "resume" | "review") => boolean;
2678
-
2679
- export declare const isV3WorksheetAttempt: (attempt: IWorksheetAttemptModel) => boolean;
2680
-
2681
2678
  declare interface ISyncableWebGameProps {
2682
2679
  joinByRoomId?: string;
2683
2680
  enableSync?: boolean;
@@ -5157,6 +5154,8 @@ export declare const WORKSHEET_QUESTIONS_GAP = 16;
5157
5154
 
5158
5155
  export declare const WORKSHEET_TOP_NAVIGATION_HEIGHT = 48;
5159
5156
 
5157
+ export declare const WORKSHEET_V3_NODE_TYPES: TNodeTypeProps[];
5158
+
5160
5159
  declare const ZINDEX: {
5161
5160
  readonly CHAPTER_CROWN_ICON: 4;
5162
5161
  readonly CHAPTER_PLUS_ICON: 2;
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 h } from "./assets/line-icons/icons/book2.js";
13
- import { default as k } from "./assets/line-icons/icons/bookmark.js";
12
+ import { default as L } from "./assets/line-icons/icons/book2.js";
13
+ import { default as M } 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 R } 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 he } from "./assets/line-icons/icons/home.js";
40
- import { default as ke } from "./assets/line-icons/icons/image.js";
39
+ import { default as Le } from "./assets/line-icons/icons/home.js";
40
+ import { default as Me } 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 Re } 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 Lo } from "./assets/line-icons/icons/sheet.js";
67
- import { default as Mo } from "./assets/line-icons/icons/star.js";
66
+ import { default as ho } from "./assets/line-icons/icons/sheet.js";
67
+ import { default as ko } 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 Ho } 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 hr } from "./features/hooks/use-force-reload.js";
93
- import { default as kr } from "./features/ui/accordion-section/accordion-section.js";
92
+ import { default as Lr } from "./features/hooks/use-force-reload.js";
93
+ import { default as Mr } 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 Rr } 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 ht } from "./features/ui/section-list/section-list.js";
120
- import { default as kt } from "./features/ui/text/text.js";
119
+ import { default as Lt } from "./features/ui/section-list/section-list.js";
120
+ import { default as Mt } from "./features/ui/text/text.js";
121
121
  import { default as Nt } from "./features/ui/tag/tag.js";
122
122
  import { default as Rt } 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 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";
146
+ import { GAME_LAUNCHER_SIZE as ha } from "./features/circle-games/game-launcher/comps/card-container/constants.js";
147
+ import { useCircleSounds as ka } 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 Ha } 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/toolbar/toolbar.js";
169
169
  import { default as Sf } from "./features/cue-canvas/cue-canvas.js";
170
170
  import { default as Af } from "./features/cue-canvas/hooks/use-canvas-sync-broker.js";
171
171
  import { default as Pf } from "./features/communication/hooks/use-inclass-message-broker/use-inclass-message-broker.js";
172
- import { default as Lf } from "./features/communication/hooks/use-trial-session-message-broker/use-trial-session-message-broker.js";
173
- import { EVENTS as Mf } from "./features/communication/pub-sub/constants.js";
172
+ import { default as hf } from "./features/communication/hooks/use-trial-session-message-broker/use-trial-session-message-broker.js";
173
+ import { EVENTS as kf } from "./features/communication/pub-sub/constants.js";
174
174
  import { useInClassActionDispatcher as Of, useInClassActionListener as Rf } from "./features/communication/pub-sub/hooks.js";
175
175
  import { default as Df } from "./features/trial-session/trial-session.js";
176
176
  import { EClassTimeAlertLevel as yf } from "./features/trial-session/trial-session-types.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 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";
198
+ import { default as Ls } from "./features/milestone/milestone-list-container/milestone-list-container.js";
199
+ import { default as Ms } 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 Rs } 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 { isV3Worksheet as ul, isV3WorksheetAttempt as xl } from "./features/sheets/utils/is-v3-worksheet.js";
217
- import { COMPLETED_SHEET_STATE as nl, NODE_LABELS as cl, NODE_SUB_GROUP as Il, NODE_TYPE as il, PYTHON_NODE_TYPES as Tl, REWARDS_LIST as El, SHEET_ACTIONS as Sl, SHEET_ATTEMPT_LOCATION as Cl, SHEET_ATTEMPT_LOCATION_MAP as Al, SHEET_ATTEMPT_STATE as _l, SHEET_DATA_TYPE as Pl, SHEET_STATE as hl } from "./features/sheets/constants/sheet.js";
218
- import { default as kl } from "./features/student-details/student-details.js";
219
- import { default as Nl } from "./features/utils/load-script.js";
220
- import { ACTION_BAR_HEIGHT as Rl, QUESTIONS_GAP as Hl, QUESTION_WIDTH as Dl, TOP_NAVIGATION_HEIGHT as Gl } from "./features/worksheet/worksheet/constants.js";
221
- import { isOkayTypeQuestion as gl } from "./features/worksheet/worksheet/worksheet-helpers.js";
222
- import { default as bl } from "./features/worksheet/worksheet/worksheet-container.js";
223
- import { default as vl } from "./features/worksheet/worksheet-preview/worksheet-preview.js";
224
- import { default as Vl } from "./features/worksheet/worksheet/worksheet-permissions/sheet-locked.js";
225
- import { default as Ql } from "./features/worksheet/worksheet/worksheet-permissions/error.js";
226
- import { default as Kl } 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 Zl } from "./features/worksheet/worksheet-preview/hooks/use-worksheet-layout.js";
229
- import { default as zl } from "./features/maintenance/maintenance.js";
216
+ import { WORKSHEET_V3_NODE_TYPES as ul } from "./features/sheets/utils/is-v3-worksheet.js";
217
+ import { COMPLETED_SHEET_STATE as dl, NODE_LABELS as nl, NODE_SUB_GROUP as cl, NODE_TYPE as Il, PYTHON_NODE_TYPES as il, REWARDS_LIST as Tl, SHEET_ACTIONS as El, SHEET_ATTEMPT_LOCATION as Sl, SHEET_ATTEMPT_LOCATION_MAP as Cl, SHEET_ATTEMPT_STATE as Al, SHEET_DATA_TYPE as _l, SHEET_STATE as Pl } from "./features/sheets/constants/sheet.js";
218
+ import { default as hl } from "./features/student-details/student-details.js";
219
+ import { default as kl } from "./features/utils/load-script.js";
220
+ import { ACTION_BAR_HEIGHT as Ol, QUESTIONS_GAP as Rl, QUESTION_WIDTH as Hl, TOP_NAVIGATION_HEIGHT as Dl } from "./features/worksheet/worksheet/constants.js";
221
+ import { isOkayTypeQuestion as yl } from "./features/worksheet/worksheet/worksheet-helpers.js";
222
+ import { default as Bl } from "./features/worksheet/worksheet/worksheet-container.js";
223
+ import { default as Ul } 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 wl } from "./features/worksheet/worksheet/worksheet-permissions/error.js";
226
+ import { default as Yl } from "./features/worksheet/learnosity-preloader/learnosity-preloader.js";
227
+ import { default as Fl } from "./features/worksheet/learnosity-preloader/use-is-learnosity-loaded.js";
228
+ import { default as jl } from "./features/worksheet/worksheet-preview/hooks/use-worksheet-layout.js";
229
+ import { default as ql } from "./features/maintenance/maintenance.js";
230
230
  export {
231
231
  ys as ACHIEVEMENT_ACTIONS,
232
- kr as AccordionSection,
232
+ Mr as AccordionSection,
233
233
  cs as AchievementNotShareReasonModal,
234
234
  is as AchievementShareInstructionModal,
235
235
  d as AlertIcon,
@@ -243,16 +243,16 @@ export {
243
243
  lf as BackgroundImage,
244
244
  E as Bin2Icon,
245
245
  i as BinIcon,
246
- h as Book2Icon,
246
+ L as Book2Icon,
247
247
  C as BookClosedIcon,
248
248
  _ as BookIcon,
249
- k as BookmarkIcon,
249
+ M as BookmarkIcon,
250
250
  R 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
- nl as COMPLETED_SHEET_STATE,
255
+ dl as COMPLETED_SHEET_STATE,
256
256
  D as CalendarIcon,
257
257
  Rt as Callout,
258
258
  pt as CascadingSelectInput,
@@ -295,7 +295,7 @@ export {
295
295
  Ga as ELeaderboardType,
296
296
  Ds as EPResourceAssign,
297
297
  Xs as EPostGameStat,
298
- Mf as EVENTS,
298
+ kf as EVENTS,
299
299
  pe as Edit2Icon,
300
300
  se as EditIcon,
301
301
  Es as EditMilestoneModal,
@@ -308,7 +308,7 @@ export {
308
308
  ce as EyeIcon,
309
309
  it as FlexView,
310
310
  Pa as GAME_LAUNCHER_ASSET_PADDING,
311
- La as GAME_LAUNCHER_SIZE,
311
+ ha 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
- he as HomeIcon,
322
+ Le as HomeIcon,
323
323
  s as ILLUSTRATIONS,
324
324
  p as IMAGES,
325
325
  Za as IStatsToAwardErrorCode,
326
326
  Wr as IconButton,
327
- ke as ImageIcon,
327
+ Me as ImageIcon,
328
328
  Xf as IndicatorType,
329
329
  Re as Info2Icon,
330
330
  Ne as InfoIcon,
@@ -334,15 +334,15 @@ export {
334
334
  Ia as LPARChapter,
335
335
  Ta as LPARMilestoneChapter,
336
336
  ff as Leaderboard,
337
- Kl as LearnosityPreloader,
337
+ Yl as LearnosityPreloader,
338
338
  De as LeftIcon,
339
339
  Be as Lock2Icon,
340
340
  ye as LockIcon,
341
- zl as Maintenance,
342
- ks as MilestoneActionWidget,
341
+ ql as Maintenance,
342
+ Ms as MilestoneActionWidget,
343
343
  ps as MilestoneCreate,
344
344
  _s as MilestoneEdit,
345
- hs as MilestoneList,
345
+ Ls 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
- cl as NODE_LABELS,
355
- Il as NODE_SUB_GROUP,
356
- il as NODE_TYPE,
354
+ nl as NODE_LABELS,
355
+ cl as NODE_SUB_GROUP,
356
+ Il 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
- Tl as PYTHON_NODE_TYPES,
363
+ il 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
- vl as PreviewWorksheet,
375
+ Ul 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
- El as REWARDS_LIST,
381
+ Tl 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
- Sl as SHEET_ACTIONS,
391
- Cl as SHEET_ATTEMPT_LOCATION,
392
- Al as SHEET_ATTEMPT_LOCATION_MAP,
393
- _l as SHEET_ATTEMPT_STATE,
394
- Pl as SHEET_DATA_TYPE,
395
- hl as SHEET_STATE,
390
+ El as SHEET_ACTIONS,
391
+ Sl as SHEET_ATTEMPT_LOCATION,
392
+ Cl as SHEET_ATTEMPT_LOCATION_MAP,
393
+ Al as SHEET_ATTEMPT_STATE,
394
+ _l as SHEET_DATA_TYPE,
395
+ Pl as SHEET_STATE,
396
396
  gs as STAGES,
397
397
  $o as ScribbleIcon,
398
398
  Po as SearchIcon,
399
399
  rt as SearchableSelectInput,
400
- ht as SectionList,
400
+ Lt as SectionList,
401
401
  et as SelectInput,
402
402
  ct as SelectionCards,
403
403
  Zt as Separator,
404
- Ql as SheetError,
405
- Lo as SheetIcon,
404
+ wl as SheetError,
405
+ ho as SheetIcon,
406
406
  sl as SheetList,
407
- Vl as SheetLocked,
407
+ Wl as SheetLocked,
408
408
  df as SignUp,
409
409
  er as SketchIcon,
410
410
  Ho as Skip2Icon,
411
411
  Oo as SkipIcon,
412
412
  uf as SplashScreen,
413
413
  Go as Star2Icon,
414
- Mo as StarIcon,
414
+ ko as StarIcon,
415
415
  a as Stepper,
416
416
  Jt as StreakIcon,
417
417
  ga as StreakReductionLocalStorageUtil,
418
418
  go as StrikedEyeIcon,
419
- kl as StudentDetails,
419
+ hl as StudentDetails,
420
420
  rs as SubmitMilestoneModal,
421
421
  bo as SwitchIcon,
422
422
  Kt as TabComponent,
423
423
  Nt as Tag,
424
424
  Uf as TalkMeter,
425
425
  Rs as TestsCreation,
426
- kt as Text,
426
+ Mt as Text,
427
427
  wr as TextButton,
428
428
  st as TextInput,
429
429
  vo as TickIcon,
@@ -440,28 +440,27 @@ export {
440
440
  Zo as UserIcon,
441
441
  zt as Video,
442
442
  fa as WHITELIST_EVENTS,
443
- Rl as WORKSHEET_ACTION_BAR_HEIGHT,
444
- Hl as WORKSHEET_QUESTIONS_GAP,
445
- Dl as WORKSHEET_QUESTION_WIDTH,
446
- Gl as WORKSHEET_TOP_NAVIGATION_HEIGHT,
443
+ Ol as WORKSHEET_ACTION_BAR_HEIGHT,
444
+ Rl as WORKSHEET_QUESTIONS_GAP,
445
+ Hl as WORKSHEET_QUESTION_WIDTH,
446
+ Dl as WORKSHEET_TOP_NAVIGATION_HEIGHT,
447
+ ul as WORKSHEET_V3_NODE_TYPES,
447
448
  va as WebView,
448
449
  Qa as WebViewEvent,
449
- bl as Worksheet,
450
+ Bl as Worksheet,
450
451
  Aa as checkIfPPTNodeType,
451
452
  vt as getTheme,
452
453
  Qs as invalidateMilestoneResources,
453
454
  bs as invalidateMilestonesData,
454
455
  Ws as invalidateTestHelpData,
455
- gl as isOkayTypeQuestion,
456
- ul as isV3Worksheet,
457
- xl as isV3WorksheetAttempt,
458
- Nl as loadScript,
456
+ yl as isOkayTypeQuestion,
457
+ kl as loadScript,
459
458
  wf as useAutoPlayPermission,
460
459
  Af as useCanvasSyncBroker,
461
- Ma as useCircleSounds,
460
+ ka as useCircleSounds,
462
461
  Bf as useClassTimeAlerts,
463
462
  bt as useContextMenuClickHandler,
464
- hr as useForceReload,
463
+ Lr as useForceReload,
465
464
  Us as useGetAllMilestonesdata,
466
465
  tf as useGetCircleHomeDetailsDal,
467
466
  jf as useGetEligibleJourneysViaRoute,
@@ -471,14 +470,14 @@ export {
471
470
  Of as useInClassActionDispatcher,
472
471
  Rf as useInClassActionListener,
473
472
  Pf as useInClassMessageBroker,
474
- Jl as useIsLearnosityLoaded,
473
+ Fl as useIsLearnosityLoaded,
475
474
  la as useIsTabBlocked,
476
475
  Ff as useJourney,
477
476
  js as usePointerSync,
478
477
  gt as useTrackingContext,
479
- Lf as useTrialSessionMessageBroker,
478
+ hf as useTrialSessionMessageBroker,
480
479
  Gt as useUIContext,
481
- Zl as useWorksheetLayout,
480
+ jl as useWorksheetLayout,
482
481
  _r as useZoomDisable
483
482
  };
484
483
  //# sourceMappingURL=index.js.map