living-documentation 8.6.0 → 8.7.0
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/dist/src/frontend/admin.html +1 -1
- package/dist/src/frontend/context.html +1 -1
- package/dist/src/frontend/diagram.html +1 -1
- package/dist/src/frontend/export.js +1 -1
- package/dist/src/frontend/index.html +1 -1
- package/dist/src/frontend/shape-editor.html +1 -1
- package/dist/src/frontend/vendor/tailwindcss-typography.js +94 -0
- package/dist/src/frontend/vendor/tailwindcss.js +91 -0
- package/package.json +1 -1
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
<title>Admin — Living Documentation</title>
|
|
7
7
|
|
|
8
8
|
<script src="/i18n.js"></script>
|
|
9
|
-
<script src="
|
|
9
|
+
<script src="/vendor/tailwindcss.js"></script>
|
|
10
10
|
|
|
11
11
|
<script>
|
|
12
12
|
tailwind.config = { darkMode: "class", theme: { extend: {} } };
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
<title>AI Context</title>
|
|
7
7
|
<script src="/i18n.js"></script>
|
|
8
8
|
<script src="/confirm-modal.js"></script>
|
|
9
|
-
<script src="
|
|
9
|
+
<script src="/vendor/tailwindcss-typography.js"></script>
|
|
10
10
|
<script>
|
|
11
11
|
tailwind.config = { darkMode: "class", theme: { extend: {} } };
|
|
12
12
|
</script>
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
6
6
|
<title>Diagram — Living Documentation</title>
|
|
7
7
|
<script src="/i18n.js"></script>
|
|
8
|
-
<script src="
|
|
8
|
+
<script src="/vendor/tailwindcss-typography.js"></script>
|
|
9
9
|
<script>
|
|
10
10
|
tailwind.config = { darkMode: "class", theme: { extend: {} } };
|
|
11
11
|
</script>
|
|
@@ -168,7 +168,7 @@ async function exportAllPDF() {
|
|
|
168
168
|
<head>
|
|
169
169
|
<meta charset="UTF-8">
|
|
170
170
|
<title>${appTitle} — Export PDF</title>
|
|
171
|
-
<script src="
|
|
171
|
+
<script src="${window.location.origin}/vendor/tailwindcss-typography.js"><\/script>
|
|
172
172
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/styles/github.min.css">
|
|
173
173
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/highlight.min.js"><\/script>
|
|
174
174
|
<style>
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
<script src="/i18n.js"></script>
|
|
10
10
|
|
|
11
11
|
<!-- Tailwind CSS + Typography plugin via CDN -->
|
|
12
|
-
<script src="
|
|
12
|
+
<script src="/vendor/tailwindcss-typography.js"></script>
|
|
13
13
|
|
|
14
14
|
<!-- Highlight.js — syntax highlighting (always dark) -->
|
|
15
15
|
<link
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
<meta charset="UTF-8" />
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
6
6
|
<title>Shape editor — Living Documentation</title>
|
|
7
|
-
<script src="
|
|
7
|
+
<script src="/vendor/tailwindcss-typography.js"></script>
|
|
8
8
|
<script src="/i18n.js"></script>
|
|
9
9
|
<script>
|
|
10
10
|
tailwind.config = { darkMode: "class", theme: { extend: {} } };
|