sf-i-events 1.0.433 → 1.0.435

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 ADDED
@@ -0,0 +1,692 @@
1
+ <!DOCTYPE html>
2
+
3
+ <html>
4
+ <head>
5
+ <meta charset="utf-8" />
6
+ <meta name="viewport" content="width=device-width, initial-scale=1">
7
+ <title>&lt;sf-i-events> Demo</title>
8
+ <script src="../node_modules/@webcomponents/webcomponentsjs/webcomponents-loader.js"></script>
9
+ <script src="../node_modules/lit/polyfill-support.js"></script>
10
+ <script type="module" src="../sf-i-events.js"></script>
11
+ <script type="module" src="globals.js"></script>
12
+ <link href="https://fonts.googleapis.com/icon?family=Material+Icons"
13
+ rel="stylesheet">
14
+ <link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@48,400,0,0" />
15
+ <link rel="preconnect" href="https://fonts.googleapis.com">
16
+ <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
17
+ <link href="https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@200;300;400;600&display=swap" rel="stylesheet">
18
+ <script type="module">
19
+
20
+ import {LitElement, html, css} from 'https://esm.run/lit-element/lit-element.js';
21
+ import {SfISelect} from 'https://esm.run/sf-i-select@1.0.91/sf-i-select.js';
22
+ import {SfISubSelect} from 'https://esm.run/sf-i-sub-select@1.0.82/sf-i-sub-select.js';
23
+ import {SfIForm} from 'https://esm.run/sf-i-form@1.0.115/sf-i-form.js';
24
+ import {SfIElasticText} from 'https://esm.run/sf-i-elastic-text@1.0.7/sf-i-elastic-text.js';
25
+ import {SfIUploader} from 'https://esm.run/sf-i-uploader@1.0.58/sf-i-uploader.js';
26
+ import {SfIMultitextarea} from 'https://esm.run/sf-i-multitextarea@1.0.9/sf-i-multitextarea.js';
27
+
28
+ // import {LitElement, html, css} from 'https://unpkg.com/lit-element@3.3.3/lit-element.js?module';
29
+ // import {SfNav} from 'https://unpkg.com/sf-nav@1.0.73/sf-nav.js?module';
30
+ // import {SfChartPie} from 'https://unpkg.com/sf-chart-pie@1.0.4/sf-chart-pie.js?module';
31
+ // import {SfChartBar} from 'https://unpkg.com/sf-chart-bar@1.0.6/sf-chart-bar.js?module';
32
+ // import {SfUserAuth} from 'https://unpkg.com/sf-user-auth@1.0.87/sf-user-auth.js?module';
33
+ // import {SfISelect} from 'https://unpkg.com/sf-i-select@1.0.91/sf-i-select.js?module';
34
+ // import {SfISubSelect} from 'https://unpkg.com/sf-i-sub-select@1.0.82/sf-i-sub-select.js?module';
35
+ // import {SfIForm} from 'https://unpkg.com/sf-i-form@1.0.115/sf-i-form.js?module';
36
+ // import {SfIEvents} from 'https://unpkg.com/sf-i-events@1.0.423/sf-i-events.js?module';
37
+ // import {SfIElasticText} from 'https://unpkg.com/sf-i-elastic-text@1.0.7/sf-i-elastic-text.js?module';
38
+ // import {SfIUploader} from 'https://unpkg.com/sf-i-uploader@1.0.41/sf-i-uploader.js?module';
39
+ // import {SfRandomText} from 'https://unpkg.com/sf-random-text@1.0.2/sf-random-text.js?module';
40
+
41
+ </script>
42
+ <!-- <script type="module">
43
+ import {SfISelect} from 'https://unpkg.com/sf-i-select@1.0.80/sf-i-select.js?module';
44
+ import {SfIForm} from 'https://unpkg.com/sf-i-form@1.0.115/sf-i-form.js?module';
45
+ import {SfISubSelect} from 'https://unpkg.com/sf-i-sub-select@1.0.81/sf-i-sub-select.js?module';
46
+ import {SfIElasticText} from 'https://unpkg.com/sf-i-elastic-text@1.0.7/sf-i-elastic-text.js?module';
47
+ import {SfIUploader} from 'https://unpkg.com/sf-i-uploader@1.0.39/sf-i-uploader.js?module';
48
+ </script> -->
49
+ <style>
50
+
51
+ body {
52
+ background-color: #efefef;
53
+ margin: 0px;
54
+ font-family: 'Source Sans Pro';
55
+ }
56
+
57
+ sf-i-events:not(:defined) {
58
+ display: none;
59
+ }
60
+
61
+ .d-flex {
62
+ display: flex;
63
+ flex-wrap: wrap;
64
+ }
65
+
66
+ .w-30 {
67
+ width: 30%;
68
+ }
69
+
70
+ .w-5 {
71
+ width: 5%;
72
+ }
73
+
74
+ .w-47-5 {
75
+ width: 47.5%;
76
+ }
77
+
78
+ .w-65 {
79
+ width: 65%;
80
+ }
81
+
82
+ .w-100-m-0 {
83
+ width: 100%;
84
+ }
85
+
86
+ .w-33 {
87
+ width: 30%;
88
+ }
89
+
90
+ .w-66 {
91
+ width: 62%;
92
+ }
93
+
94
+ .w-50 {
95
+ width: 46%;
96
+ }
97
+ .w-100 {
98
+ width: 94%;
99
+ }
100
+
101
+ .justify-center {
102
+ justify-content: center;
103
+ }
104
+
105
+ .align-end {
106
+ align-items: flex-end;
107
+ }
108
+
109
+ label {
110
+ color: #666;
111
+ }
112
+
113
+ input {
114
+ border: none;
115
+ padding: 10px;
116
+ border-radius: 5px;
117
+ background: #efefef;
118
+ box-shadow: inset 2px 2px 6px rgba(5, 5, 5, 0.2);
119
+ border-top: solid 1px rgba(255, 255, 255, 0.8);
120
+ border-left: solid 1px rgba(255, 255, 255, 0.8);
121
+ border-bottom: solid 1px rgba(255, 255, 255, 0.8);
122
+ border-right: solid 1px rgba(255, 255, 255, 0.8);
123
+ transition: 0.3s;
124
+
125
+ }
126
+
127
+
128
+ sf-i-events::part(rcm-section) {
129
+ box-shadow: inset 2px 2px 6px rgba(5, 5, 5, 0.2);
130
+ border-top: solid 1px rgba(255, 255, 255, 0.8);
131
+ border-left: solid 1px rgba(255, 255, 255, 0.8);
132
+ border-bottom: solid 1px rgba(255, 255, 255, 0.8);
133
+ border-right: solid 1px rgba(255, 255, 255, 0.8);
134
+ padding: 20px;
135
+ }
136
+
137
+ sf-i-events::part(row-mapped) {
138
+ border: solid 1px greenyellow;
139
+ }
140
+
141
+ sf-i-events::part(badge-filtered) {
142
+ margin-left: 5px;
143
+ padding-top: 3px;
144
+ padding-bottom: 3px;
145
+ padding-left: 8px;
146
+ padding-right: 8px;
147
+ border-radius: 10px;
148
+ background: #efefef;
149
+ color: #aaa;
150
+ font-size: 70%
151
+ }
152
+
153
+ sf-i-events::part(badge-filter-name) {
154
+ border: none;
155
+ padding-top: 3px;
156
+ padding-bottom: 3px;
157
+ padding-left: 8px;
158
+ padding-right: 8px;
159
+ border-radius: 10px;
160
+ background: #ccc;
161
+ color: white;
162
+ font-size: 70%
163
+ }
164
+
165
+ sf-i-events::part(badge-dashboard) {
166
+ border: none;
167
+ padding: 10px;
168
+ border-radius: 5px;
169
+ background: #efefef;
170
+ box-shadow: inset 2px 2px 6px rgba(5, 5, 5, 0.2);
171
+ border-top: solid 1px rgba(255, 255, 255, 0.8);
172
+ border-left: solid 1px rgba(255, 255, 255, 0.8);
173
+ border-bottom: solid 1px rgba(255, 255, 255, 0.8);
174
+ border-right: solid 1px rgba(255, 255, 255, 0.8);
175
+ transition: 0.3s;
176
+ }
177
+
178
+ sf-i-events::part(commentbox) {
179
+ border: none;
180
+ padding: 10px;
181
+ border-radius: 5px;
182
+ background: #efefef;
183
+ box-shadow: inset 2px 2px 6px rgba(5, 5, 5, 0.2);
184
+ border-top: solid 1px rgba(255, 255, 255, 0.8);
185
+ border-left: solid 1px rgba(255, 255, 255, 0.8);
186
+ border-bottom: solid 1px rgba(255, 255, 255, 0.8);
187
+ border-right: solid 1px rgba(255, 255, 255, 0.8);
188
+ transition: 0.3s;
189
+ }
190
+
191
+ sf-i-events::part(report-container) {
192
+ border: none;
193
+ padding: 10px;
194
+ border-radius: 5px;
195
+ background: #efefef;
196
+ box-shadow: inset 2px 2px 6px rgba(5, 5, 5, 0.2);
197
+ border-top: solid 1px rgba(255, 255, 255, 0.8);
198
+ border-left: solid 1px rgba(255, 255, 255, 0.8);
199
+ border-bottom: solid 1px rgba(255, 255, 255, 0.8);
200
+ border-right: solid 1px rgba(255, 255, 255, 0.8);
201
+ transition: 0.3s;
202
+ }
203
+
204
+ input:focus {
205
+ outline-color: #e8e8e8;
206
+ background: #e8e8e8;
207
+ box-shadow: inset 20px 20px 60px #c5c5c5,
208
+ inset -20px -20px 60px #ffffff;
209
+ transition: 0.3s;
210
+ }
211
+
212
+ sf-i-events::part(detail-head) {
213
+ font-weight: 400;
214
+ color: gray;
215
+ text-transform: capitalize;
216
+ font-size: 90%;
217
+ }
218
+
219
+ sf-i-uploader::part(detail-container),
220
+ sf-i-events::part(detail-container) {
221
+ position: fixed;
222
+ left: 0px;
223
+ top: 0px;
224
+ width: 100%;
225
+ height: 100vh;
226
+ background-color: #efefef;
227
+ box-shadow: 1px 1px 10px 0 rgba(0, 0, 0, 0.25), -1px -1px 10px 0 rgba(255, 255, 255, 0.6);
228
+ border-top: solid 1px rgba(255, 255, 255, 0.3);
229
+ border-left: solid 1px rgba(255, 255, 255, 0.3);
230
+ border-bottom: solid 1px rgba(0, 0, 0, 0.1);
231
+ border-right: solid 1px rgba(0, 0, 0, 0.1);
232
+ overflow-y: auto;
233
+ margin: 0px;
234
+ }
235
+
236
+ sf-i-events::part(filter-title) {
237
+ color: #888;
238
+ font-weight: 400;
239
+ }
240
+
241
+ sf-i-events::part(filter) {
242
+ color: #888;
243
+ font-weight: 400;
244
+ font-size: 80%;
245
+ }
246
+
247
+ sf-i-events::part(td-head) {
248
+ color: #888;
249
+ font-weight: 400;
250
+ padding-left: 5px;
251
+ vertical-align: middle;
252
+ font-size: 80%;
253
+ text-transform: capitalize;
254
+ text-align: left;
255
+ }
256
+
257
+ sf-i-events::part(td-key) {
258
+ color: white;
259
+ background-color: #aaa;
260
+ font-weight: 900;
261
+ padding-left: 5px;
262
+ vertical-align: middle;
263
+ font-size: 80%;
264
+ text-align: left;
265
+ }
266
+
267
+ sf-i-events::part(td-body) {
268
+ color: #555;
269
+ font-weight: 400;
270
+ padding: 5px;
271
+ vertical-align: middle;
272
+ font-size: 80%;
273
+ white-space: nowrap;
274
+ text-align: left;
275
+ }
276
+
277
+ sf-i-events::part(stream-event-total) {
278
+ border-width: 0px;
279
+ color: #666;
280
+ background: #efefef;
281
+ font-weight: 900;
282
+ padding: 10px;
283
+ }
284
+
285
+ sf-i-events::part(adhoc-question) {
286
+ border-width: 0px;
287
+ font-size: 120%;
288
+ }
289
+
290
+ sf-i-events::part(stream-event-selected) {
291
+ border-width: 0px;
292
+ border-radius: 5px;
293
+ color: #666;
294
+ background: #efefef;
295
+ box-shadow: 1px 1px 10px 0 rgba(0, 0, 0, 0.25), -1px -1px 10px 0 rgba(255, 255, 255, 0.6);
296
+ border-top: solid 1px rgba(255, 255, 255, 0.3);
297
+ border-left: solid 1px rgba(255, 255, 255, 0.3);
298
+ border-bottom: solid 1px rgba(0, 0, 0, 0.1);
299
+ border-right: solid 1px rgba(0, 0, 0, 0.1);
300
+ font-weight: 900;
301
+ }
302
+
303
+ sf-i-events::part(calendar-tab-button-selected) {
304
+ border-width: 0px;
305
+ border-radius: 5px;
306
+ color: #666;
307
+ background: #efefef;
308
+ box-shadow: inset 3px 3px 5px #bbbbbb,
309
+ inset -5px -5px 8px #ffffff;
310
+ border-top: solid 1px rgba(255, 255, 255, 0.3);
311
+ border-left: solid 1px rgba(255, 255, 255, 0.3);
312
+ border-bottom: solid 1px rgba(0, 0, 0, 0.1);
313
+ border-right: solid 1px rgba(0, 0, 0, 0.1);
314
+ font-weight: 900;
315
+ }
316
+
317
+ sf-i-events::part(calendar-tab-button-not-selected) {
318
+ border-width: 0px;
319
+ border-radius: 5px;
320
+ color: #aaa;
321
+ background: #efefef;
322
+ border-top: solid 1px rgba(255, 255, 255, 0.3);
323
+ border-left: solid 1px rgba(255, 255, 255, 0.3);
324
+ border-bottom: solid 1px rgba(0, 0, 0, 0.1);
325
+ border-right: solid 1px rgba(0, 0, 0, 0.1);
326
+ }
327
+
328
+ sf-i-events::part(stream-month-selected) {
329
+ border-width: 0px;
330
+ border-radius: 5px;
331
+ color: #666;
332
+ background: #efefef;
333
+ box-shadow: inset 3px 3px 5px #bbbbbb,
334
+ inset -5px -5px 8px #ffffff;
335
+ border-top: solid 1px rgba(255, 255, 255, 0.3);
336
+ border-left: solid 1px rgba(255, 255, 255, 0.3);
337
+ border-bottom: solid 1px rgba(0, 0, 0, 0.1);
338
+ border-right: solid 1px rgba(0, 0, 0, 0.1);
339
+ font-weight: 900;
340
+ }
341
+
342
+ sf-i-events::part(stream-month-not-selected) {
343
+ border-width: 0px;
344
+ border-radius: 5px;
345
+ color: #aaa;
346
+ background: #efefef;
347
+ border-top: solid 1px rgba(255, 255, 255, 0.3);
348
+ border-left: solid 1px rgba(255, 255, 255, 0.3);
349
+ border-bottom: solid 1px rgba(0, 0, 0, 0.1);
350
+ border-right: solid 1px rgba(0, 0, 0, 0.1);
351
+ }
352
+
353
+ sf-i-events::part(stream-event-list) {
354
+ border-width: 0px;
355
+ border-radius: 5px;
356
+ background: #efefef;
357
+ box-shadow: inset 3px 3px 5px #bbbbbb,
358
+ inset -5px -5px 8px #ffffff;
359
+ border-top: solid 1px rgba(255, 255, 255, 0.3);
360
+ border-left: solid 1px rgba(255, 255, 255, 0.3);
361
+ border-bottom: solid 1px rgba(0, 0, 0, 0.1);
362
+ border-right: solid 1px rgba(0, 0, 0, 0.1);
363
+ }
364
+
365
+
366
+ sf-i-uploader::part(button-icon),
367
+ sf-i-events::part(button-icon) {
368
+
369
+ border-width: 0px;
370
+ border-radius: 5px;
371
+ color: #666;
372
+ background: #efefef;
373
+ box-shadow: 1px 1px 10px 0 rgba(0, 0, 0, 0.25), -1px -1px 10px 0 rgba(255, 255, 255, 0.6);
374
+ border-top: solid 1px rgba(255, 255, 255, 0.3);
375
+ border-left: solid 1px rgba(255, 255, 255, 0.3);
376
+ border-bottom: solid 1px rgba(0, 0, 0, 0.1);
377
+ border-right: solid 1px rgba(0, 0, 0, 0.1);
378
+
379
+ }
380
+
381
+ sf-i-events::part(button-icon-small) {
382
+
383
+ border-width: 0px;
384
+ border-radius: 5px;
385
+ color: #666;
386
+ background: #efefef;
387
+ box-shadow: 1px 1px 10px 0 rgba(0, 0, 0, 0.25), -1px -1px 10px 0 rgba(255, 255, 255, 0.6);
388
+ border-top: solid 1px rgba(255, 255, 255, 0.3);
389
+ border-left: solid 1px rgba(255, 255, 255, 0.3);
390
+ border-bottom: solid 1px rgba(0, 0, 0, 0.1);
391
+ border-right: solid 1px rgba(0, 0, 0, 0.1);
392
+
393
+ }
394
+
395
+ sf-i-events::part(accordian-container) {
396
+
397
+ border-width: 0px;
398
+ border-radius: 5px;
399
+ box-shadow: inset 2px 2px 6px rgba(5, 5, 5, 0.2);
400
+ border-top: solid 1px rgba(255, 255, 255, 0.3);
401
+ border-left: solid 1px rgba(255, 255, 255, 0.3);
402
+ border-bottom: solid 1px rgba(0, 0, 0, 0.1);
403
+ border-right: solid 1px rgba(0, 0, 0, 0.1);
404
+
405
+ }
406
+
407
+
408
+ sf-i-events::part(badge) {
409
+
410
+ color: #666;
411
+ border-bottom: solid 1px rgba(0, 0, 0, 0.1);
412
+ border-right: solid 1px rgba(0, 0, 0, 0.1);
413
+ padding-left: 10px;
414
+ padding-right: 10px;
415
+ padding-top: 5px;
416
+ padding-bottom: 5px;
417
+ border-radius: 10px;
418
+ margin-top: -8px;
419
+
420
+ }
421
+
422
+ sf-i-events::part(title) {
423
+
424
+ font-weight: 400;
425
+
426
+ }
427
+
428
+ sf-i-events::part(month-title) {
429
+
430
+ color: #666;
431
+ font-weight: 600;
432
+
433
+ }
434
+
435
+ sf-i-events::part(event-calendar-day-today) {
436
+
437
+ background-color: #444;
438
+ color: white;
439
+ font-weight: 900;
440
+ border-radius: 5px;
441
+
442
+ }
443
+
444
+
445
+ sf-i-events::part(calendar-month) {
446
+
447
+ box-shadow: inset 2px 2px 6px rgba(5, 5, 5, 0.2);
448
+
449
+ }
450
+
451
+ sf-i-events::part(compliance-date-indicator-primary) {
452
+ background-color: #cd0078;
453
+ }
454
+
455
+ sf-i-events::part(compliance-calendar-day-with-compliance) {
456
+ box-shadow: 1px 1px 10px 0 rgba(0, 0, 0, 0.25), -1px -1px 10px 0 rgba(255, 255, 255, 0.6);
457
+ border-radius: 5px;
458
+ padding-bottom: 3px;
459
+ color: black;
460
+ font-weight: 600;
461
+ }
462
+
463
+ sf-i-select::part(input-label),
464
+ sf-i-sub-select::part(input-label),
465
+ sf-i-events::part(input-label) {
466
+ color: #666;
467
+ }
468
+
469
+ sf-i-select::part(input-select),
470
+ sf-i-sub-select::part(input-select),
471
+ sf-i-events::part(input-select) {
472
+
473
+ border-width: 0px;
474
+ border-radius: 5px;
475
+ color: #666;
476
+ background: #efefef;
477
+ box-shadow: 1px 1px 10px 0 rgba(0, 0, 0, 0.25), -1px -1px 10px 0 rgba(255, 255, 255, 0.6);
478
+ border-top: solid 1px rgba(255, 255, 255, 0.3);
479
+ border-left: solid 1px rgba(255, 255, 255, 0.3);
480
+ border-bottom: solid 1px rgba(0, 0, 0, 0.1);
481
+ border-right: solid 1px rgba(0, 0, 0, 0.1);
482
+ padding: 10px;
483
+
484
+ }
485
+
486
+ sf-i-select::part(input-select-multi),
487
+ sf-i-sub-select::part(input-select-multi) {
488
+ font-weight: 400;
489
+ border: none;
490
+ padding: 10px;
491
+ border-radius: 5px;
492
+ background: #efefef;
493
+ box-shadow: inset 2px 2px 6px rgba(5, 5, 5, 0.2);
494
+ border-top: solid 1px rgba(255, 255, 255, 0.8);
495
+ border-left: solid 1px rgba(255, 255, 255, 0.8);
496
+ border-bottom: solid 1px rgba(255, 255, 255, 0.8);
497
+ border-right: solid 1px rgba(255, 255, 255, 0.8);
498
+ transition: 0.3s;
499
+ }
500
+
501
+ sf-i-uploader::part(input),
502
+ sf-i-events::part(input) {
503
+ font-weight: 400;
504
+ border: none;
505
+ padding: 10px;
506
+ border-radius: 5px;
507
+ background: #efefef;
508
+ box-shadow: inset 2px 2px 6px rgba(5, 5, 5, 0.2);
509
+ border-top: solid 1px rgba(255, 255, 255, 0.8);
510
+ border-left: solid 1px rgba(255, 255, 255, 0.8);
511
+ border-bottom: solid 1px rgba(255, 255, 255, 0.8);
512
+ border-right: solid 1px rgba(255, 255, 255, 0.8);
513
+ transition: 0.3s;
514
+ }
515
+
516
+ sf-i-events::part(input:focus) {
517
+ outline-color: #e8e8e8;
518
+ background: #e8e8e8;
519
+ box-shadow: inset 20px 20px 60px #c5c5c5,
520
+ inset -20px -20px 60px #ffffff;
521
+ transition: 0.3s;
522
+ }
523
+
524
+ sf-i-events::part(results-title) {
525
+ color: #444;
526
+ font-weight: 400;
527
+ }
528
+
529
+
530
+
531
+ sf-i-events::part(td-action) {
532
+ color: #888;
533
+ font-weight: 400;
534
+ padding: 5px;
535
+ background-color: #efefef;
536
+ vertical-align: middle;
537
+ }
538
+
539
+ sf-i-uploader::part(button),
540
+ sf-i-events::part(button) {
541
+ color: #666;
542
+ background: #efefef;
543
+ box-shadow: 1px 1px 10px 0 rgba(0, 0, 0, 0.25), -1px -1px 10px 0 rgba(255, 255, 255, 0.6);
544
+ border-top: solid 1px rgba(255, 255, 255, 0.3);
545
+ border-left: solid 1px rgba(255, 255, 255, 0.3);
546
+ border-bottom: solid 1px rgba(0, 0, 0, 0.1);
547
+ border-right: solid 1px rgba(0, 0, 0, 0.1);
548
+ padding-left: 10px;
549
+ padding-right: 10px;
550
+ padding-top: 5px;
551
+ padding-bottom: 5px;
552
+ border-radius: 5px;
553
+ }
554
+
555
+
556
+
557
+ sf-i-events::part(button-lg) {
558
+ color: #666;
559
+ background: #efefef;
560
+ box-shadow: 1px 1px 10px 0 rgba(0, 0, 0, 0.25), -1px -1px 10px 0 rgba(255, 255, 255, 0.6);
561
+ border-top: solid 1px rgba(255, 255, 255, 0.3);
562
+ border-left: solid 1px rgba(255, 255, 255, 0.3);
563
+ border-bottom: solid 1px rgba(0, 0, 0, 0.1);
564
+ border-right: solid 1px rgba(0, 0, 0, 0.1);
565
+ padding-left: 10px;
566
+ padding-right: 10px;
567
+ padding-top: 10px;
568
+ padding-bottom: 10px;
569
+ border-radius: 5px;
570
+ font-size: 110%;
571
+ }
572
+
573
+ sf-i-events::part(button-lg):not(active){
574
+ color: #666;
575
+ background: #bbbbbb;
576
+ box-shadow: 1px 1px 10px 0 rgba(0, 0, 0, 0.25), -1px -1px 10px 0 rgba(255, 255, 255, 0.6);
577
+ border-top: solid 1px rgba(255, 255, 255, 0.3);
578
+ border-left: solid 1px rgba(255, 255, 255, 0.3);
579
+ border-bottom: solid 1px rgba(0, 0, 0, 0.1);
580
+ border-right: solid 1px rgba(0, 0, 0, 0.1);
581
+ padding-left: 10px;
582
+ padding-right: 10px;
583
+ padding-top: 15px;
584
+ padding-bottom: 15px;
585
+ border-radius: 5px;
586
+ font-size: 95%;
587
+ }
588
+
589
+
590
+ </style>
591
+ </head>
592
+ <body>
593
+
594
+ <sf-i-events projectid="f0f17ddb-546a-45f5-8a94-a5689fde8e64" projectname="Signode" mode="onboarding" locations="{&quot;India&quot;:{&quot;Telangana&quot;:[&quot;Corporate Office&quot;,&quot;Rudraram&quot;],&quot;Karnataka&quot;:[&quot;Prime&quot;,&quot;Stopak&quot;,&quot;Wintek&quot;,&quot;Tools&quot;,&quot;Conversion&quot;],&quot;Gujarat&quot;:[&quot;Dahej&quot;],&quot;Dadra and Nagar Haveli and Daman and Diu&quot;:[&quot;Silvassa&quot;],&quot;Uttarakhand&quot;:[&quot;Rudrapur&quot;],&quot;Maharashtra&quot;:[&quot;Pune&quot;]}}" apiid="d2gos2ro11pdov.cloudfront.net" apiidstatutes="4wb2x6fkga" apiidcompliances="r42gyc2xx1" apiidtags="j385cxf2p0" apiidusers="rnmvvr922j" disablesignoff="yes" disableclientresponse="yes">
595
+
596
+ </sf-i-events>
597
+
598
+ <!-- <sf-i-events projectid="f0f17ddb-546a-45f5-8a94-a5689fde8e64" projectname="Signode" mode="onboarding" apiid="d2gos2ro11pdov.cloudfront.net" apiidstatutes="4wb2x6fkga" apiidcompliances="r42gyc2xx1" apiidtags="j385cxf2p0" apiidusers="rnmvvr922j" locations="{&quot;India&quot;:{&quot;Telangana&quot;:[&quot;Corporate Office&quot;,&quot;Rudraram&quot;],&quot;Karnataka&quot;:[&quot;Prime&quot;,&quot;Stopak&quot;,&quot;Wintek&quot;,&quot;Tools&quot;,&quot;Conversion&quot;],&quot;Gujarat&quot;:[&quot;Dahej&quot;],&quot;Dadra and Nagar Haveli and Daman and Diu&quot;:[&quot;Silvassa&quot;],&quot;Uttarakhand&quot;:[&quot;Rudrapur&quot;],&quot;Maharashtra&quot;:[&quot;Pune&quot;]}}" filteronboarding="[{&quot;country&quot;:&quot;India&quot;,&quot;states&quot;:[&quot;&quot;],&quot;subcategories&quot;:[&quot;Finance&quot;,&quot;Indirect Taxation&quot;,&quot;Direct Taxation&quot;],&quot;excludestatutes&quot;: [&quot;Telangana Tax on Professions, Trades, Callings and Employments Act, 1987 + Telangana Tax on Professions, Trades, Callings and Employments Rules, 1987&quot;,&quot;Maharashtra State Tax on Professions , Trades, Callings and Employments Act, 1975 + Maharashtra State Tax on Profession, Trades, Callings and Employments Rules, 1975&quot;,&quot;Gujarat State Tax on Profession, Trades, Callings and Employments Act, 1976 + Gujarat State Tax on Professions, Trades, Callings and Employments Rules, 1976&quot;,&quot;Karnataka Tax on Professions, Trades, Callings and Employments Act, 1976 + Karnataka Tax on Professions, Trade, Calling and Employment Rules,1976&quot;],&quot;includestatutes&quot;: [&quot;&quot;],&quot;locations&quot;:{&quot;Telangana&quot;:[&quot;Corporate Office&quot;,&quot;Rudraram&quot;],&quot;Karnataka&quot;:[&quot;Prime&quot;,&quot;Conversion&quot;],&quot;Gujarat&quot;:[&quot;Dahej&quot;],&quot;Dadra and Nagar Haveli and Daman and Diu&quot;:[&quot;Silvassa&quot;],&quot;Uttarakhand&quot;:[&quot;Rudrapur&quot;],&quot;Maharashtra&quot;:[&quot;Pune&quot;]}}]" disableflagggrcresponse="yes">
599
+
600
+ </sf-i-events> -->
601
+
602
+ <!-- <sf-i-events projectid="f0f17ddb-546a-45f5-8a94-a5689fde8e64" projectname="Signode" mode="onboarding" locations="{&quot;India&quot;:{&quot;Telangana&quot;:[&quot;Corporate Office&quot;,&quot;Rudraram&quot;],&quot;Karnataka&quot;:[&quot;Prime&quot;,&quot;Stopak&quot;,&quot;Wintek&quot;,&quot;Tools&quot;,&quot;Conversion&quot;],&quot;Gujarat&quot;:[&quot;Dahej&quot;],&quot;Dadra and Nagar Haveli and Daman and Diu&quot;:[&quot;Silvassa&quot;],&quot;Uttarakhand&quot;:[&quot;Rudrapur&quot;],&quot;Maharashtra&quot;:[&quot;Pune&quot;]}}" apiid="d2gos2ro11pdov.cloudfront.net" apiidstatutes="4wb2x6fkga" apiidcompliances="r42gyc2xx1" apiidtags="j385cxf2p0" apiidusers="rnmvvr922j" disablesignoff="yes" disableclientresponse="yes">
603
+
604
+ </sf-i-events> -->
605
+
606
+ <!-- <sf-i-events projectid="f0f17ddb-546a-45f5-8a94-a5689fde8e64" projectname="Signode" mode="onboarding" apiid="d2gos2ro11pdov.cloudfront.net" apiidstatutes="4wb2x6fkga" apiidcompliances="r42gyc2xx1" apiidtags="j385cxf2p0" apiidusers="rnmvvr922j" locations="{&quot;India&quot;:{&quot;Telangana&quot;:[&quot;Corporate Office&quot;,&quot;Rudraram&quot;],&quot;Karnataka&quot;:[&quot;Prime&quot;,&quot;Stopak&quot;,&quot;Wintek&quot;,&quot;Tools&quot;,&quot;Conversion&quot;],&quot;Gujarat&quot;:[&quot;Dahej&quot;],&quot;Dadra and Nagar Haveli and Daman and Diu&quot;:[&quot;Silvassa&quot;],&quot;Uttarakhand&quot;:[&quot;Rudrapur&quot;],&quot;Maharashtra&quot;:[&quot;Pune&quot;]}}" filteronboarding="[{&quot;country&quot;:&quot;India&quot;,&quot;states&quot;:[&quot;&quot;],&quot;subcategories&quot;:[&quot;Labour and Employment&quot;,&quot;Environment, Health and Safety&quot;],&quot;excludestatutes&quot;: [&quot;&quot;],&quot;includestatutes&quot;: [&quot;Telangana Tax on Professions, Trades, Callings and Employments Act, 1987 + Telangana Tax on Professions, Trades, Callings and Employments Rules, 1987&quot;,&quot;Maharashtra State Tax on Professions , Trades, Callings and Employments Act, 1975 + Maharashtra State Tax on Profession, Trades, Callings and Employments Rules, 1975&quot;,&quot;Gujarat State Tax on Profession, Trades, Callings and Employments Act, 1976 + Gujarat State Tax on Professions, Trades, Callings and Employments Rules, 1976&quot;,&quot;Karnataka Tax on Professions, Trades, Callings and Employments Act, 1976 + Karnataka Tax on Professions, Trade, Calling and Employment Rules,1976&quot;],&quot;locations&quot;:{&quot;Telangana&quot;:[&quot;Corporate Office&quot;,&quot;Rudraram&quot;],&quot;Karnataka&quot;:[&quot;Prime&quot;,&quot;Conversion&quot;],&quot;Gujarat&quot;:[&quot;Dahej&quot;],&quot;Dadra and Nagar Haveli and Daman and Diu&quot;:[&quot;Silvassa&quot;],&quot;Uttarakhand&quot;:[&quot;Rudrapur&quot;],&quot;Maharashtra&quot;:[&quot;Pune&quot;]}}]" disableflagggrcresponse="yes">
607
+
608
+ </sf-i-events> -->
609
+
610
+ <!-- <sf-i-events projectid="f0f17ddb-546a-45f5-8a94-a5689fde8e64" projectname="Signode" mode="onboarding" apiid="d2gos2ro11pdov.cloudfront.net" apiidstatutes="4wb2x6fkga" apiidcompliances="r42gyc2xx1" apiidtags="j385cxf2p0" apiidusers="rnmvvr922j" locations="{&quot;India&quot;:{&quot;Telangana&quot;:[&quot;Corporate Office&quot;,&quot;Rudraram&quot;],&quot;Karnataka&quot;:[&quot;Prime&quot;,&quot;Stopak&quot;,&quot;Wintek&quot;,&quot;Tools&quot;,&quot;Conversion&quot;],&quot;Gujarat&quot;:[&quot;Dahej&quot;],&quot;Dadra and Nagar Haveli and Daman and Diu&quot;:[&quot;Silvassa&quot;],&quot;Uttarakhand&quot;:[&quot;Rudrapur&quot;],&quot;Maharashtra&quot;:[&quot;Pune&quot;]}}" filteronboarding="[{&quot;country&quot;:&quot;India&quot;,&quot;states&quot;:[&quot;&quot;],&quot;subcategories&quot;:[&quot;Labour and Employment&quot;,&quot;Environment, Health and Safety&quot;],&quot;excludestatutes&quot;: [&quot;&quot;],&quot;includestatutes&quot;: [&quot;Telangana Tax on Professions, Trades, Callings and Employments Act, 1987 + Telangana Tax on Professions, Trades, Callings and Employments Rules, 1987&quot;,&quot;Maharashtra State Tax on Professions , Trades, Callings and Employments Act, 1975 + Maharashtra State Tax on Profession, Trades, Callings and Employments Rules, 1975&quot;,&quot;Gujarat State Tax on Profession, Trades, Callings and Employments Act, 1976 + Gujarat State Tax on Professions, Trades, Callings and Employments Rules, 1976&quot;,&quot;Karnataka Tax on Professions, Trades, Callings and Employments Act, 1976 + Karnataka Tax on Professions, Trade, Calling and Employment Rules,1976&quot;],&quot;locations&quot;:{&quot;Telangana&quot;:[&quot;Corporate Office&quot;,&quot;Rudraram&quot;],&quot;Karnataka&quot;:[&quot;Prime&quot;,&quot;Stopak&quot;,&quot;Wintek&quot;,&quot;Tools&quot;,&quot;Conversion&quot;],&quot;Gujarat&quot;:[&quot;Dahej&quot;],&quot;Dadra and Nagar Haveli and Daman and Diu&quot;:[&quot;Silvassa&quot;],&quot;Uttarakhand&quot;:[&quot;Rudrapur&quot;],&quot;Maharashtra&quot;:[&quot;Pune&quot;]}}]" disableflagggrcresponse="yes">
611
+
612
+ </sf-i-events> -->
613
+ <!--
614
+ <sf-i-events projectid="f0f17ddb-546a-45f5-8a94-a5689fde8e64" projectname="Signode" mode="onboarding" apiid="d2gos2ro11pdov.cloudfront.net" apiidstatutes="4wb2x6fkga" apiidcompliances="r42gyc2xx1" apiidtags="j385cxf2p0" apiidusers="rnmvvr922j" locations="{&quot;India&quot;:{&quot;Telangana&quot;:[&quot;Corporate Office&quot;,&quot;Rudraram&quot;],&quot;Karnataka&quot;:[&quot;Prime&quot;,&quot;Stopak&quot;,&quot;Wintek&quot;,&quot;Tools&quot;,&quot;Conversion&quot;],&quot;Gujarat&quot;:[&quot;Dahej&quot;],&quot;Dadra and Nagar Haveli and Daman and Diu&quot;:[&quot;Silvassa&quot;],&quot;Uttarakhand&quot;:[&quot;Rudrapur&quot;],&quot;Maharashtra&quot;:[&quot;Pune&quot;]}}" filteronboarding="[{&quot;country&quot;:&quot;India&quot;,&quot;states&quot;:[&quot;&quot;],&quot;subcategories&quot;:[&quot;Labour and Employment&quot;,&quot;Environment, Health and Safety&quot;],&quot;excludestatutes&quot;: [&quot;&quot;],&quot;includestatutes&quot;: [&quot;Telangana Tax on Professions, Trades, Callings and Employments Act, 1987 + Telangana Tax on Professions, Trades, Callings and Employments Rules, 1987&quot;,&quot;Maharashtra State Tax on Professions , Trades, Callings and Employments Act, 1975 + Maharashtra State Tax on Profession, Trades, Callings and Employments Rules, 1975&quot;,&quot;Gujarat State Tax on Profession, Trades, Callings and Employments Act, 1976 + Gujarat State Tax on Professions, Trades, Callings and Employments Rules, 1976&quot;,&quot;Karnataka Tax on Professions, Trades, Callings and Employments Act, 1976 + Karnataka Tax on Professions, Trade, Calling and Employment Rules,1976&quot;],&quot;locations&quot;: {&quot;India&quot;:{&quot;Telangana&quot;:[&quot;Corporate Office&quot;,&quot;Rudraram&quot;],&quot;Karnataka&quot;:[&quot;Prime&quot;,&quot;Stopak&quot;,&quot;Wintek&quot;,&quot;Tools&quot;,&quot;Conversion&quot;],&quot;Gujarat&quot;:[&quot;Dahej&quot;],&quot;Dadra and Nagar Haveli and Daman and Diu&quot;:[&quot;Silvassa&quot;],&quot;Uttarakhand&quot;:[&quot;Rudrapur&quot;],&quot;Maharashtra&quot;:[&quot;Pune&quot;]}}}]" disableflagggrcresponse="yes"> -->
615
+
616
+ </sf-i-events>
617
+
618
+ <!-- <sf-i-events projectid="f0f17ddb-546a-45f5-8a94-a5689fde8e64" projectname="Signode" mode="onboarding" apiid="d2gos2ro11pdov.cloudfront.net" apiidstatutes="4wb2x6fkga" apiidcompliances="r42gyc2xx1" apiidtags="j385cxf2p0" apiidusers="rnmvvr922j" locations="{&quot;India&quot;:{&quot;Telangana&quot;:[&quot;Corporate Office&quot;,&quot;Rudraram&quot;],&quot;Karnataka&quot;:[&quot;Prime&quot;,&quot;Stopak&quot;,&quot;Wintek&quot;,&quot;Tools&quot;,&quot;Conversion&quot;],&quot;Gujarat&quot;:[&quot;Dahej&quot;],&quot;Dadra and Nagar Haveli and Daman and Diu&quot;:[&quot;Silvassa&quot;],&quot;Uttarakhand&quot;:[&quot;Rudrapur&quot;],&quot;Maharashtra&quot;:[&quot;Pune&quot;]}}" filteronboarding="[{&quot;country&quot;:&quot;India&quot;,&quot;states&quot;:[&quot;&quot;],&quot;subcategories&quot;:[&quot;Labour and Employment&quot;,&quot;Environment, Health and Safety&quot;],&quot;excludestatutes&quot;: [&quot;&quot;],&quot;includestatutes&quot;: [&quot;Telangana Tax on Professions, Trades, Callings and Employments Act, 1987 + Telangana Tax on Professions, Trades, Callings and Employments Rules, 1987&quot;,&quot;Maharashtra State Tax on Professions , Trades, Callings and Employments Act, 1975 + Maharashtra State Tax on Profession, Trades, Callings and Employments Rules, 1975&quot;,&quot;Gujarat State Tax on Profession, Trades, Callings and Employments Act, 1976 + Gujarat State Tax on Professions, Trades, Callings and Employments Rules, 1976&quot;,&quot;Karnataka Tax on Professions, Trades, Callings and Employments Act, 1976 + Karnataka Tax on Professions, Trade, Calling and Employment Rules,1976&quot;],&quot;locations&quot;:{&quot;Telangana&quot;:[&quot;Corporate Office&quot;,&quot;Rudraram&quot;],&quot;Karnataka&quot;:[&quot;Prime&quot;,&quot;Stopak&quot;,&quot;Wintek&quot;,&quot;Tools&quot;,&quot;Conversion&quot;],&quot;Gujarat&quot;:[&quot;Dahej&quot;],&quot;Dadra and Nagar Haveli and Daman and Diu&quot;:[&quot;Silvassa&quot;],&quot;Uttarakhand&quot;:[&quot;Rudrapur&quot;],&quot;Maharashtra&quot;:[&quot;Pune&quot;]}}]" disableflagggrcresponse="yes">
619
+
620
+ </sf-i-events> -->
621
+
622
+ <!-- <sf-i-events projectid="f0f17ddb-546a-45f5-8a94-a5689fde8e64" projectname="Signode" mode="onboarding" apiid="d2gos2ro11pdov.cloudfront.net" apiidstatutes="4wb2x6fkga" apiidcompliances="r42gyc2xx1" apiidtags="j385cxf2p0" apiidusers="rnmvvr922j" locations="{&quot;India&quot;:{&quot;Telangana&quot;:[&quot;Corporate Office&quot;,&quot;Rudraram&quot;],&quot;Karnataka&quot;:[&quot;Prime&quot;,&quot;Stopak&quot;,&quot;Wintek&quot;,&quot;Tools&quot;,&quot;Conversion&quot;],&quot;Gujarat&quot;:[&quot;Dahej&quot;],&quot;Dadra and Nagar Haveli and Daman and Diu&quot;:[&quot;Silvassa&quot;],&quot;Uttarakhand&quot;:[&quot;Rudrapur&quot;],&quot;Maharashtra&quot;:[&quot;Pune&quot;]}}" filteronboarding="[{&quot;country&quot;:&quot;India&quot;,&quot;states&quot;:[&quot;&quot;],&quot;subcategories&quot;:[&quot;Labour and Employment&quot;,&quot;Environment, Health and Safety&quot;],&quot;excludestatutes&quot;: [&quot;&quot;],&quot;includestatutes&quot;: [&quot;Telangana Tax on Professions, Trades, Callings and Employments Act, 1987 + Telangana Tax on Professions, Trades, Callings and Employments Rules, 1987&quot;,&quot;Maharashtra State Tax on Professions , Trades, Callings and Employments Act, 1975 + Maharashtra State Tax on Profession, Trades, Callings and Employments Rules, 1975&quot;,&quot;Gujarat State Tax on Profession, Trades, Callings and Employments Act, 1976 + Gujarat State Tax on Professions, Trades, Callings and Employments Rules, 1976&quot;,&quot;Karnataka Tax on Professions, Trades, Callings and Employments Act, 1976 + Karnataka Tax on Professions, Trade, Calling and Employment Rules,1976&quot;],&quot;locations&quot;: {&quot;India&quot;:{&quot;Telangana&quot;:[&quot;Corporate Office&quot;,&quot;Rudraram&quot;],&quot;Karnataka&quot;:[&quot;Prime&quot;,&quot;Stopak&quot;,&quot;Wintek&quot;,&quot;Tools&quot;,&quot;Conversion&quot;],&quot;Gujarat&quot;:[&quot;Dahej&quot;],&quot;Dadra and Nagar Haveli and Daman and Diu&quot;:[&quot;Silvassa&quot;],&quot;Uttarakhand&quot;:[&quot;Rudrapur&quot;],&quot;Maharashtra&quot;:[&quot;Pune&quot;]}}]" disableflagggrcresponse="yes">
623
+
624
+ </sf-i-events> -->
625
+
626
+ <!-- <sf-i-events projectid="f0f17ddb-546a-45f5-8a94-a5689fde8e64" projectname="Signode" mode="onboarding" locations="{&quot;India&quot;:{&quot;Telangana&quot;:[&quot;Corporate Office&quot;,&quot;Rudraram&quot;],&quot;Karnataka&quot;:[&quot;Prime&quot;,&quot;Stopak&quot;,&quot;Wintek&quot;,&quot;Tools&quot;,&quot;Conversion&quot;],&quot;Gujarat&quot;:[&quot;Dahej&quot;],&quot;Dadra and Nagar Haveli and Daman and Diu&quot;:[&quot;Silvassa&quot;],&quot;Uttarakhand&quot;:[&quot;Rudrapur&quot;],&quot;Maharashtra&quot;:[&quot;Pune&quot;]}}" apiid="d2gos2ro11pdov.cloudfront.net" apiidstatutes="4wb2x6fkga" apiidcompliances="r42gyc2xx1" apiidtags="j385cxf2p0" apiidusers="rnmvvr922j" disablesignoff="yes" disableclientresponse="yes">
627
+
628
+ </sf-i-events> -->
629
+
630
+ <!-- <sf-i-events projectid="41ab3c86-ccc0-4c0e-8e31-cd079a07a710" projectname="ABC Global" mode="onboarding" apiid="d2gos2ro11pdov.cloudfront.net" apiidstatutes="4wb2x6fkga" apiidcompliances="r42gyc2xx1" apiidtags="j385cxf2p0" apiidusers="rnmvvr922j" filteronboarding="[{&quot;country&quot;:&quot;India&quot;,&quot;states&quot;:[&quot;Maharashtra&quot;,&quot;Tamil Nadu&quot;],&quot;subcategories&quot;:[&quot;Labour and Employment&quot;],&quot;excludestatutes&quot;: []},{&quot;country&quot;:&quot;Singapore&quot;,&quot;states&quot;:[&quot;&quot;],&quot;subcategories&quot;:[&quot;&quot;],&quot;excludestatutes&quot;: [&quot;Employment Act, 1968&quot;]}]" disableflagggrcresponse="yes">
631
+
632
+ </sf-i-events> -->
633
+
634
+ <!-- <sf-i-events name="Calendar" apiid="d2gos2ro11pdov.cloudfront.net" mode="consumer" apiidtags="j385cxf2p0" fill="solid" username="Chief Compliance Officer" userprofileid="5fe96caa-1a44-4a2d-921a-920d29433eca" projectid="41ab3c86-ccc0-4c0e-8e31-cd079a07a710" projectname="ABC Global" countryid="07d73b44-648d-4301-82c4-d6df43397824" myrole="functionhead" eventfielddependencies="[{&quot;type&quot;: &quot;foreignkey&quot;, &quot;parent&quot;: &quot;country&quot;, &quot;child&quot;: &quot;state&quot;},{&quot;type&quot;: &quot;foreignkey&quot;, &quot;parent&quot;: &quot;category&quot;, &quot;child&quot;: &quot;subcategory&quot;},{&quot;type&quot;: &quot;foreignkey&quot;, &quot;parent&quot;: &quot;frequency&quot;, &quot;child&quot;: &quot;subfrequency&quot;}]" eventfields="[{&quot;type&quot;: &quot;sf-i-select&quot;, &quot;apiId&quot;: &quot;3z3fiubz8e&quot;, &quot;field&quot;: &quot;riskarea&quot;},{&quot;type&quot;: &quot;sf-i-select&quot;, &quot;apiId&quot;: &quot;5s7ih5uw4h&quot;, &quot;field&quot;: &quot;jurisdiction&quot;},{&quot;type&quot;: &quot;sf-i-select&quot;, &quot;apiId&quot;: &quot;oqze24s784&quot;, &quot;field&quot;: &quot;updatetype&quot;},{&quot;type&quot;: &quot;sf-i-select&quot;, &quot;apiId&quot;: &quot;zu3kh9cq2c&quot;, &quot;field&quot;: &quot;country&quot;},{&quot;type&quot;: &quot;sf-i-select&quot;, &quot;apiId&quot;: &quot;8ijy7mze67&quot;, &quot;field&quot;: &quot;specificity&quot;},{&quot;type&quot;: &quot;sf-i-select&quot;, &quot;apiId&quot;: &quot;et1hdzg882&quot;, &quot;field&quot;: &quot;risk&quot;},{&quot;type&quot;: &quot;sf-i-select&quot;, &quot;apiId&quot;: &quot;lhpn6gh0il&quot;, &quot;field&quot;: &quot;frequency&quot;},{&quot;type&quot;: &quot;sf-i-select&quot;, &quot;apiId&quot;: &quot;8an2d4j1gc&quot;, &quot;field&quot;: &quot;category&quot;},{&quot;type&quot;: &quot;sf-i-select&quot;, &quot;apiId&quot;: &quot;vofssiq1t3&quot;, &quot;field&quot;: &quot;obligationtype&quot;},{&quot;type&quot;: &quot;sf-i-sub-select&quot;, &quot;apiId&quot;: &quot;clnu4kk1ah&quot;, &quot;field&quot;: &quot;state&quot;},{&quot;type&quot;: &quot;sf-i-sub-select&quot;, &quot;apiId&quot;: &quot;aysa6i6723&quot;, &quot;field&quot;: &quot;subfrequency&quot;},{&quot;type&quot;: &quot;sf-i-sub-select&quot;, &quot;apiId&quot;: &quot;mdkc0e2bo5&quot;, &quot;field&quot;: &quot;subcategory&quot;},{&quot;type&quot;: &quot;sf-i-form&quot;, &quot;apiId&quot;: &quot;4wb2x6fkga&quot;, &quot;field&quot;: &quot;statute&quot;, &quot;projectField&quot;: &quot;name&quot;}]" eventpreviewfields="[&quot;obligation&quot;]" eventhidefields="[&quot;comments&quot;,&quot;documents&quot;,&quot;lastupdated&quot;,&quot;approved&quot;,&quot;tags&quot;]" enableDeleteLatestReport="yes" calendarstartdd="01" calendarstartmm="04" calendarstartyyyy="2024">
635
+
636
+ <div slot="uploader">
637
+ <sf-i-uploader id="uploader" max="10" apiid="1peg5170d3" allowedextensions="[&quot;jpg&quot;,&quot;png&quot;,&quot;pdf&quot;]" extract="yes" projectid="41ab3c86-ccc0-4c0e-8e31-cd079a07a710"></sf-i-uploader>
638
+ </div>
639
+
640
+ </sf-i-events> -->
641
+
642
+ <!-- <sf-i-events mode="rcm" apiid="8icpy39ru0" apiidcompliances="r42gyc2xx1" apiidprojects="est9egdho9">
643
+
644
+ </sf-i-events> -->
645
+
646
+ <!-- <sf-i-events projectid="41ab3c86-ccc0-4c0e-8e31-cd079a07a710" projectname="ABC Global" mode="onboarding" apiid="d2gos2ro11pdov.cloudfront.net" apiidstatutes="4wb2x6fkga" apiidcompliances="r42gyc2xx1" apiidtags="j385cxf2p0" apiidusers="rnmvvr922j" filteronboarding="[{&quot;country&quot;:&quot;India&quot;,&quot;states&quot;:[&quot;Maharashtra&quot;,&quot;Tamil Nadu&quot;],&quot;subcategories&quot;:[&quot;Labour and Employment&quot;]},{&quot;country&quot;:&quot;Singapore&quot;,&quot;states&quot;:[&quot;&quot;],&quot;subcategories&quot;:[&quot;&quot;]}]">
647
+
648
+ </sf-i-events> -->
649
+ <!--
650
+ <sf-i-events projectid="41ab3c86-ccc0-4c0e-8e31-cd079a07a710" projectname="ABC Global" mode="onboarding" apiid="d2gos2ro11pdov.cloudfront.net" apiidstatutes="4wb2x6fkga" apiidcompliances="r42gyc2xx1" apiidtags="j385cxf2p0" apiidusers="rnmvvr922j">
651
+
652
+ </sf-i-events> -->
653
+
654
+ <!-- <sf-i-events projectid="41ab3c86-ccc0-4c0e-8e31-cd079a07a710" projectname="ABC Global" mode="onboarding" apiid="8icpy39ru0" apiidstatutes="4wb2x6fkga" apiidcompliances="r42gyc2xx1" apiidtags="j385cxf2p0" apiidusers="rnmvvr922j">
655
+
656
+ </sf-i-events> -->
657
+
658
+
659
+ <script>
660
+
661
+ function setCookie(name,value,days) {
662
+ var expires = "";
663
+ if (days) {
664
+ var date = new Date();
665
+ date.setTime(date.getTime() + (days*24*60*60*1000));
666
+ expires = "; expires=" + date.toUTCString();
667
+ }
668
+ document.cookie = name + "=" + (value || "") + expires + "; path=/";
669
+ }
670
+ function getCookie(name) {
671
+ var nameEQ = name + "=";
672
+ var ca = document.cookie.split(';');
673
+ for(var i=0;i < ca.length;i++) {
674
+ var c = ca[i];
675
+ while (c.charAt(0)==' ') c = c.substring(1,c.length);
676
+ if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
677
+ }
678
+ return null;
679
+ }
680
+ function eraseCookie(name) {
681
+ document.cookie = name +'=; Path=/; Expires=Thu, 01 Jan 1970 00:00:01 GMT;';
682
+ }
683
+
684
+ // setCookie('admin', 'false', 10);
685
+ // setCookie('accessToken', 'lswr0qwuyso6z6c1vu', 10);
686
+ // setCookie('email', 'hrushi.mehendale@gmail.com', 10);
687
+
688
+
689
+ </script>
690
+
691
+ </body>
692
+ </html>