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 CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "sf-i-events",
3
3
  "private": false,
4
- "version": "1.0.111",
4
+ "version": "1.0.113",
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
@@ -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 = "#20a39e";
47
+ this.COLOR_APPROVED = "#8cd039";
48
48
  this.COLOR_NOT_STARTED = "#A4A9AD";
49
- this.COLOR_IN_PROGRESS = "#FFBA49";
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: #F1D302;
154
+ color: #ffe505;
155
155
  }
156
156
  .color-not-started {
157
157
  color: #888888;
158
158
  }
159
159
  .color-done {
160
- color: #20a39e;
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: '#20a39e'
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('#20a39e')
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: #f49315;
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: #f49315;
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: #F1D302;
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: #20a39e;
4907
+ color: #8cd039;
4908
4908
  }
4909
4909
 
4910
4910
  .pr-10 {