sf-i-events 1.0.809 → 1.0.810
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 +1 -1
- package/sf-i-events.js +1 -1
- package/src/sf-i-events.ts +1 -1
package/package.json
CHANGED
package/sf-i-events.js
CHANGED
|
@@ -3218,7 +3218,7 @@ let SfIEvents = class SfIEvents extends LitElement {
|
|
|
3218
3218
|
html += '<label part="input-label">Supporting Documents' + ((docsOptional.length > 0) ? '' : '*') + '</label>';
|
|
3219
3219
|
html += '<slot name="uploader"></slot>';
|
|
3220
3220
|
if (uploadGuidance == 1) {
|
|
3221
|
-
html += '<div id="upload-guidance-button" part="upload-
|
|
3221
|
+
html += '<div id="upload-guidance-button" part="upload-guidance-button" class="d-flex button-icon-small align-center align-self-start mt-10"><span class="material-symbols-outlined">help</span> <span>View upload guidance</span></div>';
|
|
3222
3222
|
}
|
|
3223
3223
|
else if (uploadGuidance != 0) {
|
|
3224
3224
|
html += '<div part="detail-head" class="mt-10"><strong>Upload Guidance</strong></div>';
|
package/src/sf-i-events.ts
CHANGED
|
@@ -5542,7 +5542,7 @@ export class SfIEvents extends LitElement {
|
|
|
5542
5542
|
|
|
5543
5543
|
html += '<slot name="uploader"></slot>';
|
|
5544
5544
|
if(uploadGuidance == 1){
|
|
5545
|
-
html += '<div id="upload-guidance-button" part="upload-
|
|
5545
|
+
html += '<div id="upload-guidance-button" part="upload-guidance-button" class="d-flex button-icon-small align-center align-self-start mt-10"><span class="material-symbols-outlined">help</span> <span>View upload guidance</span></div>'
|
|
5546
5546
|
}else if(uploadGuidance != 0){
|
|
5547
5547
|
html += '<div part="detail-head" class="mt-10"><strong>Upload Guidance</strong></div>'
|
|
5548
5548
|
html += '<sf-i-elastic-text text="'+(event['uploadguidance'] + "").replace(/"/g, "").replace(/\n/g,'<br />')+'" minLength="150"></sf-i-elastic-text>';
|