@designcrowd/fe-shared-lib 1.2.0-ml-jj-8 → 1.2.0-ml-jj-9

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,6 @@
1
1
  {
2
2
  "name": "@designcrowd/fe-shared-lib",
3
- "version": "1.2.0-ml-jj-8",
3
+ "version": "1.2.0-ml-jj-9",
4
4
  "scripts": {
5
5
  "start": "npm run storybook",
6
6
  "build": "npm run build:css --production",
@@ -246,7 +246,7 @@
246
246
  @close-modal="onSellDomainNameListCloseModal"
247
247
  @search="searchDomainName(true)"
248
248
  />
249
- </div>
249
+ </div>
250
250
  </template>
251
251
  <script>
252
252
  import Modal from '../../../atoms/components/Modal/Modal.vue';
@@ -35,12 +35,12 @@
35
35
  </Modal>
36
36
  </template>
37
37
  <script>
38
+ import { computed } from 'vue';
38
39
  import Modal from '../../../atoms/components/Modal/Modal.vue';
39
40
 
40
41
  import SellDomainNameSearch from '../SellDomainNameSearch/SellDomainNameSearch.vue';
41
42
  import SellDomainNameSearchResult from '../SellDomainNameSearchResult/SellDomainNameListSearchResult.vue';
42
43
  import useSellDomainContent from '../SellDomainNameSearch/useSellDomainContent';
43
- import { computed } from 'vue';
44
44
 
45
45
  export default {
46
46
  components: {
@@ -102,6 +102,7 @@ export default {
102
102
  const contentProvider = useSellDomainContent();
103
103
  const content = contentProvider.getContent();
104
104
  return {
105
+ translationContent: content,
105
106
  domainSearchHeaderTitle: computed(() => content.value.domainSearchHeaderTitle),
106
107
  domainSearchHeaderSubtitle: computed(() => content.value.domainSearchHeaderSubtitle),
107
108
  };