@conduction/nextcloud-vue 1.0.0-beta.47 → 1.0.0-beta.48

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@conduction/nextcloud-vue",
3
- "version": "1.0.0-beta.47",
3
+ "version": "1.0.0-beta.48",
4
4
  "description": "Shared Vue component library for Conduction Nextcloud apps — complements @nextcloud/vue with higher-level components, OpenRegister integration, and NL Design System support",
5
5
  "license": "EUPL-1.2",
6
6
  "author": "Conduction B.V. <info@conduction.nl>",
@@ -113,7 +113,12 @@ Descendant page components (`CnIndexPage`, `CnDetailPage`, `CnDashboardPage`) ov
113
113
 
114
114
  ### Static manifest with backend override (default)
115
115
 
116
- ```js
116
+ <!-- Fenced as `javascript` (not in styleguide customLangs) so the
117
+ example renders as syntax-highlighted code without webpack
118
+ trying to compile the import of `../manifest.json` (which lives
119
+ in the consuming app, not this library). -->
120
+
121
+ ```javascript
117
122
  import { CnAppRoot, useAppManifest } from '@conduction/nextcloud-vue'
118
123
  import bundledManifest from '../manifest.json'
119
124
 
@@ -159,7 +164,7 @@ export default {
159
164
 
160
165
  Add `validate: true` for synchronous schema validation — failures populate `validationErrors` and emit a `console.warn` prefixed `[useAppManifest]` but never replace the manifest (informational policy, mirroring the legacy branch):
161
166
 
162
- ```js
167
+ ```javascript
163
168
  const { manifest, isLoading, validationErrors } = useAppManifest({
164
169
  manifest: builderManifest,
165
170
  validate: true,