Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
quarto-dev
GitHub Repository: quarto-dev/quarto-cli
Path: blob/main/src/resources/schema/document-dashboard.yml
12921 views
1
- name: logo
2
tags:
3
formats: [dashboard]
4
schema:
5
ref: logo-light-dark-specifier
6
description: "Logo image(s) (placed on the left side of the navigation bar)"
7
8
- name: orientation
9
tags:
10
formats: [dashboard]
11
schema:
12
enum: [rows, columns]
13
description: "Default orientation for dashboard content (default `rows`)"
14
15
- name: scrolling
16
tags:
17
formats: [dashboard]
18
schema: boolean
19
default: false
20
description: "Use scrolling rather than fill layout (default: `false`)"
21
22
- name: expandable
23
tags:
24
formats: [dashboard]
25
schema: boolean
26
default: true
27
description: "Make card content expandable (default: `true`)"
28
29
- name: nav-buttons
30
tags:
31
formats: [dashboard]
32
schema:
33
maybeArrayOf:
34
anyOf:
35
- string
36
- object:
37
properties:
38
text: string
39
href: string
40
icon: string
41
rel: string
42
target: string
43
title: string
44
aria-label: string
45
description: "Links to display on the dashboard navigation bar"
46
47