@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 CHANGED
@@ -397,6 +397,7 @@ type HomeProps = {
397
397
  onPathwaysClick: () => void;
398
398
  onBadgesClick: () => void;
399
399
  onLessonsClick: () => void;
400
+ onFileLockerClick: () => void;
400
401
  };
401
402
  /**
402
403
  * Home
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