@panoramax/web-viewer 3.2.3-develop-2caed4ee → 3.2.3-develop-955f2f1e
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
CHANGED
|
@@ -4,7 +4,7 @@ import { fa } from "../../utils/widgets";
|
|
|
4
4
|
import { faArrowLeft } from "@fortawesome/free-solid-svg-icons/faArrowLeft";
|
|
5
5
|
import { faChevronDown } from "@fortawesome/free-solid-svg-icons/faChevronDown";
|
|
6
6
|
import { faUser } from "@fortawesome/free-solid-svg-icons/faUser";
|
|
7
|
-
import {
|
|
7
|
+
import { faCalendarAlt } from "@fortawesome/free-solid-svg-icons/faCalendarAlt";
|
|
8
8
|
import { faTriangleExclamation } from "@fortawesome/free-solid-svg-icons/faTriangleExclamation";
|
|
9
9
|
import { faShareNodes } from "@fortawesome/free-solid-svg-icons/faShareNodes";
|
|
10
10
|
import { placeholder, panel } from "../styles";
|
|
@@ -76,6 +76,7 @@ export default class PictureLegend extends LitElement {
|
|
|
76
76
|
gap: 5px;
|
|
77
77
|
font-weight: 600;
|
|
78
78
|
font-size: 0.85em;
|
|
79
|
+
align-items: center;
|
|
79
80
|
}
|
|
80
81
|
.info-block svg { height: 18px; }
|
|
81
82
|
|
|
@@ -214,7 +215,7 @@ export default class PictureLegend extends LitElement {
|
|
|
214
215
|
</div>` : nothing}
|
|
215
216
|
|
|
216
217
|
${this._caption.date ? html`<div class="info-block">
|
|
217
|
-
${fa(
|
|
218
|
+
${fa(faCalendarAlt)}
|
|
218
219
|
${this._caption.date.toLocaleDateString(undefined, { year: "numeric", month: "long" })}
|
|
219
220
|
</div>` : nothing}
|
|
220
221
|
</div>
|