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 CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "sf-i-reporting",
3
3
  "private": false,
4
- "version": "1.0.75",
4
+ "version": "1.0.76",
5
5
  "description": "Superflows Reporting Component",
6
6
  "main": "sf-i-reporting.js",
7
7
  "module": "sf-i-reporting.js",
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>&nbsp;&nbsp;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>&nbsp;&nbsp;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="20"></sf-i-elastic-text></div></div></td>`;
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>';