@dcrackel/hematournamentui 1.0.341 → 1.0.342

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.341",
4
+ "version": "1.0.342",
5
5
  "type": "module",
6
6
  "main": "dist/HemaTournamentUI-lib.umd.js",
7
7
  "module": "dist/HemaTournamentUI-lib.es.js",
@@ -85,7 +85,7 @@ export default {
85
85
  },
86
86
  computed: {
87
87
  getClasses() {
88
- return this.customClass ? this.customClass : "h-48 w-72 border-2 border-dashed rounded-lg bg-contain bg-contain bg-center bg-no-repeat"
88
+ return this.customClass ? this.customClass : "h-40 w-80 border-2 border-dashed rounded-lg bg-contain bg-contain bg-center bg-no-repeat"
89
89
  },
90
90
  getSkeletonClass() {
91
91
  return this.customSkeletonClass ? this.customSkeletonClass : "border-2 h-40 w-80 border-dashed rounded-lg bg-quaternaryHighlight animate-pulse"
@@ -12,8 +12,8 @@ export default {
12
12
  persons: mockPersons,
13
13
  urlToImage: null,
14
14
  uploadImageName: 'Storybook-test',
15
- uploadServer: 'http://localhost:3000/uploads/',
16
- imageServer: 'http://localhost:3000/uploads/',
15
+ uploadServer: 'https://meyer-squared-95db07154bdc.herokuapp.com/api/upload/',
16
+ imageServer: 'https://meyersquared.com/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:3000/uploads/',
47
- imageServer: 'http://localhost:3000/uploads/'
46
+ uploadServer: 'http://localhost:3000/api/upload/',
47
+ imageServer: 'https://meyersquared.com/uploads/',
48
48
  }
49
49
  };
50
50
 
@@ -54,7 +54,7 @@ export const ExistingTournament = {
54
54
  locations: mockLocation,
55
55
  addNewText: "Add New Location",
56
56
  uploadImageName: 'Storybook-test',
57
- uploadServer: 'http://localhost:3000/uploads/',
58
- imageServer: 'http://localhost:3000/uploads/'
57
+ uploadServer: 'https://meyer-squared-95db07154bdc.herokuapp.com/api/upload/',
58
+ imageServer: 'https://meyersquared.com/uploads/',
59
59
  }
60
60
  };
@@ -10,7 +10,7 @@
10
10
  <div class="w-full flex flex-row justify-center my-4">
11
11
  <ImageCropper :urlToImage="urlToImage"
12
12
  :uploadImageName="uploadImageName"
13
- :uploadServe="uploadServer"
13
+ :uploadServer="uploadServer"
14
14
  :imageServer="imageServer"
15
15
  @update:url="handleNewImageUrl"/>
16
16
  </div>