sf-i-events 1.0.111 → 1.0.113
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 +10 -10
- package/sf-i-events.js.map +1 -1
- package/src/sf-i-events.ts +10 -10
package/package.json
CHANGED
package/sf-i-events.js
CHANGED
|
@@ -44,9 +44,9 @@ 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 = "#8cd039";
|
|
48
48
|
this.COLOR_NOT_STARTED = "#A4A9AD";
|
|
49
|
-
this.COLOR_IN_PROGRESS = "#
|
|
49
|
+
this.COLOR_IN_PROGRESS = "#ffe505";
|
|
50
50
|
this.COLOR_PAST_DUE_DATE = "#F79256";
|
|
51
51
|
this.COLOR_LATE_EXECUTED = "#840B0F";
|
|
52
52
|
this.COLOR_LATE_APPROVED = "#EE2F36";
|
|
@@ -151,13 +151,13 @@ let SfIEvents = class SfIEvents extends LitElement {
|
|
|
151
151
|
background-color: #dedede;
|
|
152
152
|
}
|
|
153
153
|
.color-pending {
|
|
154
|
-
color: #
|
|
154
|
+
color: #ffe505;
|
|
155
155
|
}
|
|
156
156
|
.color-not-started {
|
|
157
157
|
color: #888888;
|
|
158
158
|
}
|
|
159
159
|
.color-done {
|
|
160
|
-
color: #
|
|
160
|
+
color: #8cd039;
|
|
161
161
|
}
|
|
162
162
|
.color-past-due-date {
|
|
163
163
|
color: #F79256;
|
|
@@ -2260,7 +2260,7 @@ let SfIEvents = class SfIEvents extends LitElement {
|
|
|
2260
2260
|
{
|
|
2261
2261
|
label: 'Approved',
|
|
2262
2262
|
data: dataSetApproved,
|
|
2263
|
-
backgroundColor: '#
|
|
2263
|
+
backgroundColor: '#8cd039'
|
|
2264
2264
|
},
|
|
2265
2265
|
{
|
|
2266
2266
|
label: 'In Progress',
|
|
@@ -2283,7 +2283,7 @@ let SfIEvents = class SfIEvents extends LitElement {
|
|
|
2283
2283
|
{
|
|
2284
2284
|
label: 'Approved',
|
|
2285
2285
|
data: dataSetApproved,
|
|
2286
|
-
backgroundColor: Util.createDiagonalPattern3('#
|
|
2286
|
+
backgroundColor: Util.createDiagonalPattern3('#8cd039')
|
|
2287
2287
|
},
|
|
2288
2288
|
{
|
|
2289
2289
|
label: 'In Progress',
|
|
@@ -4856,7 +4856,7 @@ SfIEvents.styles = css `
|
|
|
4856
4856
|
}
|
|
4857
4857
|
|
|
4858
4858
|
.div-graph-pending {
|
|
4859
|
-
background-color: #
|
|
4859
|
+
background-color: #ffe505;
|
|
4860
4860
|
height: 100%;
|
|
4861
4861
|
width: 100%;
|
|
4862
4862
|
}
|
|
@@ -4877,7 +4877,7 @@ SfIEvents.styles = css `
|
|
|
4877
4877
|
}
|
|
4878
4878
|
|
|
4879
4879
|
.bg-pending {
|
|
4880
|
-
background-color: #
|
|
4880
|
+
background-color: #ffe505;
|
|
4881
4881
|
}
|
|
4882
4882
|
|
|
4883
4883
|
.bg-done {
|
|
@@ -4896,7 +4896,7 @@ SfIEvents.styles = css `
|
|
|
4896
4896
|
}
|
|
4897
4897
|
|
|
4898
4898
|
.color-pending {
|
|
4899
|
-
color: #
|
|
4899
|
+
color: #ffe505;
|
|
4900
4900
|
}
|
|
4901
4901
|
|
|
4902
4902
|
.color-not-started {
|
|
@@ -4904,7 +4904,7 @@ SfIEvents.styles = css `
|
|
|
4904
4904
|
}
|
|
4905
4905
|
|
|
4906
4906
|
.color-done {
|
|
4907
|
-
color: #
|
|
4907
|
+
color: #8cd039;
|
|
4908
4908
|
}
|
|
4909
4909
|
|
|
4910
4910
|
.pr-10 {
|