@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.
- package/dist/features/circle-games/game-launcher/hooks/use-game-launcher-journey/use-game-launcher-journey.js +93 -92
- package/dist/features/circle-games/game-launcher/hooks/use-game-launcher-journey/use-game-launcher-journey.js.map +1 -1
- package/dist/features/circle-games/game-launcher/hooks/use-table-launcher-journey/use-table-launcher-journey.js +88 -86
- package/dist/features/circle-games/game-launcher/hooks/use-table-launcher-journey/use-table-launcher-journey.js.map +1 -1
- package/dist/features/circle-games/games/tutorial/constants.js +3 -2
- package/dist/features/circle-games/games/tutorial/constants.js.map +1 -1
- package/dist/features/circle-games/games/tutorial/tutorial-styled.js +23 -19
- package/dist/features/circle-games/games/tutorial/tutorial-styled.js.map +1 -1
- package/dist/features/circle-games/games/tutorial/tutorial.js +41 -41
- package/dist/features/circle-games/games/tutorial/tutorial.js.map +1 -1
- package/dist/features/circle-games/games/web-view/web-view.js +46 -55
- package/dist/features/circle-games/games/web-view/web-view.js.map +1 -1
- package/dist/features/circle-games/leaderboard/comps/banner/banner.js +6 -6
- package/dist/features/circle-games/leaderboard/comps/banner/banner.js.map +1 -1
- package/dist/features/circle-games/leaderboard/comps/navigation-button/navigation-button-styled.js +1 -1
- package/dist/features/circle-games/leaderboard/comps/navigation-button/navigation-button-styled.js.map +1 -1
- package/dist/features/circle-games/leaderboard/leaderboard-styled.js +1 -1
- package/dist/features/circle-games/leaderboard/leaderboard-styled.js.map +1 -1
- package/dist/features/circle-games/leaderboard/leaderboard.js +9 -9
- package/dist/features/circle-games/leaderboard/leaderboard.js.map +1 -1
- package/dist/features/circle-games/sign-up/comp/circular-steps/circular-steps-styled.js +8 -8
- package/dist/features/circle-games/sign-up/comp/circular-steps/circular-steps-styled.js.map +1 -1
- package/dist/features/circle-games/sign-up/constants.js +9 -9
- package/dist/features/circle-games/sign-up/constants.js.map +1 -1
- package/dist/features/hooks/use-breakpoint/constants.js +7 -0
- package/dist/features/hooks/use-breakpoint/constants.js.map +1 -0
- package/dist/features/hooks/use-breakpoint/use-breakpoint.js +16 -0
- package/dist/features/hooks/use-breakpoint/use-breakpoint.js.map +1 -0
- package/dist/features/ui/arc-button/constants.js +3 -3
- package/dist/features/ui/arc-button/constants.js.map +1 -1
- package/dist/index.d.ts +10 -1
- package/dist/index.js +135 -133
- package/dist/index.js.map +1 -1
- package/package.json +4 -2
@@ -1,7 +1,7 @@
|
|
1
|
-
const T = 1680,
|
1
|
+
const T = 1680, _ = 64, O = 112;
|
2
2
|
export {
|
3
3
|
T as ABSOLUTE_ARC_BUTTON_WIDTH,
|
4
|
-
|
5
|
-
|
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
|
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:
|
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
|
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
|
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
|
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
|
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
|
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
|
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
|
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 {
|
182
|
-
import {
|
183
|
-
import {
|
184
|
-
import {
|
185
|
-
import {
|
186
|
-
import {
|
187
|
-
import {
|
188
|
-
import { default as as } from "./features/
|
189
|
-
import { default as ss } from "./features/milestone/create/
|
190
|
-
import { default as ps } from "./features/milestone/create/comps/confirmation-modals/
|
191
|
-
import { default as us } from "./features/milestone/create/
|
192
|
-
import { default as ds } from "./features/milestone/
|
193
|
-
import { default as cs } from "./features/milestone/
|
194
|
-
import { default as is } from "./features/milestone/outcome/
|
195
|
-
import { default as Es } from "./features/milestone/outcome/comps/achievement/
|
196
|
-
import { default as Cs } from "./features/milestone/
|
197
|
-
import { default as _s } from "./features/milestone/edit/
|
198
|
-
import { default as Ls } from "./features/milestone/edit/
|
199
|
-
import { default as Rs } from "./features/milestone/
|
200
|
-
import { default as
|
201
|
-
import { default as Os } from "./features/milestone/
|
202
|
-
import { default as Ds } from "./features/milestone/milestone-
|
203
|
-
import { default as ys } from "./features/milestone/milestone-
|
204
|
-
import {
|
205
|
-
import {
|
206
|
-
import {
|
207
|
-
import {
|
208
|
-
import {
|
209
|
-
import { default as qs } from "./features/pointer-sync/
|
210
|
-
import {
|
211
|
-
import {
|
212
|
-
import {
|
213
|
-
import {
|
214
|
-
import {
|
215
|
-
import { default as ml } from "./features/sheet-tools/
|
216
|
-
import { default as xl } from "./features/
|
217
|
-
import { default as nl } from "./features/sheets/
|
218
|
-
import {
|
219
|
-
import {
|
220
|
-
import {
|
221
|
-
import { default as Dl } from "./features/
|
222
|
-
import {
|
223
|
-
import {
|
224
|
-
import {
|
225
|
-
import { default as Yl } from "./features/worksheet/worksheet
|
226
|
-
import { default as Kl } from "./features/worksheet/worksheet/worksheet-
|
227
|
-
import { default as Jl } from "./features/worksheet/worksheet/worksheet-permissions/
|
228
|
-
import { default as Zl } from "./features/worksheet/
|
229
|
-
import { default as zl } from "./features/worksheet/learnosity-preloader/
|
230
|
-
import { default as $l } from "./features/worksheet/
|
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
|
-
|
233
|
+
Us as ACHIEVEMENT_ACTIONS,
|
233
234
|
Rr as AccordionSection,
|
234
|
-
|
235
|
-
|
235
|
+
Es as AchievementNotShareReasonModal,
|
236
|
+
Cs as AchievementShareInstructionModal,
|
236
237
|
d as AlertIcon,
|
237
238
|
Et as AppLoader,
|
238
239
|
Qr as ArcButton,
|
239
|
-
|
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
|
-
|
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
|
-
|
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
|
-
|
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
|
-
|
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
|
-
|
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
|
-
|
291
|
-
|
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
|
-
|
298
|
-
|
298
|
+
Bs as EPResourceAssign,
|
299
|
+
rl as EPostGameStat,
|
299
300
|
hf as EVENTS,
|
300
301
|
pe as Edit2Icon,
|
301
302
|
se as EditIcon,
|
302
|
-
|
303
|
+
_s as EditMilestoneModal,
|
303
304
|
ue as EditStarIcon,
|
304
305
|
de as EraserIcon,
|
305
306
|
Fr as Error,
|
306
|
-
|
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
|
-
|
316
|
-
|
317
|
-
|
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
|
-
|
330
|
+
es as IndicatorType,
|
330
331
|
Oe as Info2Icon,
|
331
|
-
|
332
|
-
|
333
|
-
|
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
|
-
|
339
|
+
zl as LearnosityPreloader,
|
339
340
|
De as LeftIcon,
|
340
341
|
Be as Lock2Icon,
|
341
342
|
ye as LockIcon,
|
342
|
-
|
343
|
-
|
344
|
-
|
345
|
-
|
346
|
-
|
347
|
-
|
348
|
-
|
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
|
-
|
356
|
-
|
357
|
-
|
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
|
-
|
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
|
-
|
375
|
+
al as PostGameStats,
|
375
376
|
po as PracticeIcon,
|
376
|
-
|
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
|
-
|
383
|
+
Ll as REWARDS_LIST,
|
383
384
|
_t as RadioCard,
|
384
385
|
Xr as RadioInput,
|
385
386
|
To as RedoIcon,
|
386
|
-
|
387
|
-
|
387
|
+
Il as ReferenceSheet,
|
388
|
+
qs as RemotePeerPointer,
|
388
389
|
So as RightIcon,
|
389
390
|
Ao as RulerIcon,
|
390
391
|
Sa as SATSheetSummary,
|
391
|
-
|
392
|
-
|
393
|
-
|
394
|
-
|
395
|
-
|
396
|
-
|
397
|
-
|
398
|
-
|
399
|
-
|
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
|
-
|
408
|
+
Zl as SheetError,
|
408
409
|
No as SheetIcon,
|
409
|
-
|
410
|
-
|
410
|
+
nl as SheetList,
|
411
|
+
Jl as SheetLocked,
|
411
412
|
df as SignUp,
|
412
413
|
er as SketchIcon,
|
413
414
|
Ho as Skip2Icon,
|
414
|
-
|
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
|
-
|
423
|
-
|
423
|
+
Dl as StudentDetails,
|
424
|
+
ss as SubmitMilestoneModal,
|
424
425
|
bo as SwitchIcon,
|
425
426
|
Kt as TabComponent,
|
426
|
-
|
427
|
+
kt as Tag,
|
427
428
|
Uf as TalkMeter,
|
428
|
-
|
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
|
-
|
447
|
-
|
448
|
-
|
449
|
-
|
450
|
-
|
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
|
-
|
454
|
+
Yl as Worksheet,
|
454
455
|
Aa as checkIfPPTNodeType,
|
455
456
|
vt as getTheme,
|
456
|
-
|
457
|
-
|
458
|
-
|
459
|
-
|
460
|
-
|
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
|
-
|
469
|
+
ws as useGetAllMilestonesdata,
|
468
470
|
tf as useGetCircleHomeDetailsDal,
|
469
|
-
|
471
|
+
qf as useGetEligibleJourneysViaRoute,
|
470
472
|
Ha as useGetLeaderboardDal,
|
471
|
-
|
472
|
-
|
473
|
-
|
473
|
+
js as useGetMilestoneResources,
|
474
|
+
Ks as useGetTestHelpData,
|
475
|
+
Mf as useInClassActionDispatcher,
|
474
476
|
Of as useInClassActionListener,
|
475
477
|
Pf as useInClassMessageBroker,
|
476
|
-
|
478
|
+
$l as useIsLearnosityLoaded,
|
477
479
|
la as useIsTabBlocked,
|
478
|
-
|
479
|
-
|
480
|
+
jf as useJourney,
|
481
|
+
Xs as usePointerSync,
|
480
482
|
gt as useTrackingContext,
|
481
483
|
Nf as useTrialSessionMessageBroker,
|
482
484
|
Gt as useUIContext,
|
483
|
-
|
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-
|
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
|
+
}
|