@canopy-iiif/app 0.13.2 → 0.13.3
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/package.json +7 -2
- package/ui/dist/server.mjs +1 -1
- package/ui/dist/server.mjs.map +2 -2
package/package.json
CHANGED
|
@@ -1,10 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@canopy-iiif/app",
|
|
3
|
-
"version": "0.13.
|
|
3
|
+
"version": "0.13.3",
|
|
4
4
|
"private": false,
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Mat Jordan <mat@northwestern.edu>",
|
|
7
|
-
"homepage": "https://canopy-iiif.github.io/
|
|
7
|
+
"homepage": "https://canopy-iiif.github.io/app/",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "https://github.com/canopy-iiif/app.git",
|
|
11
|
+
"directory": "packages/app"
|
|
12
|
+
},
|
|
8
13
|
"type": "commonjs",
|
|
9
14
|
"main": "./lib/index.js",
|
|
10
15
|
"exports": {
|
package/ui/dist/server.mjs
CHANGED
|
@@ -795,7 +795,7 @@ function renderNodes(nodes, parentKey = "node") {
|
|
|
795
795
|
if (node.isActive) classes.push("is-active");
|
|
796
796
|
const linkClass = classes.join(" ");
|
|
797
797
|
const Tag = isInteractive ? "a" : "span";
|
|
798
|
-
const badge = isRoadmap ? /* @__PURE__ */ React10.createElement("span", { className: "canopy-sub-navigation__badge" }, "
|
|
798
|
+
const badge = isRoadmap ? /* @__PURE__ */ React10.createElement("span", { className: "canopy-sub-navigation__badge" }, "Roadmap") : null;
|
|
799
799
|
return /* @__PURE__ */ React10.createElement("li", { key, className: "canopy-sub-navigation__item", "data-depth": depth }, /* @__PURE__ */ React10.createElement(
|
|
800
800
|
Tag,
|
|
801
801
|
{
|