Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
quarto-dev
GitHub Repository: quarto-dev/quarto-cli
Path: blob/main/src/resources/schema/cell-card.yml
12921 views
1
- name: title
2
tags:
3
formats: [dashboard]
4
schema: string
5
description:
6
short: "Title displayed in dashboard card header"
7
8
- name: padding
9
tags:
10
formats: [dashboard]
11
schema:
12
anyOf:
13
- string
14
- number
15
description:
16
short: "Padding around dashboard card content (default `8px`)"
17
18
- name: expandable
19
tags:
20
formats: [dashboard]
21
schema: boolean
22
default: true
23
description:
24
short: "Make dashboard card content expandable (default: `true`)"
25
26
- name: width
27
tags:
28
formats: [dashboard]
29
schema:
30
anyOf:
31
- string
32
- number
33
description:
34
short: "Percentage or absolute pixel width for dashboard card (defaults to evenly spaced across row)"
35
36
- name: height
37
tags:
38
formats: [dashboard]
39
schema:
40
anyOf:
41
- string
42
- number
43
description:
44
short: "Percentage or absolute pixel height for dashboard card (defaults to evenly spaced across column)"
45
46
- name: context
47
tags:
48
formats: [dashboard]
49
engine: [jupyter]
50
schema: string
51
description:
52
short: "Context to execute cell within."
53
54
- name: content
55
tags:
56
formats: [dashboard]
57
schema:
58
enum: [valuebox, sidebar, toolbar, card-sidebar, card-toolbar]
59
description:
60
short: "The type of dashboard element being produced by this code cell."
61
62
- name: color
63
tags:
64
formats: [dashboard]
65
schema:
66
anyOf:
67
- string
68
- enum: [primary, secondary, success, info, warning, danger, light, dark]
69
description:
70
short: "For code cells that produce a valuebox, the color of the valuebox.s"
71
72