@local-civics/mgmt-ui 0.1.190 → 0.1.191
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/index.d.ts +1 -0
- package/dist/index.js +8 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +9 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -286,6 +286,7 @@ const data = [
|
|
|
286
286
|
{ label: "Pathways", icon: icons.IconRoute },
|
|
287
287
|
{ label: "Badges", icon: icons.IconAlbum },
|
|
288
288
|
{ label: "Lessons", icon: icons.IconLambda },
|
|
289
|
+
{ label: "File Locker", icon: icons.IconClipboard },
|
|
289
290
|
{
|
|
290
291
|
label: "Organization",
|
|
291
292
|
icon: icons.IconBuilding,
|
|
@@ -1954,6 +1955,13 @@ const Home = (props) => {
|
|
|
1954
1955
|
description: "Bite-sized activities and learning experiences accelerating students achievement",
|
|
1955
1956
|
onClick: props.onLessonsClick
|
|
1956
1957
|
}
|
|
1958
|
+
)), /* @__PURE__ */ React__namespace.createElement(core.Grid.Col, null, /* @__PURE__ */ React__namespace.createElement(
|
|
1959
|
+
CardGradient,
|
|
1960
|
+
{
|
|
1961
|
+
title: "File Locker",
|
|
1962
|
+
description: "A secure space to view student-submitted work and provide feedback",
|
|
1963
|
+
onClick: props.onFileLockerClick
|
|
1964
|
+
}
|
|
1957
1965
|
)))));
|
|
1958
1966
|
};
|
|
1959
1967
|
|