@dcrackel/hematournamentui 1.0.271 → 1.0.273

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,7 +1,7 @@
1
1
  {
2
2
  "name": "@dcrackel/hematournamentui",
3
3
  "private": false,
4
- "version": "1.0.271",
4
+ "version": "1.0.273",
5
5
  "type": "module",
6
6
  "main": "dist/HemaTournamentUI-lib.umd.js",
7
7
  "module": "dist/HemaTournamentUI-lib.es.js",
@@ -51,7 +51,7 @@ const mockTournaments = [
51
51
  "Images": [
52
52
  {
53
53
  "ImageId": 28,
54
- "URL": "http://localhost/uploads/swordquench.png",
54
+ "URL": "http://localhost:3000/uploads/swordquench.png",
55
55
  "AltText": "Sword Quench image"
56
56
  }
57
57
  ],
@@ -87,7 +87,7 @@ const mockTournaments = [
87
87
  "Images": [
88
88
  {
89
89
  "ImageId": 2,
90
- "URL": "http://localhost/uploads/t-4.png",
90
+ "URL": "http://localhost:3000/uploads/t-4.png",
91
91
  "AltText": "alt text"
92
92
  }
93
93
  ],
@@ -45,11 +45,11 @@ export default {
45
45
  },
46
46
  uploadServer: {
47
47
  type: String,
48
- default: 'http://localhost/api/upload/'
48
+ default: 'http://localhost:3000/api/upload/'
49
49
  },
50
50
  imageServer: {
51
51
  type: String,
52
- default: 'http://localhost/uploads/'
52
+ default: 'http://localhost:3000/uploads/'
53
53
  }
54
54
  },
55
55
  components: {
@@ -12,8 +12,8 @@ export default {
12
12
  persons: mockPersons,
13
13
  urlToImage: null,
14
14
  uploadImageName: 'Storybook-test',
15
- uploadServer: 'http://localhost/uploads/',
16
- imageServer: 'http://localhost/uploads/',
15
+ uploadServer: 'http://localhost:3000/uploads/',
16
+ imageServer: 'http://localhost:3000/uploads/',
17
17
  },
18
18
  argTypes: {
19
19
  locations: {
@@ -43,8 +43,8 @@ export const Default = {
43
43
  urlToImage: null,
44
44
  addNewText: "Add New Location",
45
45
  uploadImageName: 'Storybook-test',
46
- uploadServer: 'http://localhost/uploads/',
47
- imageServer: 'http://localhost/uploads/'
46
+ uploadServer: 'http://localhost:3000/uploads/',
47
+ imageServer: 'http://localhost:3000/uploads/'
48
48
  }
49
49
  };
50
50
 
@@ -55,7 +55,7 @@ export const ExistingTournament = {
55
55
 
56
56
  addNewText: "Add New Location",
57
57
  uploadImageName: 'Storybook-test',
58
- uploadServer: 'http://localhost/uploads/',
59
- imageServer: 'http://localhost/uploads/'
58
+ uploadServer: 'http://localhost:3000/uploads/',
59
+ imageServer: 'http://localhost:3000/uploads/'
60
60
  }
61
61
  };
@@ -112,11 +112,11 @@ export default {
112
112
  },
113
113
  uploadServer: {
114
114
  type: String,
115
- default: 'http://localhost/uploads/'
115
+ default: 'http://localhost:3000/uploads/'
116
116
  },
117
117
  imageServer: {
118
118
  type: String,
119
- default: 'http://localhost/uploads/'
119
+ default: 'http://localhost:3000/uploads/'
120
120
  }
121
121
  },
122
122
  data() {
@@ -124,11 +124,11 @@ export default {
124
124
  },
125
125
  uploadServer: {
126
126
  type: String,
127
- default: 'http://localhost/uploads/'
127
+ default: 'http://localhost:3000/uploads/'
128
128
  },
129
129
  imageServer: {
130
130
  type: String,
131
- default: 'http://localhost/uploads/'
131
+ default: 'http://localhost:3000/uploads/'
132
132
  }
133
133
  },
134
134
  emits: ['tab:menu-click', 'manageEvent', 'editEvent', 'addEvent', 'image:upload'],