zero-ai 1.0.76 → 1.0.79
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 +1 -1
- package/r2mo-init/.obsidian/app.json +1 -0
- package/r2mo-init/.obsidian/appearance.json +10 -0
- package/r2mo-init/.obsidian/community-plugins.json +7 -0
- package/r2mo-init/.obsidian/core-plugins.json +33 -0
- package/r2mo-init/.obsidian/plugins/dataview/main.js +20876 -0
- package/r2mo-init/.obsidian/plugins/dataview/manifest.json +11 -0
- package/r2mo-init/.obsidian/plugins/dataview/styles.css +141 -0
- package/r2mo-init/.obsidian/plugins/obsidian-excalidraw-plugin/data.json +815 -0
- package/r2mo-init/.obsidian/plugins/obsidian-excalidraw-plugin/main.js +10 -0
- package/r2mo-init/.obsidian/plugins/obsidian-excalidraw-plugin/manifest.json +12 -0
- package/r2mo-init/.obsidian/plugins/obsidian-excalidraw-plugin/styles.css +1 -0
- package/r2mo-init/.obsidian/plugins/obsidian-kanban/main.js +153 -0
- package/r2mo-init/.obsidian/plugins/obsidian-kanban/manifest.json +11 -0
- package/r2mo-init/.obsidian/plugins/obsidian-kanban/styles.css +1 -0
- package/r2mo-init/.obsidian/plugins/obsidian-plantuml/main.js +7732 -0
- package/r2mo-init/.obsidian/plugins/obsidian-plantuml/manifest.json +10 -0
- package/r2mo-init/.obsidian/plugins/obsidian-plantuml/styles.css +38 -0
- package/r2mo-init/.obsidian/plugins/obsidian-tasks-plugin/main.js +504 -0
- package/r2mo-init/.obsidian/plugins/obsidian-tasks-plugin/manifest.json +12 -0
- package/r2mo-init/.obsidian/plugins/obsidian-tasks-plugin/styles.css +1 -0
- package/r2mo-init/.obsidian/snippets/body-font.css +9 -0
- package/r2mo-init/.obsidian/themes/Comfort/manifest.json +11 -0
- package/r2mo-init/.obsidian/themes/Comfort/theme.css +218 -0
- package/r2mo-init/.obsidian/themes/Primary/manifest.json +9 -0
- package/r2mo-init/.obsidian/themes/Primary/theme.css +3878 -0
- package/r2mo-init/.obsidian/themes/Retro Windows/manifest.json +7 -0
- package/r2mo-init/.obsidian/themes/Retro Windows/theme.css +582 -0
- package/r2mo-init/.obsidian/themes/RetroOS 98/manifest.json +9 -0
- package/r2mo-init/.obsidian/themes/RetroOS 98/theme.css +2566 -0
- package/r2mo-init/.obsidian/themes/Serenity/manifest.json +7 -0
- package/r2mo-init/.obsidian/themes/Serenity/theme.css +7258 -0
- package/r2mo-init/.obsidian/themes/W95/manifest.json +8 -0
- package/r2mo-init/.obsidian/themes/W95/theme.css +768 -0
- package/r2mo-init/.obsidian/types.json +28 -0
- package/r2mo-init/task/command/ex-api.yaml.example +13 -0
- package/r2mo-init/task/task-001.md +144 -0
- package/r2mo-init/task/task-002.md +4 -0
- package/r2mo-init/task/task-003.md +4 -0
- package/r2mo-init/task/thread +1 -0
- package/.cursor/rules/test.mdc +0 -4
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "dataview",
|
|
3
|
+
"name": "Dataview",
|
|
4
|
+
"version": "0.5.68",
|
|
5
|
+
"minAppVersion": "0.13.11",
|
|
6
|
+
"description": "Complex data views for the data-obsessed.",
|
|
7
|
+
"author": "Michael Brenan <blacksmithgu@gmail.com>",
|
|
8
|
+
"authorUrl": "https://github.com/blacksmithgu",
|
|
9
|
+
"helpUrl": "https://blacksmithgu.github.io/obsidian-dataview/",
|
|
10
|
+
"isDesktopOnly": false
|
|
11
|
+
}
|
|
@@ -0,0 +1,141 @@
|
|
|
1
|
+
.block-language-dataview {
|
|
2
|
+
overflow-y: auto;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
/*****************/
|
|
6
|
+
/** Table Views **/
|
|
7
|
+
/*****************/
|
|
8
|
+
|
|
9
|
+
/* List View Default Styling; rendered internally as a table. */
|
|
10
|
+
.table-view-table {
|
|
11
|
+
width: 100%;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.table-view-table > thead > tr, .table-view-table > tbody > tr {
|
|
15
|
+
margin-top: 1em;
|
|
16
|
+
margin-bottom: 1em;
|
|
17
|
+
text-align: left;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.table-view-table > tbody > tr:hover {
|
|
21
|
+
background-color: var(--table-row-background-hover);
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.table-view-table > thead > tr > th {
|
|
25
|
+
font-weight: 700;
|
|
26
|
+
font-size: larger;
|
|
27
|
+
border-top: none;
|
|
28
|
+
border-left: none;
|
|
29
|
+
border-right: none;
|
|
30
|
+
border-bottom: solid;
|
|
31
|
+
|
|
32
|
+
max-width: 100%;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.table-view-table > tbody > tr > td {
|
|
36
|
+
text-align: left;
|
|
37
|
+
border: none;
|
|
38
|
+
font-weight: 400;
|
|
39
|
+
max-width: 100%;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.table-view-table ul, .table-view-table ol {
|
|
43
|
+
margin-block-start: 0.2em !important;
|
|
44
|
+
margin-block-end: 0.2em !important;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
/** Rendered value styling for any view. */
|
|
48
|
+
.dataview-result-list-root-ul {
|
|
49
|
+
padding: 0em !important;
|
|
50
|
+
margin: 0em !important;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.dataview-result-list-ul {
|
|
54
|
+
margin-block-start: 0.2em !important;
|
|
55
|
+
margin-block-end: 0.2em !important;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
/** Generic grouping styling. */
|
|
59
|
+
.dataview.result-group {
|
|
60
|
+
padding-left: 8px;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
/*******************/
|
|
64
|
+
/** Inline Fields **/
|
|
65
|
+
/*******************/
|
|
66
|
+
|
|
67
|
+
.dataview.inline-field-key {
|
|
68
|
+
padding-left: 8px;
|
|
69
|
+
padding-right: 8px;
|
|
70
|
+
font-family: var(--font-monospace);
|
|
71
|
+
background-color: var(--background-primary-alt);
|
|
72
|
+
color: var(--nav-item-color-selected);
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
.dataview.inline-field-value {
|
|
76
|
+
padding-left: 8px;
|
|
77
|
+
padding-right: 8px;
|
|
78
|
+
font-family: var(--font-monospace);
|
|
79
|
+
background-color: var(--background-secondary-alt);
|
|
80
|
+
color: var(--nav-item-color-selected);
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
.dataview.inline-field-standalone-value {
|
|
84
|
+
padding-left: 8px;
|
|
85
|
+
padding-right: 8px;
|
|
86
|
+
font-family: var(--font-monospace);
|
|
87
|
+
background-color: var(--background-secondary-alt);
|
|
88
|
+
color: var(--nav-item-color-selected);
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
/***************/
|
|
92
|
+
/** Task View **/
|
|
93
|
+
/***************/
|
|
94
|
+
|
|
95
|
+
.dataview.task-list-item, .dataview.task-list-basic-item {
|
|
96
|
+
margin-top: 3px;
|
|
97
|
+
margin-bottom: 3px;
|
|
98
|
+
transition: 0.4s;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
.dataview.task-list-item:hover, .dataview.task-list-basic-item:hover {
|
|
102
|
+
background-color: var(--text-selection);
|
|
103
|
+
box-shadow: -40px 0 0 var(--text-selection);
|
|
104
|
+
cursor: pointer;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
/*****************/
|
|
108
|
+
/** Error Views **/
|
|
109
|
+
/*****************/
|
|
110
|
+
|
|
111
|
+
div.dataview-error-box {
|
|
112
|
+
width: 100%;
|
|
113
|
+
min-height: 150px;
|
|
114
|
+
display: flex;
|
|
115
|
+
align-items: center;
|
|
116
|
+
justify-content: center;
|
|
117
|
+
border: 4px dashed var(--background-secondary);
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
.dataview-error-message {
|
|
121
|
+
color: var(--text-muted);
|
|
122
|
+
text-align: center;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
/*************************/
|
|
126
|
+
/** Additional Metadata **/
|
|
127
|
+
/*************************/
|
|
128
|
+
|
|
129
|
+
.dataview.small-text {
|
|
130
|
+
font-size: smaller;
|
|
131
|
+
color: var(--text-muted);
|
|
132
|
+
margin-left: 3px;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
.dataview.small-text::before {
|
|
136
|
+
content: "(";
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
.dataview.small-text::after {
|
|
140
|
+
content: ")";
|
|
141
|
+
}
|