sf-i-events 1.0.205 → 1.0.206

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-events",
3
3
  "private": false,
4
- "version": "1.0.205",
4
+ "version": "1.0.206",
5
5
  "description": "Superflows Navigation Component",
6
6
  "main": "sf-i-events.js",
7
7
  "module": "sf-i-events.js",
package/sf-i-events.js CHANGED
@@ -1230,7 +1230,7 @@ let SfIEvents = class SfIEvents extends LitElement {
1230
1230
  html += 'Status';
1231
1231
  if (csvCols.indexOf('Status') < 0) {
1232
1232
  csvCols += 'Period,Status,Id,ObligationTitle,Obligation,Duedate';
1233
- htmlCols += '<tr><th>Id</th><th>Status</th><th>Statute</th><th>Reference</th><th>Obligation</th><th>ObligationType</th><th>Penalty</th><th>Risk Severity</th><th>Frequency</th></tr>';
1233
+ htmlCols += '<tr><th>Id</th><th>Due Date</th><th>Status</th><th>Statute</th><th>Reference</th><th>Obligation</th><th>ObligationType</th><th>Penalty</th><th>Risk Severity</th><th>Frequency</th></tr>';
1234
1234
  }
1235
1235
  html += '</th>';
1236
1236
  html += '<th part="td-head">';
@@ -1281,7 +1281,7 @@ let SfIEvents = class SfIEvents extends LitElement {
1281
1281
  html += '</thead>';
1282
1282
  html += '<tbody>';
1283
1283
  csvValues += (period + ',');
1284
- htmlValues += ('<tr><td class="' + (total % 2 === 0 ? 'td-odd' : 'td-even') + '">' + this.events[mmdd][j]["id"] + '</td>');
1284
+ htmlValues += ('<tr><td class="' + (total % 2 === 0 ? 'td-odd' : 'td-even') + '">' + this.events[mmdd][j]["id"] + '</td><td class="' + (total % 2 === 0 ? 'td-odd' : 'td-even') + '">' + this.events[mmdd][j]["duedate"] + '</td>');
1285
1285
  if (partStatus == "status-approved") {
1286
1286
  approved++;
1287
1287
  html += '<td part="td-body">';
@@ -1605,7 +1605,7 @@ let SfIEvents = class SfIEvents extends LitElement {
1605
1605
  html += 'Status';
1606
1606
  if (csvCols.indexOf('Status') < 0) {
1607
1607
  csvCols += 'Period,Status,Id,ObligationTitle,Obligation,Duedate';
1608
- htmlCols += '<tr><th>Id</th><th>Status</th><th>Statute</th><th>Reference</th><th>Obligation</th><th>ObligationType</th><th>Penalty</th><th>Risk Severity</th><th>Frequency</th></tr>';
1608
+ htmlCols += '<tr><th>Id</th><th>Due Date</th><th>Status</th><th>Statute</th><th>Reference</th><th>Obligation</th><th>ObligationType</th><th>Penalty</th><th>Risk Severity</th><th>Frequency</th></tr>';
1609
1609
  }
1610
1610
  html += '</th>';
1611
1611
  html += '<th part="td-head">';
@@ -1656,7 +1656,7 @@ let SfIEvents = class SfIEvents extends LitElement {
1656
1656
  html += '</thead>';
1657
1657
  html += '<tbody>';
1658
1658
  csvValues += (period + ',');
1659
- htmlValues += ('<tr><td class="' + (total % 2 === 0 ? 'td-odd' : 'td-even') + '">' + this.events[mmdd][j]["id"] + '</td>');
1659
+ htmlValues += ('<tr><td class="' + (total % 2 === 0 ? 'td-odd' : 'td-even') + '">' + this.events[mmdd][j]["id"] + '</td><td class="' + (total % 2 === 0 ? 'td-odd' : 'td-even') + '">' + this.events[mmdd][j]["duedate"] + '</td>');
1660
1660
  if (partStatus == "status-approved") {
1661
1661
  approved++;
1662
1662
  html += '<td part="td-body">';
@@ -1996,7 +1996,7 @@ let SfIEvents = class SfIEvents extends LitElement {
1996
1996
  html += 'Status';
1997
1997
  if (csvCols.indexOf('Status') < 0) {
1998
1998
  csvCols += 'Period,Status,Id,ObligationTitle,Obligation,Duedate';
1999
- htmlCols += '<tr><th>Id</th><th>Status</th><th>Statute</th><th>Reference</th><th>Obligation</th><th>ObligationType</th><th>Penalty</th><th>Risk Severity</th><th>Frequency</th></tr>';
1999
+ htmlCols += '<tr><th>Id</th><th>Due Date</th><th>Status</th><th>Statute</th><th>Reference</th><th>Obligation</th><th>ObligationType</th><th>Penalty</th><th>Risk Severity</th><th>Frequency</th></tr>';
2000
2000
  }
2001
2001
  html += '</th>';
2002
2002
  html += '<th part="td-head">';
@@ -2047,7 +2047,7 @@ let SfIEvents = class SfIEvents extends LitElement {
2047
2047
  html += '</thead>';
2048
2048
  html += '<tbody>';
2049
2049
  csvValues += (period + ',');
2050
- htmlValues += ('<tr><td class="' + (total % 2 === 0 ? 'td-odd' : 'td-even') + '">' + this.events[mmdd][j]["id"] + '</td>');
2050
+ htmlValues += ('<tr><td class="' + (total % 2 === 0 ? 'td-odd' : 'td-even') + '">' + this.events[mmdd][j]["id"] + '</td><td class="' + (total % 2 === 0 ? 'td-odd' : 'td-even') + '">' + this.events[mmdd][j]["duedate"] + '</td>');
2051
2051
  if (partStatus == "status-approved") {
2052
2052
  approved++;
2053
2053
  html += '<td part="td-body">';
@@ -2388,7 +2388,7 @@ let SfIEvents = class SfIEvents extends LitElement {
2388
2388
  html += 'Status';
2389
2389
  if (csvCols.indexOf('Status') < 0) {
2390
2390
  csvCols += 'Period,Status,Id,ObligationTitle,Obligation,Duedate';
2391
- htmlCols += '<tr><th>Id</th><th>Status</th><th>Statute</th><th>Reference</th><th>Obligation</th><th>ObligationType</th><th>Penalty</th><th>Risk Severity</th><th>Frequency</th></tr>';
2391
+ htmlCols += '<tr><th>Id</th><th>Due Date</th><th>Status</th><th>Statute</th><th>Reference</th><th>Obligation</th><th>ObligationType</th><th>Penalty</th><th>Risk Severity</th><th>Frequency</th></tr>';
2392
2392
  }
2393
2393
  html += '</th>';
2394
2394
  html += '<th part="td-head">';
@@ -2439,7 +2439,7 @@ let SfIEvents = class SfIEvents extends LitElement {
2439
2439
  html += '</thead>';
2440
2440
  html += '<tbody>';
2441
2441
  csvValues += (period + ',');
2442
- htmlValues += ('<tr><td class="' + (total % 2 === 0 ? 'td-odd' : 'td-even') + '">' + this.events[mmdd][j]["id"] + '</td>');
2442
+ htmlValues += ('<tr><td class="' + (total % 2 === 0 ? 'td-odd' : 'td-even') + '">' + this.events[mmdd][j]["id"] + '</td><td class="' + (total % 2 === 0 ? 'td-odd' : 'td-even') + '">' + this.events[mmdd][j]["duedate"] + '</td>');
2443
2443
  if (partStatus == "status-approved") {
2444
2444
  approved++;
2445
2445
  html += '<td part="td-body">';
@@ -2767,7 +2767,7 @@ let SfIEvents = class SfIEvents extends LitElement {
2767
2767
  html += 'Status';
2768
2768
  if (csvCols.indexOf('Status') < 0) {
2769
2769
  csvCols += 'Period,Status,Id,ObligationTitle,Obligation,Duedate';
2770
- htmlCols += '<tr><th>Id</th><th>Status</th><th>Statute</th><th>Reference</th><th>Obligation</th><th>ObligationType</th><th>Penalty</th><th>Risk Severity</th><th>Frequency</th></tr>';
2770
+ htmlCols += '<tr><th>Id</th><th>Due Date</th><th>Status</th><th>Statute</th><th>Reference</th><th>Obligation</th><th>ObligationType</th><th>Penalty</th><th>Risk Severity</th><th>Frequency</th></tr>';
2771
2771
  }
2772
2772
  html += '</th>';
2773
2773
  html += '<th part="td-head">';
@@ -2820,7 +2820,7 @@ let SfIEvents = class SfIEvents extends LitElement {
2820
2820
  html += '</thead>';
2821
2821
  html += '<tbody>';
2822
2822
  csvValues += (period + ',');
2823
- htmlValues += ('<tr><td class="' + (total % 2 === 0 ? 'td-odd' : 'td-even') + '">' + this.events[mmdd][j]["id"] + '</td>');
2823
+ htmlValues += ('<tr><td class="' + (total % 2 === 0 ? 'td-odd' : 'td-even') + '">' + this.events[mmdd][j]["id"] + '</td><td class="' + (total % 2 === 0 ? 'td-odd' : 'td-even') + '">' + this.events[mmdd][j]["duedate"] + '</td>');
2824
2824
  if (partStatus == "status-approved") {
2825
2825
  approved++;
2826
2826
  html += '<td part="td-body">';