zero-ai 1.0.73 → 1.0.74
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/.r2mo/.obsidian/app.json +1 -0
- package/.r2mo/.obsidian/appearance.json +10 -0
- package/.r2mo/.obsidian/community-plugins.json +7 -0
- package/.r2mo/.obsidian/core-plugins.json +33 -0
- package/.r2mo/.obsidian/plugins/dataview/main.js +20876 -0
- package/.r2mo/.obsidian/plugins/dataview/manifest.json +11 -0
- package/.r2mo/.obsidian/plugins/dataview/styles.css +141 -0
- package/.r2mo/.obsidian/plugins/obsidian-excalidraw-plugin/data.json +815 -0
- package/.r2mo/.obsidian/plugins/obsidian-excalidraw-plugin/main.js +10 -0
- package/.r2mo/.obsidian/plugins/obsidian-excalidraw-plugin/manifest.json +12 -0
- package/.r2mo/.obsidian/plugins/obsidian-excalidraw-plugin/styles.css +1 -0
- package/.r2mo/.obsidian/plugins/obsidian-kanban/main.js +153 -0
- package/.r2mo/.obsidian/plugins/obsidian-kanban/manifest.json +11 -0
- package/.r2mo/.obsidian/plugins/obsidian-kanban/styles.css +1 -0
- package/.r2mo/.obsidian/plugins/obsidian-plantuml/main.js +7732 -0
- package/.r2mo/.obsidian/plugins/obsidian-plantuml/manifest.json +10 -0
- package/.r2mo/.obsidian/plugins/obsidian-plantuml/styles.css +38 -0
- package/.r2mo/.obsidian/plugins/obsidian-tasks-plugin/main.js +504 -0
- package/.r2mo/.obsidian/plugins/obsidian-tasks-plugin/manifest.json +12 -0
- package/.r2mo/.obsidian/plugins/obsidian-tasks-plugin/styles.css +1 -0
- package/.r2mo/.obsidian/snippets/body-font.css +9 -0
- package/.r2mo/.obsidian/themes/Comfort/manifest.json +11 -0
- package/.r2mo/.obsidian/themes/Comfort/theme.css +218 -0
- package/.r2mo/.obsidian/themes/Primary/manifest.json +9 -0
- package/.r2mo/.obsidian/themes/Primary/theme.css +3878 -0
- package/.r2mo/.obsidian/themes/Retro Windows/manifest.json +7 -0
- package/.r2mo/.obsidian/themes/Retro Windows/theme.css +582 -0
- package/.r2mo/.obsidian/themes/RetroOS 98/manifest.json +9 -0
- package/.r2mo/.obsidian/themes/RetroOS 98/theme.css +2566 -0
- package/.r2mo/.obsidian/themes/Serenity/manifest.json +7 -0
- package/.r2mo/.obsidian/themes/Serenity/theme.css +7258 -0
- package/.r2mo/.obsidian/themes/W95/manifest.json +8 -0
- package/.r2mo/.obsidian/themes/W95/theme.css +768 -0
- package/.r2mo/.obsidian/types.json +28 -0
- package/.r2mo/task/task-001.md +12 -0
- package/.r2mo/task/thread +1 -0
- package/package.json +1 -1
- package/src/commander/{perm.json → ex-perm.json} +3 -3
- package/src/commander-ai/{fn.perm.js → fn.ex.perm.js} +7 -3
- package/src/commander-ai/fn.random.md5.js +9 -0
- package/src/commander-ai/fn.source.app.js +9 -0
- package/src/commander-ai/fn.source.front.js +9 -0
- package/src/commander-ai/fn.source.spring.js +9 -0
- package/src/commander-ai/fn.source.zero.js +9 -0
- package/src/commander-ai/index.js +2 -2
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
.puml-settings-area {
|
|
2
|
+
margin-left: 5px;
|
|
3
|
+
margin-right: 5px;
|
|
4
|
+
font-size: 14px;
|
|
5
|
+
width: 100%;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.plantuml-source-view .cm-activeLine {
|
|
9
|
+
background-color: unset !important;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.plantuml-source-view .cm-gutters {
|
|
13
|
+
background-color: unset !important;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.plantuml-source-view .cm-cursor {
|
|
17
|
+
border-left: 1.2px solid var(--text-muted);
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.plantuml-source-view .cm-selectionBackground {
|
|
21
|
+
background-color: var(--text-selection) !important;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.puml-loading {
|
|
25
|
+
color: var(--text-accent);
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.internal-embed.file-embed[src$=".puml"] {
|
|
29
|
+
display: none;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.internal-embed.file-embed[src$=".pu"] {
|
|
33
|
+
display: none;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.puml-error {
|
|
37
|
+
color: var(--text-error);
|
|
38
|
+
}
|