@designcrowd/fe-shared-lib 1.5.12-kp-3 → 1.5.12

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.
Files changed (33) hide show
  1. package/package.json +1 -1
  2. package/src/experiences/components/SellDomainNameModalApplication/SellDomainNameModalApplication.vue +2 -15
  3. package/.storybook-static/css/tailwind-brandCrowd.css +0 -2472
  4. package/.storybook-static/css/tailwind-brandPage.css +0 -2156
  5. package/.storybook-static/css/tailwind-crazyDomains.css +0 -2472
  6. package/.storybook-static/css/tailwind-designCom.css +0 -2472
  7. package/.storybook-static/css/tailwind-designCrowd.css +0 -2472
  8. package/.storybook-static/favicon.svg +0 -1
  9. package/.storybook-static/index.html +0 -156
  10. package/.storybook-static/index.json +0 -1
  11. package/.storybook-static/nunito-sans-bold-italic.woff2 +0 -0
  12. package/.storybook-static/nunito-sans-bold.woff2 +0 -0
  13. package/.storybook-static/nunito-sans-italic.woff2 +0 -0
  14. package/.storybook-static/nunito-sans-regular.woff2 +0 -0
  15. package/.storybook-static/project.json +0 -1
  16. package/.storybook-static/sb-addons/a11y-1/manager-bundle.js +0 -5
  17. package/.storybook-static/sb-addons/links-2/manager-bundle.js +0 -3
  18. package/.storybook-static/sb-addons/storybook-core-server-presets-0/common-manager-bundle.js +0 -188
  19. package/.storybook-static/sb-addons/themes-3/manager-bundle.js +0 -3
  20. package/.storybook-static/sb-common-assets/favicon.svg +0 -1
  21. package/.storybook-static/sb-common-assets/nunito-sans-bold-italic.woff2 +0 -0
  22. package/.storybook-static/sb-common-assets/nunito-sans-bold.woff2 +0 -0
  23. package/.storybook-static/sb-common-assets/nunito-sans-italic.woff2 +0 -0
  24. package/.storybook-static/sb-common-assets/nunito-sans-regular.woff2 +0 -0
  25. package/.storybook-static/sb-manager/globals-module-info.js +0 -797
  26. package/.storybook-static/sb-manager/globals-runtime.js +0 -72062
  27. package/.storybook-static/sb-manager/globals.js +0 -34
  28. package/.storybook-static/sb-manager/runtime.js +0 -13002
  29. package/public/css/tailwind-brandCrowd.css +0 -2504
  30. package/public/css/tailwind-brandPage.css +0 -2184
  31. package/public/css/tailwind-crazyDomains.css +0 -2504
  32. package/public/css/tailwind-designCom.css +0 -2504
  33. package/public/css/tailwind-designCrowd.css +0 -2504
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@designcrowd/fe-shared-lib",
3
- "version": "1.5.12-kp-3",
3
+ "version": "1.5.12",
4
4
  "scripts": {
5
5
  "start": "run-p storybook watch:translation",
6
6
  "build": "npm run build:css --production",
@@ -31,7 +31,6 @@
31
31
  :domain-name-items="domainNameItems"
32
32
  :currency="userCurrency"
33
33
  :model-value="modelValue"
34
- @on-buy-now-click="onBuyNowClick"
35
34
  />
36
35
  </template>
37
36
  </Modal>
@@ -77,7 +76,7 @@ import brandCrowdApiClient from '../../clients/brand-crowd-api.client';
77
76
  import SellDomainNameSearch from '../SellDomainNameSearch/SellDomainNameSearch.vue';
78
77
  import SellDomainNameSearchResult from '../SellDomainNameSearchResult/SellDomainNameListSearchResult.vue';
79
78
  import Events from '../../constants/event-constants';
80
- import { getCurrentLocale, sellDomainNameModalApplicationTr } from '../../../useSharedLibTranslate';
79
+ import { sellDomainNameModalApplicationTr } from '../../../useSharedLibTranslate';
81
80
 
82
81
  export default {
83
82
  components: {
@@ -124,7 +123,7 @@ export default {
124
123
  setup() {
125
124
  return {
126
125
  domainSearchHeaderTitle: sellDomainNameModalApplicationTr('domainSearchHeaderTitle'),
127
- domainSearchHeaderSubtitle: sellDomainNameModalApplicationTr('domainSearchHeaderSubtitle'),
126
+ domainSearchHeaderSubtitle: sellDomainNameModalApplicationTr('domainSearchHeaderTitle'),
128
127
  };
129
128
  },
130
129
  data: () => ({
@@ -140,11 +139,6 @@ export default {
140
139
  this.searchDomainName(false);
141
140
  }
142
141
  },
143
- computed: {
144
- currentLocale() {
145
- return getCurrentLocale();
146
- },
147
- },
148
142
  methods: {
149
143
  async onSearchDomainName(event) {
150
144
  this.searchText = event.searchText;
@@ -165,10 +159,6 @@ export default {
165
159
  request.logoDraftToken = this.logoDraftToken;
166
160
  }
167
161
 
168
- if (this.currentLocale) {
169
- request.locale = this.currentLocale;
170
- }
171
-
172
162
  window.dispatchEvent(new CustomEvent(Events.DomainSearchEvent, { detail: request }));
173
163
  const result = await brandCrowdApiClient.searchDomainNamesByKeywordAsync(request);
174
164
  if (!result) {
@@ -192,9 +182,6 @@ export default {
192
182
  onCloseModal() {
193
183
  this.$emit('close-modal');
194
184
  },
195
- onBuyNowClick() {
196
- this.$emit('on-buy-now-click');
197
- },
198
185
  onSearchTextInputChange(newVal) {
199
186
  this.searchText = newVal;
200
187
  },