@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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@dcrackel/meyersquaredui",
3
3
  "private": false,
4
- "version": "1.0.220",
4
+ "version": "1.0.222",
5
5
  "type": "module",
6
6
  "main": "dist/meyersquaredui.cjs.js",
7
7
  "module": "dist/meyersquaredui.esm.js",
@@ -8,7 +8,7 @@
8
8
  ]"
9
9
  :title="altText || label"
10
10
  :aria-label="altText || label"
11
- @click="$emit('click')"
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>
@@ -13,7 +13,7 @@
13
13
  iconSize="xl"
14
14
  :iconType="social.Type === 'Web' ? 'fa-solid' : 'fa-brands'"
15
15
  align="between"
16
- @click="openLink(social.Link)"
16
+ @buttonClick="openLink(social.Link)"
17
17
  />
18
18
  </div>
19
19
  </aside>
@@ -35,7 +35,7 @@
35
35
  size="sm"
36
36
  label="Rules and Documents"
37
37
  class="w-full"
38
- @click="onRulesClick"
38
+ @buttonClick="onRulesClick"
39
39
  />
40
40
  </div>
41
41
  </div>
@@ -39,7 +39,7 @@
39
39
  color="primary"
40
40
  hoverColor="secondary"
41
41
  :label="moreButtonLabel"
42
- @click="onClick"
42
+ @buttonClick="onClick"
43
43
  />
44
44
  </div>
45
45
  </section>
@@ -24,7 +24,7 @@
24
24
  label="Login"
25
25
  size="md"
26
26
  class="-mt-6"
27
- @click="handlePageChange('Login')"
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
- @click="onClick"
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
- @click="onClick"
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
- @click="onClickOne"
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
- @click="onClickOne"
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
- @click="onClickOne"
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
- @click="onClickOne"
93
+ @buttonClick="onClickOne"
94
94
  />
95
95
  </div>
96
96
  </section>
@@ -29,7 +29,7 @@
29
29
  size="xs"
30
30
  color="secondary"
31
31
  border="gradient1"
32
- @click="onClick"
32
+ @buttonClick="onClick"
33
33
  class="w-40"
34
34
  />
35
35
  </div>
@@ -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="md" color="primary" weight="bold" class="mb-10">{{ club.Name }}</BaseText>+
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" @click="handleRegistrationClick"/>
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">