sf-i-events 1.0.113 → 1.0.115
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-events.js +5 -5
- package/sf-i-events.js.map +1 -1
- package/src/sf-i-events.ts +5 -5
package/package.json
CHANGED
package/sf-i-events.js
CHANGED
|
@@ -44,7 +44,7 @@ let SfIEvents = class SfIEvents extends LitElement {
|
|
|
44
44
|
this.TAB_CUSTOM = "custom";
|
|
45
45
|
this.TAB_REPORTER = "reporter";
|
|
46
46
|
this.TAB_APPROVER = "approver";
|
|
47
|
-
this.COLOR_APPROVED = "#
|
|
47
|
+
this.COLOR_APPROVED = "#50cf01";
|
|
48
48
|
this.COLOR_NOT_STARTED = "#A4A9AD";
|
|
49
49
|
this.COLOR_IN_PROGRESS = "#ffe505";
|
|
50
50
|
this.COLOR_PAST_DUE_DATE = "#F79256";
|
|
@@ -157,7 +157,7 @@ let SfIEvents = class SfIEvents extends LitElement {
|
|
|
157
157
|
color: #888888;
|
|
158
158
|
}
|
|
159
159
|
.color-done {
|
|
160
|
-
color: #
|
|
160
|
+
color: #50cf01;
|
|
161
161
|
}
|
|
162
162
|
.color-past-due-date {
|
|
163
163
|
color: #F79256;
|
|
@@ -4238,7 +4238,7 @@ let SfIEvents = class SfIEvents extends LitElement {
|
|
|
4238
4238
|
this._SfLoader.innerHTML = '';
|
|
4239
4239
|
if (xhr.status == 200) {
|
|
4240
4240
|
const jsonRespose = JSON.parse(xhr.responseText);
|
|
4241
|
-
console.log('jsonResponse', jsonRespose);
|
|
4241
|
+
console.log('jsonResponse fetch events detail', jsonRespose.data.value.duedate);
|
|
4242
4242
|
this.processEvent(jsonRespose.data.value);
|
|
4243
4243
|
}
|
|
4244
4244
|
else {
|
|
@@ -4881,7 +4881,7 @@ SfIEvents.styles = css `
|
|
|
4881
4881
|
}
|
|
4882
4882
|
|
|
4883
4883
|
.bg-done {
|
|
4884
|
-
background-color: #
|
|
4884
|
+
background-color: #50cf01;
|
|
4885
4885
|
}
|
|
4886
4886
|
|
|
4887
4887
|
.color-past-due-date {
|
|
@@ -4904,7 +4904,7 @@ SfIEvents.styles = css `
|
|
|
4904
4904
|
}
|
|
4905
4905
|
|
|
4906
4906
|
.color-done {
|
|
4907
|
-
color: #
|
|
4907
|
+
color: #50cf01;
|
|
4908
4908
|
}
|
|
4909
4909
|
|
|
4910
4910
|
.pr-10 {
|