@designcrowd/fe-shared-lib 1.0.0-v3 → 1.0.0

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.0.0-v3",
3
+ "version": "1.0.0",
4
4
  "scripts": {
5
5
  "start": "npm run storybook",
6
6
  "build": "npm run build:css --production",
@@ -30,7 +30,7 @@
30
30
  "vite": "5.2.3",
31
31
  "vite-plugin-eslint": "1.8.1",
32
32
  "vite-plugin-vue-devtools": "7.0.20",
33
- "vue": "3.5.3",
33
+ "vue": "3.4.15",
34
34
  "vue-color": "2.8.1",
35
35
  "vue-cropperjs": "5.0.0",
36
36
  "vue-observe-visibility": "1.0.0",
@@ -459,7 +459,7 @@ export default {
459
459
  if (this.searchText) {
460
460
  searchSlug = this.cleanText(this.searchText);
461
461
  }
462
- this.previousSearchText = this.searchText;
462
+ this.previousSearchText = searchSlug;
463
463
  try {
464
464
  const request = { keyword: searchSlug, isUserTriggered, userText: this.brandPageSlug };
465
465
 
@@ -105,7 +105,7 @@ export default {
105
105
  async searchDomainName(isUserTriggered) {
106
106
  this.isBusy = true;
107
107
  const searchSlug = this.cleanText(this.searchText);
108
- this.previousSearchText = this.searchText;
108
+ this.previousSearchText = searchSlug;
109
109
  try {
110
110
  const request = { keyword: searchSlug, isUserTriggered, userText: this.searchText };
111
111
 
@@ -130,7 +130,7 @@ export default {
130
130
  async searchDomainName(searchText, isUserTriggered) {
131
131
  this.isBusy = true;
132
132
  const searchSlug = this.cleanText(searchText);
133
- this.previousSearchText = searchText;
133
+ this.previousSearchText = searchSlug;
134
134
  try {
135
135
  const request = {
136
136
  keyword: searchSlug,
@@ -119,7 +119,7 @@ export default {
119
119
  async searchDomainName(isUserTriggered) {
120
120
  this.isBusy = true;
121
121
  const searchSlug = this.cleanText(this.searchText);
122
- this.previousSearchText = this.searchText;
122
+ this.previousSearchText = searchSlug;
123
123
  try {
124
124
  const request = { keyword: searchSlug, isUserTriggered, userText: this.searchText };
125
125