@dcrackel/meyersquaredui 1.0.86 → 1.0.87
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 +613 -557
- package/dist/meyersquaredui.umd.js +4 -4
- package/package.json +1 -1
- package/src/index.js +1 -0
- package/src/stories/Organisms/Cards/RatingSystem/RatingSystemAnnouncement.stories.js +16 -0
- package/src/stories/Organisms/Cards/RatingSystem/RatingSystemAnnouncement.vue +42 -0
- package/src/stories/Organisms/HeroBanners/HomePage/HeroBanner.stories.js +1 -1
- package/src/stories/Organisms/HeroBanners/HomePage/HeroBanner.vue +1 -1
- package/src/stories/Organisms/HeroBanners/TournamentDetails/TournamentDetailsBanner.vue +1 -1
- package/src/stories/Organisms/HeroBanners/Tournaments/TournamentBanner.stories.js +1 -1
- package/src/stories/Organisms/HeroBanners/Tournaments/TournamentBanner.vue +1 -1
- package/src/stories/Templates/HomePage/HomePage.vue +17 -11
package/package.json
CHANGED
package/src/index.js
CHANGED
|
@@ -24,6 +24,7 @@ export { default as EventListCard } from './stories/Organisms/Cards/EventListCar
|
|
|
24
24
|
export { default as FencerCard } from './stories/Organisms/Cards/FencerCard/FencerCard.vue'
|
|
25
25
|
export { default as FencerListCard } from './stories/Organisms/Cards/FencerListCard/FencerListCard.vue'
|
|
26
26
|
export { default as PhotoCard } from './stories/Organisms/Cards/PhotoCard/PhotoCard.vue'
|
|
27
|
+
export { default as RatingSystemAnnouncement } from './stories/Organisms/Cards/RatingSystem/RatingSystemAnnouncement.vue'
|
|
27
28
|
export { default as SocialMediaLinkCard } from './stories/Organisms/Cards/SocialMediaLinkCard/SocialMediaLinkCard.vue'
|
|
28
29
|
export { default as TournamentCard } from './stories/Organisms/Cards/TournamentCard/TournamentCard.vue'
|
|
29
30
|
export { default as TournamentDetails } from './stories/Organisms/Cards/TournamentDetails/TournamentDetails.vue'
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import RatingSystemAnnouncement from './RatingSystemAnnouncement.vue';
|
|
2
|
+
|
|
3
|
+
export default {
|
|
4
|
+
title: 'Organisms/Cards/RatingSystemAnnouncement',
|
|
5
|
+
component: RatingSystemAnnouncement,
|
|
6
|
+
};
|
|
7
|
+
|
|
8
|
+
const Template = (args) => ({
|
|
9
|
+
components: { RatingSystemAnnouncement },
|
|
10
|
+
setup() {
|
|
11
|
+
return { args };
|
|
12
|
+
},
|
|
13
|
+
template: '<RatingSystemAnnouncement />',
|
|
14
|
+
});
|
|
15
|
+
|
|
16
|
+
export const Default = Template.bind({});
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<section class="w-full flex justify-center mx-auto mt-10 mb-20">
|
|
3
|
+
<section>
|
|
4
|
+
<div class="max-w-[1200px] w-full flex justify-center mx-auto mt-8 flex-col">
|
|
5
|
+
<div class="w-full flex py-4 md:pb-10 ml-2 md:ml-0 mb-4 justify-center">
|
|
6
|
+
<BaseText color="primary" size="xl" tag="h3" weight="bold">
|
|
7
|
+
Coming Soon: The M² Fencing Rating System!
|
|
8
|
+
</BaseText>
|
|
9
|
+
</div>
|
|
10
|
+
<div class="flex">
|
|
11
|
+
<div class="w-1/2 flex justify-end mr-10">
|
|
12
|
+
<img src="https://meyersquaredimages.com/images/trophy.png" alt="Rating System Announcement" class="w-96 h-96 rounded-lg" />
|
|
13
|
+
</div>
|
|
14
|
+
<div class="w-1/2">
|
|
15
|
+
<BaseText color="primary" size="md" tag="p" weight="normal" class="w-3/4">
|
|
16
|
+
Our new M² Rating System will give you deeper insights into your performance, track your progress,
|
|
17
|
+
and help you see how you measure up against competitors nationwide.<br><br>
|
|
18
|
+
<b>Key Advantages:</b><br>
|
|
19
|
+
It's a rating system, not a ranking system. You won’t lose progress just because others improve.<br><br>
|
|
20
|
+
Ratings are earned by competing in tournaments. Once earned, a rating stays with you for four years, after
|
|
21
|
+
which it gradually decreases by one level every four years. Having a bad tournament, or even a bad year doesn't cost you your rating.
|
|
22
|
+
<br><br>
|
|
23
|
+
The more competitive the tournament, the greater the rewards.
|
|
24
|
+
<br><br>
|
|
25
|
+
Stay tuned for more details!
|
|
26
|
+
</BaseText>
|
|
27
|
+
</div>
|
|
28
|
+
</div>
|
|
29
|
+
</div>
|
|
30
|
+
</section>
|
|
31
|
+
</section>
|
|
32
|
+
</template>
|
|
33
|
+
|
|
34
|
+
<script>
|
|
35
|
+
import BaseText from "../../../Atoms/BaseText/BaseText.vue";
|
|
36
|
+
|
|
37
|
+
export default {
|
|
38
|
+
name: "RatingSystemAnnouncement",
|
|
39
|
+
components: {BaseText},
|
|
40
|
+
};
|
|
41
|
+
</script>
|
|
42
|
+
>
|
|
@@ -22,7 +22,7 @@ const Template = (args) => ({
|
|
|
22
22
|
|
|
23
23
|
export const DefaultHeroBanner = Template.bind({});
|
|
24
24
|
DefaultHeroBanner.args = {
|
|
25
|
-
imageSrc: 'https://
|
|
25
|
+
imageSrc: 'https://meyersquaredimages.com/images/banners/largebanner01.jpg',
|
|
26
26
|
title: 'Find your next HEMA Touranment!',
|
|
27
27
|
description: '',
|
|
28
28
|
buttonLabel: 'Get Started',
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<section id="hero" class="relative w-full h-
|
|
2
|
+
<section id="hero" class="relative w-full md:min-h-[500px] flex justify-center bg-primary md:m-0 mt-6 " :style="backgroundStyle">
|
|
3
3
|
<!-- Spacer (Left) -->
|
|
4
4
|
<div class="hidden md:block w-[150px] bg-primary border-b border-lineGrey flex-shrink-0"></div>
|
|
5
5
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<section id="hero" class="hidden md:flex relative w-full justify-center bg-primary m-0 bg-top" :style="backgroundStyle">
|
|
2
|
+
<section id="hero" class="hidden md:flex md:min-h-[500px] relative w-full justify-center bg-primary m-0 bg-top" :style="backgroundStyle">
|
|
3
3
|
<!-- Left Spacer -->
|
|
4
4
|
<div class="hidden md:block w-[150px] bg-primary border-b border-lineGrey flex-shrink-0"></div>
|
|
5
5
|
|
|
@@ -19,7 +19,7 @@ const Template = (args, { argTypes }) => ({
|
|
|
19
19
|
|
|
20
20
|
export const Default = Template.bind({});
|
|
21
21
|
Default.args = {
|
|
22
|
-
imageSrc: 'https://
|
|
22
|
+
imageSrc: 'https://meyersquaredimages.com/images/banners/thinbanner02.jpg',
|
|
23
23
|
title: 'Find Tournaments',
|
|
24
24
|
description: 'Find your next HEMA Tournaments near you!',
|
|
25
25
|
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<section id="hero" class="relative w-full flex justify-center bg-primary m-0 bg-top" :style="backgroundStyle">
|
|
2
|
+
<section id="hero" class="relative w-full md:min-h-[500px] flex justify-center bg-primary m-0 bg-top" :style="backgroundStyle">
|
|
3
3
|
<div class="hidden md:block w-[150px] bg-primary border-b border-lineGrey flex-shrink-0"></div>
|
|
4
4
|
|
|
5
5
|
<div class="relative w-full md:border-b md:border-l md:border-r border-lineGrey">
|
|
@@ -19,17 +19,19 @@
|
|
|
19
19
|
imageUrl="https://meyersquared.com/images/banners/largebanner03.jpg"
|
|
20
20
|
@handleButtonClick="changePage('clubs')"
|
|
21
21
|
/>
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
:
|
|
26
|
-
:
|
|
27
|
-
:
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
22
|
+
|
|
23
|
+
<RatingSystemAnnouncement />
|
|
24
|
+
<!-- <GridLayout-->
|
|
25
|
+
<!-- :cardComponent="FencerCard"-->
|
|
26
|
+
<!-- :items="topFencers"-->
|
|
27
|
+
<!-- :maxColumns="5"-->
|
|
28
|
+
<!-- :mobileHorizontal="mobileHorizontal"-->
|
|
29
|
+
<!-- :isLoading="topFencersIsLoading"-->
|
|
30
|
+
<!-- moreButtonLabel="Leaderboards"-->
|
|
31
|
+
<!-- title="Top Fencers"-->
|
|
32
|
+
<!-- @grid-click="changePage('leaderboard')"-->
|
|
33
|
+
<!-- @grid-card-click="handleGridCardClick"-->
|
|
34
|
+
<!-- />-->
|
|
33
35
|
<DoubleButtonBanner title="How Does Meyer Squared work?" button-label-two="Run a tournament"
|
|
34
36
|
button-label-one="Submit Results"
|
|
35
37
|
@handle-button-click-one="changePage('submitresults')"
|
|
@@ -64,10 +66,14 @@ import DoubleButtonBanner from "../../Organisms/SectionBanners/DoubleButtonBanne
|
|
|
64
66
|
import Footer from "../../Organisms/Footer/Footer.vue";
|
|
65
67
|
import ScrollNav from "../../Organisms/Headers/ScrollNav/ScrollNav.vue";
|
|
66
68
|
import {markRaw} from 'vue';
|
|
69
|
+
import BaseText from "../../Atoms/BaseText/BaseText.vue";
|
|
70
|
+
import RatingSystemAnnouncement from "../../Organisms/Cards/RatingSystem/RatingSystemAnnouncement.vue";
|
|
67
71
|
|
|
68
72
|
export default {
|
|
69
73
|
name: 'HomePage',
|
|
70
74
|
components: {
|
|
75
|
+
RatingSystemAnnouncement,
|
|
76
|
+
BaseText,
|
|
71
77
|
Footer,
|
|
72
78
|
DoubleButtonBanner,
|
|
73
79
|
SingleButtonBanner,
|