@cuemath/leap 3.5.33-as1 → 3.5.34-as2
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/chapters/chapters-list/chapter-item/chapter-circular-progress/chapter-circular-progress.js +4 -4
- package/dist/features/chapters/chapters-list/chapter-item/chapter-circular-progress/chapter-circular-progress.js.map +1 -1
- package/dist/features/timeline/comps/new-progress-intro-modal/new-progress-intro-modal.js +11 -11
- package/dist/features/timeline/comps/new-progress-intro-modal/new-progress-intro-modal.js.map +1 -1
- package/dist/features/timeline/monthly-timeline/constants.js +11 -11
- package/dist/features/timeline/monthly-timeline/constants.js.map +1 -1
- package/package.json +1 -1
|
@@ -24,8 +24,8 @@ const p = 360 / 100, j = m(
|
|
|
24
24
|
$justifyContent: "center",
|
|
25
25
|
$alignItems: "center",
|
|
26
26
|
children: [
|
|
27
|
-
/* @__PURE__ */
|
|
28
|
-
/* @__PURE__ */ e(
|
|
27
|
+
/* @__PURE__ */ e($, { children: /* @__PURE__ */ h(A, { width: `${r}px`, height: `${r}px`, children: [
|
|
28
|
+
/* @__PURE__ */ e(
|
|
29
29
|
I,
|
|
30
30
|
{
|
|
31
31
|
$progress: 0,
|
|
@@ -33,7 +33,7 @@ const p = 360 / 100, j = m(
|
|
|
33
33
|
cx: r / 2,
|
|
34
34
|
cy: r / 2
|
|
35
35
|
}
|
|
36
|
-
)
|
|
36
|
+
),
|
|
37
37
|
/* @__PURE__ */ e(
|
|
38
38
|
c,
|
|
39
39
|
{
|
|
@@ -59,7 +59,7 @@ const p = 360 / 100, j = m(
|
|
|
59
59
|
mode: "fade"
|
|
60
60
|
}
|
|
61
61
|
)
|
|
62
|
-
] }),
|
|
62
|
+
] }) }),
|
|
63
63
|
/* @__PURE__ */ e(u, { src: C, alt: "Chapter Image", $imageWidth: r }),
|
|
64
64
|
d && /* @__PURE__ */ e(
|
|
65
65
|
x,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"chapter-circular-progress.js","sources":["../../../../../../src/features/chapters/chapters-list/chapter-item/chapter-circular-progress/chapter-circular-progress.tsx"],"sourcesContent":["import { memo, type FC } from 'react';\n\nimport * as Styled from './chapter-circular-progress.styled';\nimport { type IChapterCircularProgressProps } from './chapter-circular-progress.types';\nimport Check2Icon from '../../../../../assets/line-icons/icons/check2';\nimport AnimatedArc from '../../../../ui/animated-arc/animated-arc';\n\nconst CIRCLE_DEGREES = 360 / 100;\n\nconst ChapterCircularProgress: FC<IChapterCircularProgressProps> = memo(\n function ChapterCircularProgress({\n completionPercentage,\n imageUrl,\n delta,\n imageWidth = 96,\n iconWidth = 20,\n iconColor = 'BLACK_1',\n iconPosition = { top: 5, right: 5 },\n iconBackgroundColor = 'WHITE_1',\n deltaProgressColor = 'GREEN_5',\n }) {\n const showAdditionalProgress = delta && delta > 0 && deltaProgressColor;\n const isChapterComplete = completionPercentage + (delta ?? 0) === 100;\n\n return (\n <Styled.ChapterImageWrapper\n $width=\"fit-content\"\n $position=\"relative\"\n $justifyContent=\"center\"\n $alignItems=\"center\"\n >\n <Styled.ChapterProgressWrapper>\n <Styled.ChapterProgressSVG width={`${imageWidth}px`} height={`${imageWidth}px`}>\n <Styled.ChapterProgressSVGCircle\n $progress={0}\n r={imageWidth / 2 - 1}\n cx={imageWidth / 2}\n cy={imageWidth / 2}\n />\n
|
|
1
|
+
{"version":3,"file":"chapter-circular-progress.js","sources":["../../../../../../src/features/chapters/chapters-list/chapter-item/chapter-circular-progress/chapter-circular-progress.tsx"],"sourcesContent":["import { memo, type FC } from 'react';\n\nimport * as Styled from './chapter-circular-progress.styled';\nimport { type IChapterCircularProgressProps } from './chapter-circular-progress.types';\nimport Check2Icon from '../../../../../assets/line-icons/icons/check2';\nimport AnimatedArc from '../../../../ui/animated-arc/animated-arc';\n\nconst CIRCLE_DEGREES = 360 / 100;\n\nconst ChapterCircularProgress: FC<IChapterCircularProgressProps> = memo(\n function ChapterCircularProgress({\n completionPercentage,\n imageUrl,\n delta,\n imageWidth = 96,\n iconWidth = 20,\n iconColor = 'BLACK_1',\n iconPosition = { top: 5, right: 5 },\n iconBackgroundColor = 'WHITE_1',\n deltaProgressColor = 'GREEN_5',\n }) {\n const showAdditionalProgress = delta && delta > 0 && deltaProgressColor;\n const isChapterComplete = completionPercentage + (delta ?? 0) === 100;\n\n return (\n <Styled.ChapterImageWrapper\n $width=\"fit-content\"\n $position=\"relative\"\n $justifyContent=\"center\"\n $alignItems=\"center\"\n >\n <Styled.ChapterProgressWrapper>\n <Styled.ChapterProgressSVG width={`${imageWidth}px`} height={`${imageWidth}px`}>\n <Styled.ChapterProgressSVGCircle\n $progress={0}\n r={imageWidth / 2 - 1}\n cx={imageWidth / 2}\n cy={imageWidth / 2}\n />\n <AnimatedArc\n startAngle={0}\n targetAngle={(completionPercentage - 0.00001) * CIRCLE_DEGREES} // added .00001 to avoid full circle bug\n strokeWidth={2}\n radius={imageWidth / 2}\n zIndex={2}\n color=\"BLACK_1\"\n mode=\"fade\"\n />\n {!!showAdditionalProgress && (\n <AnimatedArc\n startAngle={completionPercentage * CIRCLE_DEGREES}\n targetAngle={delta * CIRCLE_DEGREES}\n strokeWidth={2}\n color={deltaProgressColor}\n radius={imageWidth / 2}\n showAnimatedRainbowArc={false}\n zIndex={2}\n mode=\"fade\"\n />\n )}\n </Styled.ChapterProgressSVG>\n </Styled.ChapterProgressWrapper>\n <Styled.ChapterImage src={imageUrl} alt=\"Chapter Image\" $imageWidth={imageWidth} />\n {isChapterComplete && (\n <Styled.StyledCheckIconWrapper\n $top={iconPosition.top}\n $right={iconPosition.right}\n $width={iconWidth}\n $background={iconBackgroundColor}\n >\n <Check2Icon width={iconWidth} height={iconWidth} color={iconColor} />\n </Styled.StyledCheckIconWrapper>\n )}\n </Styled.ChapterImageWrapper>\n );\n },\n);\n\nexport default ChapterCircularProgress;\n"],"names":["CIRCLE_DEGREES","ChapterCircularProgress","memo","completionPercentage","imageUrl","delta","imageWidth","iconWidth","iconColor","iconPosition","iconBackgroundColor","deltaProgressColor","showAdditionalProgress","isChapterComplete","jsxs","Styled.ChapterImageWrapper","jsx","Styled.ChapterProgressWrapper","Styled.ChapterProgressSVG","Styled.ChapterProgressSVGCircle","AnimatedArc","Styled.ChapterImage","Styled.StyledCheckIconWrapper","Check2Icon"],"mappings":";;;;;AAOA,MAAMA,IAAiB,MAAM,KAEvBC,IAA6DC;AAAA,EACjE,SAAiC;AAAA,IAC/B,sBAAAC;AAAA,IACA,UAAAC;AAAA,IACA,OAAAC;AAAA,IACA,YAAAC,IAAa;AAAA,IACb,WAAAC,IAAY;AAAA,IACZ,WAAAC,IAAY;AAAA,IACZ,cAAAC,IAAe,EAAE,KAAK,GAAG,OAAO,EAAE;AAAA,IAClC,qBAAAC,IAAsB;AAAA,IACtB,oBAAAC,IAAqB;AAAA,EAAA,GACpB;AACK,UAAAC,IAAyBP,KAASA,IAAQ,KAAKM,GAC/CE,IAAoBV,KAAwBE,KAAS,OAAO;AAGhE,WAAA,gBAAAS;AAAA,MAACC;AAAAA,MAAA;AAAA,QACC,QAAO;AAAA,QACP,WAAU;AAAA,QACV,iBAAgB;AAAA,QAChB,aAAY;AAAA,QAEZ,UAAA;AAAA,UAAA,gBAAAC,EAACC,GAAA,EACC,UAAA,gBAAAH,EAACI,GAAA,EAA0B,OAAO,GAAGZ,CAAU,MAAM,QAAQ,GAAGA,CAAU,MACxE,UAAA;AAAA,YAAA,gBAAAU;AAAA,cAACG;AAAAA,cAAA;AAAA,gBACC,WAAW;AAAA,gBACX,GAAGb,IAAa,IAAI;AAAA,gBACpB,IAAIA,IAAa;AAAA,gBACjB,IAAIA,IAAa;AAAA,cAAA;AAAA,YACnB;AAAA,YACA,gBAAAU;AAAA,cAACI;AAAA,cAAA;AAAA,gBACC,YAAY;AAAA,gBACZ,cAAcjB,IAAuB,QAAWH;AAAA,gBAChD,aAAa;AAAA,gBACb,QAAQM,IAAa;AAAA,gBACrB,QAAQ;AAAA,gBACR,OAAM;AAAA,gBACN,MAAK;AAAA,cAAA;AAAA,YACP;AAAA,YACC,CAAC,CAACM,KACD,gBAAAI;AAAA,cAACI;AAAA,cAAA;AAAA,gBACC,YAAYjB,IAAuBH;AAAA,gBACnC,aAAaK,IAAQL;AAAA,gBACrB,aAAa;AAAA,gBACb,OAAOW;AAAA,gBACP,QAAQL,IAAa;AAAA,gBACrB,wBAAwB;AAAA,gBACxB,QAAQ;AAAA,gBACR,MAAK;AAAA,cAAA;AAAA,YACP;AAAA,UAAA,EAAA,CAEJ,EACF,CAAA;AAAA,UACA,gBAAAU,EAACK,GAAA,EAAoB,KAAKjB,GAAU,KAAI,iBAAgB,aAAaE,GAAY;AAAA,UAChFO,KACC,gBAAAG;AAAA,YAACM;AAAAA,YAAA;AAAA,cACC,MAAMb,EAAa;AAAA,cACnB,QAAQA,EAAa;AAAA,cACrB,QAAQF;AAAA,cACR,aAAaG;AAAA,cAEb,4BAACa,GAAW,EAAA,OAAOhB,GAAW,QAAQA,GAAW,OAAOC,GAAW;AAAA,YAAA;AAAA,UACrE;AAAA,QAAA;AAAA,MAAA;AAAA,IAAA;AAAA,EAIR;AACF;"}
|
|
@@ -2,34 +2,34 @@ import { jsxs as t, jsx as e } from "react/jsx-runtime";
|
|
|
2
2
|
import { memo as d } from "react";
|
|
3
3
|
import r from "../../../ui/layout/flex-view.js";
|
|
4
4
|
import n from "../../../ui/separator/separator.js";
|
|
5
|
-
import
|
|
5
|
+
import s from "../../../ui/image/image.js";
|
|
6
6
|
import { ILLUSTRATIONS as a } from "../../../../assets/illustrations/illustrations.js";
|
|
7
|
-
import
|
|
7
|
+
import o from "../../../ui/text/text.js";
|
|
8
8
|
import { PROGRESS_INFO as h } from "./new-progress-intro-modal-constants.js";
|
|
9
9
|
import g from "../../../ui/buttons/button/button.js";
|
|
10
|
-
const m = ({ onClose:
|
|
10
|
+
const m = ({ onClose: l }) => /* @__PURE__ */ t(r, { children: [
|
|
11
11
|
/* @__PURE__ */ t(r, { $background: "PURPLE_4", $alignItems: "center", $justifyContent: "center", children: [
|
|
12
12
|
/* @__PURE__ */ e(n, { heightX: 1.5 }),
|
|
13
|
-
/* @__PURE__ */ e(r, { $gutterX: 1.5, $alignItems: "center", $justifyContent: "center", $gap: 50, children: /* @__PURE__ */ e(
|
|
13
|
+
/* @__PURE__ */ e(r, { $gutterX: 1.5, $alignItems: "center", $justifyContent: "center", $gap: 50, children: /* @__PURE__ */ e(s, { src: a.PROGRESS_BAR_PURPLE }) })
|
|
14
14
|
] }),
|
|
15
15
|
/* @__PURE__ */ t(r, { $gutterX: 2, $gapX: 1.5, children: [
|
|
16
16
|
/* @__PURE__ */ t(r, { children: [
|
|
17
|
-
/* @__PURE__ */ e(
|
|
17
|
+
/* @__PURE__ */ e(o, { $renderAs: "ab1-bold", children: "Introducing: Enhanced Progress Tracking" }),
|
|
18
18
|
/* @__PURE__ */ e(n, { height: 4 }),
|
|
19
|
-
/* @__PURE__ */ e(
|
|
19
|
+
/* @__PURE__ */ e(o, { $renderAs: "ub1", children: "View your student's complete learning journey all in one place. Here’s what’s new:" })
|
|
20
20
|
] }),
|
|
21
21
|
/* @__PURE__ */ e(n, { heightX: 1.5 }),
|
|
22
|
-
h.map((
|
|
22
|
+
h.map((i, c) => /* @__PURE__ */ t(
|
|
23
23
|
r,
|
|
24
24
|
{
|
|
25
25
|
$flexDirection: "row",
|
|
26
26
|
$alignItems: "flex-start",
|
|
27
27
|
$flexGapX: 0.5,
|
|
28
28
|
children: [
|
|
29
|
-
/* @__PURE__ */ e(r, { children: /* @__PURE__ */ e(
|
|
29
|
+
/* @__PURE__ */ e(r, { children: /* @__PURE__ */ e(s, { src: i.icon, width: 32, height: 32 }) }),
|
|
30
30
|
/* @__PURE__ */ t(r, { $gutter: 4, $flex: 1, children: [
|
|
31
|
-
/* @__PURE__ */ e(
|
|
32
|
-
/* @__PURE__ */ e(
|
|
31
|
+
/* @__PURE__ */ e(o, { $renderAs: "ub1-bold", children: i.title }),
|
|
32
|
+
/* @__PURE__ */ e(o, { $renderAs: "ub1", children: i.description }),
|
|
33
33
|
/* @__PURE__ */ e(n, { heightX: 1.5 })
|
|
34
34
|
] })
|
|
35
35
|
]
|
|
@@ -43,7 +43,7 @@ const m = ({ onClose: s }) => /* @__PURE__ */ t(r, { children: [
|
|
|
43
43
|
label: "View progress",
|
|
44
44
|
renderAs: "black",
|
|
45
45
|
shape: "square",
|
|
46
|
-
onClick:
|
|
46
|
+
onClick: l
|
|
47
47
|
}
|
|
48
48
|
) })
|
|
49
49
|
] })
|
package/dist/features/timeline/comps/new-progress-intro-modal/new-progress-intro-modal.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"new-progress-intro-modal.js","sources":["../../../../../src/features/timeline/comps/new-progress-intro-modal/new-progress-intro-modal.tsx"],"sourcesContent":["import { memo } from 'react';\n\nimport FlexView from '../../../ui/layout/flex-view';\nimport Separator from '../../../ui/separator/separator';\nimport Image from '../../../ui/image/image';\nimport { ILLUSTRATIONS } from '../../../../assets/illustrations/illustrations';\nimport Text from '../../../ui/text/text';\nimport { PROGRESS_INFO } from './new-progress-intro-modal-constants';\nimport Button from '../../../ui/buttons/button/button';\n\nconst NewProgressIntroModal = ({ onClose }: { onClose: () => void }) => {\n return (\n <FlexView>\n <FlexView $background=\"PURPLE_4\" $alignItems=\"center\" $justifyContent=\"center\">\n <Separator heightX={1.5} />\n <FlexView $gutterX={1.5} $alignItems=\"center\" $justifyContent=\"center\" $gap={50}>\n <Image src={ILLUSTRATIONS.PROGRESS_BAR_PURPLE} />\n </FlexView>\n </FlexView>\n <FlexView $gutterX={2} $gapX={1.5}>\n <FlexView>\n <Text $renderAs=\"ab1-bold\">Introducing: Enhanced Progress Tracking</Text>\n <Separator height={4} />\n <Text $renderAs=\"ub1\">\n View your
|
|
1
|
+
{"version":3,"file":"new-progress-intro-modal.js","sources":["../../../../../src/features/timeline/comps/new-progress-intro-modal/new-progress-intro-modal.tsx"],"sourcesContent":["import { memo } from 'react';\n\nimport FlexView from '../../../ui/layout/flex-view';\nimport Separator from '../../../ui/separator/separator';\nimport Image from '../../../ui/image/image';\nimport { ILLUSTRATIONS } from '../../../../assets/illustrations/illustrations';\nimport Text from '../../../ui/text/text';\nimport { PROGRESS_INFO } from './new-progress-intro-modal-constants';\nimport Button from '../../../ui/buttons/button/button';\n\nconst NewProgressIntroModal = ({ onClose }: { onClose: () => void }) => {\n return (\n <FlexView>\n <FlexView $background=\"PURPLE_4\" $alignItems=\"center\" $justifyContent=\"center\">\n <Separator heightX={1.5} />\n <FlexView $gutterX={1.5} $alignItems=\"center\" $justifyContent=\"center\" $gap={50}>\n <Image src={ILLUSTRATIONS.PROGRESS_BAR_PURPLE} />\n </FlexView>\n </FlexView>\n <FlexView $gutterX={2} $gapX={1.5}>\n <FlexView>\n <Text $renderAs=\"ab1-bold\">Introducing: Enhanced Progress Tracking</Text>\n <Separator height={4} />\n <Text $renderAs=\"ub1\">\n View your student's complete learning journey all in one place. Here’s what’s new:\n </Text>\n </FlexView>\n <Separator heightX={1.5} />\n {PROGRESS_INFO.map((item, index) => (\n <FlexView\n key={`progress-info-${index}`}\n $flexDirection=\"row\"\n $alignItems=\"flex-start\"\n $flexGapX={0.5}\n >\n <FlexView>\n <Image src={item.icon} width={32} height={32} />\n </FlexView>\n <FlexView $gutter={4} $flex={1}>\n <Text $renderAs=\"ub1-bold\">{item.title}</Text>\n <Text $renderAs=\"ub1\">{item.description}</Text>\n <Separator heightX={1.5} />\n </FlexView>\n </FlexView>\n ))}\n <FlexView $alignItems=\"center\" $justifyContent=\"center\" $gapX={0.5}>\n <Button\n width={240}\n label=\"View progress\"\n renderAs=\"black\"\n shape=\"square\"\n onClick={onClose}\n />\n </FlexView>\n </FlexView>\n </FlexView>\n );\n};\n\nexport default memo(NewProgressIntroModal);\n"],"names":["NewProgressIntroModal","onClose","FlexView","jsxs","jsx","Separator","Image","ILLUSTRATIONS","Text","PROGRESS_INFO","item","index","Button","newProgressIntroModal","memo"],"mappings":";;;;;;;;;AAUA,MAAMA,IAAwB,CAAC,EAAE,SAAAC,0BAE5BC,GACC,EAAA,UAAA;AAAA,EAAA,gBAAAC,EAACD,KAAS,aAAY,YAAW,aAAY,UAAS,iBAAgB,UACpE,UAAA;AAAA,IAAC,gBAAAE,EAAAC,GAAA,EAAU,SAAS,IAAK,CAAA;AAAA,IACxB,gBAAAD,EAAAF,GAAA,EAAS,UAAU,KAAK,aAAY,UAAS,iBAAgB,UAAS,MAAM,IAC3E,UAAC,gBAAAE,EAAAE,GAAA,EAAM,KAAKC,EAAc,oBAAqB,CAAA,GACjD;AAAA,EAAA,GACF;AAAA,EACC,gBAAAJ,EAAAD,GAAA,EAAS,UAAU,GAAG,OAAO,KAC5B,UAAA;AAAA,IAAA,gBAAAC,EAACD,GACC,EAAA,UAAA;AAAA,MAAC,gBAAAE,EAAAI,GAAA,EAAK,WAAU,YAAW,UAAuC,2CAAA;AAAA,MAClE,gBAAAJ,EAACC,GAAU,EAAA,QAAQ,EAAG,CAAA;AAAA,MACrB,gBAAAD,EAAAI,GAAA,EAAK,WAAU,OAAM,UAEtB,sFAAA;AAAA,IAAA,GACF;AAAA,IACA,gBAAAJ,EAACC,GAAU,EAAA,SAAS,IAAK,CAAA;AAAA,IACxBI,EAAc,IAAI,CAACC,GAAMC,MACxB,gBAAAR;AAAA,MAACD;AAAA,MAAA;AAAA,QAEC,gBAAe;AAAA,QACf,aAAY;AAAA,QACZ,WAAW;AAAA,QAEX,UAAA;AAAA,UAAC,gBAAAE,EAAAF,GAAA,EACC,UAAC,gBAAAE,EAAAE,GAAA,EAAM,KAAKI,EAAK,MAAM,OAAO,IAAI,QAAQ,GAAA,CAAI,EAChD,CAAA;AAAA,UACC,gBAAAP,EAAAD,GAAA,EAAS,SAAS,GAAG,OAAO,GAC3B,UAAA;AAAA,YAAA,gBAAAE,EAACI,GAAK,EAAA,WAAU,YAAY,UAAAE,EAAK,OAAM;AAAA,YACtC,gBAAAN,EAAAI,GAAA,EAAK,WAAU,OAAO,YAAK,aAAY;AAAA,YACxC,gBAAAJ,EAACC,GAAU,EAAA,SAAS,IAAK,CAAA;AAAA,UAAA,GAC3B;AAAA,QAAA;AAAA,MAAA;AAAA,MAZK,iBAAiBM,CAAK;AAAA,IAAA,CAc9B;AAAA,sBACAT,GAAS,EAAA,aAAY,UAAS,iBAAgB,UAAS,OAAO,KAC7D,UAAA,gBAAAE;AAAA,MAACQ;AAAA,MAAA;AAAA,QACC,OAAO;AAAA,QACP,OAAM;AAAA,QACN,UAAS;AAAA,QACT,OAAM;AAAA,QACN,SAASX;AAAA,MAAA;AAAA,IAAA,GAEb;AAAA,EAAA,GACF;AACF,EAAA,CAAA,GAIWY,IAAAC,EAAKd,CAAqB;"}
|
|
@@ -21,19 +21,19 @@ const _ = [
|
|
|
21
21
|
2026: e[2026],
|
|
22
22
|
2027: e[2027],
|
|
23
23
|
2028: e[2028]
|
|
24
|
-
},
|
|
25
|
-
PTM: { label: "PTM Report", icon: e.PTM_REPORT_ICON },
|
|
26
|
-
MPR_V1: { label: "View
|
|
27
|
-
MPR_V2_math: { label: "MathFit Report", icon: e.MATH_FIT_GREY },
|
|
28
|
-
MPR_V2_elp: { label: "ELP Report", icon: e.ELP_ICON },
|
|
29
|
-
MPR_V2_ela: { label: "ELA Report", icon: e.ELP_ICON },
|
|
30
|
-
MPR_V2_english: { label: "English Report", icon: e.ENGLISH_ICON },
|
|
31
|
-
MPR_V2_science: { label: "Science Report", icon: e.SCIENCE_REPORT_ICON },
|
|
32
|
-
MPR_V2_sat: { label: "SAT Report", icon: e.SAT_REPORT_ICON },
|
|
33
|
-
MPR_V2_coding: { label: "Coding Report", icon: e.CODING_REPORT_ICON }
|
|
24
|
+
}, i = {
|
|
25
|
+
PTM: { label: "View PTM Report", icon: e.PTM_REPORT_ICON },
|
|
26
|
+
MPR_V1: { label: "View Monthly Report", icon: e.FULL_REPORT },
|
|
27
|
+
MPR_V2_math: { label: "View MathFit Report", icon: e.MATH_FIT_GREY },
|
|
28
|
+
MPR_V2_elp: { label: "View ELP Report", icon: e.ELP_ICON },
|
|
29
|
+
MPR_V2_ela: { label: "View ELA Report", icon: e.ELP_ICON },
|
|
30
|
+
MPR_V2_english: { label: "View English Report", icon: e.ENGLISH_ICON },
|
|
31
|
+
MPR_V2_science: { label: "View Science Report", icon: e.SCIENCE_REPORT_ICON },
|
|
32
|
+
MPR_V2_sat: { label: "View SAT Report", icon: e.SAT_REPORT_ICON },
|
|
33
|
+
MPR_V2_coding: { label: "View Coding Report", icon: e.CODING_REPORT_ICON }
|
|
34
34
|
};
|
|
35
35
|
export {
|
|
36
|
-
|
|
36
|
+
i as REPORT_CONFIG,
|
|
37
37
|
_ as monthNames,
|
|
38
38
|
o as yearImages
|
|
39
39
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"constants.js","sources":["../../../../src/features/timeline/monthly-timeline/constants.ts"],"sourcesContent":["import { ILLUSTRATIONS } from '../../../assets/illustrations/illustrations';\n\nexport enum REPORT_CONFIG_TYPE {\n PTM = 'PTM',\n MPR_V1 = 'MPR_V1',\n MPR_V2_math = 'MPR_V2_math',\n MPR_V2_elp = 'MPR_V2_elp',\n MPR_V2_ela = 'MPR_V2_ela',\n MPR_V2_english = 'MPR_V2_english',\n MPR_V2_science = 'MPR_V2_science',\n MPR_V2_sat = 'MPR_V2_sat',\n MPR_V2_coding = 'MPR_V2_coding',\n}\n\nexport const monthNames = [\n 'Jan',\n 'Feb',\n 'Mar',\n 'Apr',\n 'May',\n 'Jun',\n 'Jul',\n 'Aug',\n 'Sep',\n 'Oct',\n 'Nov',\n 'Dec',\n];\n\nexport const yearImages: Record<number, string> = {\n 2021: ILLUSTRATIONS[2021],\n 2022: ILLUSTRATIONS[2022],\n 2023: ILLUSTRATIONS[2023],\n 2024: ILLUSTRATIONS[2024],\n 2025: ILLUSTRATIONS[2025],\n 2026: ILLUSTRATIONS[2026],\n 2027: ILLUSTRATIONS[2027],\n 2028: ILLUSTRATIONS[2028],\n};\n\nexport const REPORT_CONFIG: Record<REPORT_CONFIG_TYPE, { label: string; icon: string }> = {\n PTM: { label: 'PTM Report', icon: ILLUSTRATIONS.PTM_REPORT_ICON },\n MPR_V1: { label: 'View
|
|
1
|
+
{"version":3,"file":"constants.js","sources":["../../../../src/features/timeline/monthly-timeline/constants.ts"],"sourcesContent":["import { ILLUSTRATIONS } from '../../../assets/illustrations/illustrations';\n\nexport enum REPORT_CONFIG_TYPE {\n PTM = 'PTM',\n MPR_V1 = 'MPR_V1',\n MPR_V2_math = 'MPR_V2_math',\n MPR_V2_elp = 'MPR_V2_elp',\n MPR_V2_ela = 'MPR_V2_ela',\n MPR_V2_english = 'MPR_V2_english',\n MPR_V2_science = 'MPR_V2_science',\n MPR_V2_sat = 'MPR_V2_sat',\n MPR_V2_coding = 'MPR_V2_coding',\n}\n\nexport const monthNames = [\n 'Jan',\n 'Feb',\n 'Mar',\n 'Apr',\n 'May',\n 'Jun',\n 'Jul',\n 'Aug',\n 'Sep',\n 'Oct',\n 'Nov',\n 'Dec',\n];\n\nexport const yearImages: Record<number, string> = {\n 2021: ILLUSTRATIONS[2021],\n 2022: ILLUSTRATIONS[2022],\n 2023: ILLUSTRATIONS[2023],\n 2024: ILLUSTRATIONS[2024],\n 2025: ILLUSTRATIONS[2025],\n 2026: ILLUSTRATIONS[2026],\n 2027: ILLUSTRATIONS[2027],\n 2028: ILLUSTRATIONS[2028],\n};\n\nexport const REPORT_CONFIG: Record<REPORT_CONFIG_TYPE, { label: string; icon: string }> = {\n PTM: { label: 'View PTM Report', icon: ILLUSTRATIONS.PTM_REPORT_ICON },\n MPR_V1: { label: 'View Monthly Report', icon: ILLUSTRATIONS.FULL_REPORT },\n MPR_V2_math: { label: 'View MathFit Report', icon: ILLUSTRATIONS.MATH_FIT_GREY },\n MPR_V2_elp: { label: 'View ELP Report', icon: ILLUSTRATIONS.ELP_ICON },\n MPR_V2_ela: { label: 'View ELA Report', icon: ILLUSTRATIONS.ELP_ICON },\n MPR_V2_english: { label: 'View English Report', icon: ILLUSTRATIONS.ENGLISH_ICON },\n MPR_V2_science: { label: 'View Science Report', icon: ILLUSTRATIONS.SCIENCE_REPORT_ICON },\n MPR_V2_sat: { label: 'View SAT Report', icon: ILLUSTRATIONS.SAT_REPORT_ICON },\n MPR_V2_coding: { label: 'View Coding Report', icon: ILLUSTRATIONS.CODING_REPORT_ICON },\n};\n"],"names":["monthNames","yearImages","ILLUSTRATIONS","REPORT_CONFIG"],"mappings":";AAcO,MAAMA,IAAa;AAAA,EACxB;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AACF,GAEaC,IAAqC;AAAA,EAChD,MAAMC,EAAc,IAAI;AAAA,EACxB,MAAMA,EAAc,IAAI;AAAA,EACxB,MAAMA,EAAc,IAAI;AAAA,EACxB,MAAMA,EAAc,IAAI;AAAA,EACxB,MAAMA,EAAc,IAAI;AAAA,EACxB,MAAMA,EAAc,IAAI;AAAA,EACxB,MAAMA,EAAc,IAAI;AAAA,EACxB,MAAMA,EAAc,IAAI;AAC1B,GAEaC,IAA6E;AAAA,EACxF,KAAK,EAAE,OAAO,mBAAmB,MAAMD,EAAc,gBAAgB;AAAA,EACrE,QAAQ,EAAE,OAAO,uBAAuB,MAAMA,EAAc,YAAY;AAAA,EACxE,aAAa,EAAE,OAAO,uBAAuB,MAAMA,EAAc,cAAc;AAAA,EAC/E,YAAY,EAAE,OAAO,mBAAmB,MAAMA,EAAc,SAAS;AAAA,EACrE,YAAY,EAAE,OAAO,mBAAmB,MAAMA,EAAc,SAAS;AAAA,EACrE,gBAAgB,EAAE,OAAO,uBAAuB,MAAMA,EAAc,aAAa;AAAA,EACjF,gBAAgB,EAAE,OAAO,uBAAuB,MAAMA,EAAc,oBAAoB;AAAA,EACxF,YAAY,EAAE,OAAO,mBAAmB,MAAMA,EAAc,gBAAgB;AAAA,EAC5E,eAAe,EAAE,OAAO,sBAAsB,MAAMA,EAAc,mBAAmB;AACvF;"}
|