@icvdeveloper/common-module 0.0.108 → 0.0.109

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/module.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "v3plus-common-module",
3
3
  "configKey": "v3plusCommonModule",
4
- "version": "0.0.108"
4
+ "version": "0.0.109"
5
5
  }
@@ -49,6 +49,12 @@ const loginHeader = computed(() => {
49
49
  : "Join us for a Free Live Web Event"; // fallback (handled by UCC)
50
50
  });
51
51
 
52
+ const headerColorClass = computed(() => {
53
+ return (conference.value.state == "live")
54
+ ? "text-red-500"
55
+ : "text-black-500";
56
+ });
57
+
52
58
  const buttonText = computed(() => {
53
59
  return (conference.value.state == "live")
54
60
  ? "Join the Livestream"
@@ -91,11 +97,12 @@ onMounted(() => {
91
97
  style="padding-bottom: 0px"
92
98
  >
93
99
  <div>
94
- <h1 class="scala-bold text-red-500 text-xl text-center mb-0">
100
+ <h1 class="scala-bold text-xl text-center mb-0" :class="headerColorClass">
95
101
  {{ loginHeader }}
96
102
  </h1>
97
103
  </div>
98
104
  <div class="text-center">
105
+ <form @submit="submitLogin" action="javascript:void();">
99
106
  <div class="ucc-form-field">
100
107
  <div class="ucc-form-field-descr"></div>
101
108
  <div class="ucc-input-wrapper required">
@@ -110,6 +117,7 @@ onMounted(() => {
110
117
  :class="buttonColorClass"
111
118
  style="margin-top: 0px;"><span class="btn-text">{{ buttonText }}</span></a>
112
119
  </div>
120
+ </form>
113
121
  </div>
114
122
  </div>
115
123
  </div>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@icvdeveloper/common-module",
3
- "version": "0.0.108",
3
+ "version": "0.0.109",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "exports": {