sf-i-events 1.0.923 → 1.0.924
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/dev/index.html +3 -3
- package/package.json +1 -1
- package/sf-i-events.js +2 -2
- package/src/sf-i-events.ts +4 -2
package/dev/index.html
CHANGED
|
@@ -838,7 +838,7 @@
|
|
|
838
838
|
eventhidefields="["comments","documents","lastupdated","approved","tags"]"
|
|
839
839
|
blocksize="10" calendarstartdd="01" calendarstartmm="04" calendarstartyyyy="2025">
|
|
840
840
|
<div slot="uploader"><sf-i-uploader id="uploader" max="10" apiid="1peg5170d3"
|
|
841
|
-
allowedextensions="["jpg","jpeg","png","pdf","xls","xlsx","doc","docx"]"
|
|
841
|
+
allowedextensions="["jpg","jpeg","png","pdf","xls","xlsx","doc","docx","zip"]"
|
|
842
842
|
extract="yes" projectid="41ab3c86-ccc0-4c0e-8e31-cd079a07a710" maxsize="31457280"
|
|
843
843
|
allowdownload="yes"></sf-i-uploader></div>
|
|
844
844
|
<div slot="reporting"><sf-i-reporting id="reporting-format" mode="view"></sf-i-reporting></div>
|
|
@@ -853,8 +853,8 @@
|
|
|
853
853
|
apiidrcmresources="jra3sghasmaxn5aiq7rtv6pjzq0oeuaw.lambda-url.us-east-1.on.aws" fill="solid"
|
|
854
854
|
username="Local Reporter 1" userprofileid="e9684b5d-ddbc-46d3-ae07-51706bf75410"
|
|
855
855
|
projectid="41ab3c86-ccc0-4c0e-8e31-cd079a07a710" projectname="ABC Global"
|
|
856
|
-
entityid="
|
|
857
|
-
selectedcriteria="Location -
|
|
856
|
+
entityid="c989a44e-7d3d-427e-b712-90eacf585075" locationid="38dc8c53-643f-4fee-83fe-f15239606277"
|
|
857
|
+
selectedcriteria="Location - Mumbai" myrole="reporter" showregisterexport="false"
|
|
858
858
|
features="["notices","contracts","licenses","rcmresources"]"
|
|
859
859
|
eventfielddependencies="[{"type": "foreignkey", "parent": "country", "child": "state"},{"type": "foreignkey", "parent": "category", "child": "subcategory"},{"type": "foreignkey", "parent": "frequency", "child": "subfrequency"}]"
|
|
860
860
|
eventfields="[{"type": "sf-i-select", "apiId": "dnytrdlrmxgsy.cloudfront.net/riskarea", "field": "riskarea"},{"type": "sf-i-select", "apiId": "dnytrdlrmxgsy.cloudfront.net/jurisdiction", "field": "jurisdiction"},{"type": "sf-i-select", "apiId": "dnytrdlrmxgsy.cloudfront.net/updatetype", "field": "updatetype"},{"type": "sf-i-select", "apiId": "dnytrdlrmxgsy.cloudfront.net/country", "field": "country"},{"type": "sf-i-select", "apiId": "dnytrdlrmxgsy.cloudfront.net/specificity", "field": "specificity"},{"type": "sf-i-select", "apiId": "dnytrdlrmxgsy.cloudfront.net/risk", "field": "risk"},{"type": "sf-i-select", "apiId": "dnytrdlrmxgsy.cloudfront.net/frequency", "field": "frequency"},{"type": "sf-i-select", "apiId": "dnytrdlrmxgsy.cloudfront.net/category", "field": "category"},{"type": "sf-i-select", "apiId": "dnytrdlrmxgsy.cloudfront.net/obligationtype", "field": "obligationtype"},{"type": "sf-i-sub-select", "apiId": "dnytrdlrmxgsy.cloudfront.net/state", "field": "state"},{"type": "sf-i-sub-select", "apiId": "dnytrdlrmxgsy.cloudfront.net/subfrequency", "field": "subfrequency"},{"type": "sf-i-sub-select", "apiId": "dnytrdlrmxgsy.cloudfront.net/subcategory", "field": "subcategory"},{"type": "sf-i-form", "apiId": "dnytrdlrmxgsy.cloudfront.net/statute", "field": "statute", "projectField": "name"}]"
|
package/package.json
CHANGED
package/sf-i-events.js
CHANGED
|
@@ -23864,10 +23864,10 @@ let SfIEvents = class SfIEvents extends LitElement {
|
|
|
23864
23864
|
console.log('next isBulk', eventsData[role][mmdd][j].isbulk);
|
|
23865
23865
|
if (eventsData[role][mmdd][j].isbulk == null || eventsData[role][mmdd][j].isbulk == false) {
|
|
23866
23866
|
eventHtml += '<button id="button-list-reporting-' + mmdd.replace('/', '-') + '-' + j + '-" part="button-list-reporting" class="material-icons ml-10 button-list-reporting">edit_note</button>';
|
|
23867
|
-
eventHtml += '</div>';
|
|
23868
|
-
eventHtml += '<div class="list-reporting-container d-flex flex-col hide" part="list-reporting-container" id="list-reporting-container-' + mmdd.replace(/\//g, '-') + '-' + j + '"></div>';
|
|
23869
23867
|
}
|
|
23870
23868
|
eventHtml += '</div>';
|
|
23869
|
+
eventHtml += '<div class="list-reporting-container d-flex flex-col hide" part="list-reporting-container" id="list-reporting-container-' + mmdd.replace(/\//g, '-') + '-' + j + '"></div>';
|
|
23870
|
+
eventHtml += '</div>';
|
|
23871
23871
|
html += eventHtml;
|
|
23872
23872
|
}
|
|
23873
23873
|
html += '</div>';
|
package/src/sf-i-events.ts
CHANGED
|
@@ -30259,6 +30259,7 @@ export class SfIEvents extends LitElement {
|
|
|
30259
30259
|
|
|
30260
30260
|
|
|
30261
30261
|
for (var j = 0; j < (eventsData[role][mmdd] as Array<any>).length; j++) {
|
|
30262
|
+
|
|
30262
30263
|
let eventHtml = '';
|
|
30263
30264
|
eventsData[role][mmdd][j]['mmdd'] = mmdd
|
|
30264
30265
|
|
|
@@ -30312,9 +30313,10 @@ export class SfIEvents extends LitElement {
|
|
|
30312
30313
|
console.log('next isBulk', eventsData[role][mmdd][j].isbulk);
|
|
30313
30314
|
if (eventsData[role][mmdd][j].isbulk == null || eventsData[role][mmdd][j].isbulk == false) {
|
|
30314
30315
|
eventHtml += '<button id="button-list-reporting-' + mmdd.replace('/', '-') + '-' + j + '-" part="button-list-reporting" class="material-icons ml-10 button-list-reporting">edit_note</button>'
|
|
30315
|
-
eventHtml += '</div>';
|
|
30316
|
-
eventHtml += '<div class="list-reporting-container d-flex flex-col hide" part="list-reporting-container" id="list-reporting-container-' + mmdd.replace(/\//g, '-') + '-' + j + '"></div>'
|
|
30317
30316
|
}
|
|
30317
|
+
eventHtml += '</div>';
|
|
30318
|
+
eventHtml += '<div class="list-reporting-container d-flex flex-col hide" part="list-reporting-container" id="list-reporting-container-' + mmdd.replace(/\//g, '-') + '-' + j + '"></div>'
|
|
30319
|
+
|
|
30318
30320
|
eventHtml += '</div>';
|
|
30319
30321
|
html += eventHtml
|
|
30320
30322
|
|