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/package.json
CHANGED
package/sf-i-reporting.js
CHANGED
|
@@ -1715,7 +1715,7 @@ let SfIReporting = class SfIReporting extends LitElement {
|
|
|
1715
1715
|
};
|
|
1716
1716
|
this.populateList = () => {
|
|
1717
1717
|
let html = '';
|
|
1718
|
-
html += `<div class="d-flex justify-between align-start p-7">`;
|
|
1718
|
+
html += `<div class="d-flex left-sticky justify-between align-start p-7">`;
|
|
1719
1719
|
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>`;
|
|
1720
1720
|
html += `<div class="d-flex justify-end flex-grow">`;
|
|
1721
1721
|
// html += `<button id="button-publish" part="button-icon" class="material-icons hide">campaign</button>`
|
|
@@ -1736,7 +1736,7 @@ let SfIReporting = class SfIReporting extends LitElement {
|
|
|
1736
1736
|
if (property == "lastModifiedTime") {
|
|
1737
1737
|
displayValue = Util.timeSince(parseInt(item[property]));
|
|
1738
1738
|
}
|
|
1739
|
-
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="
|
|
1739
|
+
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>`;
|
|
1740
1740
|
}
|
|
1741
1741
|
}
|
|
1742
1742
|
html += '</tr>';
|