@designcrowd/fe-shared-lib 1.5.0-jj-3 → 1.5.0-jj-4
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,5 @@
|
|
|
1
1
|
import Card from './PublishBrandPageCard.vue';
|
|
2
2
|
import PublishBrandPageModal from './PublishBrandPageModal.vue';
|
|
3
|
-
import PublishBrandPageModalTwo from './PublishBrandPageModalTwo.vue';
|
|
4
3
|
import { domains } from './__fixtures__/data';
|
|
5
4
|
import { setSharedLibLocaleAsync } from '../../../useSharedLibTranslate';
|
|
6
5
|
|
|
@@ -179,7 +178,6 @@ export const PublishedWithContent = () => {
|
|
|
179
178
|
return {
|
|
180
179
|
components: {
|
|
181
180
|
PublishBrandPageModal,
|
|
182
|
-
PublishBrandPageModalTwo,
|
|
183
181
|
},
|
|
184
182
|
data() {
|
|
185
183
|
return {
|
|
@@ -188,11 +186,24 @@ export const PublishedWithContent = () => {
|
|
|
188
186
|
},
|
|
189
187
|
methods: {},
|
|
190
188
|
template: `
|
|
191
|
-
|
|
189
|
+
<PublishBrandPageModal
|
|
190
|
+
visible
|
|
191
|
+
is-design-com
|
|
192
|
+
is-published
|
|
193
|
+
should-publish
|
|
194
|
+
:domains="domains"
|
|
195
|
+
isSubsequentPublish="true"
|
|
196
|
+
showUpsellRotation="true"
|
|
197
|
+
brand-page-display-name='Website'
|
|
198
|
+
brand-page-slug='test-slug'
|
|
199
|
+
brand-page-base-url="https://brand.site"
|
|
200
|
+
radio-value="slug"
|
|
201
|
+
brand-page-url="https://brand.site/test-slug"
|
|
202
|
+
>
|
|
192
203
|
<template #upsell>
|
|
193
204
|
<div>Upsell container goes here 111111</div>
|
|
194
205
|
</template>
|
|
195
|
-
</
|
|
206
|
+
</PublishBrandPageModal>
|
|
196
207
|
`,
|
|
197
208
|
};
|
|
198
209
|
};
|