sf-i-reporting 1.0.75 → 1.0.76
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-reporting.js +2 -2
- package/sf-i-reporting.js.map +1 -1
- package/src/sf-i-reporting.ts +2 -2
package/src/sf-i-reporting.ts
CHANGED
|
@@ -2185,7 +2185,7 @@ export class SfIReporting extends LitElement {
|
|
|
2185
2185
|
|
|
2186
2186
|
populateList = () => {
|
|
2187
2187
|
let html = ''
|
|
2188
|
-
html += `<div class="d-flex justify-between align-start p-7">`
|
|
2188
|
+
html += `<div class="d-flex left-sticky justify-between align-start p-7">`
|
|
2189
2189
|
html += `<div part="calendar-date-container" class="d-flex flex-col align-start justify-center">${this.lastCalendarGenerated == "" ? "" : ("<div class=\"d-flex align-center justify-center\" part=\"last-calendar-date\" id=\"last-calendar-date\"><span class=\"material-symbols-outlined\">update</span> Calendar synced on \n" + (new Date(parseInt(this.lastCalendarGenerated)).toLocaleDateString('en-IN') + " - " + new Date(parseInt(this.lastCalendarGenerated)).toLocaleTimeString('en-IN'))) + '</div>'}${this.nextCalendarScheduled == "" ? "" : ("<div class=\"d-flex align-center justify-center\" part=\"next-calendar-date\" id=\"next-calendar-date\"><span class=\"material-symbols-outlined\">hourglass</span> Next update on \n" + (new Date(parseInt(this.nextCalendarScheduled)).toLocaleDateString('en-IN') + " - " + new Date(parseInt(this.nextCalendarScheduled)).toLocaleTimeString('en-IN'))) + '</div>'}</div>`
|
|
2190
2190
|
html += `<div class="d-flex justify-end flex-grow">`
|
|
2191
2191
|
// html += `<button id="button-publish" part="button-icon" class="material-icons hide">campaign</button>`
|
|
@@ -2206,7 +2206,7 @@ export class SfIReporting extends LitElement {
|
|
|
2206
2206
|
if (property == "lastModifiedTime") {
|
|
2207
2207
|
displayValue = Util.timeSince(parseInt(item[property]));
|
|
2208
2208
|
}
|
|
2209
|
-
html += `<td part="td-body" class="td-body ${bgClass}"><div class="d-flex flex-col align-start flex-wrap"><div part="td-head" class="pl-0-imp w-100 d-flex align-center">${property}</div><div><sf-i-elastic-text text="${displayValue}" minLength="
|
|
2209
|
+
html += `<td part="td-body" class="td-body ${bgClass}"><div class="d-flex flex-col align-start flex-wrap"><div part="td-head" class="pl-0-imp w-100 d-flex align-center">${property}</div><div><sf-i-elastic-text text="${displayValue}" minLength="10"></sf-i-elastic-text></div></div></td>`
|
|
2210
2210
|
}
|
|
2211
2211
|
}
|
|
2212
2212
|
html += '</tr>'
|