@cuemath/leap 2.9.5-j4 → 2.9.5-j5
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.
@@ -0,0 +1,46 @@
|
|
1
|
+
import { jsxs as a, jsx as i } from "react/jsx-runtime";
|
2
|
+
import r from "../../../../assets/line-icons/icons/apple-icon.js";
|
3
|
+
import c from "../../../../assets/line-icons/icons/google-icon.js";
|
4
|
+
import n from "../../../ui/buttons/button/button.js";
|
5
|
+
import p from "../../../ui/layout/flex-view.js";
|
6
|
+
const d = ({
|
7
|
+
onGoogleLogin: s,
|
8
|
+
onAppleLogin: t,
|
9
|
+
loadingProvider: o
|
10
|
+
}) => {
|
11
|
+
const e = o === "google", l = o === "apple";
|
12
|
+
return /* @__PURE__ */ a(p, { $flexGapX: 1, $flexDirection: "row", $justifyContent: "space-between", $width: 336, children: [
|
13
|
+
/* @__PURE__ */ i(
|
14
|
+
n,
|
15
|
+
{
|
16
|
+
renderAs: "secondary",
|
17
|
+
Icon: c,
|
18
|
+
width: 160,
|
19
|
+
label: "",
|
20
|
+
analyticsLabel: "google_login",
|
21
|
+
onClick: s,
|
22
|
+
size: "small",
|
23
|
+
busy: e,
|
24
|
+
disabled: e
|
25
|
+
}
|
26
|
+
),
|
27
|
+
/* @__PURE__ */ i(
|
28
|
+
n,
|
29
|
+
{
|
30
|
+
renderAs: "secondary",
|
31
|
+
size: "small",
|
32
|
+
width: 160,
|
33
|
+
Icon: r,
|
34
|
+
label: "",
|
35
|
+
analyticsLabel: "apple_login",
|
36
|
+
onClick: t,
|
37
|
+
busy: l,
|
38
|
+
disabled: l
|
39
|
+
}
|
40
|
+
)
|
41
|
+
] });
|
42
|
+
}, h = d;
|
43
|
+
export {
|
44
|
+
h as default
|
45
|
+
};
|
46
|
+
//# sourceMappingURL=social-login-methods.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"social-login-methods.js","sources":["../../../../../src/features/auth/login/social-login-methods/social-login-methods.tsx"],"sourcesContent":["import type { ISocialLoginMethodsProps } from './social-login-methods-types';\nimport type { FC } from 'react';\n\nimport AppleIcon from '../../../../assets/line-icons/icons/apple-icon';\nimport GoogleIcon from '../../../../assets/line-icons/icons/google-icon';\nimport Button from '../../../ui/buttons/button/button';\nimport FlexView from '../../../ui/layout/flex-view';\n\nconst SocialLoginMethods: FC<ISocialLoginMethodsProps> = ({\n onGoogleLogin,\n onAppleLogin,\n loadingProvider,\n}) => {\n const isLoadingGoogle = loadingProvider === 'google';\n const isLoadingApple = loadingProvider === 'apple';\n\n return (\n <FlexView $flexGapX={1} $flexDirection=\"row\" $justifyContent=\"space-between\" $width={336}>\n <Button\n renderAs=\"secondary\"\n Icon={GoogleIcon}\n width={160}\n label=\"\"\n analyticsLabel=\"google_login\"\n onClick={onGoogleLogin}\n size=\"small\"\n busy={isLoadingGoogle}\n disabled={isLoadingGoogle}\n />\n <Button\n renderAs=\"secondary\"\n size=\"small\"\n width={160}\n Icon={AppleIcon}\n label=\"\"\n analyticsLabel=\"apple_login\"\n onClick={onAppleLogin}\n busy={isLoadingApple}\n disabled={isLoadingApple}\n />\n </FlexView>\n );\n};\n\nexport default SocialLoginMethods;\n"],"names":["SocialLoginMethods","onGoogleLogin","onAppleLogin","loadingProvider","isLoadingGoogle","isLoadingApple","jsxs","FlexView","jsx","Button","GoogleIcon","AppleIcon","SocialLoginMethods$1"],"mappings":";;;;;AAQA,MAAMA,IAAmD,CAAC;AAAA,EACxD,eAAAC;AAAA,EACA,cAAAC;AAAA,EACA,iBAAAC;AACF,MAAM;AACJ,QAAMC,IAAkBD,MAAoB,UACtCE,IAAiBF,MAAoB;AAGzC,SAAA,gBAAAG,EAACC,KAAS,WAAW,GAAG,gBAAe,OAAM,iBAAgB,iBAAgB,QAAQ,KACnF,UAAA;AAAA,IAAA,gBAAAC;AAAA,MAACC;AAAA,MAAA;AAAA,QACC,UAAS;AAAA,QACT,MAAMC;AAAA,QACN,OAAO;AAAA,QACP,OAAM;AAAA,QACN,gBAAe;AAAA,QACf,SAAST;AAAA,QACT,MAAK;AAAA,QACL,MAAMG;AAAA,QACN,UAAUA;AAAA,MAAA;AAAA,IACZ;AAAA,IACA,gBAAAI;AAAA,MAACC;AAAA,MAAA;AAAA,QACC,UAAS;AAAA,QACT,MAAK;AAAA,QACL,OAAO;AAAA,QACP,MAAME;AAAA,QACN,OAAM;AAAA,QACN,gBAAe;AAAA,QACf,SAAST;AAAA,QACT,MAAMG;AAAA,QACN,UAAUA;AAAA,MAAA;AAAA,IACZ;AAAA,EACF,EAAA,CAAA;AAEJ,GAEAO,IAAeZ;"}
|
package/dist/index.d.ts
CHANGED
@@ -2713,6 +2713,12 @@ export declare interface ISignUpProps {
|
|
2713
2713
|
onSignupStepsComplete: (data: IUpdateUserPayloadDal | ICreateUserResponseDal | null) => void;
|
2714
2714
|
}
|
2715
2715
|
|
2716
|
+
declare interface ISocialLoginMethodsProps {
|
2717
|
+
onGoogleLogin: () => void;
|
2718
|
+
onAppleLogin: () => void;
|
2719
|
+
loadingProvider: TSocialAuthProvider | null;
|
2720
|
+
}
|
2721
|
+
|
2716
2722
|
export declare const isOkayTypeQuestion: IIsOkayTypeQuestion;
|
2717
2723
|
|
2718
2724
|
export declare enum IStatsToAwardErrorCode {
|
@@ -4058,6 +4064,8 @@ export declare const Skip2Icon: React.FC<React.SVGProps<SVGSVGElement>>;
|
|
4058
4064
|
|
4059
4065
|
export declare const SkipIcon: React.FC<React.SVGProps<SVGSVGElement>>;
|
4060
4066
|
|
4067
|
+
export declare const SocialLoginMethods: FC<ISocialLoginMethodsProps>;
|
4068
|
+
|
4061
4069
|
export declare const SplashScreen: ({ animationCompleted }: {
|
4062
4070
|
animationCompleted: () => void;
|
4063
4071
|
}) => JSX_2.Element;
|
package/dist/index.js
CHANGED
@@ -14,7 +14,7 @@ import { default as M } from "./assets/line-icons/icons/bookmark.js";
|
|
14
14
|
import { default as O } from "./assets/line-icons/icons/bulb.js";
|
15
15
|
import { default as R } from "./assets/line-icons/icons/bulb2.js";
|
16
16
|
import { default as D } from "./assets/line-icons/icons/calendar.js";
|
17
|
-
import { default as
|
17
|
+
import { default as g } from "./assets/line-icons/icons/check.js";
|
18
18
|
import { default as B } from "./assets/line-icons/icons/check2.js";
|
19
19
|
import { default as b } from "./assets/line-icons/icons/clipboard.js";
|
20
20
|
import { default as W } from "./assets/line-icons/icons/clock.js";
|
@@ -41,7 +41,7 @@ import { default as Me } from "./assets/line-icons/icons/image.js";
|
|
41
41
|
import { default as Oe } 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";
|
44
|
-
import { default as
|
44
|
+
import { default as ge } from "./assets/line-icons/icons/lock.js";
|
45
45
|
import { default as Be } from "./assets/line-icons/icons/lock2.js";
|
46
46
|
import { default as be } from "./assets/line-icons/icons/minus.js";
|
47
47
|
import { default as We } from "./assets/line-icons/icons/minus2.js";
|
@@ -68,7 +68,7 @@ import { default as ko } from "./assets/line-icons/icons/star.js";
|
|
68
68
|
import { default as No } 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
|
-
import { default as
|
71
|
+
import { default as yo } from "./assets/line-icons/icons/striked-eye.js";
|
72
72
|
import { default as Uo } from "./assets/line-icons/icons/switch-icon.js";
|
73
73
|
import { default as vo } from "./assets/line-icons/icons/tick.js";
|
74
74
|
import { default as Vo } from "./assets/line-icons/icons/trophy.js";
|
@@ -94,7 +94,7 @@ import { default as Mr } from "./features/ui/accordion-section/accordion-section
|
|
94
94
|
import { default as Or } 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";
|
97
|
-
import { default as
|
97
|
+
import { default as gr } from "./features/ui/nudge/nudge.js";
|
98
98
|
import { default as Br } from "./features/ui/buttons/button/button.js";
|
99
99
|
import { default as br } from "./features/ui/buttons/clickable/clickable.js";
|
100
100
|
import { default as Wr } from "./features/ui/buttons/icon-button/icon-button.js";
|
@@ -121,7 +121,7 @@ import { default as Mt } from "./features/ui/text/text.js";
|
|
121
121
|
import { default as Ot } 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";
|
124
|
-
import { default as
|
124
|
+
import { default as yt } from "./features/ui/context/use-tracking-context.js";
|
125
125
|
import { default as Ut } from "./features/ui/hooks/use-context-menu-click-handler.js";
|
126
126
|
import { getTheme as vt } from "./features/ui/theme/get-theme.js";
|
127
127
|
import { default as Vt } from "./features/ui/avatar/avatar.js";
|
@@ -148,108 +148,109 @@ import { default as ka } from "./features/auth/signup/custom-input/student-passw
|
|
148
148
|
import { default as Na } from "./features/auth/signup/circular-step-wrapper/circular-step-wrapper.js";
|
149
149
|
import { default as Ha } from "./features/auth/signup/signup-methods/signup-methods.js";
|
150
150
|
import { default as Ga } from "./features/auth/signup/custom-input/student-username/student-username.js";
|
151
|
-
import {
|
152
|
-
import {
|
153
|
-
import {
|
154
|
-
import {
|
155
|
-
import { default as Qa } from "./features/blockers/multi-tab-blocker/
|
156
|
-
import { default as Ka } from "./features/
|
157
|
-
import { default as Ja } from "./features/chapters/
|
158
|
-
import { default as Za } from "./features/chapters/
|
159
|
-
import { default as za } from "./features/chapters/lpar-
|
160
|
-
import { default as $a } from "./features/chapters/lpar-chapter/
|
161
|
-
import {
|
162
|
-
import {
|
163
|
-
import {
|
164
|
-
import {
|
165
|
-
import {
|
166
|
-
import {
|
167
|
-
import {
|
168
|
-
import {
|
169
|
-
import {
|
170
|
-
import {
|
171
|
-
import {
|
172
|
-
import {
|
173
|
-
import {
|
174
|
-
import {
|
175
|
-
import {
|
176
|
-
import {
|
177
|
-
import {
|
178
|
-
import {
|
179
|
-
import {
|
180
|
-
import {
|
181
|
-
import {
|
182
|
-
import {
|
183
|
-
import {
|
184
|
-
import {
|
185
|
-
import { default as zf } from "./features/cue-canvas/
|
186
|
-
import { default as $f } from "./features/cue-canvas/
|
187
|
-
import { default as os } from "./features/cue-canvas/
|
188
|
-
import { default as ts } from "./features/
|
189
|
-
import { default as fs } from "./features/communication/hooks/use-
|
190
|
-
import {
|
191
|
-
import {
|
192
|
-
import {
|
193
|
-
import {
|
194
|
-
import {
|
195
|
-
import {
|
196
|
-
import { default as Cs } from "./features/
|
197
|
-
import {
|
198
|
-
import {
|
199
|
-
import {
|
200
|
-
import {
|
201
|
-
import {
|
202
|
-
import {
|
203
|
-
import {
|
204
|
-
import {
|
205
|
-
import { default as bs } from "./features/milestone/create/
|
206
|
-
import { default as Ws } from "./features/milestone/create/comps/confirmation-modals/
|
207
|
-
import { default as ws } from "./features/milestone/create/
|
208
|
-
import { default as Ys } from "./features/milestone/
|
209
|
-
import { default as Fs } from "./features/milestone/
|
210
|
-
import { default as js } from "./features/milestone/outcome/
|
211
|
-
import { default as qs } from "./features/milestone/outcome/comps/achievement/
|
212
|
-
import { default as Xs } from "./features/milestone/
|
213
|
-
import { default as el } from "./features/milestone/edit/
|
214
|
-
import { default as rl } from "./features/milestone/edit/
|
215
|
-
import { default as al } from "./features/milestone/
|
216
|
-
import { default as sl } from "./features/milestone/milestone-
|
217
|
-
import { default as pl } from "./features/milestone/
|
218
|
-
import { default as ml } from "./features/milestone/milestone-
|
219
|
-
import { default as xl } from "./features/milestone/milestone-
|
220
|
-
import {
|
221
|
-
import {
|
222
|
-
import {
|
223
|
-
import {
|
224
|
-
import {
|
225
|
-
import { default as Ol } from "./features/pointer-sync/
|
226
|
-
import {
|
227
|
-
import {
|
228
|
-
import {
|
229
|
-
import {
|
230
|
-
import { default as bl } from "./features/sheet-tools/
|
231
|
-
import { default as Wl } from "./features/
|
232
|
-
import { default as wl } from "./features/sheets/
|
233
|
-
import {
|
234
|
-
import {
|
235
|
-
import {
|
236
|
-
import { default as lp } from "./features/
|
237
|
-
import {
|
238
|
-
import {
|
239
|
-
import {
|
240
|
-
import { default as Sp } from "./features/worksheet/worksheet
|
241
|
-
import { default as Cp } from "./features/worksheet/worksheet/worksheet-
|
242
|
-
import { default as Pp } from "./features/worksheet/worksheet/worksheet-permissions/
|
243
|
-
import { default as hp } from "./features/worksheet/
|
244
|
-
import { default as Mp } from "./features/worksheet/learnosity-preloader/
|
245
|
-
import { default as Op } from "./features/worksheet/
|
246
|
-
import { default as Rp } from "./features/
|
151
|
+
import { default as ya } from "./features/auth/login/social-login-methods/social-login-methods.js";
|
152
|
+
import { PLATFORM_EVENTS_STUDENT as Ua } from "./features/analytics-events/platform-events-student.js";
|
153
|
+
import { PLATFORM_EVENTS_TEACHER as va } from "./features/analytics-events/platform-events-teacher.js";
|
154
|
+
import { WHITELIST_EVENTS as Va } from "./features/analytics-events/whitelist-events.js";
|
155
|
+
import { default as Qa } from "./features/blockers/multi-tab-blocker/use-is-tab-blocked.js";
|
156
|
+
import { default as Ka } from "./features/blockers/multi-tab-blocker/multi-tab-blocker.js";
|
157
|
+
import { default as Ja } from "./features/chapters/chapter/chapter.js";
|
158
|
+
import { default as Za } from "./features/chapters/chapters-list/chapters-list.js";
|
159
|
+
import { default as za } from "./features/chapters/lpar-chapter/lpar-chapter.js";
|
160
|
+
import { default as $a } from "./features/chapters/lpar-milestone-chapter/lpar-milestone-chapter.js";
|
161
|
+
import { default as of } from "./features/chapters/lpar-chapter/block-section/sat-sheet-item/sat-sheet-summary/sat-sheet-summary.js";
|
162
|
+
import { checkIfPPTNodeType as tf } from "./features/chapters/lpar-chapter/utils/index.js";
|
163
|
+
import { GAME_LAUNCHER_ASSET_PADDING as ff } from "./features/circle-games/game-launcher/comps/segmented-game-card/constants.js";
|
164
|
+
import { GAME_LAUNCHER_SIZE as lf } from "./features/circle-games/game-launcher/comps/card-container/constants.js";
|
165
|
+
import { useCircleSounds as uf } from "./features/circle-games/hooks/use-circle-sounds/use-circle-sounds.js";
|
166
|
+
import { CircleSoundKey as df } from "./features/circle-games/hooks/use-circle-sounds/use-circle-sounds-enums.js";
|
167
|
+
import { useGetLeaderboardDal as nf } from "./features/circle-games/leaderboard/dal/use-get-leaderboard-dal/use-get-leaderboard-dal.js";
|
168
|
+
import { ELeaderboardType as If } from "./features/circle-games/leaderboard/enums/leaderboard-type-enum.js";
|
169
|
+
import { StreakReductionLocalStorageUtil as Sf } from "./features/circle-games/utils/streak-reduction-localstorage-util.js";
|
170
|
+
import { Tutorial as Cf } from "./features/circle-games/games/tutorial/tutorial.js";
|
171
|
+
import { WebView as Pf } from "./features/circle-games/games/web-view/web-view.js";
|
172
|
+
import { ProjectOutcome as hf } from "./features/circle-games/games/web-view/enums/project-outcomes-enum.js";
|
173
|
+
import { WebViewEvent as Mf } from "./features/circle-games/games/web-view/enums/web-view-events-enum.js";
|
174
|
+
import { ProjectType as Of } from "./features/circle-games/games/web-view/enums/project-type-enum.js";
|
175
|
+
import { PlayerType as Rf } from "./features/circle-games/games/web-view/enums/player-type-enum.js";
|
176
|
+
import { IStatsToAwardErrorCode as Df } from "./features/circle-games/games/web-view/web-view-types.js";
|
177
|
+
import { CIRCLE_ONBOARDING_ANALYTICS_STEPS as gf } from "./features/circle-games/enum/circle-onboarding-steps.js";
|
178
|
+
import { CIRCLE_ACTION_IDS as Bf } from "./features/circle-games/enum/circle-action-ids.js";
|
179
|
+
import { GameLauncher as bf } from "./features/circle-games/game-launcher/game-launcher.js";
|
180
|
+
import { useGetCircleHomeDetailsDal as Wf } from "./features/circle-games/game-launcher/dal/use-get-circle-home-details-dal/use-get-circle-home-details-dal.js";
|
181
|
+
import { Leaderboard as wf } from "./features/circle-games/leaderboard/leaderboard.js";
|
182
|
+
import { BackgroundImage as Yf, CircularSteps as Kf } from "./features/circle-games/sign-up/comp/circular-steps/circular-steps.js";
|
183
|
+
import { SplashScreen as Jf } from "./features/circle-games/sign-up/comp/splash-screen/splash-screen.js";
|
184
|
+
import { SignUp as Zf } from "./features/circle-games/sign-up/sign-up.js";
|
185
|
+
import { default as zf } from "./features/cue-canvas/cue-canvas-provider.js";
|
186
|
+
import { default as $f } from "./features/cue-canvas/toolbar/toolbar.js";
|
187
|
+
import { default as os } from "./features/cue-canvas/cue-canvas.js";
|
188
|
+
import { default as ts } from "./features/cue-canvas/hooks/use-canvas-sync-broker.js";
|
189
|
+
import { default as fs } from "./features/communication/hooks/use-inclass-message-broker/use-inclass-message-broker.js";
|
190
|
+
import { default as ls } from "./features/communication/hooks/use-trial-session-message-broker/use-trial-session-message-broker.js";
|
191
|
+
import { EVENTS as us } from "./features/communication/pub-sub/constants.js";
|
192
|
+
import { useInClassActionDispatcher as ds, useInClassActionListener as xs } from "./features/communication/pub-sub/hooks.js";
|
193
|
+
import { default as cs } from "./features/trial-session/trial-session.js";
|
194
|
+
import { EClassTimeAlertLevel as is } from "./features/trial-session/trial-session-types.js";
|
195
|
+
import { useClassTimeAlerts as Ss } from "./features/trial-session/hooks/use-class-time-alerts.js";
|
196
|
+
import { default as Cs } from "./features/talk-meter/talk-meter.js";
|
197
|
+
import { default as Ps } from "./features/extra-practice/extra-practice.js";
|
198
|
+
import { useAutoPlayPermission as hs } from "./features/hooks/use-auto-play-permission/use-auto-play-permission.js";
|
199
|
+
import { JOURNEY_ID_STUDENT as Ms } from "./features/journey/journey-id/journey-id-student.js";
|
200
|
+
import { useJourney as Os } from "./features/journey/use-journey/use-journey.js";
|
201
|
+
import { useGetEligibleJourneysViaRoute as Rs } from "./features/journey/hooks/use-get-eligible-journeys-via-route.js";
|
202
|
+
import { JourneyProvider as Ds } from "./features/journey/use-journey/journey-context-provider.js";
|
203
|
+
import { IndicatorType as gs } from "./features/journey/use-journey/constants.js";
|
204
|
+
import { Coachmark as Bs } from "./features/journey/comps/coachmark/coachmark.js";
|
205
|
+
import { default as bs } from "./features/milestone/create/submit-modal/submit-modal.js";
|
206
|
+
import { default as Ws } from "./features/milestone/create/comps/confirmation-modals/goal-creation-confirmation.js";
|
207
|
+
import { default as ws } from "./features/milestone/create/comps/confirmation-modals/chapter-clearance-confirmation.js";
|
208
|
+
import { default as Ys } from "./features/milestone/create/milestone-create-container.js";
|
209
|
+
import { default as Fs } from "./features/milestone/edit/goal-drafts/goal-draft-edit-container.js";
|
210
|
+
import { default as js } from "./features/milestone/outcome/milestone-outcome-container.js";
|
211
|
+
import { default as qs } from "./features/milestone/outcome/comps/achievement/reason-submit-modal.js";
|
212
|
+
import { default as Xs } from "./features/milestone/outcome/comps/achievement/share-instructions-modal.js";
|
213
|
+
import { default as el } from "./features/milestone/edit/comps/edit-milestone-modal/index.js";
|
214
|
+
import { default as rl } from "./features/milestone/edit/goal-edit-container.js";
|
215
|
+
import { default as al } from "./features/milestone/edit/milestone-edit-container.js";
|
216
|
+
import { default as sl } from "./features/milestone/milestone-list-container/milestone-list-container.js";
|
217
|
+
import { default as pl } from "./features/milestone/milestone-action-widget/milestone-action-widget.js";
|
218
|
+
import { default as ml } from "./features/milestone/start/milestone-start.js";
|
219
|
+
import { default as xl } from "./features/milestone/milestone-tests/tests-creation/tests-creation.js";
|
220
|
+
import { default as cl } from "./features/milestone/milestone-resources/resources-assign/resources-assign.js";
|
221
|
+
import { ACHIEVEMENT_ACTIONS as il, STAGES as Tl } from "./features/milestone/outcome/milestone-outcome-constants.js";
|
222
|
+
import { invalidateMilestonesData as El, useGetAllMilestonesdata as Cl } from "./features/milestone/milestone-list-container/api/get-milestones.js";
|
223
|
+
import { invalidateTestHelpData as Pl, useGetTestHelpData as _l } from "./features/milestone/milestone-list-container/api/get-tests-list.js";
|
224
|
+
import { invalidateMilestoneResources as Ll, useGetMilestoneResources as Ml } from "./features/milestone/milestone-list-container/api/get-milestone-resources.js";
|
225
|
+
import { default as Ol } from "./features/pointer-sync/pointer.js";
|
226
|
+
import { default as Rl } from "./features/pointer-sync/hooks/use-pointer-sync.js";
|
227
|
+
import { DigitalMeter as Dl } from "./features/post-game-stats/digital-meter/digital-meter.js";
|
228
|
+
import { EPostGameStat as gl } from "./features/post-game-stats/enums/post-game-stats-enum.js";
|
229
|
+
import { PostGameStats as Bl } from "./features/post-game-stats/post-game-stats.js";
|
230
|
+
import { default as bl } from "./features/sheet-tools/desmos-calculator/desmos-calculator.js";
|
231
|
+
import { default as Wl } from "./features/sheet-tools/tool-header/tool-header.js";
|
232
|
+
import { default as wl } from "./features/sheets/sheets-list/sheets-list.js";
|
233
|
+
import { default as Yl } from "./features/sheets/reference-sheet/reference-sheet.js";
|
234
|
+
import { WORKSHEET_V3_NODE_TYPES as Fl } from "./features/sheets/utils/is-v3-worksheet.js";
|
235
|
+
import { COMPLETED_SHEET_STATE as jl, NODE_LABELS as Zl, NODE_SUB_GROUP as ql, NODE_TYPE as zl, PYTHON_NODE_TYPES as Xl, REWARDS_LIST as $l, SHEET_ACTIONS as ep, SHEET_ATTEMPT_LOCATION as op, SHEET_ATTEMPT_LOCATION_MAP as rp, SHEET_ATTEMPT_STATE as tp, SHEET_DATA_TYPE as ap, SHEET_STATE as fp } from "./features/sheets/constants/sheet.js";
|
236
|
+
import { default as lp } from "./features/student-details/student-details.js";
|
237
|
+
import { default as up } from "./features/utils/load-script.js";
|
238
|
+
import { ACTION_BAR_HEIGHT as dp, QUESTIONS_GAP as xp, QUESTION_WIDTH as np, TOP_NAVIGATION_HEIGHT as cp } from "./features/worksheet/worksheet/constants.js";
|
239
|
+
import { isOkayTypeQuestion as ip } from "./features/worksheet/worksheet/worksheet-helpers.js";
|
240
|
+
import { default as Sp } from "./features/worksheet/worksheet/worksheet-container.js";
|
241
|
+
import { default as Cp } from "./features/worksheet/worksheet-preview/worksheet-preview.js";
|
242
|
+
import { default as Pp } from "./features/worksheet/worksheet/worksheet-permissions/sheet-locked.js";
|
243
|
+
import { default as hp } from "./features/worksheet/worksheet/worksheet-permissions/error.js";
|
244
|
+
import { default as Mp } from "./features/worksheet/learnosity-preloader/learnosity-preloader.js";
|
245
|
+
import { default as Op } from "./features/worksheet/learnosity-preloader/use-is-learnosity-loaded.js";
|
246
|
+
import { default as Rp } from "./features/worksheet/worksheet-preview/hooks/use-worksheet-layout.js";
|
247
|
+
import { default as Dp } from "./features/maintenance/maintenance.js";
|
247
248
|
export {
|
248
|
-
|
249
|
+
il as ACHIEVEMENT_ACTIONS,
|
249
250
|
Mr as AccordionSection,
|
250
251
|
ua as AccountSelector,
|
251
|
-
|
252
|
-
|
252
|
+
qs as AchievementNotShareReasonModal,
|
253
|
+
Xs as AchievementShareInstructionModal,
|
253
254
|
x as AlertIcon,
|
254
255
|
St as AppLoader,
|
255
256
|
Yr as ArcButton,
|
@@ -260,7 +261,7 @@ export {
|
|
260
261
|
Vt as Avatar,
|
261
262
|
rr as Back2Icon,
|
262
263
|
c as BackIcon,
|
263
|
-
|
264
|
+
Yf as BackgroundImage,
|
264
265
|
S as Bin2Icon,
|
265
266
|
i as BinIcon,
|
266
267
|
h as Book2Icon,
|
@@ -270,74 +271,74 @@ export {
|
|
270
271
|
R as Bulb2Icon,
|
271
272
|
O as BulbIcon,
|
272
273
|
Br as Button,
|
273
|
-
|
274
|
-
|
275
|
-
|
274
|
+
Bf as CIRCLE_ACTION_IDS,
|
275
|
+
gf as CIRCLE_ONBOARDING_ANALYTICS_STEPS,
|
276
|
+
jl as COMPLETED_SHEET_STATE,
|
276
277
|
D as CalendarIcon,
|
277
278
|
Rt as Callout,
|
278
279
|
pt as CascadingSelectInput,
|
279
|
-
|
280
|
-
|
281
|
-
|
280
|
+
Ja as Chapter,
|
281
|
+
ws as ChapterClearanceConfirmationModal,
|
282
|
+
Za as ChaptersList,
|
282
283
|
cr as ChatIcon,
|
283
284
|
B as Check2Icon,
|
284
|
-
|
285
|
+
g as CheckIcon,
|
285
286
|
jr as CheckboxInput,
|
286
287
|
qr as CheckboxInputList,
|
287
288
|
pr as ChevronDownIcon,
|
288
289
|
sr as ChevronLeftIcon,
|
289
290
|
ar as ChevronRightIcon,
|
290
|
-
|
291
|
+
df as CircleSoundKey,
|
291
292
|
Ct as CircularLoader,
|
292
293
|
Na as CircularStepWrapper,
|
293
|
-
|
294
|
+
Kf as CircularSteps,
|
294
295
|
Ia as ClaimUserAccount,
|
295
296
|
br as Clickable,
|
296
297
|
b as ClipboardIcon,
|
297
298
|
w as Clock2Icon,
|
298
299
|
W as ClockIcon,
|
299
|
-
|
300
|
+
Bs as Coachmark,
|
300
301
|
Y as CodeIcon,
|
301
302
|
Rr as ContextMenu,
|
302
303
|
F as CopyIcon,
|
303
304
|
Dr as CountdownTimer,
|
304
305
|
j as CrossIcon,
|
305
|
-
|
306
|
-
|
307
|
-
|
306
|
+
os as CueCanvas,
|
307
|
+
$f as CueCanvasController,
|
308
|
+
zf as CueCanvasProvider,
|
308
309
|
q as CueRocket,
|
309
310
|
ir as CuemathLogo,
|
310
311
|
X as DashArrowIcon,
|
311
312
|
La as DatePickerInput,
|
312
|
-
|
313
|
-
|
313
|
+
bl as DesmosCalculator,
|
314
|
+
Dl as DigitalMeter,
|
314
315
|
ee as DownIcon,
|
315
316
|
re as DraftIcon,
|
316
317
|
ae as DragIcon,
|
317
|
-
|
318
|
-
|
319
|
-
|
320
|
-
|
321
|
-
|
318
|
+
is as EClassTimeAlertLevel,
|
319
|
+
If as ELeaderboardType,
|
320
|
+
cl as EPResourceAssign,
|
321
|
+
gl as EPostGameStat,
|
322
|
+
us as EVENTS,
|
322
323
|
pe as Edit2Icon,
|
323
324
|
se as EditIcon,
|
324
|
-
|
325
|
+
el as EditMilestoneModal,
|
325
326
|
me as EditStarIcon,
|
326
327
|
Ta as EmailInput,
|
327
328
|
xe as EraserIcon,
|
328
329
|
Fr as Error,
|
329
|
-
|
330
|
-
|
330
|
+
Wl as ExpandableHeader,
|
331
|
+
Ps as ExtraPractice,
|
331
332
|
ie as Eye2Icon,
|
332
333
|
ce as EyeIcon,
|
333
334
|
it as FlexView,
|
334
|
-
|
335
|
-
|
335
|
+
ff as GAME_LAUNCHER_ASSET_PADDING,
|
336
|
+
lf as GAME_LAUNCHER_SIZE,
|
336
337
|
mr as GameIcon,
|
337
|
-
|
338
|
-
|
339
|
-
|
340
|
-
|
338
|
+
bf as GameLauncher,
|
339
|
+
Ws as GoalCreationConfirmationModal,
|
340
|
+
Fs as GoalDraftEdit,
|
341
|
+
rl as GoalEdit,
|
341
342
|
at as GooglePlacesSearchInput,
|
342
343
|
Aa as GradeInput,
|
343
344
|
r as GradeSelector,
|
@@ -347,83 +348,83 @@ export {
|
|
347
348
|
he as HomeIcon,
|
348
349
|
s as ILLUSTRATIONS,
|
349
350
|
p as IMAGES,
|
350
|
-
|
351
|
+
Df as IStatsToAwardErrorCode,
|
351
352
|
Wr as IconButton,
|
352
353
|
oa as Image,
|
353
354
|
Me as ImageIcon,
|
354
|
-
|
355
|
+
gs as IndicatorType,
|
355
356
|
Re as Info2Icon,
|
356
357
|
Oe as InfoIcon,
|
357
|
-
|
358
|
-
|
358
|
+
Ms as JOURNEY_ID_STUDENT,
|
359
|
+
Ds as JourneyProvider,
|
359
360
|
m as LOTTIE,
|
360
|
-
|
361
|
-
|
362
|
-
|
363
|
-
|
361
|
+
za as LPARChapter,
|
362
|
+
$a as LPARMilestoneChapter,
|
363
|
+
wf as Leaderboard,
|
364
|
+
Mp as LearnosityPreloader,
|
364
365
|
De as LeftIcon,
|
365
366
|
Be as Lock2Icon,
|
366
|
-
|
367
|
-
|
368
|
-
|
369
|
-
|
370
|
-
|
371
|
-
|
372
|
-
|
373
|
-
|
367
|
+
ge as LockIcon,
|
368
|
+
Dp as Maintenance,
|
369
|
+
pl as MilestoneActionWidget,
|
370
|
+
Ys as MilestoneCreate,
|
371
|
+
al as MilestoneEdit,
|
372
|
+
sl as MilestoneList,
|
373
|
+
js as MilestoneOutcome,
|
374
|
+
ml as MilestoneStart,
|
374
375
|
We as Minus2Icon,
|
375
376
|
be as MinusIcon,
|
376
377
|
we as MistakeIcon,
|
377
378
|
Ye as Mobile,
|
378
379
|
Fe as MoreVerticalIcon,
|
379
|
-
|
380
|
-
|
381
|
-
|
382
|
-
|
380
|
+
Ka as MultiTabBlocker,
|
381
|
+
Zl as NODE_LABELS,
|
382
|
+
ql as NODE_SUB_GROUP,
|
383
|
+
zl as NODE_TYPE,
|
383
384
|
Sr as Next2Icon,
|
384
385
|
je as NextIcon,
|
385
|
-
|
386
|
+
gr as Nudge,
|
386
387
|
mt as NumRangeInput,
|
387
388
|
Ea as OTPInput,
|
388
389
|
la as OverlayLoader,
|
389
|
-
|
390
|
-
|
391
|
-
|
390
|
+
Ua as PLATFORM_EVENTS_STUDENT,
|
391
|
+
va as PLATFORM_EVENTS_TEACHER,
|
392
|
+
Xl as PYTHON_NODE_TYPES,
|
392
393
|
qe as PencilIcon,
|
393
394
|
xt as PercentileInput,
|
394
395
|
$t as PerfectHits,
|
395
396
|
_a as PhoneInput,
|
396
397
|
ro as Play2Icon,
|
397
398
|
eo as PlayIcon,
|
398
|
-
|
399
|
+
Rf as PlayerType,
|
399
400
|
so as Plus2Icon,
|
400
401
|
ao as PlusIcon,
|
401
402
|
Xe as PointerIcon,
|
402
|
-
|
403
|
+
Bl as PostGameStats,
|
403
404
|
po as PracticeIcon,
|
404
|
-
|
405
|
+
Cp as PreviewWorksheet,
|
405
406
|
mo as ProgressIcon,
|
406
|
-
|
407
|
-
|
407
|
+
hf as ProjectOutcome,
|
408
|
+
Of as ProjectType,
|
408
409
|
no as QuestionIcon,
|
409
410
|
Io as QuestionLetterIcon,
|
410
|
-
|
411
|
+
$l as REWARDS_LIST,
|
411
412
|
Pt as RadioCard,
|
412
413
|
Xr as RadioInput,
|
413
414
|
To as RedoIcon,
|
414
|
-
|
415
|
-
|
415
|
+
Yl as ReferenceSheet,
|
416
|
+
Ol as RemotePeerPointer,
|
416
417
|
da as ResendOTP,
|
417
418
|
Eo as RightIcon,
|
418
419
|
Ao as RulerIcon,
|
419
|
-
|
420
|
-
|
421
|
-
|
422
|
-
|
423
|
-
|
424
|
-
|
425
|
-
|
426
|
-
|
420
|
+
of as SATSheetSummary,
|
421
|
+
ep as SHEET_ACTIONS,
|
422
|
+
op as SHEET_ATTEMPT_LOCATION,
|
423
|
+
rp as SHEET_ATTEMPT_LOCATION_MAP,
|
424
|
+
tp as SHEET_ATTEMPT_STATE,
|
425
|
+
ap as SHEET_DATA_TYPE,
|
426
|
+
fp as SHEET_STATE,
|
427
|
+
Tl as STAGES,
|
427
428
|
$o as ScribbleIcon,
|
428
429
|
_o as SearchIcon,
|
429
430
|
rt as SearchableSelectInput,
|
@@ -431,39 +432,40 @@ export {
|
|
431
432
|
et as SelectInput,
|
432
433
|
ct as SelectionCards,
|
433
434
|
Zt as Separator,
|
434
|
-
|
435
|
+
hp as SheetError,
|
435
436
|
Lo as SheetIcon,
|
436
|
-
|
437
|
-
|
438
|
-
|
437
|
+
wl as SheetList,
|
438
|
+
Pp as SheetLocked,
|
439
|
+
Zf as SignUp,
|
439
440
|
Ha as SignupMethods,
|
440
441
|
er as SketchIcon,
|
441
442
|
Ho as Skip2Icon,
|
442
443
|
No as SkipIcon,
|
443
|
-
|
444
|
+
ya as SocialLoginMethods,
|
445
|
+
Jf as SplashScreen,
|
444
446
|
Go as Star2Icon,
|
445
447
|
ko as StarIcon,
|
446
448
|
a as Stepper,
|
447
449
|
Jt as StreakIcon,
|
448
|
-
|
449
|
-
|
450
|
-
|
450
|
+
Sf as StreakReductionLocalStorageUtil,
|
451
|
+
yo as StrikedEyeIcon,
|
452
|
+
lp as StudentDetails,
|
451
453
|
ka as StudentPasswordInput,
|
452
454
|
Ga as StudentUsernameInput,
|
453
|
-
|
455
|
+
bs as SubmitMilestoneModal,
|
454
456
|
Uo as SwitchIcon,
|
455
457
|
Kt as TabComponent,
|
456
458
|
Ot as Tag,
|
457
|
-
|
458
|
-
|
459
|
+
Cs as TalkMeter,
|
460
|
+
xl as TestsCreation,
|
459
461
|
Mt as Text,
|
460
462
|
wr as TextButton,
|
461
463
|
st as TextInput,
|
462
464
|
vo as TickIcon,
|
463
465
|
Qt as TimeLeftTimeline,
|
464
|
-
|
466
|
+
cs as TrialSession,
|
465
467
|
Vo as TrophyIcon,
|
466
|
-
|
468
|
+
Cf as Tutorial,
|
467
469
|
xr as TutoringIcon,
|
468
470
|
Dt as UIContext,
|
469
471
|
Qo as UndoIcon,
|
@@ -473,45 +475,45 @@ export {
|
|
473
475
|
Zo as UserIcon,
|
474
476
|
na as UserTypeSelector,
|
475
477
|
zt as Video,
|
476
|
-
|
477
|
-
|
478
|
-
|
479
|
-
|
480
|
-
|
481
|
-
|
482
|
-
|
483
|
-
|
484
|
-
|
485
|
-
|
478
|
+
Va as WHITELIST_EVENTS,
|
479
|
+
dp as WORKSHEET_ACTION_BAR_HEIGHT,
|
480
|
+
xp as WORKSHEET_QUESTIONS_GAP,
|
481
|
+
np as WORKSHEET_QUESTION_WIDTH,
|
482
|
+
cp as WORKSHEET_TOP_NAVIGATION_HEIGHT,
|
483
|
+
Fl as WORKSHEET_V3_NODE_TYPES,
|
484
|
+
Pf as WebView,
|
485
|
+
Mf as WebViewEvent,
|
486
|
+
Sp as Worksheet,
|
487
|
+
tf as checkIfPPTNodeType,
|
486
488
|
vt as getTheme,
|
487
|
-
|
488
|
-
|
489
|
-
|
490
|
-
|
491
|
-
|
492
|
-
|
493
|
-
|
494
|
-
|
495
|
-
|
489
|
+
Ll as invalidateMilestoneResources,
|
490
|
+
El as invalidateMilestonesData,
|
491
|
+
Pl as invalidateTestHelpData,
|
492
|
+
ip as isOkayTypeQuestion,
|
493
|
+
up as loadScript,
|
494
|
+
hs as useAutoPlayPermission,
|
495
|
+
ts as useCanvasSyncBroker,
|
496
|
+
uf as useCircleSounds,
|
497
|
+
Ss as useClassTimeAlerts,
|
496
498
|
Ut as useContextMenuClickHandler,
|
497
499
|
hr as useForceReload,
|
498
|
-
|
499
|
-
|
500
|
-
|
501
|
-
|
502
|
-
|
503
|
-
|
504
|
-
|
505
|
-
|
506
|
-
|
507
|
-
|
508
|
-
|
509
|
-
|
510
|
-
|
511
|
-
|
512
|
-
|
500
|
+
Cl as useGetAllMilestonesdata,
|
501
|
+
Wf as useGetCircleHomeDetailsDal,
|
502
|
+
Rs as useGetEligibleJourneysViaRoute,
|
503
|
+
nf as useGetLeaderboardDal,
|
504
|
+
Ml as useGetMilestoneResources,
|
505
|
+
_l as useGetTestHelpData,
|
506
|
+
ds as useInClassActionDispatcher,
|
507
|
+
xs as useInClassActionListener,
|
508
|
+
fs as useInClassMessageBroker,
|
509
|
+
Op as useIsLearnosityLoaded,
|
510
|
+
Qa as useIsTabBlocked,
|
511
|
+
Os as useJourney,
|
512
|
+
Rl as usePointerSync,
|
513
|
+
yt as useTrackingContext,
|
514
|
+
ls as useTrialSessionMessageBroker,
|
513
515
|
Gt as useUIContext,
|
514
|
-
|
516
|
+
Rp as useWorksheetLayout,
|
515
517
|
Pr as useZoomDisable
|
516
518
|
};
|
517
519
|
//# 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":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|