@local-civics/hub-ui 0.1.211 → 0.1.212
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 +13 -2
- package/dist/index.js +73 -79
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +74 -80
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1210,6 +1210,17 @@ type PathwayDetailProps = PathwayCardProps & {
|
|
|
1210
1210
|
*/
|
|
1211
1211
|
declare const PathwayDetail: (props: PathwayDetailProps) => JSX.Element;
|
|
1212
1212
|
|
|
1213
|
+
/**
|
|
1214
|
+
* A read-only, print-friendly summary of a single pathway's progress — the same data already
|
|
1215
|
+
* shown on `PathwayDetail`, condensed into a record-style layout. Toggled alongside
|
|
1216
|
+
* `PathwayDetail` from `Pathway.tsx`, not a routed page of its own.
|
|
1217
|
+
*
|
|
1218
|
+
* In-progress badge activity is intentionally omitted: that classification depends on
|
|
1219
|
+
* `startedAt`, which isn't reliably populated without lesson-level data yet. Only completed
|
|
1220
|
+
* activity is shown until that's sorted out.
|
|
1221
|
+
* @param props
|
|
1222
|
+
* @constructor
|
|
1223
|
+
*/
|
|
1213
1224
|
declare const PathwayTranscript: (props: PathwayCardProps) => JSX.Element;
|
|
1214
1225
|
|
|
1215
1226
|
/**
|
|
@@ -1334,7 +1345,7 @@ declare const DashboardShell: (props: DashboardShellProps) => JSX.Element;
|
|
|
1334
1345
|
/**
|
|
1335
1346
|
* The name of a dashboard sidebar tab.
|
|
1336
1347
|
*/
|
|
1337
|
-
type DashboardSidebarTabName = "profile" | "pathways" | "badges" | "file-locker" | "
|
|
1348
|
+
type DashboardSidebarTabName = "profile" | "pathways" | "badges" | "file-locker" | "portfolio" | "comments";
|
|
1338
1349
|
/**
|
|
1339
1350
|
* A tab's live destination. Tabs with no entry here render disabled.
|
|
1340
1351
|
*/
|
|
@@ -1365,7 +1376,7 @@ type DashboardSidebarProps = {
|
|
|
1365
1376
|
* The single left nav used across the whole student side of the app (Home, Pathway/Badge detail
|
|
1366
1377
|
* pages, and any future page that adopts `DashboardShell`) — never render a page-specific copy of
|
|
1367
1378
|
* this. Tabs with no matching `links` entry render disabled, which is how not-yet-built
|
|
1368
|
-
* destinations (File Locker,
|
|
1379
|
+
* destinations (File Locker, Portfolio, Comments) show up today.
|
|
1369
1380
|
*/
|
|
1370
1381
|
declare const DashboardSidebar: (props: DashboardSidebarProps) => JSX.Element;
|
|
1371
1382
|
|