@conduction/nextcloud-vue 1.0.0-beta.15 → 1.0.0-beta.17

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.15",
3
+ "version": "1.0.0-beta.17",
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>",
@@ -393,13 +393,13 @@ softwarecatalog `Organisaties` page needs a profile-style card with
393
393
  logo, contactpersoon block, and a CTA button — register the card
394
394
  component on `CnAppRoot` and reference it by name in the manifest:
395
395
 
396
- ```js
396
+ ```js {static}
397
397
  // src/customComponents.js
398
398
  import OrganisatieCard from './components/cards/OrganisatieCard.vue'
399
399
  export const customComponents = { OrganisatieCard }
400
400
  ```
401
401
 
402
- ```vue
402
+ ```vue {static}
403
403
  <!-- App.vue -->
404
404
  <CnAppRoot :manifest="manifest" app-id="softwarecatalog" :custom-components="customComponents">
405
405
  <router-view />