@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.
- package/package.json +1 -1
- package/src/experiences/components/SellDomainNameModalApplication/SellDomainNameModalApplication.vue +2 -15
- package/.storybook-static/css/tailwind-brandCrowd.css +0 -2472
- package/.storybook-static/css/tailwind-brandPage.css +0 -2156
- package/.storybook-static/css/tailwind-crazyDomains.css +0 -2472
- package/.storybook-static/css/tailwind-designCom.css +0 -2472
- package/.storybook-static/css/tailwind-designCrowd.css +0 -2472
- package/.storybook-static/favicon.svg +0 -1
- package/.storybook-static/index.html +0 -156
- package/.storybook-static/index.json +0 -1
- package/.storybook-static/nunito-sans-bold-italic.woff2 +0 -0
- package/.storybook-static/nunito-sans-bold.woff2 +0 -0
- package/.storybook-static/nunito-sans-italic.woff2 +0 -0
- package/.storybook-static/nunito-sans-regular.woff2 +0 -0
- package/.storybook-static/project.json +0 -1
- package/.storybook-static/sb-addons/a11y-1/manager-bundle.js +0 -5
- package/.storybook-static/sb-addons/links-2/manager-bundle.js +0 -3
- package/.storybook-static/sb-addons/storybook-core-server-presets-0/common-manager-bundle.js +0 -188
- package/.storybook-static/sb-addons/themes-3/manager-bundle.js +0 -3
- package/.storybook-static/sb-common-assets/favicon.svg +0 -1
- package/.storybook-static/sb-common-assets/nunito-sans-bold-italic.woff2 +0 -0
- package/.storybook-static/sb-common-assets/nunito-sans-bold.woff2 +0 -0
- package/.storybook-static/sb-common-assets/nunito-sans-italic.woff2 +0 -0
- package/.storybook-static/sb-common-assets/nunito-sans-regular.woff2 +0 -0
- package/.storybook-static/sb-manager/globals-module-info.js +0 -797
- package/.storybook-static/sb-manager/globals-runtime.js +0 -72062
- package/.storybook-static/sb-manager/globals.js +0 -34
- package/.storybook-static/sb-manager/runtime.js +0 -13002
- package/public/css/tailwind-brandCrowd.css +0 -2504
- package/public/css/tailwind-brandPage.css +0 -2184
- package/public/css/tailwind-crazyDomains.css +0 -2504
- package/public/css/tailwind-designCom.css +0 -2504
- package/public/css/tailwind-designCrowd.css +0 -2504
package/package.json
CHANGED
package/src/experiences/components/SellDomainNameModalApplication/SellDomainNameModalApplication.vue
CHANGED
|
@@ -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 {
|
|
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('
|
|
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
|
},
|