unplugin-docubook 1.1.2 → 1.1.3

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.
@@ -0,0 +1,121 @@
1
+ @import "tailwindcss";
2
+
3
+ /* src/components/theme.css */
4
+ @plugin "@tailwindcss/typography";
5
+ @custom-variant dark (&:is(.dark *));
6
+ @theme { --color-background: hsl(var(--background)); --color-foreground: hsl(var(--foreground)); --color-card: hsl(var(--card)); --color-card-foreground: hsl(var(--card-foreground)); --color-popover: hsl(var(--popover)); --color-popover-foreground: hsl(var(--popover-foreground)); --color-primary: hsl(var(--primary)); --color-primary-foreground: hsl(var(--primary-foreground)); --color-secondary: hsl(var(--secondary)); --color-secondary-foreground: hsl(var(--secondary-foreground)); --color-accent: hsl(var(--accent)); --color-accent-foreground: hsl(var(--accent-foreground)); --color-muted: hsl(var(--muted)); --color-muted-foreground: hsl(var(--muted-foreground)); --color-destructive: hsl(var(--destructive)); --color-destructive-foreground: hsl(var(--destructive-foreground)); --color-success: hsl(var(--success)); --color-success-foreground: hsl(var(--success-foreground)); --color-border: hsl(var(--border)); --color-input: hsl(var(--input)); --color-ring: hsl(var(--ring)); --color-note-bg: hsl(var(--note-bg)); --color-note-border: hsl(var(--note-border)); --color-note-accent: hsl(var(--note-accent)); --color-note-text: hsl(var(--note-text)); --color-danger-bg: hsl(var(--danger-bg)); --color-danger-border: hsl(var(--danger-border)); --color-danger-accent: hsl(var(--danger-accent)); --color-danger-text: hsl(var(--danger-text)); --color-warning-bg: hsl(var(--warning-bg)); --color-warning-border: hsl(var(--warning-border)); --color-warning-accent: hsl(var(--warning-accent)); --color-warning-text: hsl(var(--warning-text)); --color-success-bg: hsl(var(--success-bg)); --color-success-border: hsl(var(--success-border)); --color-success-accent: hsl(var(--success-accent)); --color-success-text: hsl(var(--success-text)); --color-button-primary-bg: hsl(var(--primary)); --color-button-primary-fg: hsl(var(--primary-foreground)); --color-button-accent-bg: hsl(var(--accent)); --color-button-accent-fg: hsl(var(--accent-foreground)); --color-kbd-bg: hsl(var(--muted)); --color-kbd-fg: hsl(var(--muted-foreground)); --color-link: hsl(var(--primary)); --color-link-hover: hsl(var(--primary) / 0.8); --radius-lg: var(--radius); --radius-md: calc(var(--radius) - 2px); --radius-sm: calc(var(--radius) - 4px); --radius-xl: calc(var(--radius) + 4px); --animate-accordion-down: accordion-down 0.2s ease-out; --animate-accordion-up: accordion-up 0.2s ease-out; @keyframes accordion-down { from { height: 0; } to { height: var(--radix-accordion-content-height); } } @keyframes accordion-up { from { height: var(--radix-accordion-content-height); } to { height: 0; } } }
7
+ :root {
8
+ --background: 210 40% 98%;
9
+ --foreground: 220 30% 15%;
10
+ --card: 0 0% 100%;
11
+ --card-foreground: 220 30% 15%;
12
+ --popover: 0 0% 100%;
13
+ --popover-foreground: 220 30% 15%;
14
+ --primary: 210 81% 56%;
15
+ --primary-foreground: 0 0% 100%;
16
+ --secondary: 210 30% 90%;
17
+ --secondary-foreground: 220 30% 15%;
18
+ --accent: 200 100% 40%;
19
+ --accent-foreground: 0 0% 100%;
20
+ --muted: 210 20% 92%;
21
+ --muted-foreground: 220 15% 50%;
22
+ --destructive: 0 85% 60%;
23
+ --destructive-foreground: 0 0% 100%;
24
+ --success: 142 70% 50%;
25
+ --success-foreground: 0 0% 100%;
26
+ --border: 210 20% 85%;
27
+ --input: 210 20% 85%;
28
+ --ring: 210 81% 56%;
29
+ --radius: 0.5rem;
30
+ --note-bg: 214 100% 97%;
31
+ --note-border: 214 100% 90%;
32
+ --note-accent: 210 81% 56%;
33
+ --note-text: 220 50% 30%;
34
+ --danger-bg: 0 100% 97%;
35
+ --danger-border: 0 100% 90%;
36
+ --danger-accent: 0 85% 60%;
37
+ --danger-text: 0 50% 30%;
38
+ --warning-bg: 38 100% 97%;
39
+ --warning-border: 38 100% 90%;
40
+ --warning-accent: 38 100% 50%;
41
+ --warning-text: 38 50% 30%;
42
+ --success-bg: 142 100% 97%;
43
+ --success-border: 142 100% 90%;
44
+ --success-accent: 142 70% 50%;
45
+ --success-text: 142 50% 25%;
46
+ --space-1: 0.25rem;
47
+ --space-2: 0.5rem;
48
+ --space-3: 0.75rem;
49
+ --space-4: 1rem;
50
+ --space-5: 1.25rem;
51
+ --space-6: 1.5rem;
52
+ --space-8: 2rem;
53
+ --space-10: 2.5rem;
54
+ --space-12: 3rem;
55
+ --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
56
+ --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
57
+ --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
58
+ --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
59
+ --overlay: 0 0% 0% / 0.5;
60
+ --duration-fast: 150ms;
61
+ --duration-normal: 200ms;
62
+ --duration-slow: 300ms;
63
+ --line-number-color: rgba(0, 0, 0, 0.05);
64
+ }
65
+ .dark {
66
+ --background: 220 25% 10%;
67
+ --foreground: 210 30% 96%;
68
+ --card: 220 25% 15%;
69
+ --card-foreground: 210 30% 96%;
70
+ --popover: 220 25% 15%;
71
+ --popover-foreground: 210 30% 96%;
72
+ --primary: 210 100% 65%;
73
+ --primary-foreground: 220 25% 10%;
74
+ --secondary: 215 25% 20%;
75
+ --secondary-foreground: 210 30% 96%;
76
+ --accent: 200 100% 60%;
77
+ --accent-foreground: 220 25% 10%;
78
+ --muted: 215 20% 25%;
79
+ --muted-foreground: 215 20% 65%;
80
+ --destructive: 0 85% 70%;
81
+ --destructive-foreground: 0 0% 100%;
82
+ --success: 142 70% 55%;
83
+ --success-foreground: 0 0% 100%;
84
+ --border: 215 20% 25%;
85
+ --input: 215 20% 25%;
86
+ --ring: 210 100% 65%;
87
+ --note-bg: 217 50% 20%;
88
+ --note-border: 217 50% 30%;
89
+ --note-accent: 210 100% 65%;
90
+ --note-text: 210 30% 90%;
91
+ --danger-bg: 0 50% 15%;
92
+ --danger-border: 0 50% 25%;
93
+ --danger-accent: 0 85% 70%;
94
+ --danger-text: 0 30% 90%;
95
+ --warning-bg: 38 50% 15%;
96
+ --warning-border: 38 50% 25%;
97
+ --warning-accent: 38 100% 60%;
98
+ --warning-text: 38 30% 90%;
99
+ --success-bg: 142 50% 15%;
100
+ --success-border: 142 50% 25%;
101
+ --success-accent: 142 70% 55%;
102
+ --success-text: 142 30% 90%;
103
+ --line-number-color: rgba(255, 255, 255, 0.1);
104
+ }
105
+ @layer base {
106
+ * {
107
+ @apply border-border;
108
+ }
109
+ body {
110
+ @apply bg-background text-foreground;
111
+ }
112
+ }
113
+ .docubook-container {
114
+ @apply bg-background text-foreground;
115
+ }
116
+ @layer utilities {
117
+ .prose {
118
+ margin: 0 !important;
119
+ }
120
+ }
121
+ /*# sourceMappingURL=theme.css.map */
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../src/components/theme.css"],"sourcesContent":["/**\n * DocuBook Theme - CSS Variables\n * \n * This file defines CSS custom properties (variables) for the DocuBook component library.\n * Based on DocuBook design system with HSL color format and Tailwind v4 compatibility.\n * \n * Usage:\n * 1. Import in your global CSS: @import 'unplugin-docubook/components/theme.css';\n * 2. Or copy these variables into your tailwind.config.css\n * \n * Customization:\n * Override any variable in your own CSS after importing:\n * :root { --primary: 210 81% 60%; }\n */\n\n@import 'tailwindcss';\n@plugin '@tailwindcss/typography';\n\n@custom-variant dark (&:is(.dark *));\n\n@theme {\n /* Base Colors */\n --color-background: hsl(var(--background));\n --color-foreground: hsl(var(--foreground));\n --color-card: hsl(var(--card));\n --color-card-foreground: hsl(var(--card-foreground));\n --color-popover: hsl(var(--popover));\n --color-popover-foreground: hsl(var(--popover-foreground));\n \n /* Accent Colors */\n --color-primary: hsl(var(--primary));\n --color-primary-foreground: hsl(var(--primary-foreground));\n --color-secondary: hsl(var(--secondary));\n --color-secondary-foreground: hsl(var(--secondary-foreground));\n --color-accent: hsl(var(--accent));\n --color-accent-foreground: hsl(var(--accent-foreground));\n --color-muted: hsl(var(--muted));\n --color-muted-foreground: hsl(var(--muted-foreground));\n \n /* Status Colors */\n --color-destructive: hsl(var(--destructive));\n --color-destructive-foreground: hsl(var(--destructive-foreground));\n --color-success: hsl(var(--success));\n --color-success-foreground: hsl(var(--success-foreground));\n \n /* UI Colors */\n --color-border: hsl(var(--border));\n --color-input: hsl(var(--input));\n --color-ring: hsl(var(--ring));\n \n /* Component-specific */\n --color-note-bg: hsl(var(--note-bg));\n --color-note-border: hsl(var(--note-border));\n --color-note-accent: hsl(var(--note-accent));\n --color-note-text: hsl(var(--note-text));\n \n --color-danger-bg: hsl(var(--danger-bg));\n --color-danger-border: hsl(var(--danger-border));\n --color-danger-accent: hsl(var(--danger-accent));\n --color-danger-text: hsl(var(--danger-text));\n \n --color-warning-bg: hsl(var(--warning-bg));\n --color-warning-border: hsl(var(--warning-border));\n --color-warning-accent: hsl(var(--warning-accent));\n --color-warning-text: hsl(var(--warning-text));\n \n --color-success-bg: hsl(var(--success-bg));\n --color-success-border: hsl(var(--success-border));\n --color-success-accent: hsl(var(--success-accent));\n --color-success-text: hsl(var(--success-text));\n\n /* Button */\n --color-button-primary-bg: hsl(var(--primary));\n --color-button-primary-fg: hsl(var(--primary-foreground));\n --color-button-accent-bg: hsl(var(--accent));\n --color-button-accent-fg: hsl(var(--accent-foreground));\n \n /* Kbd */\n --color-kbd-bg: hsl(var(--muted));\n --color-kbd-fg: hsl(var(--muted-foreground));\n \n /* Link */\n --color-link: hsl(var(--primary));\n --color-link-hover: hsl(var(--primary) / 0.8);\n \n /* Radius */\n --radius-lg: var(--radius);\n --radius-md: calc(var(--radius) - 2px);\n --radius-sm: calc(var(--radius) - 4px);\n --radius-xl: calc(var(--radius) + 4px);\n \n /* Animations */\n --animate-accordion-down: accordion-down 0.2s ease-out;\n --animate-accordion-up: accordion-up 0.2s ease-out;\n \n @keyframes accordion-down {\n from { height: 0; }\n to { height: var(--radix-accordion-content-height); }\n }\n \n @keyframes accordion-up {\n from { height: var(--radix-accordion-content-height); }\n to { height: 0; }\n }\n}\n\n/* \n Modern Blue Theme - Light Mode\n Using HSL format for better theming support\n*/\n:root {\n /* Base */\n --background: 210 40% 98%;\n --foreground: 220 30% 15%;\n --card: 0 0% 100%;\n --card-foreground: 220 30% 15%;\n --popover: 0 0% 100%;\n --popover-foreground: 220 30% 15%;\n \n /* Primary */\n --primary: 210 81% 56%;\n --primary-foreground: 0 0% 100%;\n \n /* Secondary */\n --secondary: 210 30% 90%;\n --secondary-foreground: 220 30% 15%;\n \n /* Accent */\n --accent: 200 100% 40%;\n --accent-foreground: 0 0% 100%;\n \n /* Muted */\n --muted: 210 20% 92%;\n --muted-foreground: 220 15% 50%;\n \n /* Status */\n --destructive: 0 85% 60%;\n --destructive-foreground: 0 0% 100%;\n --success: 142 70% 50%;\n --success-foreground: 0 0% 100%;\n \n /* UI */\n --border: 210 20% 85%;\n --input: 210 20% 85%;\n --ring: 210 81% 56%;\n --radius: 0.5rem;\n \n /* Note Variants */\n --note-bg: 214 100% 97%;\n --note-border: 214 100% 90%;\n --note-accent: 210 81% 56%;\n --note-text: 220 50% 30%;\n \n --danger-bg: 0 100% 97%;\n --danger-border: 0 100% 90%;\n --danger-accent: 0 85% 60%;\n --danger-text: 0 50% 30%;\n \n --warning-bg: 38 100% 97%;\n --warning-border: 38 100% 90%;\n --warning-accent: 38 100% 50%;\n --warning-text: 38 50% 30%;\n \n --success-bg: 142 100% 97%;\n --success-border: 142 100% 90%;\n --success-accent: 142 70% 50%;\n --success-text: 142 50% 25%;\n \n /* Spacing (matches Tailwind) */\n --space-1: 0.25rem;\n --space-2: 0.5rem;\n --space-3: 0.75rem;\n --space-4: 1rem;\n --space-5: 1.25rem;\n --space-6: 1.5rem;\n --space-8: 2rem;\n --space-10: 2.5rem;\n --space-12: 3rem;\n \n /* Shadows */\n --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);\n --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);\n --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);\n --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);\n \n /* Overlay */\n --overlay: 0 0% 0% / 0.5;\n \n /* Animation */\n --duration-fast: 150ms;\n --duration-normal: 200ms;\n --duration-slow: 300ms;\n \n /* Line numbers */\n --line-number-color: rgba(0, 0, 0, 0.05);\n}\n\n/* Dark Mode */\n.dark {\n /* Base */\n --background: 220 25% 10%;\n --foreground: 210 30% 96%;\n --card: 220 25% 15%;\n --card-foreground: 210 30% 96%;\n --popover: 220 25% 15%;\n --popover-foreground: 210 30% 96%;\n \n /* Primary */\n --primary: 210 100% 65%;\n --primary-foreground: 220 25% 10%;\n \n /* Secondary */\n --secondary: 215 25% 20%;\n --secondary-foreground: 210 30% 96%;\n \n /* Accent */\n --accent: 200 100% 60%;\n --accent-foreground: 220 25% 10%;\n \n /* Muted */\n --muted: 215 20% 25%;\n --muted-foreground: 215 20% 65%;\n \n /* Status */\n --destructive: 0 85% 70%;\n --destructive-foreground: 0 0% 100%;\n --success: 142 70% 55%;\n --success-foreground: 0 0% 100%;\n \n /* UI */\n --border: 215 20% 25%;\n --input: 215 20% 25%;\n --ring: 210 100% 65%;\n \n /* Note Variants */\n --note-bg: 217 50% 20%;\n --note-border: 217 50% 30%;\n --note-accent: 210 100% 65%;\n --note-text: 210 30% 90%;\n \n --danger-bg: 0 50% 15%;\n --danger-border: 0 50% 25%;\n --danger-accent: 0 85% 70%;\n --danger-text: 0 30% 90%;\n \n --warning-bg: 38 50% 15%;\n --warning-border: 38 50% 25%;\n --warning-accent: 38 100% 60%;\n --warning-text: 38 30% 90%;\n \n --success-bg: 142 50% 15%;\n --success-border: 142 50% 25%;\n --success-accent: 142 70% 55%;\n --success-text: 142 30% 90%;\n \n /* Line numbers */\n --line-number-color: rgba(255, 255, 255, 0.1);\n}\n\n/* Base Layer */\n@layer base {\n * {\n @apply border-border;\n }\n \n body {\n @apply bg-background text-foreground;\n }\n}\n\n/* DocuBook Container */\n.docubook-container {\n @apply bg-background text-foreground;\n}\n\n/* Utility Classes */\n@layer utilities {\n .prose {\n margin: 0 !important;\n }\n}\n"],"mappings":";;;AAgBA,QAAQ;AAER,gBAAgB,KAAK,CAAC,CAAC,CAAC,GAAG,CAAC,KAAK;AAEjC,OAAO,EAEL,kBAAkB,EAAE,IAAI,IAAI,cAAc,EAC1C,kBAAkB,EAAE,IAAI,IAAI,cAAc,EAC1C,YAAY,EAAE,IAAI,IAAI,QAAQ,EAC9B,uBAAuB,EAAE,IAAI,IAAI,mBAAmB,EACpD,eAAe,EAAE,IAAI,IAAI,WAAW,EACpC,0BAA0B,EAAE,IAAI,IAAI,sBAAsB,EAG1D,eAAe,EAAE,IAAI,IAAI,WAAW,EACpC,0BAA0B,EAAE,IAAI,IAAI,sBAAsB,EAC1D,iBAAiB,EAAE,IAAI,IAAI,aAAa,EACxC,4BAA4B,EAAE,IAAI,IAAI,wBAAwB,EAC9D,cAAc,EAAE,IAAI,IAAI,UAAU,EAClC,yBAAyB,EAAE,IAAI,IAAI,qBAAqB,EACxD,aAAa,EAAE,IAAI,IAAI,SAAS,EAChC,wBAAwB,EAAE,IAAI,IAAI,oBAAoB,EAGtD,mBAAmB,EAAE,IAAI,IAAI,eAAe,EAC5C,8BAA8B,EAAE,IAAI,IAAI,0BAA0B,EAClE,eAAe,EAAE,IAAI,IAAI,WAAW,EACpC,0BAA0B,EAAE,IAAI,IAAI,sBAAsB,EAG1D,cAAc,EAAE,IAAI,IAAI,UAAU,EAClC,aAAa,EAAE,IAAI,IAAI,SAAS,EAChC,YAAY,EAAE,IAAI,IAAI,QAAQ,EAG9B,eAAe,EAAE,IAAI,IAAI,WAAW,EACpC,mBAAmB,EAAE,IAAI,IAAI,eAAe,EAC5C,mBAAmB,EAAE,IAAI,IAAI,eAAe,EAC5C,iBAAiB,EAAE,IAAI,IAAI,aAAa,EAExC,iBAAiB,EAAE,IAAI,IAAI,aAAa,EACxC,qBAAqB,EAAE,IAAI,IAAI,iBAAiB,EAChD,qBAAqB,EAAE,IAAI,IAAI,iBAAiB,EAChD,mBAAmB,EAAE,IAAI,IAAI,eAAe,EAE5C,kBAAkB,EAAE,IAAI,IAAI,cAAc,EAC1C,sBAAsB,EAAE,IAAI,IAAI,kBAAkB,EAClD,sBAAsB,EAAE,IAAI,IAAI,kBAAkB,EAClD,oBAAoB,EAAE,IAAI,IAAI,gBAAgB,EAE9C,kBAAkB,EAAE,IAAI,IAAI,cAAc,EAC1C,sBAAsB,EAAE,IAAI,IAAI,kBAAkB,EAClD,sBAAsB,EAAE,IAAI,IAAI,kBAAkB,EAClD,oBAAoB,EAAE,IAAI,IAAI,gBAAgB,EAG9C,yBAAyB,EAAE,IAAI,IAAI,WAAW,EAC9C,yBAAyB,EAAE,IAAI,IAAI,sBAAsB,EACzD,wBAAwB,EAAE,IAAI,IAAI,UAAU,EAC5C,wBAAwB,EAAE,IAAI,IAAI,qBAAqB,EAGvD,cAAc,EAAE,IAAI,IAAI,SAAS,EACjC,cAAc,EAAE,IAAI,IAAI,oBAAoB,EAG5C,YAAY,EAAE,IAAI,IAAI,WAAW,EACjC,kBAAkB,EAAE,IAAI,IAAI,WAAW,EAAE,IAAI,EAG7C,WAAW,EAAE,IAAI,SAAS,EAC1B,WAAW,EAAE,KAAK,IAAI,UAAU,EAAE,IAAI,EACtC,WAAW,EAAE,KAAK,IAAI,UAAU,EAAE,IAAI,EACtC,WAAW,EAAE,KAAK,IAAI,UAAU,EAAE,IAAI,EAGtC,wBAAwB,EAAE,eAAe,KAAK,QAAQ,EACtD,sBAAsB,EAAE,aAAa,KAAK,QAAQ,EAElD,WAAW,eAAe,EACxB,KAAK,EAAE,MAAM,EAAE,CAAC,IAChB,GAAG,EAAE,MAAM,EAAE,IAAI,iCAAiC,MAGpD,WAAW,aAAa,EACtB,KAAK,EAAE,MAAM,EAAE,IAAI,iCAAiC,IACpD,GAAG,EAAE,MAAM,EAAE,CAAC;AAQlB;AAEE,gBAAc,IAAI,IAAI;AACtB,gBAAc,IAAI,IAAI;AACtB,UAAQ,EAAE,GAAG;AACb,qBAAmB,IAAI,IAAI;AAC3B,aAAW,EAAE,GAAG;AAChB,wBAAsB,IAAI,IAAI;AAG9B,aAAW,IAAI,IAAI;AACnB,wBAAsB,EAAE,GAAG;AAG3B,eAAa,IAAI,IAAI;AACrB,0BAAwB,IAAI,IAAI;AAGhC,YAAU,IAAI,KAAK;AACnB,uBAAqB,EAAE,GAAG;AAG1B,WAAS,IAAI,IAAI;AACjB,sBAAoB,IAAI,IAAI;AAG5B,iBAAe,EAAE,IAAI;AACrB,4BAA0B,EAAE,GAAG;AAC/B,aAAW,IAAI,IAAI;AACnB,wBAAsB,EAAE,GAAG;AAG3B,YAAU,IAAI,IAAI;AAClB,WAAS,IAAI,IAAI;AACjB,UAAQ,IAAI,IAAI;AAChB,YAAU;AAGV,aAAW,IAAI,KAAK;AACpB,iBAAe,IAAI,KAAK;AACxB,iBAAe,IAAI,IAAI;AACvB,eAAa,IAAI,IAAI;AAErB,eAAa,EAAE,KAAK;AACpB,mBAAiB,EAAE,KAAK;AACxB,mBAAiB,EAAE,IAAI;AACvB,iBAAe,EAAE,IAAI;AAErB,gBAAc,GAAG,KAAK;AACtB,oBAAkB,GAAG,KAAK;AAC1B,oBAAkB,GAAG,KAAK;AAC1B,kBAAgB,GAAG,IAAI;AAEvB,gBAAc,IAAI,KAAK;AACvB,oBAAkB,IAAI,KAAK;AAC3B,oBAAkB,IAAI,IAAI;AAC1B,kBAAgB,IAAI,IAAI;AAGxB,aAAW;AACX,aAAW;AACX,aAAW;AACX,aAAW;AACX,aAAW;AACX,aAAW;AACX,aAAW;AACX,cAAY;AACZ,cAAY;AAGZ,eAAa,EAAE,IAAI,IAAI,EAAE,IAAI,EAAE,EAAE,EAAE,EAAE;AACrC,eAAa,EAAE,IAAI,IAAI,KAAK,IAAI,EAAE,EAAE,EAAE,EAAE;AACxC,eAAa,EAAE,KAAK,KAAK,KAAK,IAAI,EAAE,EAAE,EAAE,EAAE;AAC1C,YAAU,EAAE,IAAI,IAAI,EAAE,IAAI,EAAE,EAAE,EAAE,EAAE,IAAI,EAAE,EAAE,IAAI,IAAI,KAAK,IAAI,EAAE,EAAE,EAAE,EAAE;AAGnE,aAAW,EAAE,GAAG,GAAG,EAAE;AAGrB,mBAAiB;AACjB,qBAAmB;AACnB,mBAAiB;AAGjB,uBAAqB,KAAK,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE;AACrC;AAGA,CAAC;AAEC,gBAAc,IAAI,IAAI;AACtB,gBAAc,IAAI,IAAI;AACtB,UAAQ,IAAI,IAAI;AAChB,qBAAmB,IAAI,IAAI;AAC3B,aAAW,IAAI,IAAI;AACnB,wBAAsB,IAAI,IAAI;AAG9B,aAAW,IAAI,KAAK;AACpB,wBAAsB,IAAI,IAAI;AAG9B,eAAa,IAAI,IAAI;AACrB,0BAAwB,IAAI,IAAI;AAGhC,YAAU,IAAI,KAAK;AACnB,uBAAqB,IAAI,IAAI;AAG7B,WAAS,IAAI,IAAI;AACjB,sBAAoB,IAAI,IAAI;AAG5B,iBAAe,EAAE,IAAI;AACrB,4BAA0B,EAAE,GAAG;AAC/B,aAAW,IAAI,IAAI;AACnB,wBAAsB,EAAE,GAAG;AAG3B,YAAU,IAAI,IAAI;AAClB,WAAS,IAAI,IAAI;AACjB,UAAQ,IAAI,KAAK;AAGjB,aAAW,IAAI,IAAI;AACnB,iBAAe,IAAI,IAAI;AACvB,iBAAe,IAAI,KAAK;AACxB,eAAa,IAAI,IAAI;AAErB,eAAa,EAAE,IAAI;AACnB,mBAAiB,EAAE,IAAI;AACvB,mBAAiB,EAAE,IAAI;AACvB,iBAAe,EAAE,IAAI;AAErB,gBAAc,GAAG,IAAI;AACrB,oBAAkB,GAAG,IAAI;AACzB,oBAAkB,GAAG,KAAK;AAC1B,kBAAgB,GAAG,IAAI;AAEvB,gBAAc,IAAI,IAAI;AACtB,oBAAkB,IAAI,IAAI;AAC1B,oBAAkB,IAAI,IAAI;AAC1B,kBAAgB,IAAI,IAAI;AAGxB,uBAAqB,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AAC3C;AAGA;AACE;AACE,WAAO;AACT;AAEA;AACE,WAAO,cAAc;AACvB;AACF;AAGA,CAAC;AACC,SAAO,cAAc;AACvB;AAGA;AACE,GAAC;AACC,YAAQ;AACV;AACF;","names":[]}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "unplugin-docubook",
3
3
  "type": "module",
4
- "version": "1.1.2",
4
+ "version": "1.1.3",
5
5
  "description": "Write with MDX — works with pretty much any JS framework: Vite, React, Vue, Svelte, you name it",
6
6
  "license": "MIT",
7
7
  "keywords": [