@designcrowd/fe-shared-lib 1.5.12-kp-2 → 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 -11
  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-2",
3
+ "version": "1.5.12",
4
4
  "scripts": {
5
5
  "start": "run-p storybook watch:translation",
6
6
  "build": "npm run build:css --production",
@@ -76,7 +76,7 @@ import brandCrowdApiClient from '../../clients/brand-crowd-api.client';
76
76
  import SellDomainNameSearch from '../SellDomainNameSearch/SellDomainNameSearch.vue';
77
77
  import SellDomainNameSearchResult from '../SellDomainNameSearchResult/SellDomainNameListSearchResult.vue';
78
78
  import Events from '../../constants/event-constants';
79
- import { getCurrentLocale, sellDomainNameModalApplicationTr } from '../../../useSharedLibTranslate';
79
+ import { sellDomainNameModalApplicationTr } from '../../../useSharedLibTranslate';
80
80
 
81
81
  export default {
82
82
  components: {
@@ -123,7 +123,7 @@ export default {
123
123
  setup() {
124
124
  return {
125
125
  domainSearchHeaderTitle: sellDomainNameModalApplicationTr('domainSearchHeaderTitle'),
126
- domainSearchHeaderSubtitle: sellDomainNameModalApplicationTr('domainSearchHeaderSubtitle'),
126
+ domainSearchHeaderSubtitle: sellDomainNameModalApplicationTr('domainSearchHeaderTitle'),
127
127
  };
128
128
  },
129
129
  data: () => ({
@@ -139,11 +139,6 @@ export default {
139
139
  this.searchDomainName(false);
140
140
  }
141
141
  },
142
- computed: {
143
- currentLocale() {
144
- return getCurrentLocale();
145
- },
146
- },
147
142
  methods: {
148
143
  async onSearchDomainName(event) {
149
144
  this.searchText = event.searchText;
@@ -164,10 +159,6 @@ export default {
164
159
  request.logoDraftToken = this.logoDraftToken;
165
160
  }
166
161
 
167
- if (this.currentLocale) {
168
- request.locale = this.currentLocale;
169
- }
170
-
171
162
  window.dispatchEvent(new CustomEvent(Events.DomainSearchEvent, { detail: request }));
172
163
  const result = await brandCrowdApiClient.searchDomainNamesByKeywordAsync(request);
173
164
  if (!result) {