@cuemath/leap 3.2.14 → 3.2.15-as1
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/ui/carousal/carousal-styles.js +45 -0
- package/dist/features/ui/carousal/carousal-styles.js.map +1 -0
- package/dist/features/ui/carousal/carousal.js +76 -0
- package/dist/features/ui/carousal/carousal.js.map +1 -0
- package/dist/index.d.ts +30 -0
- package/dist/index.js +301 -299
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
@@ -0,0 +1,45 @@
|
|
1
|
+
import n from "styled-components";
|
2
|
+
const a = n.div`
|
3
|
+
margin-left: ${({ theme: t }) => t.layout.gutter}px;
|
4
|
+
overflow: hidden;
|
5
|
+
margin: ${({ wrapperMargin: t }) => t};
|
6
|
+
`, o = n.div`
|
7
|
+
display: flex;
|
8
|
+
transition: transform 1s ease;
|
9
|
+
transform: ${({ position: t }) => `translateX(calc(${t} * (-100%)))`};
|
10
|
+
`, s = n.div`
|
11
|
+
padding-right: ${({ theme: t }) => t.layout.gutter}px;
|
12
|
+
display: flex;
|
13
|
+
flex: 1 0 100%;
|
14
|
+
transition: opacity 1s ease;
|
15
|
+
padding: ${({ carouselSlotPadding: t }) => t};
|
16
|
+
${({ slideAlign: t }) => t === "center" && `
|
17
|
+
display:flex;
|
18
|
+
justify-content: center;
|
19
|
+
`}
|
20
|
+
`, l = n.div`
|
21
|
+
margin-top: 12px;
|
22
|
+
text-align: center;
|
23
|
+
${({ flexCenterIndicators: t }) => t && `
|
24
|
+
display: flex;
|
25
|
+
justify-content: center;
|
26
|
+
align-items: center;
|
27
|
+
`}
|
28
|
+
`, d = n.span`
|
29
|
+
background: ${({ isCurrent: t, dotColor: e, inactiveDotColor: i }) => t ? e : i};
|
30
|
+
width: ${({ isCurrent: t, activeIndicatorSize: e }) => t ? e : "8px"};
|
31
|
+
height: ${({ isCurrent: t, activeIndicatorSize: e }) => t ? e : "8px"};
|
32
|
+
border-radius: 50%;
|
33
|
+
margin-right: 5px;
|
34
|
+
display: inline-block;
|
35
|
+
transition: background 0.5s ease;
|
36
|
+
cursor: pointer;
|
37
|
+
`;
|
38
|
+
export {
|
39
|
+
o as CarouselContainer,
|
40
|
+
s as CarouselSlot,
|
41
|
+
l as Container,
|
42
|
+
d as Dot,
|
43
|
+
a as Wrapper
|
44
|
+
};
|
45
|
+
//# sourceMappingURL=carousal-styles.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"carousal-styles.js","sources":["../../../../src/features/ui/carousal/carousal-styles.ts"],"sourcesContent":["import styled from 'styled-components';\n\ninterface WrapperProps {\n wrapperMargin?: string;\n}\n\nexport const Wrapper = styled.div<WrapperProps>`\n margin-left: ${({ theme }) => theme.layout.gutter}px;\n overflow: hidden;\n margin: ${({ wrapperMargin }) => wrapperMargin};\n`;\n\ninterface CarouselContainerProps {\n position: number;\n}\nexport const CarouselContainer = styled.div<CarouselContainerProps>`\n display: flex;\n transition: transform 1s ease;\n transform: ${({ position }) => `translateX(calc(${position} * (-100%)))`};\n`;\n\ninterface CarouselSlotProps {\n carouselSlotPadding?: string;\n slideAlign?: string | null;\n}\nexport const CarouselSlot = styled.div<CarouselSlotProps>`\n padding-right: ${({ theme }) => theme.layout.gutter}px;\n display: flex;\n flex: 1 0 100%;\n transition: opacity 1s ease;\n padding: ${({ carouselSlotPadding }) => carouselSlotPadding};\n ${({ slideAlign }) =>\n slideAlign === 'center' &&\n `\n display:flex;\n justify-content: center;\n `}\n`;\n\ninterface ContainerProps {\n flexCenterIndicators?: boolean;\n}\nexport const Container = styled.div<ContainerProps>`\n margin-top: 12px;\n text-align: center;\n ${({ flexCenterIndicators }) =>\n flexCenterIndicators &&\n `\n display: flex;\n justify-content: center;\n align-items: center;\n `}\n`;\n\ninterface DotProps {\n isCurrent: boolean;\n dotColor: string;\n inactiveDotColor: string;\n activeIndicatorSize: string;\n}\nexport const Dot = styled.span<DotProps>`\n background: ${({ isCurrent, dotColor, inactiveDotColor }) =>\n isCurrent ? dotColor : inactiveDotColor};\n width: ${({ isCurrent, activeIndicatorSize }) => (isCurrent ? activeIndicatorSize : '8px')};\n height: ${({ isCurrent, activeIndicatorSize }) => (isCurrent ? activeIndicatorSize : '8px')};\n border-radius: 50%;\n margin-right: 5px;\n display: inline-block;\n transition: background 0.5s ease;\n cursor: pointer;\n`;\n"],"names":["Wrapper","styled","theme","wrapperMargin","CarouselContainer","position","CarouselSlot","carouselSlotPadding","slideAlign","Container","flexCenterIndicators","Dot","isCurrent","dotColor","inactiveDotColor","activeIndicatorSize"],"mappings":";AAMO,MAAMA,IAAUC,EAAO;AAAA,iBACb,CAAC,EAAE,OAAAC,EAAA,MAAYA,EAAM,OAAO,MAAM;AAAA;AAAA,YAEvC,CAAC,EAAE,eAAAC,EAAc,MAAMA,CAAa;AAAA,GAMnCC,IAAoBH,EAAO;AAAA;AAAA;AAAA,eAGzB,CAAC,EAAE,UAAAI,EAAe,MAAA,mBAAmBA,CAAQ,cAAc;AAAA,GAO7DC,IAAeL,EAAO;AAAA,mBAChB,CAAC,EAAE,OAAAC,EAAA,MAAYA,EAAM,OAAO,MAAM;AAAA;AAAA;AAAA;AAAA,aAIxC,CAAC,EAAE,qBAAAK,EAAoB,MAAMA,CAAmB;AAAA,IACzD,CAAC,EAAE,YAAAC,EAAW,MACdA,MAAe,YACf;AAAA;AAAA;AAAA,GAGD;AAAA,GAMUC,IAAYR,EAAO;AAAA;AAAA;AAAA,IAG5B,CAAC,EAAE,sBAAAS,QACHA,KACA;AAAA;AAAA;AAAA;AAAA,GAID;AAAA,GASUC,IAAMV,EAAO;AAAA,gBACV,CAAC,EAAE,WAAAW,GAAW,UAAAC,GAAU,kBAAAC,QACpCF,IAAYC,IAAWC,CAAgB;AAAA,WAChC,CAAC,EAAE,WAAAF,GAAW,qBAAAG,EAA2B,MAAAH,IAAYG,IAAsB,KAAM;AAAA,YAChF,CAAC,EAAE,WAAAH,GAAW,qBAAAG,EAA2B,MAAAH,IAAYG,IAAsB,KAAM;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;"}
|
@@ -0,0 +1,76 @@
|
|
1
|
+
import { jsxs as G, Fragment as H, jsx as n } from "react/jsx-runtime";
|
2
|
+
import { useState as J, useRef as M, useCallback as p, useEffect as j } from "react";
|
3
|
+
import { getTheme as N } from "../theme/get-theme.js";
|
4
|
+
import { Wrapper as Q, CarouselContainer as U, CarouselSlot as B, Container as V, Dot as X } from "./carousal-styles.js";
|
5
|
+
const { colors: K } = N(), Y = ({
|
6
|
+
children: a,
|
7
|
+
initialPosition: b = 0,
|
8
|
+
infinite: f = !1,
|
9
|
+
slideDuration: y = 8e3,
|
10
|
+
dotColor: i = K.BLACK,
|
11
|
+
changeColor: x = () => null,
|
12
|
+
slideAlign: C = null,
|
13
|
+
inactiveDotColor: E = K.BLACK_T_15,
|
14
|
+
activeIndicatorSize: F = "8px",
|
15
|
+
flexCenterIndicators: W = !1,
|
16
|
+
isTestimonial: m = !1,
|
17
|
+
setColor: l = () => null,
|
18
|
+
setPosition: S = () => null,
|
19
|
+
carouselSlotPadding: v = "",
|
20
|
+
wrapperMargin: $ = "",
|
21
|
+
hideIndicators: q = !1,
|
22
|
+
autoScroll: I = !0,
|
23
|
+
nodeRef: u = null,
|
24
|
+
onChange: g = () => null
|
25
|
+
}) => {
|
26
|
+
const [r, z] = J(b), A = M(null), o = p(
|
27
|
+
(t) => {
|
28
|
+
z(t), S(t), u && u.current && (u.current.position = t), g();
|
29
|
+
},
|
30
|
+
[S, u, g]
|
31
|
+
), s = p(
|
32
|
+
(t, e = !1) => {
|
33
|
+
const _ = (Array.isArray(a) ? a : [a]).length;
|
34
|
+
let c = r;
|
35
|
+
m && l && l(c), t === "next" ? (c = r + 1, c > _ - 1 && (c = e ? 0 : r)) : (c = r - 1, c < 0 && (c = e ? _ - 1 : r)), c !== r && o(c);
|
36
|
+
},
|
37
|
+
[r, a, m, l, o]
|
38
|
+
), h = p(() => s("next", f), [s, f]), k = p(() => s("prev", f), [s, f]), D = p(
|
39
|
+
(t) => {
|
40
|
+
m && l && l(r), t !== r && o(t);
|
41
|
+
},
|
42
|
+
[r, m, l, o]
|
43
|
+
);
|
44
|
+
j(() => (u && u.current && (u.current.next = h, u.current.prev = k, u.current.position = r), I && (A.current = setInterval(() => s("next", !0), y)), () => {
|
45
|
+
A.current && clearInterval(A.current);
|
46
|
+
}), [y, I, u, r, h, k, s]), j(() => {
|
47
|
+
x(r);
|
48
|
+
}, [r, x]);
|
49
|
+
const L = Array.isArray(a) ? a.length : 1;
|
50
|
+
return /* @__PURE__ */ G(H, { children: [
|
51
|
+
/* @__PURE__ */ n(Q, { wrapperMargin: $, children: /* @__PURE__ */ n(U, { position: r, children: Array.isArray(a) ? a.map((t, e) => /* @__PURE__ */ n(
|
52
|
+
B,
|
53
|
+
{
|
54
|
+
carouselSlotPadding: v,
|
55
|
+
slideAlign: C,
|
56
|
+
children: t
|
57
|
+
},
|
58
|
+
e
|
59
|
+
)) : /* @__PURE__ */ n(B, { carouselSlotPadding: v, slideAlign: C, children: a }) }) }),
|
60
|
+
L > 1 && !q && /* @__PURE__ */ n(V, { flexCenterIndicators: W, children: Array.from({ length: L }, (t, e) => /* @__PURE__ */ n(
|
61
|
+
X,
|
62
|
+
{
|
63
|
+
isCurrent: e === r,
|
64
|
+
onClick: () => D(e),
|
65
|
+
dotColor: i,
|
66
|
+
inactiveDotColor: E,
|
67
|
+
activeIndicatorSize: F
|
68
|
+
},
|
69
|
+
e
|
70
|
+
)) })
|
71
|
+
] });
|
72
|
+
}, R = Y;
|
73
|
+
export {
|
74
|
+
R as default
|
75
|
+
};
|
76
|
+
//# sourceMappingURL=carousal.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"carousal.js","sources":["../../../../src/features/ui/carousal/carousal.tsx"],"sourcesContent":["import React, { useEffect, useRef, useState, useCallback } from 'react';\n\nimport { getTheme } from '../theme/get-theme';\nimport { CarouselContainer, CarouselSlot, Container, Dot, Wrapper } from './carousal-styles';\n\nconst { colors } = getTheme();\n\ninterface CarouselProps {\n children: React.ReactNode[] | React.ReactNode;\n initialPosition?: number;\n infinite?: boolean;\n slideDuration?: number;\n dotColor?: string;\n changeColor?: (position: number) => void;\n slideAlign?: string | null;\n inactiveDotColor?: string;\n activeIndicatorSize?: string;\n flexCenterIndicators?: boolean;\n isTestimonial?: boolean;\n setColor?: (position: number) => void;\n setPosition?: (position: number) => void;\n carouselSlotPadding?: string;\n wrapperMargin?: string;\n hideIndicators?: boolean;\n autoScroll?: boolean;\n nodeRef?: { current?: { next?: () => void; prev?: () => void; position?: number } } | null;\n onChange?: () => void;\n}\n\nconst Carousel: React.FC<CarouselProps> = ({\n children,\n initialPosition = 0,\n infinite = false,\n slideDuration = 8000,\n dotColor = colors.BLACK,\n changeColor = () => null,\n slideAlign = null,\n inactiveDotColor = colors.BLACK_T_15,\n activeIndicatorSize = '8px',\n flexCenterIndicators = false,\n isTestimonial = false,\n setColor = () => null,\n setPosition = () => null,\n carouselSlotPadding = '',\n wrapperMargin = '',\n hideIndicators = false,\n autoScroll = true,\n nodeRef = null,\n onChange = () => null,\n}) => {\n const [position, setPositionState] = useState(initialPosition);\n const autoSlideRef = useRef<NodeJS.Timeout | null>(null);\n\n const slide = useCallback(\n (newPosition: number) => {\n setPositionState(newPosition);\n setPosition(newPosition);\n if (nodeRef && nodeRef.current) {\n nodeRef.current.position = newPosition;\n }\n onChange();\n },\n [setPosition, nodeRef, onChange],\n );\n\n const changeSlide = useCallback(\n (action: 'next' | 'prev', infiniteOverride = false) => {\n const childrenArray = Array.isArray(children) ? children : [children];\n const numItems = childrenArray.length;\n let newPosition = position;\n\n if (isTestimonial && setColor) {\n setColor(newPosition);\n }\n\n if (action === 'next') {\n newPosition = position + 1;\n if (newPosition > numItems - 1) {\n newPosition = infiniteOverride ? 0 : position;\n }\n } else {\n newPosition = position - 1;\n if (newPosition < 0) {\n newPosition = infiniteOverride ? numItems - 1 : position;\n }\n }\n\n if (newPosition !== position) slide(newPosition);\n },\n [position, children, isTestimonial, setColor, slide],\n );\n\n const nextSlide = useCallback(() => changeSlide('next', infinite), [changeSlide, infinite]);\n const prevSlide = useCallback(() => changeSlide('prev', infinite), [changeSlide, infinite]);\n\n const onIndicatorClick = useCallback(\n (newPosition: number) => {\n if (isTestimonial && setColor) {\n setColor(position);\n }\n\n if (newPosition !== position) {\n slide(newPosition);\n }\n },\n [position, isTestimonial, setColor, slide],\n );\n\n useEffect(() => {\n if (nodeRef && nodeRef.current) {\n nodeRef.current.next = nextSlide;\n nodeRef.current.prev = prevSlide;\n nodeRef.current.position = position;\n }\n\n if (autoScroll) {\n autoSlideRef.current = setInterval(() => changeSlide('next', true), slideDuration);\n }\n\n return () => {\n if (autoSlideRef.current) {\n clearInterval(autoSlideRef.current);\n }\n };\n }, [slideDuration, autoScroll, nodeRef, position, nextSlide, prevSlide, changeSlide]);\n\n useEffect(() => {\n changeColor(position);\n }, [position, changeColor]);\n\n const carouselLength = Array.isArray(children) ? children.length : 1;\n\n return (\n <>\n <Wrapper wrapperMargin={wrapperMargin}>\n <CarouselContainer position={position}>\n {Array.isArray(children) ? (\n children.map((child, index) => (\n <CarouselSlot\n carouselSlotPadding={carouselSlotPadding}\n key={index}\n slideAlign={slideAlign}\n >\n {child}\n </CarouselSlot>\n ))\n ) : (\n <CarouselSlot carouselSlotPadding={carouselSlotPadding} slideAlign={slideAlign}>\n {children}\n </CarouselSlot>\n )}\n </CarouselContainer>\n </Wrapper>\n {carouselLength > 1 && !hideIndicators && (\n <Container flexCenterIndicators={flexCenterIndicators}>\n {Array.from({ length: carouselLength }, (_, index) => (\n <Dot\n key={index}\n isCurrent={index === position}\n onClick={() => onIndicatorClick(index)}\n dotColor={dotColor}\n inactiveDotColor={inactiveDotColor}\n activeIndicatorSize={activeIndicatorSize}\n />\n ))}\n </Container>\n )}\n </>\n );\n};\n\nexport default Carousel;\n"],"names":["colors","getTheme","Carousel","children","initialPosition","infinite","slideDuration","dotColor","changeColor","slideAlign","inactiveDotColor","activeIndicatorSize","flexCenterIndicators","isTestimonial","setColor","setPosition","carouselSlotPadding","wrapperMargin","hideIndicators","autoScroll","nodeRef","onChange","position","setPositionState","useState","autoSlideRef","useRef","slide","useCallback","newPosition","changeSlide","action","infiniteOverride","numItems","nextSlide","prevSlide","onIndicatorClick","useEffect","carouselLength","jsxs","Fragment","jsx","Wrapper","CarouselContainer","child","index","CarouselSlot","Container","_","Dot","Carousel$1"],"mappings":"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"}
|
package/dist/index.d.ts
CHANGED
@@ -166,6 +166,36 @@ export declare const CalendarIcon: React.FC<React.SVGProps<SVGSVGElement>>;
|
|
166
166
|
|
167
167
|
export declare const Callout: React.FC<ICalloutProps>;
|
168
168
|
|
169
|
+
export declare const Carousel: React_2.FC<CarouselProps>;
|
170
|
+
|
171
|
+
declare interface CarouselProps {
|
172
|
+
children: React_2.ReactNode[] | React_2.ReactNode;
|
173
|
+
initialPosition?: number;
|
174
|
+
infinite?: boolean;
|
175
|
+
slideDuration?: number;
|
176
|
+
dotColor?: string;
|
177
|
+
changeColor?: (position: number) => void;
|
178
|
+
slideAlign?: string | null;
|
179
|
+
inactiveDotColor?: string;
|
180
|
+
activeIndicatorSize?: string;
|
181
|
+
flexCenterIndicators?: boolean;
|
182
|
+
isTestimonial?: boolean;
|
183
|
+
setColor?: (position: number) => void;
|
184
|
+
setPosition?: (position: number) => void;
|
185
|
+
carouselSlotPadding?: string;
|
186
|
+
wrapperMargin?: string;
|
187
|
+
hideIndicators?: boolean;
|
188
|
+
autoScroll?: boolean;
|
189
|
+
nodeRef?: {
|
190
|
+
current?: {
|
191
|
+
next?: () => void;
|
192
|
+
prev?: () => void;
|
193
|
+
position?: number;
|
194
|
+
};
|
195
|
+
} | null;
|
196
|
+
onChange?: () => void;
|
197
|
+
}
|
198
|
+
|
169
199
|
export declare const CascadingSelectInput: React_2.FC<ICascadingSelectInputProps>;
|
170
200
|
|
171
201
|
export declare const Chapter: FC<IChapterProps>;
|
package/dist/index.js
CHANGED
@@ -147,165 +147,166 @@ import { default as ka } from "./features/ui/image/image.js";
|
|
147
147
|
import { default as La } from "./features/ui/animated-arc/animated-arc.js";
|
148
148
|
import { default as Na } from "./features/ui/stickers/stickers.js";
|
149
149
|
import { default as Ha } from "./features/ui/sticker-grid/sticker-grid.js";
|
150
|
-
import {
|
151
|
-
import {
|
152
|
-
import {
|
153
|
-
import {
|
154
|
-
import { default as Wa } from "./features/auth/comps/auth-
|
155
|
-
import { default as za } from "./features/auth/comps/
|
156
|
-
import { default as Ya } from "./features/auth/comps/
|
157
|
-
import { default as Qa } from "./features/auth/comps/
|
158
|
-
import { default as ja } from "./features/auth/comps/
|
159
|
-
import { default as qa } from "./features/auth/
|
160
|
-
import { default as $a } from "./features/auth/signup/
|
161
|
-
import { default as of } from "./features/auth/signup/
|
162
|
-
import { default as tf } from "./features/auth/signup/custom-input-field/
|
163
|
-
import { default as ff } from "./features/auth/signup/custom-input-field/
|
164
|
-
import { default as lf } from "./features/auth/signup/
|
165
|
-
import { default as uf } from "./features/auth/signup/
|
166
|
-
import { default as df } from "./features/auth/
|
167
|
-
import { default as nf } from "./features/auth/
|
168
|
-
import { default as If } from "./features/auth/login/social-
|
169
|
-
import { default as Sf } from "./features/auth/login/
|
170
|
-
import { default as Cf } from "./features/auth/login/
|
171
|
-
import { default as Pf } from "./features/auth/
|
172
|
-
import { default as hf } from "./features/auth/forgot-password/
|
173
|
-
import { default as Rf } from "./features/auth/forgot-password/
|
174
|
-
import {
|
175
|
-
import {
|
176
|
-
import {
|
177
|
-
import { default as gf } from "./features/
|
178
|
-
import { default as vf } from "./features/blockers/multi-tab-blocker/
|
179
|
-
import { default as Bf } from "./features/
|
180
|
-
import { default as wf } from "./features/chapters/
|
181
|
-
import { default as Vf } from "./features/chapters/
|
182
|
-
import { default as Ff } from "./features/chapters/lpar-
|
183
|
-
import { default as Jf } from "./features/chapters/lpar-chapter/
|
184
|
-
import {
|
185
|
-
import {
|
186
|
-
import {
|
187
|
-
import {
|
188
|
-
import {
|
189
|
-
import {
|
190
|
-
import {
|
191
|
-
import {
|
192
|
-
import {
|
193
|
-
import {
|
194
|
-
import {
|
195
|
-
import {
|
196
|
-
import {
|
197
|
-
import {
|
198
|
-
import {
|
199
|
-
import {
|
200
|
-
import {
|
201
|
-
import {
|
202
|
-
import {
|
203
|
-
import {
|
204
|
-
import {
|
205
|
-
import {
|
206
|
-
import {
|
207
|
-
import {
|
208
|
-
import {
|
209
|
-
import {
|
210
|
-
import { default as Qs } from "./features/cue-canvas/
|
211
|
-
import { default as js } from "./features/cue-canvas/
|
212
|
-
import { default as qs } from "./features/cue-canvas/
|
213
|
-
import { default as $s } from "./features/cue-canvas/
|
214
|
-
import { default as ol } from "./features/cue-canvas/
|
215
|
-
import { default as tl } from "./features/
|
216
|
-
import { default as fl } from "./features/communication/hooks/use-
|
217
|
-
import {
|
218
|
-
import {
|
219
|
-
import {
|
220
|
-
import {
|
221
|
-
import {
|
222
|
-
import {
|
223
|
-
import { default as Cl } from "./features/
|
224
|
-
import { default as Pl } from "./features/
|
225
|
-
import {
|
226
|
-
import {
|
227
|
-
import {
|
228
|
-
import {
|
229
|
-
import {
|
230
|
-
import {
|
231
|
-
import {
|
232
|
-
import {
|
233
|
-
import {
|
234
|
-
import {
|
235
|
-
import {
|
236
|
-
import {
|
237
|
-
import { default as Kl } from "./features/
|
238
|
-
import { default as Zl } from "./features/milestone/create/
|
239
|
-
import { default as Xl } from "./features/milestone/create/comps/confirmation-modals/
|
240
|
-
import { default as ep } from "./features/milestone/create/
|
241
|
-
import { default as rp } from "./features/milestone/
|
242
|
-
import { default as ap } from "./features/milestone/
|
243
|
-
import { default as sp } from "./features/milestone/outcome/
|
244
|
-
import { default as pp } from "./features/milestone/outcome/comps/achievement/
|
245
|
-
import { default as mp } from "./features/milestone/
|
246
|
-
import { default as xp } from "./features/milestone/edit/
|
247
|
-
import { default as cp } from "./features/milestone/edit/
|
248
|
-
import { default as Ip } from "./features/milestone/
|
249
|
-
import { default as Sp } from "./features/milestone/milestone-
|
250
|
-
import { default as Cp } from "./features/milestone/
|
251
|
-
import { default as Pp } from "./features/milestone/milestone-
|
252
|
-
import { default as hp } from "./features/milestone/milestone-
|
253
|
-
import {
|
254
|
-
import {
|
255
|
-
import {
|
256
|
-
import {
|
257
|
-
import {
|
258
|
-
import {
|
259
|
-
import { default as zp } from "./features/pointer-sync/
|
260
|
-
import {
|
261
|
-
import {
|
262
|
-
import {
|
263
|
-
import {
|
264
|
-
import {
|
265
|
-
import {
|
266
|
-
import { default as au } from "./features/sheet-tools/
|
267
|
-
import { default as su } from "./features/
|
268
|
-
import { default as pu } from "./features/sheets/
|
269
|
-
import {
|
270
|
-
import {
|
271
|
-
import {
|
272
|
-
import { default as Lu } from "./features/
|
273
|
-
import {
|
274
|
-
import {
|
275
|
-
import {
|
276
|
-
import { default as Bu } from "./features/worksheet/worksheet
|
277
|
-
import { default as wu } from "./features/worksheet/worksheet-preview/
|
278
|
-
import { default as Vu } from "./features/worksheet/worksheet/worksheet-
|
279
|
-
import { default as Fu } from "./features/worksheet/worksheet/worksheet-permissions/
|
280
|
-
import { default as Ju } from "./features/worksheet/
|
281
|
-
import { default as Ku } from "./features/worksheet/learnosity-preloader/
|
282
|
-
import { default as Zu } from "./features/worksheet/
|
283
|
-
import { default as Xu } from "./features/
|
284
|
-
import { default as em } from "./features/puzzles/puzzle-
|
285
|
-
import { default as rm } from "./features/puzzles/
|
286
|
-
import {
|
287
|
-
import {
|
150
|
+
import { default as Ga } from "./features/ui/carousal/carousal.js";
|
151
|
+
import { PLATFORM_EVENTS_STUDENT as ya } from "./features/analytics-events/platform-events-student.js";
|
152
|
+
import { PLATFORM_EVENTS_TEACHER as Ua } from "./features/analytics-events/platform-events-teacher.js";
|
153
|
+
import { WHITELIST_EVENTS as ba } from "./features/analytics-events/whitelist-events.js";
|
154
|
+
import { default as Wa } from "./features/auth/comps/auth-static-panel/auth-static-panel.js";
|
155
|
+
import { default as za } from "./features/auth/comps/auth-page-layout/auth-page-layout.js";
|
156
|
+
import { default as Ya } from "./features/auth/comps/overlay-loader/overlay-loader.js";
|
157
|
+
import { default as Qa } from "./features/auth/comps/tabs/tabs.js";
|
158
|
+
import { default as ja } from "./features/auth/comps/input-status-icon/input-status-icon.js";
|
159
|
+
import { default as qa } from "./features/auth/comps/resend-otp/resend-otp.js";
|
160
|
+
import { default as $a } from "./features/auth/signup/user-type-selector/user-type-selector.js";
|
161
|
+
import { default as of } from "./features/auth/signup/claim-user-account/claim-user-account.js";
|
162
|
+
import { default as tf } from "./features/auth/signup/custom-input-field/grade-input/grade-input.js";
|
163
|
+
import { default as ff } from "./features/auth/signup/custom-input-field/date-picker-input/date-picker-input.js";
|
164
|
+
import { default as lf } from "./features/auth/signup/custom-input-field/custom-input-field.js";
|
165
|
+
import { default as uf } from "./features/auth/signup/circular-step-wrapper/circular-step-wrapper.js";
|
166
|
+
import { default as df } from "./features/auth/signup/signup-methods/signup-methods.js";
|
167
|
+
import { default as nf } from "./features/auth/account-selector/account-selector.js";
|
168
|
+
import { default as If } from "./features/auth/login/social-login-methods/social-login-methods.js";
|
169
|
+
import { default as Sf } from "./features/auth/login/social-account-not-found/social-account-not-found.js";
|
170
|
+
import { default as Cf } from "./features/auth/login/username-password-form/username-password-form.js";
|
171
|
+
import { default as Pf } from "./features/auth/login/identifier-otp-form/identifier-otp-form.js";
|
172
|
+
import { default as hf } from "./features/auth/forgot-password/otp-form/otp-form.js";
|
173
|
+
import { default as Rf } from "./features/auth/forgot-password/reset-password-form/reset-password-form.js";
|
174
|
+
import { default as Mf } from "./features/auth/forgot-password/user-identifier-form/user-identifier-form.js";
|
175
|
+
import { AUTH_TABS as Of } from "./features/auth/login/login-constants.js";
|
176
|
+
import { AuthApiErrorCode as Df } from "./features/auth/auth-constants.js";
|
177
|
+
import { default as gf } from "./features/av/av-preview/av-preview.js";
|
178
|
+
import { default as vf } from "./features/blockers/multi-tab-blocker/use-is-tab-blocked.js";
|
179
|
+
import { default as Bf } from "./features/blockers/multi-tab-blocker/multi-tab-blocker.js";
|
180
|
+
import { default as wf } from "./features/chapters/chapter/chapter.js";
|
181
|
+
import { default as Vf } from "./features/chapters/chapters-list/chapters-list.js";
|
182
|
+
import { default as Ff } from "./features/chapters/lpar-chapter/lpar-chapter.js";
|
183
|
+
import { default as Jf } from "./features/chapters/lpar-milestone-chapter/lpar-milestone-chapter.js";
|
184
|
+
import { default as Kf } from "./features/chapters/lpar-chapter/block-section/sat-sheet-item/sat-sheet-summary/sat-sheet-summary.js";
|
185
|
+
import { checkIfPPTNodeType as Zf } from "./features/chapters/lpar-chapter/utils/index.js";
|
186
|
+
import { default as Xf } from "./features/chapters-v2/chapter-details/chapter-details.js";
|
187
|
+
import { invalidateGetChapterDetails as es } from "./features/chapters-v2/api/chapter.js";
|
188
|
+
import { GAME_LAUNCHER_ASSET_PADDING as rs } from "./features/circle-games/game-launcher/comps/segmented-game-card/constants.js";
|
189
|
+
import { GAME_LAUNCHER_SIZE as as } from "./features/circle-games/game-launcher/comps/card-container/constants.js";
|
190
|
+
import { useCircleSounds as ss } from "./features/circle-games/hooks/use-circle-sounds/use-circle-sounds.js";
|
191
|
+
import { CircleSoundKey as ps } from "./features/circle-games/hooks/use-circle-sounds/use-circle-sounds-enums.js";
|
192
|
+
import { useGetLeaderboardDal as ms } from "./features/circle-games/leaderboard/dal/use-get-leaderboard-dal/use-get-leaderboard-dal.js";
|
193
|
+
import { ELeaderboardType as xs } from "./features/circle-games/leaderboard/enums/leaderboard-type-enum.js";
|
194
|
+
import { StreakReductionLocalStorageUtil as cs } from "./features/circle-games/utils/streak-reduction-localstorage-util.js";
|
195
|
+
import { Tutorial as Is } from "./features/circle-games/games/tutorial/tutorial.js";
|
196
|
+
import { WebView as Ss } from "./features/circle-games/games/web-view/web-view.js";
|
197
|
+
import { ProjectOutcome as Cs } from "./features/circle-games/games/web-view/enums/project-outcomes-enum.js";
|
198
|
+
import { WebViewEvent as Ps } from "./features/circle-games/games/web-view/enums/web-view-events-enum.js";
|
199
|
+
import { ProjectType as hs } from "./features/circle-games/games/web-view/enums/project-type-enum.js";
|
200
|
+
import { PlayerType as Rs } from "./features/circle-games/games/web-view/enums/player-type-enum.js";
|
201
|
+
import { IStatsToAwardErrorCode as Ms } from "./features/circle-games/games/web-view/web-view-types.js";
|
202
|
+
import { CIRCLE_ONBOARDING_ANALYTICS_STEPS as Os } from "./features/circle-games/enum/circle-onboarding-steps.js";
|
203
|
+
import { CIRCLE_ACTION_IDS as Ds } from "./features/circle-games/enum/circle-action-ids.js";
|
204
|
+
import { GameLauncher as gs } from "./features/circle-games/game-launcher/game-launcher.js";
|
205
|
+
import { useGetCircleHomeDetailsDal as vs } from "./features/circle-games/game-launcher/dal/use-get-circle-home-details-dal/use-get-circle-home-details-dal.js";
|
206
|
+
import { Leaderboard as Bs } from "./features/circle-games/leaderboard/leaderboard.js";
|
207
|
+
import { BackgroundImage as ws, CircularSteps as Ws } from "./features/circle-games/sign-up/comp/circular-steps/circular-steps.js";
|
208
|
+
import { SplashScreen as zs } from "./features/circle-games/sign-up/comp/splash-screen/splash-screen.js";
|
209
|
+
import { SignUp as Ys } from "./features/circle-games/sign-up/sign-up.js";
|
210
|
+
import { default as Qs } from "./features/cue-canvas/cue-canvas-provider.js";
|
211
|
+
import { default as js } from "./features/cue-canvas/toolbar/toolbar.js";
|
212
|
+
import { default as qs } from "./features/cue-canvas/cue-canvas.js";
|
213
|
+
import { default as $s } from "./features/cue-canvas/hooks/use-canvas-sync-broker.js";
|
214
|
+
import { default as ol } from "./features/cue-canvas/sidebar/sidebar.js";
|
215
|
+
import { default as tl } from "./features/cue-canvas/bottombar/homework-controls.js";
|
216
|
+
import { default as fl } from "./features/communication/hooks/use-inclass-message-broker/use-inclass-message-broker.js";
|
217
|
+
import { default as ll } from "./features/communication/hooks/use-trial-session-message-broker/use-trial-session-message-broker.js";
|
218
|
+
import { EVENTS as ul } from "./features/communication/pub-sub/constants.js";
|
219
|
+
import { useInClassActionDispatcher as dl, useInClassActionListener as xl } from "./features/communication/pub-sub/hooks.js";
|
220
|
+
import { default as cl } from "./features/trial-session/trial-session.js";
|
221
|
+
import { EClassTimeAlertLevel as Il } from "./features/trial-session/trial-session-types.js";
|
222
|
+
import { useClassTimeAlerts as Sl } from "./features/trial-session/hooks/use-class-time-alerts.js";
|
223
|
+
import { default as Cl } from "./features/talk-meter/talk-meter.js";
|
224
|
+
import { default as Pl } from "./features/extra-practice/extra-practice.js";
|
225
|
+
import { default as hl } from "./features/homework/hw-card-list/hw-card-list.js";
|
226
|
+
import { invalidateHomeworks as Rl } from "./features/homework/hw-card-list/api/get-homeworks.js";
|
227
|
+
import { useAutoPlayPermission as Ml } from "./features/hooks/use-auto-play-permission/use-auto-play-permission.js";
|
228
|
+
import { JOURNEY_ID_STUDENT as Ol } from "./features/journey/journey-id/journey-id-student.js";
|
229
|
+
import { JOURNEY_ID_TEACHER as Dl } from "./features/journey/journey-id/journey-id-teacher.js";
|
230
|
+
import { useJourney as gl } from "./features/journey/use-journey/use-journey.js";
|
231
|
+
import { useGetEligibleJourneysViaRoute as vl } from "./features/journey/hooks/use-get-eligible-journeys-via-route.js";
|
232
|
+
import { JourneyProvider as Bl } from "./features/journey/use-journey/journey-context-provider.js";
|
233
|
+
import { IndicatorType as wl } from "./features/journey/use-journey/constants.js";
|
234
|
+
import { Coachmark as Vl } from "./features/journey/comps/coachmark/coachmark.js";
|
235
|
+
import { useHomePageJourney as Fl } from "./features/journey/hooks/use-home-page-journey/use-home-page-journey.js";
|
236
|
+
import { useChapterPageJourney as Jl } from "./features/journey/hooks/use-chapter-page-journey/use-chapter-journey.js";
|
237
|
+
import { default as Kl } from "./features/maintenance/maintenance.js";
|
238
|
+
import { default as Zl } from "./features/milestone/create/submit-modal/submit-modal.js";
|
239
|
+
import { default as Xl } from "./features/milestone/create/comps/confirmation-modals/goal-creation-confirmation.js";
|
240
|
+
import { default as ep } from "./features/milestone/create/comps/confirmation-modals/chapter-clearance-confirmation.js";
|
241
|
+
import { default as rp } from "./features/milestone/create/milestone-create-container.js";
|
242
|
+
import { default as ap } from "./features/milestone/edit/goal-drafts/goal-draft-edit-container.js";
|
243
|
+
import { default as sp } from "./features/milestone/outcome/milestone-outcome-container.js";
|
244
|
+
import { default as pp } from "./features/milestone/outcome/comps/achievement/reason-submit-modal.js";
|
245
|
+
import { default as mp } from "./features/milestone/outcome/comps/achievement/share-instructions-modal.js";
|
246
|
+
import { default as xp } from "./features/milestone/edit/comps/edit-milestone-modal/index.js";
|
247
|
+
import { default as cp } from "./features/milestone/edit/goal-edit-container.js";
|
248
|
+
import { default as Ip } from "./features/milestone/edit/milestone-edit-container.js";
|
249
|
+
import { default as Sp } from "./features/milestone/milestone-list-container/milestone-list-container.js";
|
250
|
+
import { default as Cp } from "./features/milestone/milestone-action-widget/milestone-action-widget.js";
|
251
|
+
import { default as Pp } from "./features/milestone/start/milestone-start.js";
|
252
|
+
import { default as hp } from "./features/milestone/milestone-tests/tests-creation/tests-creation.js";
|
253
|
+
import { default as Rp } from "./features/milestone/milestone-resources/resources-assign/resources-assign.js";
|
254
|
+
import { ACHIEVEMENT_ACTIONS as Mp, STAGES as Np } from "./features/milestone/outcome/milestone-outcome-constants.js";
|
255
|
+
import { invalidateMilestonesData as Hp, useGetAllMilestonesdata as Dp } from "./features/milestone/milestone-list-container/api/get-milestones.js";
|
256
|
+
import { invalidatePastMilestoneCount as gp, useGetPastMilestoneCount as yp } from "./features/milestone/milestone-list-container/api/get-past-milestone-count.js";
|
257
|
+
import { invalidateTestHelpData as Up, useGetTestHelpData as Bp } from "./features/milestone/milestone-list-container/api/get-tests-list.js";
|
258
|
+
import { invalidateMilestoneResources as wp, useGetMilestoneResources as Wp } from "./features/milestone/milestone-list-container/api/get-milestone-resources.js";
|
259
|
+
import { default as zp } from "./features/pointer-sync/pointer.js";
|
260
|
+
import { default as Yp } from "./features/pointer-sync/hooks/use-pointer-sync.js";
|
261
|
+
import { DigitalMeter as Qp } from "./features/post-game-stats/digital-meter/digital-meter.js";
|
262
|
+
import { EPostGameStat as jp } from "./features/post-game-stats/enums/post-game-stats-enum.js";
|
263
|
+
import { PostGameStats as qp } from "./features/post-game-stats/post-game-stats.js";
|
264
|
+
import { default as $p } from "./features/recent-chapters/recent-chapters.js";
|
265
|
+
import { SENTRY_DENIED_URLS as ou, SENTRY_IGNORED_ERRORS as ru } from "./features/sentry/constants/ignored.js";
|
266
|
+
import { default as au } from "./features/sheet-tools/desmos-calculator/desmos-calculator.js";
|
267
|
+
import { default as su } from "./features/sheet-tools/tool-header/tool-header.js";
|
268
|
+
import { default as pu } from "./features/sheets/sheets-list/sheets-list.js";
|
269
|
+
import { default as mu } from "./features/sheets/reference-sheet/reference-sheet.js";
|
270
|
+
import { WORKSHEET_V3_NODE_TYPES as xu } from "./features/sheets/utils/is-v3-worksheet.js";
|
271
|
+
import { COMPLETED_SHEET_STATE as cu, NODE_LABELS as iu, NODE_SUB_GROUP as Iu, NODE_TYPE as Tu, PYTHON_NODE_TYPES as Su, REWARDS_LIST as Eu, SHEET_ACTIONS as Cu, SHEET_ATTEMPT_LOCATION as Au, SHEET_ATTEMPT_LOCATION_MAP as Pu, SHEET_ATTEMPT_STATE as _u, SHEET_DATA_TYPE as hu, SHEET_STATE as ku } from "./features/sheets/constants/sheet.js";
|
272
|
+
import { default as Lu } from "./features/student-details/student-details.js";
|
273
|
+
import { default as Nu } from "./features/utils/load-script.js";
|
274
|
+
import { ACTION_BAR_HEIGHT as Hu, QUESTIONS_GAP as Du, QUESTION_WIDTH as Gu, TOP_NAVIGATION_HEIGHT as gu } from "./features/worksheet/worksheet/constants.js";
|
275
|
+
import { isOkayTypeQuestion as vu } from "./features/worksheet/worksheet/worksheet-helpers.js";
|
276
|
+
import { default as Bu } from "./features/worksheet/worksheet/worksheet-container.js";
|
277
|
+
import { default as wu } from "./features/worksheet/worksheet-preview/worksheet-preview.js";
|
278
|
+
import { default as Vu } from "./features/worksheet/worksheet-preview/dynamic-worksheet-preview/dynamic-worksheet-preview.js";
|
279
|
+
import { default as Fu } from "./features/worksheet/worksheet/worksheet-permissions/sheet-locked.js";
|
280
|
+
import { default as Ju } from "./features/worksheet/worksheet/worksheet-permissions/error.js";
|
281
|
+
import { default as Ku } from "./features/worksheet/learnosity-preloader/learnosity-preloader.js";
|
282
|
+
import { default as Zu } from "./features/worksheet/learnosity-preloader/use-is-learnosity-loaded.js";
|
283
|
+
import { default as Xu } from "./features/worksheet/worksheet-preview/hooks/use-worksheet-layout.js";
|
284
|
+
import { default as em } from "./features/puzzles/puzzle-container/puzzle-container.js";
|
285
|
+
import { default as rm } from "./features/puzzles/puzzle-feedback-celebration/puzzle-feedback-celebration.js";
|
286
|
+
import { default as am } from "./features/puzzles/app/puzzle-app.js";
|
287
|
+
import { invalidatePuzzleToAssign as sm, useGetPuzzleToAssign as lm } from "./features/puzzles/api/puzzle-assign.js";
|
288
|
+
import { COUNTRY_CODE_MAP as um } from "./constants/country.js";
|
288
289
|
export {
|
289
|
-
|
290
|
-
|
291
|
-
|
290
|
+
Mp as ACHIEVEMENT_ACTIONS,
|
291
|
+
Of as AUTH_TABS,
|
292
|
+
gf as AVPreview,
|
292
293
|
Vr as AccordionSection,
|
293
|
-
|
294
|
-
|
295
|
-
|
294
|
+
nf as AccountSelector,
|
295
|
+
pp as AchievementNotShareReasonModal,
|
296
|
+
mp as AchievementShareInstructionModal,
|
296
297
|
x as AlertIcon,
|
297
298
|
La as AnimatedArc,
|
298
299
|
gt as AppLoader,
|
299
300
|
st as ArcButton,
|
300
301
|
Fr as ArrowTooltip,
|
301
|
-
|
302
|
-
|
303
|
-
|
302
|
+
Df as AuthApiErrorCode,
|
303
|
+
za as AuthPageLayout,
|
304
|
+
Wa as AuthStaticPanel,
|
304
305
|
vr as AutoPlayPermissionProvider,
|
305
306
|
da as Avatar,
|
306
307
|
Sr as Back2Icon,
|
307
308
|
c as BackIcon,
|
308
|
-
|
309
|
+
ws as BackgroundImage,
|
309
310
|
S as Bin2Icon,
|
310
311
|
I as BinIcon,
|
311
312
|
h as Book2Icon,
|
@@ -315,17 +316,18 @@ export {
|
|
315
316
|
O as Bulb2Icon,
|
316
317
|
M as BulbIcon,
|
317
318
|
Xr as Button,
|
318
|
-
|
319
|
-
|
320
|
-
|
321
|
-
|
319
|
+
Ds as CIRCLE_ACTION_IDS,
|
320
|
+
Os as CIRCLE_ONBOARDING_ANALYTICS_STEPS,
|
321
|
+
cu as COMPLETED_SHEET_STATE,
|
322
|
+
um as COUNTRY_CODE_MAP,
|
322
323
|
D as CalendarIcon,
|
323
324
|
Xt as Callout,
|
325
|
+
Ga as Carousel,
|
324
326
|
ht as CascadingSelectInput,
|
325
|
-
|
326
|
-
|
327
|
-
|
328
|
-
|
327
|
+
wf as Chapter,
|
328
|
+
ep as ChapterClearanceConfirmationModal,
|
329
|
+
Xf as ChapterDetails,
|
330
|
+
Vf as ChaptersList,
|
329
331
|
Or as ChatIcon,
|
330
332
|
v as Check2Icon,
|
331
333
|
g as CheckIcon,
|
@@ -334,163 +336,163 @@ export {
|
|
334
336
|
hr as ChevronDownIcon,
|
335
337
|
Pr as ChevronLeftIcon,
|
336
338
|
Cr as ChevronRightIcon,
|
337
|
-
|
339
|
+
ps as CircleSoundKey,
|
338
340
|
vt as CircularLoader,
|
339
|
-
|
340
|
-
|
341
|
-
|
341
|
+
uf as CircularStepWrapper,
|
342
|
+
Ws as CircularSteps,
|
343
|
+
of as ClaimUserAccount,
|
342
344
|
et as Clickable,
|
343
345
|
B as ClipboardIcon,
|
344
346
|
V as Clock2Icon,
|
345
347
|
w as ClockIcon,
|
346
|
-
|
348
|
+
Vl as Coachmark,
|
347
349
|
F as CodeIcon,
|
348
350
|
Jr as ContextMenu,
|
349
351
|
J as CopyIcon,
|
350
352
|
Kr as CountdownTimer,
|
351
353
|
K as CrossIcon,
|
352
|
-
|
353
|
-
|
354
|
-
|
355
|
-
|
356
|
-
|
354
|
+
qs as CueCanvas,
|
355
|
+
js as CueCanvasController,
|
356
|
+
tl as CueCanvasHomeworkController,
|
357
|
+
Qs as CueCanvasProvider,
|
358
|
+
ol as CueCanvasSideBar,
|
357
359
|
Z as CueRocket,
|
358
360
|
Dr as CuemathLogo,
|
359
|
-
|
361
|
+
lf as CustomInputField,
|
360
362
|
X as DashArrowIcon,
|
361
|
-
|
362
|
-
|
363
|
-
|
363
|
+
ff as DatePickerInput,
|
364
|
+
au as DesmosCalculator,
|
365
|
+
Qp as DigitalMeter,
|
364
366
|
ee as DownIcon,
|
365
367
|
re as DraftIcon,
|
366
368
|
ae as DragIcon,
|
367
|
-
|
368
|
-
|
369
|
+
Vu as DynamicPreviewWorksheet,
|
370
|
+
Il as EClassTimeAlertLevel,
|
369
371
|
la as EDeviceType,
|
370
|
-
|
371
|
-
|
372
|
-
|
373
|
-
|
372
|
+
xs as ELeaderboardType,
|
373
|
+
Rp as EPResourceAssign,
|
374
|
+
jp as EPostGameStat,
|
375
|
+
ul as EVENTS,
|
374
376
|
pe as Edit2Icon,
|
375
377
|
se as EditIcon,
|
376
|
-
|
378
|
+
xp as EditMilestoneModal,
|
377
379
|
me as EditStarIcon,
|
378
380
|
xe as EraserIcon,
|
379
381
|
pt as Error,
|
380
382
|
Se as ExclamationIcon,
|
381
|
-
|
382
|
-
|
383
|
+
su as ExpandableHeader,
|
384
|
+
Pl as ExtraPractice,
|
383
385
|
Ie as Eye2Icon,
|
384
386
|
ce as EyeIcon,
|
385
387
|
Dt as FlexView,
|
386
|
-
|
387
|
-
|
388
|
+
rs as GAME_LAUNCHER_ASSET_PADDING,
|
389
|
+
as as GAME_LAUNCHER_SIZE,
|
388
390
|
Rr as GameIcon,
|
389
|
-
|
390
|
-
|
391
|
-
|
392
|
-
|
391
|
+
gs as GameLauncher,
|
392
|
+
Xl as GoalCreationConfirmationModal,
|
393
|
+
ap as GoalDraftEdit,
|
394
|
+
cp as GoalEdit,
|
393
395
|
Ct as GooglePlacesSearchInput,
|
394
|
-
|
396
|
+
tf as GradeInput,
|
395
397
|
r as GradeSelector,
|
396
398
|
Ce as HandIcon,
|
397
399
|
he as HelpIcon,
|
398
400
|
Re as HighlighterIcon,
|
399
401
|
Pe as HintFillIcon,
|
400
402
|
Me as HomeIcon,
|
401
|
-
|
403
|
+
hl as HomeworkCardList,
|
402
404
|
s as ILLUSTRATIONS,
|
403
405
|
p as IMAGES,
|
404
|
-
|
406
|
+
Ms as IStatsToAwardErrorCode,
|
405
407
|
rt as IconButton,
|
406
|
-
|
408
|
+
Pf as IdentifierOtpForm,
|
407
409
|
ka as Image,
|
408
410
|
Oe as ImageIcon,
|
409
|
-
|
411
|
+
wl as IndicatorType,
|
410
412
|
ge as Info2Icon,
|
411
413
|
De as InfoIcon,
|
412
|
-
|
413
|
-
|
414
|
-
|
415
|
-
|
414
|
+
ja as InputStatusIcon,
|
415
|
+
Ol as JOURNEY_ID_STUDENT,
|
416
|
+
Dl as JOURNEY_ID_TEACHER,
|
417
|
+
Bl as JourneyProvider,
|
416
418
|
m as LOTTIE,
|
417
|
-
|
418
|
-
|
419
|
-
|
420
|
-
|
419
|
+
Ff as LPARChapter,
|
420
|
+
Jf as LPARMilestoneChapter,
|
421
|
+
Bs as Leaderboard,
|
422
|
+
Ku as LearnosityPreloader,
|
421
423
|
ve as LeftIcon,
|
422
424
|
we as Lock2Icon,
|
423
425
|
Ve as Lock3Icon,
|
424
426
|
Be as LockIcon,
|
425
|
-
|
426
|
-
|
427
|
-
|
428
|
-
|
429
|
-
|
430
|
-
|
431
|
-
|
427
|
+
Kl as Maintenance,
|
428
|
+
Cp as MilestoneActionWidget,
|
429
|
+
rp as MilestoneCreate,
|
430
|
+
Ip as MilestoneEdit,
|
431
|
+
Sp as MilestoneList,
|
432
|
+
sp as MilestoneOutcome,
|
433
|
+
Pp as MilestoneStart,
|
432
434
|
Je as Minus2Icon,
|
433
435
|
Fe as MinusIcon,
|
434
436
|
Ke as MistakeIcon,
|
435
437
|
Ze as Mobile,
|
436
438
|
Bt as ModalProvider,
|
437
439
|
Xe as MoreVerticalIcon,
|
438
|
-
|
439
|
-
|
440
|
-
|
441
|
-
|
440
|
+
Bf as MultiTabBlocker,
|
441
|
+
iu as NODE_LABELS,
|
442
|
+
Iu as NODE_SUB_GROUP,
|
443
|
+
Tu as NODE_TYPE,
|
442
444
|
gr as Next2Icon,
|
443
445
|
eo as NextIcon,
|
444
446
|
Zr as Nudge,
|
445
447
|
Rt as NumRangeInput,
|
446
|
-
|
447
|
-
|
448
|
-
|
449
|
-
|
450
|
-
|
448
|
+
hf as OTPForm,
|
449
|
+
Ya as OverlayLoader,
|
450
|
+
ya as PLATFORM_EVENTS_STUDENT,
|
451
|
+
Ua as PLATFORM_EVENTS_TEACHER,
|
452
|
+
Su as PYTHON_NODE_TYPES,
|
451
453
|
ro as PencilIcon,
|
452
454
|
Mt as PercentileInput,
|
453
455
|
_a as PerfectHits,
|
454
456
|
po as Play2Icon,
|
455
457
|
so as PlayIcon,
|
456
|
-
|
458
|
+
Rs as PlayerType,
|
457
459
|
no as Plus2Icon,
|
458
460
|
mo as PlusIcon,
|
459
461
|
ao as PointerIcon,
|
460
|
-
|
462
|
+
qp as PostGameStats,
|
461
463
|
io as PracticeIcon,
|
462
|
-
|
464
|
+
wu as PreviewWorksheet,
|
463
465
|
To as ProgressIcon,
|
464
|
-
|
465
|
-
|
466
|
+
Cs as ProjectOutcome,
|
467
|
+
hs as ProjectType,
|
466
468
|
Ao as Puzzle2Icon,
|
467
|
-
|
468
|
-
|
469
|
-
|
469
|
+
am as PuzzleApp,
|
470
|
+
em as PuzzleCard,
|
471
|
+
rm as PuzzleFeedbackCelebration,
|
470
472
|
Eo as PuzzleIcon,
|
471
473
|
_o as QuestionIcon,
|
472
474
|
ko as QuestionLetterIcon,
|
473
|
-
|
475
|
+
Eu as REWARDS_LIST,
|
474
476
|
Ft as RadioCard,
|
475
477
|
ct as RadioInput,
|
476
|
-
|
478
|
+
$p as RecentChapters,
|
477
479
|
Lo as RedoIcon,
|
478
|
-
|
479
|
-
|
480
|
-
|
481
|
-
|
480
|
+
mu as ReferenceSheet,
|
481
|
+
zp as RemotePeerPointer,
|
482
|
+
qa as ResendOTP,
|
483
|
+
Rf as ResetPasswordForm,
|
482
484
|
No as RightIcon,
|
483
485
|
Ho as RulerIcon,
|
484
|
-
|
485
|
-
|
486
|
-
|
487
|
-
|
488
|
-
|
489
|
-
|
490
|
-
|
491
|
-
|
492
|
-
|
493
|
-
|
486
|
+
Kf as SATSheetSummary,
|
487
|
+
ou as SENTRY_DENIED_URLS,
|
488
|
+
ru as SENTRY_IGNORED_ERRORS,
|
489
|
+
Cu as SHEET_ACTIONS,
|
490
|
+
Au as SHEET_ATTEMPT_LOCATION,
|
491
|
+
Pu as SHEET_ATTEMPT_LOCATION_MAP,
|
492
|
+
_u as SHEET_ATTEMPT_STATE,
|
493
|
+
hu as SHEET_DATA_TYPE,
|
494
|
+
ku as SHEET_STATE,
|
495
|
+
Np as STAGES,
|
494
496
|
ir as ScribbleIcon,
|
495
497
|
Go as SearchIcon,
|
496
498
|
St as SearchableSelectInput,
|
@@ -498,19 +500,19 @@ export {
|
|
498
500
|
It as SelectInput,
|
499
501
|
Ot as SelectionCards,
|
500
502
|
Ea as Separator,
|
501
|
-
|
503
|
+
Ju as SheetError,
|
502
504
|
yo as SheetIcon,
|
503
|
-
|
504
|
-
|
505
|
-
|
506
|
-
|
505
|
+
pu as SheetList,
|
506
|
+
Fu as SheetLocked,
|
507
|
+
Ys as SignUp,
|
508
|
+
df as SignupMethods,
|
507
509
|
Ir as SketchIcon,
|
508
510
|
zo as Skip2Icon,
|
509
511
|
bo as SkipColoredIcon,
|
510
512
|
Wo as SkipIcon,
|
511
|
-
|
512
|
-
|
513
|
-
|
513
|
+
Sf as SocialAccountNotFound,
|
514
|
+
If as SocialLoginMethods,
|
515
|
+
zs as SplashScreen,
|
514
516
|
Yo as Star2Icon,
|
515
517
|
Uo as StarIcon,
|
516
518
|
Qo as StatusIcon,
|
@@ -518,24 +520,24 @@ export {
|
|
518
520
|
Na as Stickers,
|
519
521
|
Ha as StickersSelector,
|
520
522
|
Ta as StreakIcon,
|
521
|
-
|
523
|
+
cs as StreakReductionLocalStorageUtil,
|
522
524
|
jo as StrikedEyeIcon,
|
523
|
-
|
524
|
-
|
525
|
+
Lu as StudentDetails,
|
526
|
+
Zl as SubmitMilestoneModal,
|
525
527
|
qo as SwitchIcon,
|
526
528
|
ia as TabComponent,
|
527
|
-
|
529
|
+
Qa as Tabs,
|
528
530
|
Zt as Tag,
|
529
|
-
|
530
|
-
|
531
|
+
Cl as TalkMeter,
|
532
|
+
hp as TestsCreation,
|
531
533
|
Kt as Text,
|
532
534
|
at as TextButton,
|
533
535
|
Pt as TextInput,
|
534
536
|
$o as TickIcon,
|
535
537
|
na as TimeLeftTimeline,
|
536
|
-
|
538
|
+
cl as TrialSession,
|
537
539
|
or as TrophyIcon,
|
538
|
-
|
540
|
+
Is as Tutorial,
|
539
541
|
Mr as TutoringIcon,
|
540
542
|
ea as UIContext,
|
541
543
|
tr as UndoIcon,
|
@@ -544,59 +546,59 @@ export {
|
|
544
546
|
ur as UpIcon,
|
545
547
|
nr as User2Icon,
|
546
548
|
dr as UserIcon,
|
547
|
-
|
548
|
-
|
549
|
-
|
549
|
+
Mf as UserIdentifierForm,
|
550
|
+
$a as UserTypeSelector,
|
551
|
+
Cf as UsernamePasswordForm,
|
550
552
|
Aa as Video,
|
551
|
-
|
552
|
-
|
553
|
-
|
554
|
-
|
555
|
-
|
556
|
-
|
557
|
-
|
558
|
-
|
559
|
-
|
560
|
-
|
553
|
+
ba as WHITELIST_EVENTS,
|
554
|
+
Hu as WORKSHEET_ACTION_BAR_HEIGHT,
|
555
|
+
Du as WORKSHEET_QUESTIONS_GAP,
|
556
|
+
Gu as WORKSHEET_QUESTION_WIDTH,
|
557
|
+
gu as WORKSHEET_TOP_NAVIGATION_HEIGHT,
|
558
|
+
xu as WORKSHEET_V3_NODE_TYPES,
|
559
|
+
Ss as WebView,
|
560
|
+
Ps as WebViewEvent,
|
561
|
+
Bu as Worksheet,
|
562
|
+
Zf as checkIfPPTNodeType,
|
561
563
|
ua as getTheme,
|
562
|
-
|
563
|
-
|
564
|
-
|
565
|
-
|
566
|
-
|
567
|
-
|
568
|
-
|
569
|
-
|
570
|
-
|
571
|
-
|
572
|
-
|
573
|
-
|
574
|
-
|
575
|
-
|
564
|
+
es as invalidateGetChapterDetails,
|
565
|
+
Rl as invalidateHomeworks,
|
566
|
+
wp as invalidateMilestoneResources,
|
567
|
+
Hp as invalidateMilestonesData,
|
568
|
+
gp as invalidatePastMilestoneCount,
|
569
|
+
sm as invalidatePuzzleToAssign,
|
570
|
+
Up as invalidateTestHelpData,
|
571
|
+
vu as isOkayTypeQuestion,
|
572
|
+
Nu as loadScript,
|
573
|
+
Ml as useAutoPlayPermission,
|
574
|
+
$s as useCanvasSyncBroker,
|
575
|
+
Jl as useChapterPageJourney,
|
576
|
+
ss as useCircleSounds,
|
577
|
+
Sl as useClassTimeAlerts,
|
576
578
|
fa as useContextMenuClickHandler,
|
577
579
|
wr as useForceReload,
|
578
|
-
|
579
|
-
|
580
|
-
|
581
|
-
|
582
|
-
|
583
|
-
|
584
|
-
|
585
|
-
|
586
|
-
|
587
|
-
|
588
|
-
|
589
|
-
|
590
|
-
|
591
|
-
|
592
|
-
|
580
|
+
Dp as useGetAllMilestonesdata,
|
581
|
+
vs as useGetCircleHomeDetailsDal,
|
582
|
+
vl as useGetEligibleJourneysViaRoute,
|
583
|
+
ms as useGetLeaderboardDal,
|
584
|
+
Wp as useGetMilestoneResources,
|
585
|
+
yp as useGetPastMilestoneCount,
|
586
|
+
lm as useGetPuzzleToAssign,
|
587
|
+
Bp as useGetTestHelpData,
|
588
|
+
Fl as useHomePageJourney,
|
589
|
+
dl as useInClassActionDispatcher,
|
590
|
+
xl as useInClassActionListener,
|
591
|
+
fl as useInClassMessageBroker,
|
592
|
+
Zu as useIsLearnosityLoaded,
|
593
|
+
vf as useIsTabBlocked,
|
594
|
+
gl as useJourney,
|
593
595
|
wt as useModalActions,
|
594
596
|
Vt as useModalParams,
|
595
|
-
|
597
|
+
Yp as usePointerSync,
|
596
598
|
ta as useTrackingContext,
|
597
|
-
|
599
|
+
ll as useTrialSessionMessageBroker,
|
598
600
|
oa as useUIContext,
|
599
|
-
|
601
|
+
Xu as useWorksheetLayout,
|
600
602
|
Br as useZoomDisable
|
601
603
|
};
|
602
604
|
//# 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":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|