nuxt-leap-mds 0.1.65 → 0.1.67

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/module.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "compatibility": {
5
5
  "nuxt": ">=3.14.0"
6
6
  },
7
- "version": "0.1.65",
7
+ "version": "0.1.67",
8
8
  "builder": {
9
9
  "@nuxt/module-builder": "1.0.2",
10
10
  "unbuild": "3.6.1"
package/dist/module.mjs CHANGED
@@ -49,7 +49,6 @@ const LEAP_MDS_COMPONENT_EXPORTS = [
49
49
  "LayoutTimelineCard",
50
50
  "LayoutTimelineContainer",
51
51
  "ModalRegion",
52
- "NzRoiCalculator",
53
52
  "RichTextImage",
54
53
  "RichTextLink",
55
54
  "RichTextRenderer",
@@ -77,7 +76,14 @@ const LEAP_MDS_COMPONENT_EXPORTS = [
77
76
  "UtilitySearchBar",
78
77
  "UtilitySitemap",
79
78
  "VideoWistia",
80
- "VideoYoutube"
79
+ "VideoYoutube",
80
+ "WorkableJobList",
81
+ "Yoshki"
82
+ ];
83
+ const LEAP_MDS_REGION_COMPONENT_EXPORTS = [
84
+ "AuLawConnectSocial",
85
+ "AuRoiCalculator",
86
+ "NzRoiCalculator"
81
87
  ];
82
88
  const module$1 = defineNuxtModule({
83
89
  meta: {
@@ -114,6 +120,16 @@ const module$1 = defineNuxtModule({
114
120
  global: true
115
121
  });
116
122
  }
123
+ for (const exportName of LEAP_MDS_REGION_COMPONENT_EXPORTS) {
124
+ addComponent({
125
+ name: `${exportName}`,
126
+ export: exportName,
127
+ filePath: `${LIB}`,
128
+ // Required for StoryblokComponent: it uses resolveDynamicComponent(), which only
129
+ // sees app-wide (global) registrations—not plain Nuxt auto-imports.
130
+ global: true
131
+ });
132
+ }
117
133
  addImports([
118
134
  { name: "getValidRegionCode", from: LIB },
119
135
  { name: "registerLeapMdsFontAwesome", from: LIB }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nuxt-leap-mds",
3
- "version": "0.1.65",
3
+ "version": "0.1.67",
4
4
  "description": "Nuxt module for leap-mds-storybook (LEAP design system components)",
5
5
  "license": "MIT",
6
6
  "type": "module",