@canopy-iiif/app 1.0.1 → 1.1.0
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/lib/build/iiif.js +28 -19
- package/lib/build/mdx.js +130 -227
- package/lib/build/pages.js +27 -13
- package/lib/build/runtimes.js +0 -1
- package/lib/components/slider-runtime-entry.js +18 -3
- package/lib/components/viewer-runtime-entry.js +74 -0
- package/package.json +1 -1
- package/ui/dist/server.mjs +9 -9
- package/ui/dist/server.mjs.map +1 -1
- package/ui/styles/components/_sub-navigation.scss +11 -9
- package/ui/styles/components/_timeline.scss +3 -6
- package/ui/styles/index.css +10 -14
package/ui/dist/server.mjs
CHANGED
|
@@ -7302,17 +7302,17 @@ function ThemeShowcase() {
|
|
|
7302
7302
|
}));
|
|
7303
7303
|
const styles = `
|
|
7304
7304
|
.canopy-theme-showcase__section {
|
|
7305
|
-
margin
|
|
7305
|
+
margin: 2.618rem 0;
|
|
7306
7306
|
}
|
|
7307
7307
|
.canopy-theme-showcase__section:last-of-type {
|
|
7308
7308
|
margin-bottom: 0;
|
|
7309
7309
|
}
|
|
7310
7310
|
.canopy-theme-showcase__section-title {
|
|
7311
|
-
margin: 0 0 0.
|
|
7312
|
-
font-size: 1.
|
|
7311
|
+
margin: 0 0 0.382rem;
|
|
7312
|
+
font-size: 1.382rem;
|
|
7313
7313
|
}
|
|
7314
7314
|
.canopy-theme-showcase__section-description {
|
|
7315
|
-
margin: 0 0
|
|
7315
|
+
margin: 0 0 1rem;
|
|
7316
7316
|
color: var(--color-gray-muted);
|
|
7317
7317
|
line-height: 1.5;
|
|
7318
7318
|
}
|
|
@@ -7329,7 +7329,7 @@ function ThemeShowcase() {
|
|
|
7329
7329
|
}
|
|
7330
7330
|
.canopy-theme-showcase__scale-label {
|
|
7331
7331
|
min-width: 90px;
|
|
7332
|
-
font-size: 0.
|
|
7332
|
+
font-size: 0.9222rem;
|
|
7333
7333
|
}
|
|
7334
7334
|
.canopy-theme-showcase__scale-track {
|
|
7335
7335
|
display: flex;
|
|
@@ -7399,15 +7399,15 @@ function ThemeShowcase() {
|
|
|
7399
7399
|
), /* @__PURE__ */ React37.createElement(
|
|
7400
7400
|
Section,
|
|
7401
7401
|
{
|
|
7402
|
-
title: "Accent palette options",
|
|
7403
|
-
description: "
|
|
7402
|
+
title: "Accent color palette options",
|
|
7403
|
+
description: "Primary color steps used for buttons, links, and highlights."
|
|
7404
7404
|
},
|
|
7405
7405
|
/* @__PURE__ */ React37.createElement(ColorsLabeled, { colors: accentColors })
|
|
7406
7406
|
), /* @__PURE__ */ React37.createElement(
|
|
7407
7407
|
Section,
|
|
7408
7408
|
{
|
|
7409
|
-
title: "Gray palette options",
|
|
7410
|
-
description: "Neutral
|
|
7409
|
+
title: "Gray color palette options",
|
|
7410
|
+
description: "Neutral color steps used for backgrounds, borders, and text."
|
|
7411
7411
|
},
|
|
7412
7412
|
/* @__PURE__ */ React37.createElement(ColorsLabeled, { colors: grayColors })
|
|
7413
7413
|
));
|