@asd20/ui 3.2.876 → 3.2.878
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
|
@@ -149,7 +149,7 @@ export default {
|
|
|
149
149
|
//remove anchor tags but leave anchor text description
|
|
150
150
|
.replace(/<a[^>]*>(.*?)<\/a>/g, '$1')
|
|
151
151
|
// remove other html tags
|
|
152
|
-
.replace(/<[^>]+>/g, '')
|
|
152
|
+
// .replace(/<[^>]+>/g, '')
|
|
153
153
|
return truncate(strippedDescription, { length: 150, separator: /,? +/ })
|
|
154
154
|
},
|
|
155
155
|
classes() {
|
|
@@ -272,6 +272,10 @@ export default {
|
|
|
272
272
|
span {
|
|
273
273
|
display: block;
|
|
274
274
|
margin-top: space(0.5);
|
|
275
|
+
&::v-deep li {
|
|
276
|
+
margin-left: 1rem;
|
|
277
|
+
font-size: 0.875rem !important;
|
|
278
|
+
}
|
|
275
279
|
}
|
|
276
280
|
}
|
|
277
281
|
|
|
@@ -207,16 +207,22 @@ export default {
|
|
|
207
207
|
}
|
|
208
208
|
}
|
|
209
209
|
&__details {
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
padding: space(1);
|
|
210
|
+
.description,
|
|
211
|
+
.tags {
|
|
212
|
+
display: flex;
|
|
213
|
+
max-width: 100%;
|
|
214
|
+
padding: space(1);
|
|
216
215
|
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
216
|
+
* {
|
|
217
|
+
align-items: center;
|
|
218
|
+
}
|
|
219
|
+
&::v-deep ul {
|
|
220
|
+
margin-top: 0;
|
|
221
|
+
}
|
|
222
|
+
&::v-deep li {
|
|
223
|
+
margin-left: 1rem;
|
|
224
|
+
font-size: 1em !important;
|
|
225
|
+
}
|
|
220
226
|
}
|
|
221
227
|
}
|
|
222
228
|
}
|
|
@@ -81,7 +81,7 @@
|
|
|
81
81
|
"uid": "MDQwMDAwMDA4MjAwRTAwMDc0QzVCNzEwMUE4MkUwMDgwMDAwMDAwMDYwMzFGM0FERjUwQkQ5MDEwMDAwMDAwMDAwMDAwMDAwMTAwMDAwMDA1NjA4MzhGNkIzMkU3OTQ1ODk2OUU1RUJDRENBM0U4Rg==",
|
|
82
82
|
"type": "event",
|
|
83
83
|
"summary": "First day of second semester",
|
|
84
|
-
"description": "<a href
|
|
84
|
+
"description": "<ul><li>In-person attendance is limited to boardroom capacity of 70 audience members per the Colorado Springs Fire Marshall.</li><li>Note, those who attend in person may be captured on camera during the live feed and recorded versions of the meeting.</li><li>The meeting link will be available the week of the meeting.</li></ul><br/>We invite public comment at our meetings.<br/><br/><ul><li>You must sign-up to speak between 7 a.m. and 1 p.m., the day of the board meeting by completing our Public <a href=\"https://forms.office.com/r/4nRw9yhyeS\" target=\"_blank\">Comment Form</a>.</li><li>You must be present and available to speak in-person at the podium when called upon.</li><li>You cannot provide virtual public comment.</li><li>If you cannot attend in-person, we invite you to submit your comments in writing via the Public <a href=\"https://forms.office.com/r/4nRw9yhyeS\" target=\"_blank\">Comment Form</a>. Written comments submitted through the Public Comment Form will not be read publicly at the board meeting, but they will be included as part of the public record in the minutes for the meeting.</li></ul>",
|
|
85
85
|
"location": "AAHS",
|
|
86
86
|
"start": "2023-01-05T07:00:00Z",
|
|
87
87
|
"end": "2023-01-06T07:00:00Z",
|
|
@@ -7,7 +7,7 @@ export default function formattedTime(event) {
|
|
|
7
7
|
if (event.allDay) return 'All Day'
|
|
8
8
|
|
|
9
9
|
if (event.multiDay) {
|
|
10
|
-
return
|
|
10
|
+
return `<b>MultiDay Event:</b><br/>Starts: ${format(
|
|
11
11
|
parse(event.originalStart, "yyyy-MM-dd'T'HH:mm:ssX", new Date()),
|
|
12
12
|
'<b>h:mm aa</b>, ddd, MMM DD, YYYY'
|
|
13
13
|
)
|