@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/dist/HemaTournamentUI-lib.es.js +3 -3
- package/dist/HemaTournamentUI-lib.umd.js +2 -2
- package/package.json +1 -1
- package/src/stories/Organisms/ComplexInputs/ImageCropper/ImageCropper.vue +1 -1
- package/src/stories/Templates/TournamentManagement/AddTournament/PageOne/AddTournamentPageOne.stories.js +6 -6
- package/src/stories/Templates/TournamentManagement/AddTournament/PageOne/AddTournamentPageOne.vue +1 -1
package/package.json
CHANGED
|
@@ -85,7 +85,7 @@ export default {
|
|
|
85
85
|
},
|
|
86
86
|
computed: {
|
|
87
87
|
getClasses() {
|
|
88
|
-
return this.customClass ? this.customClass : "h-
|
|
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: '
|
|
16
|
-
imageServer: '
|
|
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/
|
|
47
|
-
imageServer: '
|
|
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: '
|
|
58
|
-
imageServer: '
|
|
57
|
+
uploadServer: 'https://meyer-squared-95db07154bdc.herokuapp.com/api/upload/',
|
|
58
|
+
imageServer: 'https://meyersquared.com/uploads/',
|
|
59
59
|
}
|
|
60
60
|
};
|
package/src/stories/Templates/TournamentManagement/AddTournament/PageOne/AddTournamentPageOne.vue
CHANGED
|
@@ -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
|
-
:
|
|
13
|
+
:uploadServer="uploadServer"
|
|
14
14
|
:imageServer="imageServer"
|
|
15
15
|
@update:url="handleNewImageUrl"/>
|
|
16
16
|
</div>
|