@dcrackel/meyersquaredui 1.0.220 → 1.0.222
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/meyersquaredui.es.js +23 -23
- package/dist/meyersquaredui.umd.js +3 -3
- package/package.json +1 -1
- package/src/stories/Atoms/BaseButton/BaseButton.vue +1 -1
- package/src/stories/Organisms/Cards/SocialMediaLinkCard/SocialMediaLinkCard.vue +1 -1
- package/src/stories/Organisms/Column/HostColumn.vue +1 -1
- package/src/stories/Organisms/Grids/GridLayout/GridLayout.vue +1 -1
- package/src/stories/Organisms/Headers/PageHeader/PageHeader.vue +2 -1
- package/src/stories/Organisms/HeroBanners/HomePage/HeroBanner.vue +2 -2
- package/src/stories/Organisms/SectionBanners/DoubleButtonBanner/DoubleButtonBanner.vue +4 -4
- package/src/stories/Organisms/SectionBanners/SingleButtonBanner/SingleButtonBanner.vue +1 -1
- package/src/stories/Templates/ClubDetailPage/ClubDetailPage.vue +2 -2
- package/src/stories/Templates/TournamentDetailPage/TournamentDetailPage.vue +1 -1
package/package.json
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
]"
|
|
9
9
|
:title="altText || label"
|
|
10
10
|
:aria-label="altText || label"
|
|
11
|
-
@click="$emit('
|
|
11
|
+
@click="$emit('buttonClick')"
|
|
12
12
|
>
|
|
13
13
|
<div :class="['flex items-center', alignmentClass, 'space-x-2']">
|
|
14
14
|
<BaseText tag="span" color="" :size="size" :weight="weight">{{ label }}</BaseText>
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
label="Login"
|
|
25
25
|
size="md"
|
|
26
26
|
class="-mt-6"
|
|
27
|
-
@
|
|
27
|
+
@buttonClick="handlePageChange('Login')"
|
|
28
28
|
/>
|
|
29
29
|
</div>
|
|
30
30
|
</section>
|
|
@@ -92,6 +92,7 @@ export default {
|
|
|
92
92
|
if (this.dropdownOpen) this.dropdownOpen = false;
|
|
93
93
|
},
|
|
94
94
|
handlePageChange(page) {
|
|
95
|
+
console.log(page);
|
|
95
96
|
this.dropdownOpen = false;
|
|
96
97
|
this.$emit('changePage', page);
|
|
97
98
|
}
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
:label="buttonLabel"
|
|
18
18
|
color="secondary"
|
|
19
19
|
border="gradient1"
|
|
20
|
-
@
|
|
20
|
+
@buttonClick="onClick"
|
|
21
21
|
/>
|
|
22
22
|
</div>
|
|
23
23
|
</section>
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
color="secondary"
|
|
34
34
|
border="gradient1"
|
|
35
35
|
class="w-32 m-auto"
|
|
36
|
-
@
|
|
36
|
+
@buttonClick="onClick"
|
|
37
37
|
/>
|
|
38
38
|
</div>
|
|
39
39
|
</div>
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
iconColor="secondary"
|
|
29
29
|
iconSize="lg"
|
|
30
30
|
iconType="fa-thin"
|
|
31
|
-
@
|
|
31
|
+
@buttonClick="onClickOne"
|
|
32
32
|
/>
|
|
33
33
|
<BaseButton
|
|
34
34
|
:label="buttonLabelTwo"
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
iconSize="lg"
|
|
43
43
|
iconType="fa-thin"
|
|
44
44
|
align="between"
|
|
45
|
-
@
|
|
45
|
+
@buttonClick="onClickOne"
|
|
46
46
|
/>
|
|
47
47
|
</div>
|
|
48
48
|
</section>
|
|
@@ -76,7 +76,7 @@
|
|
|
76
76
|
iconColor="secondary"
|
|
77
77
|
iconSize="lg"
|
|
78
78
|
iconType="fa-thin"
|
|
79
|
-
@
|
|
79
|
+
@buttonClick="onClickOne"
|
|
80
80
|
/>
|
|
81
81
|
<BaseButton
|
|
82
82
|
:label="buttonLabelTwo"
|
|
@@ -90,7 +90,7 @@
|
|
|
90
90
|
iconSize="lg"
|
|
91
91
|
iconType="fa-thin"
|
|
92
92
|
align="between"
|
|
93
|
-
@
|
|
93
|
+
@buttonClick="onClickOne"
|
|
94
94
|
/>
|
|
95
95
|
</div>
|
|
96
96
|
</section>
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
|
|
9
9
|
<section class="w-full md:w-2/3 pr-4 md:pr-8">
|
|
10
10
|
<div class="mb-16">
|
|
11
|
-
<BaseText size="3xl" smallSize="
|
|
11
|
+
<BaseText size="3xl" smallSize="lg" color="primary" weight="bold" class="mb-10">{{ club.Name }}</BaseText>+
|
|
12
12
|
<BaseText size="md" color="primary" weight="normal" v-html="club.Description"></BaseText>
|
|
13
13
|
</div>
|
|
14
14
|
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
</section>
|
|
53
53
|
</div>
|
|
54
54
|
</div>
|
|
55
|
-
<div class="mx-10"></div>
|
|
55
|
+
<div class="mx-10 lg md:text-3xl"></div>
|
|
56
56
|
<Footer />
|
|
57
57
|
</div>
|
|
58
58
|
</template>
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
/>
|
|
34
34
|
</div>
|
|
35
35
|
<div v-if="RegistrationLink" class="w-full flex justify-center md:mb-20">
|
|
36
|
-
<BaseButton label="Register" backgroundColor="secondary" border="primary" class="w-40 mx-auto mt-10" @
|
|
36
|
+
<BaseButton label="Register" backgroundColor="secondary" border="primary" class="w-40 mx-auto mt-10" @buttonClick="handleRegistrationClick"/>
|
|
37
37
|
</div>
|
|
38
38
|
</section>
|
|
39
39
|
<section class="mt-8 md:mt-14">
|