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 +1 -1
- package/dist/module.mjs +18 -2
- package/package.json +1 -1
package/dist/module.json
CHANGED
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 }
|