@local-civics/mgmt-ui 0.1.140 → 0.1.141

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
@@ -389,8 +389,9 @@ type HomeProps = {
389
389
  };
390
390
  onDashboardClick: () => void;
391
391
  onClassesClick: () => void;
392
- onLessonsClick: () => void;
392
+ onPathwaysClick: () => void;
393
393
  onBadgesClick: () => void;
394
+ onLessonsClick: () => void;
394
395
  };
395
396
  /**
396
397
  * Home
package/dist/index.js CHANGED
@@ -1705,9 +1705,9 @@ const Home = (props) => {
1705
1705
  )), /* @__PURE__ */ React__namespace.createElement(core.Grid.Col, null, /* @__PURE__ */ React__namespace.createElement(
1706
1706
  CardGradient,
1707
1707
  {
1708
- title: "Lessons",
1709
- description: "Explore units of instruction and/or see corresponding class progress.",
1710
- onClick: props.onLessonsClick
1708
+ title: "Pathways",
1709
+ description: "Curated learning experiences for skill-building.",
1710
+ onClick: props.onPathwaysClick
1711
1711
  }
1712
1712
  )), /* @__PURE__ */ React__namespace.createElement(core.Grid.Col, null, /* @__PURE__ */ React__namespace.createElement(
1713
1713
  CardGradient,
@@ -1716,6 +1716,13 @@ const Home = (props) => {
1716
1716
  description: "Project-sized skills acquisition and standards alignment.",
1717
1717
  onClick: props.onBadgesClick
1718
1718
  }
1719
+ )), /* @__PURE__ */ React__namespace.createElement(core.Grid.Col, null, /* @__PURE__ */ React__namespace.createElement(
1720
+ CardGradient,
1721
+ {
1722
+ title: "Lessons",
1723
+ description: "Explore units of instruction and/or see corresponding class progress.",
1724
+ onClick: props.onLessonsClick
1725
+ }
1719
1726
  )))));
1720
1727
  };
1721
1728