@ox-content/vite-plugin-vue 2.67.0 → 2.69.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/index.d.cts CHANGED
@@ -2,7 +2,18 @@ import { PluginOption } from "vite";
2
2
  import { OxContentOptions, oxContent } from "@ox-content/vite-plugin";
3
3
 
4
4
  //#region src/types.d.ts
5
+ /**
6
+ * Code annotation options for the Vue integration.
7
+ *
8
+ * The Vue integration supports opt-in fence metadata and exposes the attribute
9
+ * key used by the Vue markdown transform.
10
+ */
5
11
  interface CodeAnnotationsOptions {
12
+ /**
13
+ * Attribute name read from the code fence meta string.
14
+ *
15
+ * @default 'annotate'
16
+ */
6
17
  metaKey?: string;
7
18
  }
8
19
  interface ResolvedCodeAnnotationsOptions {
@@ -16,7 +27,10 @@ interface ResolvedCodeAnnotationsOptions {
16
27
  type ComponentsMap = Record<string, string>;
17
28
  /**
18
29
  * Component registration options.
30
+ *
19
31
  * Can be a map, a glob pattern, or an array of glob patterns.
32
+ * Globbed components are resolved relative to the Vite project root during
33
+ * `configResolved`.
20
34
  *
21
35
  * @example
22
36
  * ```ts
@@ -35,18 +49,28 @@ type ComponentsMap = Record<string, string>;
35
49
  type ComponentsOption = ComponentsMap | string | string[];
36
50
  /**
37
51
  * Vue integration plugin options.
52
+ *
53
+ * This extends the core ox-content options with Vue component registration and
54
+ * Vue-specific markdown behavior. Markdown files are transformed into Vue-aware
55
+ * modules while the core plugin provides shared parsing and embeds.
38
56
  */
39
57
  interface VueIntegrationOptions extends OxContentOptions {
40
58
  /**
41
59
  * Markdown-like file extensions to process.
60
+ *
61
+ * Values are normalized with a leading dot before matching file paths.
62
+ *
42
63
  * @default ['.md', '.markdown', '.mdx']
43
64
  */
44
65
  extensions?: string[];
45
66
  /**
46
67
  * Components to register for use in Markdown.
68
+ *
47
69
  * Can be a map of names to paths, a glob pattern, or an array of globs.
48
70
  * When using glob patterns, component names are derived from file names.
49
71
  *
72
+ * @default {}
73
+ *
50
74
  * @example
51
75
  * ```ts
52
76
  * // Glob pattern (recommended)
@@ -58,35 +82,111 @@ interface VueIntegrationOptions extends OxContentOptions {
58
82
  * }
59
83
  * ```
60
84
  */
85
+ components?: ComponentsOption;
86
+ /**
87
+ * Enable opt-in line annotations for fenced code blocks.
88
+ *
89
+ * Pass `true` to use the default `annotate` meta key, or an object to change it.
90
+ *
91
+ * @default false
92
+ */
93
+ codeAnnotations?: boolean | CodeAnnotationsOptions;
61
94
  /**
62
95
  * Enable Vue Reactivity Transform.
96
+ *
97
+ * Keep this disabled unless the project still relies on Vue's experimental
98
+ * reactivity transform syntax.
99
+ *
63
100
  * @default false
64
101
  */
102
+ reactivityTransform?: boolean;
65
103
  /**
66
104
  * Enable custom blocks in Markdown (e.g., `:::tip`).
105
+ *
106
+ * Disable this only when another Markdown plugin owns the same container
107
+ * syntax.
108
+ *
67
109
  * @default true
68
110
  */
69
- components?: ComponentsOption;
70
- codeAnnotations?: boolean | CodeAnnotationsOptions;
71
- reactivityTransform?: boolean;
72
111
  customBlocks?: boolean;
112
+ /**
113
+ * Built-in static embeds rendered during Markdown transformation.
114
+ *
115
+ * Set to `false` to disable all built-in embeds.
116
+ * Configure individual fetch-related options under `github` and `openGraph`.
117
+ *
118
+ * @default { github: true, openGraph: true }
119
+ */
73
120
  embeds?: BuiltinEmbedOptions | false;
74
121
  }
122
+ /**
123
+ * Fetch options for Vue GitHub embeds.
124
+ */
75
125
  interface GitHubEmbedOptions {
126
+ /**
127
+ * GitHub API token used for higher rate limits and private repository access.
128
+ * @default ''
129
+ */
76
130
  token?: string;
131
+ /**
132
+ * Cache fetched repository and source data in memory for the current process.
133
+ * @default true
134
+ */
77
135
  cache?: boolean;
136
+ /**
137
+ * Cache TTL in milliseconds.
138
+ * @default 3600000
139
+ */
78
140
  cacheTTL?: number;
141
+ /**
142
+ * Maximum source file size to inline in bytes.
143
+ * @default 200000
144
+ */
79
145
  maxSourceBytes?: number;
146
+ /**
147
+ * Maximum source lines to inline when no line range is specified.
148
+ * @default 120
149
+ */
80
150
  maxSourceLines?: number;
81
151
  }
152
+ /**
153
+ * Fetch options for Vue Open Graph embeds.
154
+ */
82
155
  interface OpenGraphEmbedOptions {
156
+ /**
157
+ * Request timeout in milliseconds.
158
+ * @default 10000
159
+ */
83
160
  timeout?: number;
161
+ /**
162
+ * Cache fetched Open Graph metadata in memory for the current process.
163
+ * @default true
164
+ */
84
165
  cache?: boolean;
166
+ /**
167
+ * Cache TTL in milliseconds.
168
+ * @default 3600000
169
+ */
85
170
  cacheTTL?: number;
171
+ /**
172
+ * User agent sent with metadata fetch requests.
173
+ * @default 'ox-content-ogp-bot/1.0 (compatible; +https://github.com/ubugeeei-prod/ox-content)'
174
+ */
86
175
  userAgent?: string;
87
176
  }
177
+ /**
178
+ * Built-in embed options for the Vue integration.
179
+ */
88
180
  interface BuiltinEmbedOptions {
181
+ /**
182
+ * Render `<GitHub repo="owner/name" />` repository cards.
183
+ * @default true
184
+ */
89
185
  github?: boolean | GitHubEmbedOptions;
186
+ /**
187
+ * Render `<OgCard url="https://example.com" />` Open Graph link cards.
188
+ * @default true
189
+ */
90
190
  openGraph?: boolean | OpenGraphEmbedOptions;
91
191
  }
92
192
  interface ResolvedBuiltinEmbedOptions {
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.cts","names":[],"sources":["../src/types.ts","../src/index.ts"],"mappings":";;;;UAMiB,sBAAA;EACf,OAAA;AAAA;AAAA,UAGe,8BAAA;EACf,OAAA;EACA,OAAA;AAAA;;;;AAOF;KAAY,aAAA,GAAgB,MAAA;;;;AAoB5B;;;;;AAKA;;;;;;;;;;KALY,gBAAA,GAAmB,aAAA;;;;UAKd,qBAAA,SAA8B,gBAAA;EAmC7C;;;;EA9BA,UAAA;EAgC4B;AAG9B;;;;;;;;;;;AAQA;;;;EACE;;;;EAGS;;AAGX;;EAtBE,UAAA,GAAa,gBAAA;EACb,eAAA,aAA4B,sBAAA;EAC5B,mBAAA;EACA,YAAA;EACA,MAAA,GAAS,mBAAA;AAAA;AAAA,UAGM,kBAAA;EACf,KAAA;EACA,KAAA;EACA,QAAA;EACA,cAAA;EACA,cAAA;AAAA;AAAA,UAGe,qBAAA;EACf,OAAA;EACA,KAAA;EACA,QAAA;EACA,SAAA;AAAA;AAAA,UAGe,mBAAA;EACf,MAAA,aAAmB,kBAAA;EACnB,SAAA,aAAsB,qBAAA;AAAA;AAAA,UAGP,2BAAA;EACf,MAAA,EAAQ,kBAAA;EACR,SAAA,EAAW,qBAAA;AAAA;;;;UAMI,kBAAA;EACf,MAAA;EACA,MAAA;EACA,IAAA;EACA,UAAA;EACA,GAAA;EACA,WAAA;EACA,GAAA;EACA,WAAA;EACA,eAAA,EAAiB,8BAAA;EACjB,UAAA,EAAY,gBAAA;EACZ,mBAAA;EACA,YAAA;EACA,MAAA,EAAQ,2BAAA;AAAA;;;;UAMO,kBAAA;EACf,IAAA;EACA,GAAA;EAQA;;;EAJA,cAAA;EAUe;;;EANf,WAAA,EAAa,MAAA;AAAA;;;;UAME,eAAA;EAoBf;;;EAhBA,IAAA;EAsBoC;;;EAlBpC,KAAA,EAAO,MAAA;EAkCF;;;EA9BL,QAAA;EAsBA;;;EAlBA,EAAA;EA0BA;;;EAtBA,OAAA;AAAA;;;;UAMe,qBAAA;EAwBf;;;EApBA,IAAA;EAsBmB;;;EAlBnB,OAAA,EAAS,eAAA;;ACvFX;;ED2FE,WAAA,EAAa,MAAA;EC3FgE;;;ED+F7E,GAAA,EAAK,QAAA;AAAA;;;;UAMU,QAAA;EACf,KAAA;EACA,IAAA;EACA,IAAA;EACA,QAAA,GAAW,QAAA;AAAA;;;AA7Lb;;;;;AASA;;;;;AAoBA;;;;;AAKA;;;;;;;;AAlCA,iBCoFgB,YAAA,CAAa,OAAA,GAAS,qBAAA,GAA6B,YAAA"}
1
+ {"version":3,"file":"index.d.cts","names":[],"sources":["../src/types.ts","../src/index.ts"],"mappings":";;;;AAYA;;;;;AASA;AATA,UAAiB,sBAAA;;;;AAkBjB;;EAZE,OAAA;AAAA;AAAA,UAGe,8BAAA;EACf,OAAA;EACA,OAAA;AAAA;;;AAuCF;;KAhCY,aAAA,GAAgB,MAAA;;;;;;;;;;;;;;;;;;;AA0G5B;;;KAnFY,gBAAA,GAAmB,aAAA;;;;;;;;UASd,qBAAA,SAA8B,gBAAA;EA6GT;;;;;;;EArGpC,UAAA;EA4HS;AAMX;;;;;;;;;;AAcA;;;;;;;;EA3HE,UAAA,GAAa,gBAAA;EA6HmB;AAMlC;;;;;;EA1HE,eAAA,aAA4B,sBAAA;EAuIO;;;;;;;;EA7HnC,mBAAA;EAyHA;;;;;;;;EA/GA,YAAA;EAmHmC;AAMrC;;;;;;;EA/GE,MAAA,GAAS,mBAAA;AAAA;;;AAiIX;UA3HiB,kBAAA;;;;;EAKf,KAAA;EAoIA;;;;EA9HA,KAAA;EA8Ie;;;;EAxIf,QAAA;EA2JK;;;;EArJL,cAAA;EA2IS;;;;EArIT,cAAA;AAAA;;AAqJF;;UA/IiB,qBAAA;EAmJI;;;;EA9InB,OAAA;EA8IW;;;;EAxIX,KAAA;;ACxFF;;;ED8FE,QAAA;EC9FoC;;;;EDoGpC,SAAA;AAAA;;;;UAMe,mBAAA;;;;;EAKf,MAAA,aAAmB,kBAAA;;;;;EAMnB,SAAA,aAAsB,qBAAA;AAAA;AAAA,UAGP,2BAAA;EACf,MAAA,EAAQ,kBAAA;EACR,SAAA,EAAW,qBAAA;AAAA;;;;UAMI,kBAAA;EACf,MAAA;EACA,MAAA;EACA,IAAA;EACA,UAAA;EACA,GAAA;EACA,WAAA;EACA,GAAA;EACA,WAAA;EACA,eAAA,EAAiB,8BAAA;EACjB,UAAA,EAAY,gBAAA;EACZ,mBAAA;EACA,YAAA;EACA,MAAA,EAAQ,2BAAA;AAAA;;;;UAMO,kBAAA;EACf,IAAA;EACA,GAAA;;;;EAKA,cAAA;;;;EAKA,WAAA,EAAa,MAAA;AAAA;;;;UAME,eAAA;;;;EAIf,IAAA;;;;EAKA,KAAA,EAAO,MAAA;;;;EAKP,QAAA;;;;EAKA,EAAA;;;;EAKA,OAAA;AAAA;;;;UAMe,qBAAA;;;;EAIf,IAAA;;;;EAKA,OAAA,EAAS,eAAA;;;;EAKT,WAAA,EAAa,MAAA;;;;EAKb,GAAA,EAAK,QAAA;AAAA;;;;UAMU,QAAA;EACf,KAAA;EACA,IAAA;EACA,IAAA;EACA,QAAA,GAAW,QAAA;AAAA;;;AAzSb;;;;;AASA;;;;;AAuBA;;;;;AASA;;;;;;;;AAzCA,iBCyEgB,YAAA,CAAa,OAAA,GAAS,qBAAA,GAA6B,YAAA"}
package/dist/index.d.mts CHANGED
@@ -2,7 +2,18 @@ import { OxContentOptions, oxContent } from "@ox-content/vite-plugin";
2
2
  import { PluginOption } from "vite";
3
3
 
4
4
  //#region src/types.d.ts
5
+ /**
6
+ * Code annotation options for the Vue integration.
7
+ *
8
+ * The Vue integration supports opt-in fence metadata and exposes the attribute
9
+ * key used by the Vue markdown transform.
10
+ */
5
11
  interface CodeAnnotationsOptions {
12
+ /**
13
+ * Attribute name read from the code fence meta string.
14
+ *
15
+ * @default 'annotate'
16
+ */
6
17
  metaKey?: string;
7
18
  }
8
19
  interface ResolvedCodeAnnotationsOptions {
@@ -16,7 +27,10 @@ interface ResolvedCodeAnnotationsOptions {
16
27
  type ComponentsMap = Record<string, string>;
17
28
  /**
18
29
  * Component registration options.
30
+ *
19
31
  * Can be a map, a glob pattern, or an array of glob patterns.
32
+ * Globbed components are resolved relative to the Vite project root during
33
+ * `configResolved`.
20
34
  *
21
35
  * @example
22
36
  * ```ts
@@ -35,18 +49,28 @@ type ComponentsMap = Record<string, string>;
35
49
  type ComponentsOption = ComponentsMap | string | string[];
36
50
  /**
37
51
  * Vue integration plugin options.
52
+ *
53
+ * This extends the core ox-content options with Vue component registration and
54
+ * Vue-specific markdown behavior. Markdown files are transformed into Vue-aware
55
+ * modules while the core plugin provides shared parsing and embeds.
38
56
  */
39
57
  interface VueIntegrationOptions extends OxContentOptions {
40
58
  /**
41
59
  * Markdown-like file extensions to process.
60
+ *
61
+ * Values are normalized with a leading dot before matching file paths.
62
+ *
42
63
  * @default ['.md', '.markdown', '.mdx']
43
64
  */
44
65
  extensions?: string[];
45
66
  /**
46
67
  * Components to register for use in Markdown.
68
+ *
47
69
  * Can be a map of names to paths, a glob pattern, or an array of globs.
48
70
  * When using glob patterns, component names are derived from file names.
49
71
  *
72
+ * @default {}
73
+ *
50
74
  * @example
51
75
  * ```ts
52
76
  * // Glob pattern (recommended)
@@ -58,35 +82,111 @@ interface VueIntegrationOptions extends OxContentOptions {
58
82
  * }
59
83
  * ```
60
84
  */
85
+ components?: ComponentsOption;
86
+ /**
87
+ * Enable opt-in line annotations for fenced code blocks.
88
+ *
89
+ * Pass `true` to use the default `annotate` meta key, or an object to change it.
90
+ *
91
+ * @default false
92
+ */
93
+ codeAnnotations?: boolean | CodeAnnotationsOptions;
61
94
  /**
62
95
  * Enable Vue Reactivity Transform.
96
+ *
97
+ * Keep this disabled unless the project still relies on Vue's experimental
98
+ * reactivity transform syntax.
99
+ *
63
100
  * @default false
64
101
  */
102
+ reactivityTransform?: boolean;
65
103
  /**
66
104
  * Enable custom blocks in Markdown (e.g., `:::tip`).
105
+ *
106
+ * Disable this only when another Markdown plugin owns the same container
107
+ * syntax.
108
+ *
67
109
  * @default true
68
110
  */
69
- components?: ComponentsOption;
70
- codeAnnotations?: boolean | CodeAnnotationsOptions;
71
- reactivityTransform?: boolean;
72
111
  customBlocks?: boolean;
112
+ /**
113
+ * Built-in static embeds rendered during Markdown transformation.
114
+ *
115
+ * Set to `false` to disable all built-in embeds.
116
+ * Configure individual fetch-related options under `github` and `openGraph`.
117
+ *
118
+ * @default { github: true, openGraph: true }
119
+ */
73
120
  embeds?: BuiltinEmbedOptions | false;
74
121
  }
122
+ /**
123
+ * Fetch options for Vue GitHub embeds.
124
+ */
75
125
  interface GitHubEmbedOptions {
126
+ /**
127
+ * GitHub API token used for higher rate limits and private repository access.
128
+ * @default ''
129
+ */
76
130
  token?: string;
131
+ /**
132
+ * Cache fetched repository and source data in memory for the current process.
133
+ * @default true
134
+ */
77
135
  cache?: boolean;
136
+ /**
137
+ * Cache TTL in milliseconds.
138
+ * @default 3600000
139
+ */
78
140
  cacheTTL?: number;
141
+ /**
142
+ * Maximum source file size to inline in bytes.
143
+ * @default 200000
144
+ */
79
145
  maxSourceBytes?: number;
146
+ /**
147
+ * Maximum source lines to inline when no line range is specified.
148
+ * @default 120
149
+ */
80
150
  maxSourceLines?: number;
81
151
  }
152
+ /**
153
+ * Fetch options for Vue Open Graph embeds.
154
+ */
82
155
  interface OpenGraphEmbedOptions {
156
+ /**
157
+ * Request timeout in milliseconds.
158
+ * @default 10000
159
+ */
83
160
  timeout?: number;
161
+ /**
162
+ * Cache fetched Open Graph metadata in memory for the current process.
163
+ * @default true
164
+ */
84
165
  cache?: boolean;
166
+ /**
167
+ * Cache TTL in milliseconds.
168
+ * @default 3600000
169
+ */
85
170
  cacheTTL?: number;
171
+ /**
172
+ * User agent sent with metadata fetch requests.
173
+ * @default 'ox-content-ogp-bot/1.0 (compatible; +https://github.com/ubugeeei-prod/ox-content)'
174
+ */
86
175
  userAgent?: string;
87
176
  }
177
+ /**
178
+ * Built-in embed options for the Vue integration.
179
+ */
88
180
  interface BuiltinEmbedOptions {
181
+ /**
182
+ * Render `<GitHub repo="owner/name" />` repository cards.
183
+ * @default true
184
+ */
89
185
  github?: boolean | GitHubEmbedOptions;
186
+ /**
187
+ * Render `<OgCard url="https://example.com" />` Open Graph link cards.
188
+ * @default true
189
+ */
90
190
  openGraph?: boolean | OpenGraphEmbedOptions;
91
191
  }
92
192
  interface ResolvedBuiltinEmbedOptions {
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.mts","names":[],"sources":["../src/types.ts","../src/index.ts"],"mappings":";;;;UAMiB,sBAAA;EACf,OAAA;AAAA;AAAA,UAGe,8BAAA;EACf,OAAA;EACA,OAAA;AAAA;;;;AAOF;KAAY,aAAA,GAAgB,MAAA;;;;AAoB5B;;;;;AAKA;;;;;;;;;;KALY,gBAAA,GAAmB,aAAA;;;;UAKd,qBAAA,SAA8B,gBAAA;EAmC7C;;;;EA9BA,UAAA;EAgC4B;AAG9B;;;;;;;;;;;AAQA;;;;EACE;;;;EAGS;;AAGX;;EAtBE,UAAA,GAAa,gBAAA;EACb,eAAA,aAA4B,sBAAA;EAC5B,mBAAA;EACA,YAAA;EACA,MAAA,GAAS,mBAAA;AAAA;AAAA,UAGM,kBAAA;EACf,KAAA;EACA,KAAA;EACA,QAAA;EACA,cAAA;EACA,cAAA;AAAA;AAAA,UAGe,qBAAA;EACf,OAAA;EACA,KAAA;EACA,QAAA;EACA,SAAA;AAAA;AAAA,UAGe,mBAAA;EACf,MAAA,aAAmB,kBAAA;EACnB,SAAA,aAAsB,qBAAA;AAAA;AAAA,UAGP,2BAAA;EACf,MAAA,EAAQ,kBAAA;EACR,SAAA,EAAW,qBAAA;AAAA;;;;UAMI,kBAAA;EACf,MAAA;EACA,MAAA;EACA,IAAA;EACA,UAAA;EACA,GAAA;EACA,WAAA;EACA,GAAA;EACA,WAAA;EACA,eAAA,EAAiB,8BAAA;EACjB,UAAA,EAAY,gBAAA;EACZ,mBAAA;EACA,YAAA;EACA,MAAA,EAAQ,2BAAA;AAAA;;;;UAMO,kBAAA;EACf,IAAA;EACA,GAAA;EAQA;;;EAJA,cAAA;EAUe;;;EANf,WAAA,EAAa,MAAA;AAAA;;;;UAME,eAAA;EAoBf;;;EAhBA,IAAA;EAsBoC;;;EAlBpC,KAAA,EAAO,MAAA;EAkCF;;;EA9BL,QAAA;EAsBA;;;EAlBA,EAAA;EA0BA;;;EAtBA,OAAA;AAAA;;;;UAMe,qBAAA;EAwBf;;;EApBA,IAAA;EAsBmB;;;EAlBnB,OAAA,EAAS,eAAA;;ACvFX;;ED2FE,WAAA,EAAa,MAAA;EC3FgE;;;ED+F7E,GAAA,EAAK,QAAA;AAAA;;;;UAMU,QAAA;EACf,KAAA;EACA,IAAA;EACA,IAAA;EACA,QAAA,GAAW,QAAA;AAAA;;;AA7Lb;;;;;AASA;;;;;AAoBA;;;;;AAKA;;;;;;;;AAlCA,iBCoFgB,YAAA,CAAa,OAAA,GAAS,qBAAA,GAA6B,YAAA"}
1
+ {"version":3,"file":"index.d.mts","names":[],"sources":["../src/types.ts","../src/index.ts"],"mappings":";;;;AAYA;;;;;AASA;AATA,UAAiB,sBAAA;;;;AAkBjB;;EAZE,OAAA;AAAA;AAAA,UAGe,8BAAA;EACf,OAAA;EACA,OAAA;AAAA;;;AAuCF;;KAhCY,aAAA,GAAgB,MAAA;;;;;;;;;;;;;;;;;;;AA0G5B;;;KAnFY,gBAAA,GAAmB,aAAA;;;;;;;;UASd,qBAAA,SAA8B,gBAAA;EA6GT;;;;;;;EArGpC,UAAA;EA4HS;AAMX;;;;;;;;;;AAcA;;;;;;;;EA3HE,UAAA,GAAa,gBAAA;EA6HmB;AAMlC;;;;;;EA1HE,eAAA,aAA4B,sBAAA;EAuIO;;;;;;;;EA7HnC,mBAAA;EAyHA;;;;;;;;EA/GA,YAAA;EAmHmC;AAMrC;;;;;;;EA/GE,MAAA,GAAS,mBAAA;AAAA;;;AAiIX;UA3HiB,kBAAA;;;;;EAKf,KAAA;EAoIA;;;;EA9HA,KAAA;EA8Ie;;;;EAxIf,QAAA;EA2JK;;;;EArJL,cAAA;EA2IS;;;;EArIT,cAAA;AAAA;;AAqJF;;UA/IiB,qBAAA;EAmJI;;;;EA9InB,OAAA;EA8IW;;;;EAxIX,KAAA;;ACxFF;;;ED8FE,QAAA;EC9FoC;;;;EDoGpC,SAAA;AAAA;;;;UAMe,mBAAA;;;;;EAKf,MAAA,aAAmB,kBAAA;;;;;EAMnB,SAAA,aAAsB,qBAAA;AAAA;AAAA,UAGP,2BAAA;EACf,MAAA,EAAQ,kBAAA;EACR,SAAA,EAAW,qBAAA;AAAA;;;;UAMI,kBAAA;EACf,MAAA;EACA,MAAA;EACA,IAAA;EACA,UAAA;EACA,GAAA;EACA,WAAA;EACA,GAAA;EACA,WAAA;EACA,eAAA,EAAiB,8BAAA;EACjB,UAAA,EAAY,gBAAA;EACZ,mBAAA;EACA,YAAA;EACA,MAAA,EAAQ,2BAAA;AAAA;;;;UAMO,kBAAA;EACf,IAAA;EACA,GAAA;;;;EAKA,cAAA;;;;EAKA,WAAA,EAAa,MAAA;AAAA;;;;UAME,eAAA;;;;EAIf,IAAA;;;;EAKA,KAAA,EAAO,MAAA;;;;EAKP,QAAA;;;;EAKA,EAAA;;;;EAKA,OAAA;AAAA;;;;UAMe,qBAAA;;;;EAIf,IAAA;;;;EAKA,OAAA,EAAS,eAAA;;;;EAKT,WAAA,EAAa,MAAA;;;;EAKb,GAAA,EAAK,QAAA;AAAA;;;;UAMU,QAAA;EACf,KAAA;EACA,IAAA;EACA,IAAA;EACA,QAAA,GAAW,QAAA;AAAA;;;AAzSb;;;;;AASA;;;;;AAuBA;;;;;AASA;;;;;;;;AAzCA,iBCyEgB,YAAA,CAAa,OAAA,GAAS,qBAAA,GAA6B,YAAA"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ox-content/vite-plugin-vue",
3
- "version": "2.67.0",
3
+ "version": "2.69.0",
4
4
  "description": "Vue integration for Ox Content - Embed Vue components in Markdown",
5
5
  "keywords": [
6
6
  "markdown",
@@ -35,8 +35,8 @@
35
35
  "provenance": true
36
36
  },
37
37
  "dependencies": {
38
- "@ox-content/vite-plugin": "2.67.0",
39
- "@ox-content/islands": "2.67.0"
38
+ "@ox-content/islands": "2.69.0",
39
+ "@ox-content/vite-plugin": "2.69.0"
40
40
  },
41
41
  "devDependencies": {
42
42
  "@types/node": "^25.8.0",