@cuemath/leap 2.9.7-hg8 → 2.9.7-rj-0

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 (34) hide show
  1. package/dist/features/circle-games/game-launcher/hooks/use-game-launcher-journey/use-game-launcher-journey.js +93 -92
  2. package/dist/features/circle-games/game-launcher/hooks/use-game-launcher-journey/use-game-launcher-journey.js.map +1 -1
  3. package/dist/features/circle-games/game-launcher/hooks/use-table-launcher-journey/use-table-launcher-journey.js +88 -86
  4. package/dist/features/circle-games/game-launcher/hooks/use-table-launcher-journey/use-table-launcher-journey.js.map +1 -1
  5. package/dist/features/circle-games/games/tutorial/constants.js +3 -2
  6. package/dist/features/circle-games/games/tutorial/constants.js.map +1 -1
  7. package/dist/features/circle-games/games/tutorial/tutorial-styled.js +23 -19
  8. package/dist/features/circle-games/games/tutorial/tutorial-styled.js.map +1 -1
  9. package/dist/features/circle-games/games/tutorial/tutorial.js +41 -41
  10. package/dist/features/circle-games/games/tutorial/tutorial.js.map +1 -1
  11. package/dist/features/circle-games/games/web-view/web-view.js +46 -55
  12. package/dist/features/circle-games/games/web-view/web-view.js.map +1 -1
  13. package/dist/features/circle-games/leaderboard/comps/banner/banner.js +6 -6
  14. package/dist/features/circle-games/leaderboard/comps/banner/banner.js.map +1 -1
  15. package/dist/features/circle-games/leaderboard/comps/navigation-button/navigation-button-styled.js +1 -1
  16. package/dist/features/circle-games/leaderboard/comps/navigation-button/navigation-button-styled.js.map +1 -1
  17. package/dist/features/circle-games/leaderboard/leaderboard-styled.js +1 -1
  18. package/dist/features/circle-games/leaderboard/leaderboard-styled.js.map +1 -1
  19. package/dist/features/circle-games/leaderboard/leaderboard.js +9 -9
  20. package/dist/features/circle-games/leaderboard/leaderboard.js.map +1 -1
  21. package/dist/features/circle-games/sign-up/comp/circular-steps/circular-steps-styled.js +8 -8
  22. package/dist/features/circle-games/sign-up/comp/circular-steps/circular-steps-styled.js.map +1 -1
  23. package/dist/features/circle-games/sign-up/constants.js +9 -9
  24. package/dist/features/circle-games/sign-up/constants.js.map +1 -1
  25. package/dist/features/hooks/use-breakpoint/constants.js +7 -0
  26. package/dist/features/hooks/use-breakpoint/constants.js.map +1 -0
  27. package/dist/features/hooks/use-breakpoint/use-breakpoint.js +16 -0
  28. package/dist/features/hooks/use-breakpoint/use-breakpoint.js.map +1 -0
  29. package/dist/features/ui/arc-button/constants.js +3 -3
  30. package/dist/features/ui/arc-button/constants.js.map +1 -1
  31. package/dist/index.d.ts +10 -1
  32. package/dist/index.js +135 -133
  33. package/dist/index.js.map +1 -1
  34. package/package.json +4 -2
@@ -1,7 +1,7 @@
1
- const T = 1680, o = 64 + (window.bottomInset || 0), t = 112 + (window.bottomInset || 0);
1
+ const T = 1680, _ = 64, O = 112;
2
2
  export {
3
3
  T as ABSOLUTE_ARC_BUTTON_WIDTH,
4
- o as ARC_BUTTON_BOTTOM_OFFSET,
5
- t as ARC_BUTTON_WRAPPER_HEIGHT
4
+ _ as ARC_BUTTON_BOTTOM_OFFSET,
5
+ O as ARC_BUTTON_WRAPPER_HEIGHT
6
6
  };
7
7
  //# sourceMappingURL=constants.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"constants.js","sources":["../../../../src/features/ui/arc-button/constants.ts"],"sourcesContent":["export const ABSOLUTE_ARC_BUTTON_WIDTH = 1680;\nexport const ARC_BUTTON_BOTTOM_OFFSET = 64 + (window.bottomInset || 0);\nexport const ARC_BUTTON_WRAPPER_HEIGHT = 112 + (window.bottomInset || 0);\n"],"names":["ABSOLUTE_ARC_BUTTON_WIDTH","ARC_BUTTON_BOTTOM_OFFSET","ARC_BUTTON_WRAPPER_HEIGHT"],"mappings":"AAAO,MAAMA,IAA4B,MAC5BC,IAA2B,MAAM,OAAO,eAAe,IACvDC,IAA4B,OAAO,OAAO,eAAe;"}
1
+ {"version":3,"file":"constants.js","sources":["../../../../src/features/ui/arc-button/constants.ts"],"sourcesContent":["export const ABSOLUTE_ARC_BUTTON_WIDTH = 1680;\nexport const ARC_BUTTON_BOTTOM_OFFSET = 64;\nexport const ARC_BUTTON_WRAPPER_HEIGHT = 112;\n"],"names":["ABSOLUTE_ARC_BUTTON_WIDTH","ARC_BUTTON_BOTTOM_OFFSET","ARC_BUTTON_WRAPPER_HEIGHT"],"mappings":"AAAO,MAAMA,IAA4B,MAC5BC,IAA2B,IAC3BC,IAA4B;"}
package/dist/index.d.ts CHANGED
@@ -2995,6 +2995,10 @@ export declare interface ITutorialProps {
2995
2995
  onTutorialPlayedOnce?: () => void;
2996
2996
  }
2997
2997
 
2998
+ export declare interface ITutorialRef {
2999
+ videoRef: React.RefObject<HTMLElement>;
3000
+ }
3001
+
2998
3002
  declare interface IUpdateImages {
2999
3003
  filteredImages: string[];
3000
3004
  newImages: IFile[];
@@ -4946,7 +4950,7 @@ declare type TUserProgram = {
4946
4950
 
4947
4951
  export declare type TUserTypes = 'TEACHER' | 'STUDENT';
4948
4952
 
4949
- export declare const Tutorial: ({ src, title, onCross, showProgress, onTutorialPlayedOnce, }: ITutorialProps) => JSX_2.Element;
4953
+ export declare const Tutorial: ForwardRefExoticComponent<ITutorialProps & RefAttributes<ITutorialRef>>;
4950
4954
 
4951
4955
  export declare const TutoringIcon: React_2.FC<React_2.SVGProps<SVGSVGElement>>;
4952
4956
 
@@ -4968,6 +4972,11 @@ export declare const UpIcon: React.FC<React.SVGProps<SVGSVGElement>>;
4968
4972
 
4969
4973
  export declare const useAutoPlayPermission: () => IAutoPlayPermissionContextType;
4970
4974
 
4975
+ export declare const useBreakpoint: () => {
4976
+ isMobile: boolean;
4977
+ width: number;
4978
+ };
4979
+
4971
4980
  export declare const useCanvasSyncBroker: (channelId: string, logEvent: (type: string, payload?: Record<string, unknown>) => void, initialCanvasData?: Array<IChannelMessage>) => {
4972
4981
  publishStrokes: ((message: unknown) => boolean) | undefined;
4973
4982
  channelStatus: ChannelStatus | undefined;
package/dist/index.js CHANGED
@@ -11,7 +11,7 @@ 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
12
  import { default as L } from "./assets/line-icons/icons/book2.js";
13
13
  import { default as R } from "./assets/line-icons/icons/bookmark.js";
14
- import { default as M } from "./assets/line-icons/icons/bulb.js";
14
+ import { default as k } from "./assets/line-icons/icons/bulb.js";
15
15
  import { default as O } from "./assets/line-icons/icons/bulb2.js";
16
16
  import { default as D } from "./assets/line-icons/icons/calendar.js";
17
17
  import { default as y } from "./assets/line-icons/icons/check.js";
@@ -38,7 +38,7 @@ 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
39
  import { default as Le } from "./assets/line-icons/icons/home.js";
40
40
  import { default as Re } from "./assets/line-icons/icons/image.js";
41
- import { default as Me } from "./assets/line-icons/icons/info.js";
41
+ import { default as ke } from "./assets/line-icons/icons/info.js";
42
42
  import { default as Oe } from "./assets/line-icons/icons/info2.js";
43
43
  import { default as De } from "./assets/line-icons/icons/left.js";
44
44
  import { default as ye } from "./assets/line-icons/icons/lock.js";
@@ -65,7 +65,7 @@ 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
66
  import { default as No } from "./assets/line-icons/icons/sheet.js";
67
67
  import { default as ho } from "./assets/line-icons/icons/star.js";
68
- import { default as ko } from "./assets/line-icons/icons/skip.js";
68
+ import { default as Mo } 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";
71
71
  import { default as go } from "./assets/line-icons/icons/striked-eye.js";
@@ -91,7 +91,7 @@ import { AutoPlayPermissionProvider as Cr } from "./features/hooks/use-auto-play
91
91
  import { default as _r } from "./features/hooks/use-zoom-disable.js";
92
92
  import { default as Lr } from "./features/hooks/use-force-reload.js";
93
93
  import { default as Rr } from "./features/ui/accordion-section/accordion-section.js";
94
- import { default as Mr } from "./features/ui/arrow-tooltip/arrow-tooltip.js";
94
+ import { default as kr } from "./features/ui/arrow-tooltip/arrow-tooltip.js";
95
95
  import { default as Or } from "./features/ui/context-menu/context-menu.js";
96
96
  import { default as Dr } from "./features/ui/timers/countdown-timer/countdown-timer.js";
97
97
  import { default as yr } from "./features/ui/nudge/nudge.js";
@@ -118,7 +118,7 @@ import { CircularLoader as Ct } from "./features/ui/loader/circular-loader/circu
118
118
  import { default as _t } from "./features/ui/radio-cards/radio-cards.js";
119
119
  import { default as Lt } from "./features/ui/section-list/section-list.js";
120
120
  import { default as Rt } from "./features/ui/text/text.js";
121
- import { default as Mt } from "./features/ui/tag/tag.js";
121
+ import { default as kt } from "./features/ui/tag/tag.js";
122
122
  import { default as Ot } from "./features/ui/callout/callout.js";
123
123
  import { default as Dt, useUIContext as Gt } from "./features/ui/context/context.js";
124
124
  import { default as gt } from "./features/ui/context/use-tracking-context.js";
@@ -145,7 +145,7 @@ import { checkIfPPTNodeType as Aa } from "./features/chapters/lpar-chapter/utils
145
145
  import { GAME_LAUNCHER_ASSET_PADDING as Pa } from "./features/circle-games/game-launcher/comps/segmented-game-card/constants.js";
146
146
  import { GAME_LAUNCHER_SIZE as Na } from "./features/circle-games/game-launcher/comps/card-container/constants.js";
147
147
  import { useCircleSounds as ha } from "./features/circle-games/hooks/use-circle-sounds/use-circle-sounds.js";
148
- import { CircleSoundKey as ka } from "./features/circle-games/hooks/use-circle-sounds/use-circle-sounds-enums.js";
148
+ import { CircleSoundKey as Ma } 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";
151
151
  import { StreakReductionLocalStorageUtil as ga } from "./features/circle-games/utils/streak-reduction-localstorage-util.js";
@@ -171,72 +171,73 @@ import { default as Af } from "./features/cue-canvas/hooks/use-canvas-sync-broke
171
171
  import { default as Pf } from "./features/communication/hooks/use-inclass-message-broker/use-inclass-message-broker.js";
172
172
  import { default as Nf } from "./features/communication/hooks/use-trial-session-message-broker/use-trial-session-message-broker.js";
173
173
  import { EVENTS as hf } from "./features/communication/pub-sub/constants.js";
174
- import { useInClassActionDispatcher as kf, useInClassActionListener as Of } from "./features/communication/pub-sub/hooks.js";
174
+ import { useInClassActionDispatcher as Mf, useInClassActionListener as Of } 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";
177
177
  import { useClassTimeAlerts as Bf } from "./features/trial-session/hooks/use-class-time-alerts.js";
178
178
  import { default as Uf } from "./features/talk-meter/talk-meter.js";
179
179
  import { default as Wf } from "./features/extra-practice/extra-practice.js";
180
180
  import { useAutoPlayPermission as wf } from "./features/hooks/use-auto-play-permission/use-auto-play-permission.js";
181
- import { JOURNEY_ID_STUDENT as Qf } from "./features/journey/journey-id/journey-id-student.js";
182
- import { useJourney as Ff } from "./features/journey/use-journey/use-journey.js";
183
- import { useGetEligibleJourneysViaRoute as jf } from "./features/journey/hooks/use-get-eligible-journeys-via-route.js";
184
- import { JourneyProvider as qf } from "./features/journey/use-journey/journey-context-provider.js";
185
- import { IndicatorType as Xf } from "./features/journey/use-journey/constants.js";
186
- import { Coachmark as es } from "./features/journey/comps/coachmark/coachmark.js";
187
- import { default as rs } from "./features/maintenance/maintenance.js";
188
- import { default as as } from "./features/milestone/create/submit-modal/submit-modal.js";
189
- import { default as ss } from "./features/milestone/create/comps/confirmation-modals/goal-creation-confirmation.js";
190
- import { default as ps } from "./features/milestone/create/comps/confirmation-modals/chapter-clearance-confirmation.js";
191
- import { default as us } from "./features/milestone/create/milestone-create-container.js";
192
- import { default as ds } from "./features/milestone/edit/goal-drafts/goal-draft-edit-container.js";
193
- import { default as cs } from "./features/milestone/outcome/milestone-outcome-container.js";
194
- import { default as is } from "./features/milestone/outcome/comps/achievement/reason-submit-modal.js";
195
- import { default as Es } from "./features/milestone/outcome/comps/achievement/share-instructions-modal.js";
196
- import { default as Cs } from "./features/milestone/edit/comps/edit-milestone-modal/index.js";
197
- import { default as _s } from "./features/milestone/edit/goal-edit-container.js";
198
- import { default as Ls } from "./features/milestone/edit/milestone-edit-container.js";
199
- import { default as Rs } from "./features/milestone/milestone-list-container/milestone-list-container.js";
200
- import { default as Ms } from "./features/milestone/milestone-action-widget/milestone-action-widget.js";
201
- import { default as Os } from "./features/milestone/start/milestone-start.js";
202
- import { default as Ds } from "./features/milestone/milestone-tests/tests-creation/tests-creation.js";
203
- import { default as ys } from "./features/milestone/milestone-resources/resources-assign/resources-assign.js";
204
- import { ACHIEVEMENT_ACTIONS as Bs, STAGES as bs } from "./features/milestone/outcome/milestone-outcome-constants.js";
205
- import { invalidateMilestonesData as vs, useGetAllMilestonesdata as Ws } from "./features/milestone/milestone-list-container/api/get-milestones.js";
206
- import { invalidateTestHelpData as ws, useGetTestHelpData as Ys } from "./features/milestone/milestone-list-container/api/get-tests-list.js";
207
- import { invalidateMilestoneResources as Ks, useGetMilestoneResources as Fs } from "./features/milestone/milestone-list-container/api/get-milestone-resources.js";
208
- import { default as js } from "./features/pointer-sync/pointer.js";
209
- import { default as qs } from "./features/pointer-sync/hooks/use-pointer-sync.js";
210
- import { DigitalMeter as Xs } from "./features/post-game-stats/digital-meter/digital-meter.js";
211
- import { EPostGameStat as el } from "./features/post-game-stats/enums/post-game-stats-enum.js";
212
- import { PostGameStats as rl } from "./features/post-game-stats/post-game-stats.js";
213
- import { SENTRY_DENIED_URLS as al, SENTRY_IGNORED_ERRORS as fl } from "./features/sentry/constants/ignored.js";
214
- import { default as ll } from "./features/sheet-tools/desmos-calculator/desmos-calculator.js";
215
- import { default as ml } from "./features/sheet-tools/tool-header/tool-header.js";
216
- import { default as xl } from "./features/sheets/sheets-list/sheets-list.js";
217
- import { default as nl } from "./features/sheets/reference-sheet/reference-sheet.js";
218
- import { WORKSHEET_V3_NODE_TYPES as Il } from "./features/sheets/utils/is-v3-worksheet.js";
219
- import { COMPLETED_SHEET_STATE as Tl, NODE_LABELS as El, NODE_SUB_GROUP as Sl, NODE_TYPE as Cl, PYTHON_NODE_TYPES as Al, REWARDS_LIST as _l, SHEET_ACTIONS as Pl, SHEET_ATTEMPT_LOCATION as Ll, SHEET_ATTEMPT_LOCATION_MAP as Nl, SHEET_ATTEMPT_STATE as Rl, SHEET_DATA_TYPE as hl, SHEET_STATE as Ml } from "./features/sheets/constants/sheet.js";
220
- import { default as Ol } from "./features/student-details/student-details.js";
221
- import { default as Dl } from "./features/utils/load-script.js";
222
- import { ACTION_BAR_HEIGHT as yl, QUESTIONS_GAP as gl, QUESTION_WIDTH as Bl, TOP_NAVIGATION_HEIGHT as bl } from "./features/worksheet/worksheet/constants.js";
223
- import { isOkayTypeQuestion as vl } from "./features/worksheet/worksheet/worksheet-helpers.js";
224
- import { default as Vl } from "./features/worksheet/worksheet/worksheet-container.js";
225
- import { default as Yl } from "./features/worksheet/worksheet-preview/worksheet-preview.js";
226
- import { default as Kl } from "./features/worksheet/worksheet/worksheet-permissions/sheet-locked.js";
227
- import { default as Jl } from "./features/worksheet/worksheet/worksheet-permissions/error.js";
228
- import { default as Zl } from "./features/worksheet/learnosity-preloader/learnosity-preloader.js";
229
- import { default as zl } from "./features/worksheet/learnosity-preloader/use-is-learnosity-loaded.js";
230
- import { default as $l } from "./features/worksheet/worksheet-preview/hooks/use-worksheet-layout.js";
181
+ import { useBreakpoint as Qf } from "./features/hooks/use-breakpoint/use-breakpoint.js";
182
+ import { JOURNEY_ID_STUDENT as Ff } from "./features/journey/journey-id/journey-id-student.js";
183
+ import { useJourney as jf } from "./features/journey/use-journey/use-journey.js";
184
+ import { useGetEligibleJourneysViaRoute as qf } from "./features/journey/hooks/use-get-eligible-journeys-via-route.js";
185
+ import { JourneyProvider as Xf } from "./features/journey/use-journey/journey-context-provider.js";
186
+ import { IndicatorType as es } from "./features/journey/use-journey/constants.js";
187
+ import { Coachmark as rs } from "./features/journey/comps/coachmark/coachmark.js";
188
+ import { default as as } from "./features/maintenance/maintenance.js";
189
+ import { default as ss } from "./features/milestone/create/submit-modal/submit-modal.js";
190
+ import { default as ps } from "./features/milestone/create/comps/confirmation-modals/goal-creation-confirmation.js";
191
+ import { default as us } from "./features/milestone/create/comps/confirmation-modals/chapter-clearance-confirmation.js";
192
+ import { default as ds } from "./features/milestone/create/milestone-create-container.js";
193
+ import { default as cs } from "./features/milestone/edit/goal-drafts/goal-draft-edit-container.js";
194
+ import { default as is } from "./features/milestone/outcome/milestone-outcome-container.js";
195
+ import { default as Es } from "./features/milestone/outcome/comps/achievement/reason-submit-modal.js";
196
+ import { default as Cs } from "./features/milestone/outcome/comps/achievement/share-instructions-modal.js";
197
+ import { default as _s } from "./features/milestone/edit/comps/edit-milestone-modal/index.js";
198
+ import { default as Ls } from "./features/milestone/edit/goal-edit-container.js";
199
+ import { default as Rs } from "./features/milestone/edit/milestone-edit-container.js";
200
+ import { default as ks } from "./features/milestone/milestone-list-container/milestone-list-container.js";
201
+ import { default as Os } from "./features/milestone/milestone-action-widget/milestone-action-widget.js";
202
+ import { default as Ds } from "./features/milestone/start/milestone-start.js";
203
+ import { default as ys } from "./features/milestone/milestone-tests/tests-creation/tests-creation.js";
204
+ import { default as Bs } from "./features/milestone/milestone-resources/resources-assign/resources-assign.js";
205
+ import { ACHIEVEMENT_ACTIONS as Us, STAGES as vs } from "./features/milestone/outcome/milestone-outcome-constants.js";
206
+ import { invalidateMilestonesData as Vs, useGetAllMilestonesdata as ws } from "./features/milestone/milestone-list-container/api/get-milestones.js";
207
+ import { invalidateTestHelpData as Qs, useGetTestHelpData as Ks } from "./features/milestone/milestone-list-container/api/get-tests-list.js";
208
+ import { invalidateMilestoneResources as Js, useGetMilestoneResources as js } from "./features/milestone/milestone-list-container/api/get-milestone-resources.js";
209
+ import { default as qs } from "./features/pointer-sync/pointer.js";
210
+ import { default as Xs } from "./features/pointer-sync/hooks/use-pointer-sync.js";
211
+ import { DigitalMeter as el } from "./features/post-game-stats/digital-meter/digital-meter.js";
212
+ import { EPostGameStat as rl } from "./features/post-game-stats/enums/post-game-stats-enum.js";
213
+ import { PostGameStats as al } from "./features/post-game-stats/post-game-stats.js";
214
+ import { SENTRY_DENIED_URLS as sl, SENTRY_IGNORED_ERRORS as ll } from "./features/sentry/constants/ignored.js";
215
+ import { default as ml } from "./features/sheet-tools/desmos-calculator/desmos-calculator.js";
216
+ import { default as xl } from "./features/sheet-tools/tool-header/tool-header.js";
217
+ import { default as nl } from "./features/sheets/sheets-list/sheets-list.js";
218
+ import { default as Il } from "./features/sheets/reference-sheet/reference-sheet.js";
219
+ import { WORKSHEET_V3_NODE_TYPES as Tl } from "./features/sheets/utils/is-v3-worksheet.js";
220
+ import { COMPLETED_SHEET_STATE as Sl, NODE_LABELS as Cl, NODE_SUB_GROUP as Al, NODE_TYPE as _l, PYTHON_NODE_TYPES as Pl, REWARDS_LIST as Ll, SHEET_ACTIONS as Nl, SHEET_ATTEMPT_LOCATION as Rl, SHEET_ATTEMPT_LOCATION_MAP as hl, SHEET_ATTEMPT_STATE as kl, SHEET_DATA_TYPE as Ml, SHEET_STATE as Ol } from "./features/sheets/constants/sheet.js";
221
+ import { default as Dl } from "./features/student-details/student-details.js";
222
+ import { default as yl } from "./features/utils/load-script.js";
223
+ import { ACTION_BAR_HEIGHT as Bl, QUESTIONS_GAP as bl, QUESTION_WIDTH as Ul, TOP_NAVIGATION_HEIGHT as vl } from "./features/worksheet/worksheet/constants.js";
224
+ import { isOkayTypeQuestion as Vl } from "./features/worksheet/worksheet/worksheet-helpers.js";
225
+ import { default as Yl } from "./features/worksheet/worksheet/worksheet-container.js";
226
+ import { default as Kl } from "./features/worksheet/worksheet-preview/worksheet-preview.js";
227
+ import { default as Jl } from "./features/worksheet/worksheet/worksheet-permissions/sheet-locked.js";
228
+ import { default as Zl } from "./features/worksheet/worksheet/worksheet-permissions/error.js";
229
+ import { default as zl } from "./features/worksheet/learnosity-preloader/learnosity-preloader.js";
230
+ import { default as $l } from "./features/worksheet/learnosity-preloader/use-is-learnosity-loaded.js";
231
+ import { default as op } from "./features/worksheet/worksheet-preview/hooks/use-worksheet-layout.js";
231
232
  export {
232
- Bs as ACHIEVEMENT_ACTIONS,
233
+ Us as ACHIEVEMENT_ACTIONS,
233
234
  Rr as AccordionSection,
234
- is as AchievementNotShareReasonModal,
235
- Es as AchievementShareInstructionModal,
235
+ Es as AchievementNotShareReasonModal,
236
+ Cs as AchievementShareInstructionModal,
236
237
  d as AlertIcon,
237
238
  Et as AppLoader,
238
239
  Qr as ArcButton,
239
- Mr as ArrowTooltip,
240
+ kr as ArrowTooltip,
240
241
  Cr as AutoPlayPermissionProvider,
241
242
  Vt as Avatar,
242
243
  rr as Back2Icon,
@@ -249,16 +250,16 @@ export {
249
250
  _ as BookIcon,
250
251
  R as BookmarkIcon,
251
252
  O as Bulb2Icon,
252
- M as BulbIcon,
253
+ k as BulbIcon,
253
254
  Br as Button,
254
255
  $a as CIRCLE_ACTION_IDS,
255
256
  za as CIRCLE_ONBOARDING_ANALYTICS_STEPS,
256
- Tl as COMPLETED_SHEET_STATE,
257
+ Sl as COMPLETED_SHEET_STATE,
257
258
  D as CalendarIcon,
258
259
  Ot as Callout,
259
260
  pt as CascadingSelectInput,
260
261
  xa as Chapter,
261
- ps as ChapterClearanceConfirmationModal,
262
+ us as ChapterClearanceConfirmationModal,
262
263
  na as ChaptersList,
263
264
  cr as ChatIcon,
264
265
  B as Check2Icon,
@@ -268,14 +269,14 @@ export {
268
269
  pr as ChevronDownIcon,
269
270
  sr as ChevronLeftIcon,
270
271
  ar as ChevronRightIcon,
271
- ka as CircleSoundKey,
272
+ Ma as CircleSoundKey,
272
273
  Ct as CircularLoader,
273
274
  pf as CircularSteps,
274
275
  Ur as Clickable,
275
276
  U as ClipboardIcon,
276
277
  w as Clock2Icon,
277
278
  W as ClockIcon,
278
- es as Coachmark,
279
+ rs as Coachmark,
279
280
  Q as CodeIcon,
280
281
  Or as ContextMenu,
281
282
  F as CopyIcon,
@@ -287,23 +288,23 @@ export {
287
288
  q as CueRocket,
288
289
  ir as CuemathLogo,
289
290
  X as DashArrowIcon,
290
- ll as DesmosCalculator,
291
- Xs as DigitalMeter,
291
+ ml as DesmosCalculator,
292
+ el as DigitalMeter,
292
293
  ee as DownIcon,
293
294
  re as DraftIcon,
294
295
  ae as DragIcon,
295
296
  yf as EClassTimeAlertLevel,
296
297
  Ga as ELeaderboardType,
297
- ys as EPResourceAssign,
298
- el as EPostGameStat,
298
+ Bs as EPResourceAssign,
299
+ rl as EPostGameStat,
299
300
  hf as EVENTS,
300
301
  pe as Edit2Icon,
301
302
  se as EditIcon,
302
- Cs as EditMilestoneModal,
303
+ _s as EditMilestoneModal,
303
304
  ue as EditStarIcon,
304
305
  de as EraserIcon,
305
306
  Fr as Error,
306
- ml as ExpandableHeader,
307
+ xl as ExpandableHeader,
307
308
  Wf as ExtraPractice,
308
309
  ie as Eye2Icon,
309
310
  ce as EyeIcon,
@@ -312,9 +313,9 @@ export {
312
313
  Na as GAME_LAUNCHER_SIZE,
313
314
  ur as GameIcon,
314
315
  of as GameLauncher,
315
- ss as GoalCreationConfirmationModal,
316
- ds as GoalDraftEdit,
317
- _s as GoalEdit,
316
+ ps as GoalCreationConfirmationModal,
317
+ cs as GoalDraftEdit,
318
+ Ls as GoalEdit,
318
319
  at as GooglePlacesSearchInput,
319
320
  r as GradeSelector,
320
321
  Ee as HandIcon,
@@ -326,42 +327,42 @@ export {
326
327
  Za as IStatsToAwardErrorCode,
327
328
  Wr as IconButton,
328
329
  Re as ImageIcon,
329
- Xf as IndicatorType,
330
+ es as IndicatorType,
330
331
  Oe as Info2Icon,
331
- Me as InfoIcon,
332
- Qf as JOURNEY_ID_STUDENT,
333
- qf as JourneyProvider,
332
+ ke as InfoIcon,
333
+ Ff as JOURNEY_ID_STUDENT,
334
+ Xf as JourneyProvider,
334
335
  u as LOTTIE,
335
336
  Ia as LPARChapter,
336
337
  Ta as LPARMilestoneChapter,
337
338
  ff as Leaderboard,
338
- Zl as LearnosityPreloader,
339
+ zl as LearnosityPreloader,
339
340
  De as LeftIcon,
340
341
  Be as Lock2Icon,
341
342
  ye as LockIcon,
342
- rs as Maintenance,
343
- Ms as MilestoneActionWidget,
344
- us as MilestoneCreate,
345
- Ls as MilestoneEdit,
346
- Rs as MilestoneList,
347
- cs as MilestoneOutcome,
348
- Os as MilestoneStart,
343
+ as as Maintenance,
344
+ Os as MilestoneActionWidget,
345
+ ds as MilestoneCreate,
346
+ Rs as MilestoneEdit,
347
+ ks as MilestoneList,
348
+ is as MilestoneOutcome,
349
+ Ds as MilestoneStart,
349
350
  We as Minus2Icon,
350
351
  Ue as MinusIcon,
351
352
  we as MistakeIcon,
352
353
  Qe as Mobile,
353
354
  Fe as MoreVerticalIcon,
354
355
  ma as MultiTabBlocker,
355
- El as NODE_LABELS,
356
- Sl as NODE_SUB_GROUP,
357
- Cl as NODE_TYPE,
356
+ Cl as NODE_LABELS,
357
+ Al as NODE_SUB_GROUP,
358
+ _l as NODE_TYPE,
358
359
  Er as Next2Icon,
359
360
  je as NextIcon,
360
361
  yr as Nudge,
361
362
  ut as NumRangeInput,
362
363
  oa as PLATFORM_EVENTS_STUDENT,
363
364
  ta as PLATFORM_EVENTS_TEACHER,
364
- Al as PYTHON_NODE_TYPES,
365
+ Pl as PYTHON_NODE_TYPES,
365
366
  qe as PencilIcon,
366
367
  dt as PercentileInput,
367
368
  $t as PerfectHits,
@@ -371,32 +372,32 @@ export {
371
372
  so as Plus2Icon,
372
373
  ao as PlusIcon,
373
374
  Xe as PointerIcon,
374
- rl as PostGameStats,
375
+ al as PostGameStats,
375
376
  po as PracticeIcon,
376
- Yl as PreviewWorksheet,
377
+ Kl as PreviewWorksheet,
377
378
  uo as ProgressIcon,
378
379
  Va as ProjectOutcome,
379
380
  Ka as ProjectType,
380
381
  no as QuestionIcon,
381
382
  Io as QuestionLetterIcon,
382
- _l as REWARDS_LIST,
383
+ Ll as REWARDS_LIST,
383
384
  _t as RadioCard,
384
385
  Xr as RadioInput,
385
386
  To as RedoIcon,
386
- nl as ReferenceSheet,
387
- js as RemotePeerPointer,
387
+ Il as ReferenceSheet,
388
+ qs as RemotePeerPointer,
388
389
  So as RightIcon,
389
390
  Ao as RulerIcon,
390
391
  Sa as SATSheetSummary,
391
- al as SENTRY_DENIED_URLS,
392
- fl as SENTRY_IGNORED_ERRORS,
393
- Pl as SHEET_ACTIONS,
394
- Ll as SHEET_ATTEMPT_LOCATION,
395
- Nl as SHEET_ATTEMPT_LOCATION_MAP,
396
- Rl as SHEET_ATTEMPT_STATE,
397
- hl as SHEET_DATA_TYPE,
398
- Ml as SHEET_STATE,
399
- bs as STAGES,
392
+ sl as SENTRY_DENIED_URLS,
393
+ ll as SENTRY_IGNORED_ERRORS,
394
+ Nl as SHEET_ACTIONS,
395
+ Rl as SHEET_ATTEMPT_LOCATION,
396
+ hl as SHEET_ATTEMPT_LOCATION_MAP,
397
+ kl as SHEET_ATTEMPT_STATE,
398
+ Ml as SHEET_DATA_TYPE,
399
+ Ol as SHEET_STATE,
400
+ vs as STAGES,
400
401
  $o as ScribbleIcon,
401
402
  Po as SearchIcon,
402
403
  rt as SearchableSelectInput,
@@ -404,14 +405,14 @@ export {
404
405
  et as SelectInput,
405
406
  ct as SelectionCards,
406
407
  Zt as Separator,
407
- Jl as SheetError,
408
+ Zl as SheetError,
408
409
  No as SheetIcon,
409
- xl as SheetList,
410
- Kl as SheetLocked,
410
+ nl as SheetList,
411
+ Jl as SheetLocked,
411
412
  df as SignUp,
412
413
  er as SketchIcon,
413
414
  Ho as Skip2Icon,
414
- ko as SkipIcon,
415
+ Mo as SkipIcon,
415
416
  uf as SplashScreen,
416
417
  Go as Star2Icon,
417
418
  ho as StarIcon,
@@ -419,13 +420,13 @@ export {
419
420
  Jt as StreakIcon,
420
421
  ga as StreakReductionLocalStorageUtil,
421
422
  go as StrikedEyeIcon,
422
- Ol as StudentDetails,
423
- as as SubmitMilestoneModal,
423
+ Dl as StudentDetails,
424
+ ss as SubmitMilestoneModal,
424
425
  bo as SwitchIcon,
425
426
  Kt as TabComponent,
426
- Mt as Tag,
427
+ kt as Tag,
427
428
  Uf as TalkMeter,
428
- Ds as TestsCreation,
429
+ ys as TestsCreation,
429
430
  Rt as Text,
430
431
  wr as TextButton,
431
432
  st as TextInput,
@@ -443,44 +444,45 @@ export {
443
444
  Zo as UserIcon,
444
445
  zt as Video,
445
446
  fa as WHITELIST_EVENTS,
446
- yl as WORKSHEET_ACTION_BAR_HEIGHT,
447
- gl as WORKSHEET_QUESTIONS_GAP,
448
- Bl as WORKSHEET_QUESTION_WIDTH,
449
- bl as WORKSHEET_TOP_NAVIGATION_HEIGHT,
450
- Il as WORKSHEET_V3_NODE_TYPES,
447
+ Bl as WORKSHEET_ACTION_BAR_HEIGHT,
448
+ bl as WORKSHEET_QUESTIONS_GAP,
449
+ Ul as WORKSHEET_QUESTION_WIDTH,
450
+ vl as WORKSHEET_TOP_NAVIGATION_HEIGHT,
451
+ Tl as WORKSHEET_V3_NODE_TYPES,
451
452
  va as WebView,
452
453
  Ya as WebViewEvent,
453
- Vl as Worksheet,
454
+ Yl as Worksheet,
454
455
  Aa as checkIfPPTNodeType,
455
456
  vt as getTheme,
456
- Ks as invalidateMilestoneResources,
457
- vs as invalidateMilestonesData,
458
- ws as invalidateTestHelpData,
459
- vl as isOkayTypeQuestion,
460
- Dl as loadScript,
457
+ Js as invalidateMilestoneResources,
458
+ Vs as invalidateMilestonesData,
459
+ Qs as invalidateTestHelpData,
460
+ Vl as isOkayTypeQuestion,
461
+ yl as loadScript,
461
462
  wf as useAutoPlayPermission,
463
+ Qf as useBreakpoint,
462
464
  Af as useCanvasSyncBroker,
463
465
  ha as useCircleSounds,
464
466
  Bf as useClassTimeAlerts,
465
467
  bt as useContextMenuClickHandler,
466
468
  Lr as useForceReload,
467
- Ws as useGetAllMilestonesdata,
469
+ ws as useGetAllMilestonesdata,
468
470
  tf as useGetCircleHomeDetailsDal,
469
- jf as useGetEligibleJourneysViaRoute,
471
+ qf as useGetEligibleJourneysViaRoute,
470
472
  Ha as useGetLeaderboardDal,
471
- Fs as useGetMilestoneResources,
472
- Ys as useGetTestHelpData,
473
- kf as useInClassActionDispatcher,
473
+ js as useGetMilestoneResources,
474
+ Ks as useGetTestHelpData,
475
+ Mf as useInClassActionDispatcher,
474
476
  Of as useInClassActionListener,
475
477
  Pf as useInClassMessageBroker,
476
- zl as useIsLearnosityLoaded,
478
+ $l as useIsLearnosityLoaded,
477
479
  la as useIsTabBlocked,
478
- Ff as useJourney,
479
- qs as usePointerSync,
480
+ jf as useJourney,
481
+ Xs as usePointerSync,
480
482
  gt as useTrackingContext,
481
483
  Nf as useTrialSessionMessageBroker,
482
484
  Gt as useUIContext,
483
- $l as useWorksheetLayout,
485
+ op as useWorksheetLayout,
484
486
  _r as useZoomDisable
485
487
  };
486
488
  //# sourceMappingURL=index.js.map
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
1
+ {"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cuemath/leap",
3
- "version": "2.9.7-hg8",
3
+ "version": "2.9.7-rj-0",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "dist"
@@ -93,4 +93,6 @@
93
93
  "vite-plugin-dts": "3.6.4",
94
94
  "vite-plugin-svgr": "3.2.0",
95
95
  "vite-tsconfig-paths": "^4.2.2"
96
- }}
96
+ },
97
+ "packageManager": "yarn@4.4.1"
98
+ }