barbican-reset 3.42.0 → 3.43.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/index.js CHANGED
@@ -43,7 +43,6 @@ export { default as BrFormVisible } from '#components/BrFormVisible.vue'
43
43
  export { default as BrLink } from '#components/BrLink.vue'
44
44
  export { default as BrLoader } from '#components/BrLoader.vue'
45
45
  export { default as BrOverlay } from '#components/BrOverlay.vue'
46
- export { default as BrQrCode } from '#components/BrQrCode.vue'
47
46
  export { default as BrSkiplink } from '#components/BrSkiplink.vue'
48
47
  export { default as BrStatusBars } from '#components/BrStatusBars.vue'
49
48
  export { default as BrTableCell } from '#components/BrTableCell.vue'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "barbican-reset",
3
- "version": "3.42.0",
3
+ "version": "3.43.0",
4
4
  "description": "Shared design system for Barbican projects, providing SCSS utilities, animations, icons, Vue components, and JS helpers for consistent styling and behaviour.",
5
5
  "main": "index.js",
6
6
  "exports": {
@@ -1,21 +0,0 @@
1
- <template>
2
- <div class="br-qr-code" v-html="qrCode" />
3
- </template>
4
-
5
- <script setup>
6
- import { ref, watchEffect } from 'vue'
7
- import * as qrcode from 'qrcode'
8
-
9
- const props = defineProps({
10
- code: {
11
- type: String,
12
- required: true,
13
- },
14
- })
15
-
16
- const qrCode = ref('')
17
-
18
- watchEffect(async () => {
19
- qrCode.value = await qrcode.toString(props.code, { type: 'svg', margin: 0 })
20
- })
21
- </script>