@designcrowd/fe-shared-lib 1.5.0-jj-2 → 1.5.0-jj-3
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,5 +1,6 @@
|
|
|
1
1
|
import Card from './PublishBrandPageCard.vue';
|
|
2
2
|
import PublishBrandPageModal from './PublishBrandPageModal.vue';
|
|
3
|
+
import PublishBrandPageModalTwo from './PublishBrandPageModalTwo.vue';
|
|
3
4
|
import { domains } from './__fixtures__/data';
|
|
4
5
|
import { setSharedLibLocaleAsync } from '../../../useSharedLibTranslate';
|
|
5
6
|
|
|
@@ -174,6 +175,30 @@ export const PublishedNoDomains = () => {
|
|
|
174
175
|
|
|
175
176
|
PublishedNoDomains.loaders = [loadTranslationAsync];
|
|
176
177
|
|
|
178
|
+
export const PublishedWithContent = () => {
|
|
179
|
+
return {
|
|
180
|
+
components: {
|
|
181
|
+
PublishBrandPageModal,
|
|
182
|
+
PublishBrandPageModalTwo,
|
|
183
|
+
},
|
|
184
|
+
data() {
|
|
185
|
+
return {
|
|
186
|
+
domains,
|
|
187
|
+
};
|
|
188
|
+
},
|
|
189
|
+
methods: {},
|
|
190
|
+
template: `
|
|
191
|
+
<PublishBrandPageModalTwo>
|
|
192
|
+
<template #upsell>
|
|
193
|
+
<div>Upsell container goes here 111111</div>
|
|
194
|
+
</template>
|
|
195
|
+
</PublishBrandPageModalTwo>
|
|
196
|
+
`,
|
|
197
|
+
};
|
|
198
|
+
};
|
|
199
|
+
|
|
200
|
+
PublishedWithContent.loaders = [loadTranslationAsync];
|
|
201
|
+
|
|
177
202
|
export const Free = () => {
|
|
178
203
|
return {
|
|
179
204
|
components: {
|