sf-i-reporting 1.0.57 → 1.0.58

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-reporting",
3
3
  "private": false,
4
- "version": "1.0.57",
4
+ "version": "1.0.58",
5
5
  "description": "Superflows Reporting Component",
6
6
  "main": "sf-i-reporting.js",
7
7
  "module": "sf-i-reporting.js",
package/sf-i-reporting.js CHANGED
@@ -403,7 +403,7 @@ let SfIReporting = class SfIReporting extends LitElement {
403
403
  <button id="button-back" part="button-icon" class="button-icon-click"><span class="material-icons">keyboard_backspace</span></button>
404
404
  <h3 part="results-title" class="m-0">${this.name}</h3>
405
405
  <div class="d-flex justify-center align-center">${this.flow == "new" ? `
406
- <button class="mrl-5 material-icons invisible" part="button-icon" id="button-submit" disabled>save</button>
406
+ <button class="mrl-5 material-icons invisible" part="button-icon" id="button-submit" disabled>upload</button>
407
407
  <button class="mrl-5 material-icons hide" part="button-icon-light" id="button-submit-cancel">close</button>
408
408
  <button class="mrl-5 material-icons hide" part="button-icon" id="button-submit-confirm">check save</button>
409
409
  ` : (this.flow == "details" ? `
@@ -415,7 +415,7 @@ let SfIReporting = class SfIReporting extends LitElement {
415
415
  ` : `
416
416
  <button class="mrl-5 material-icons" part="button-icon${this.published ? '-light' : ''}" id="button-submit-publish">${this.published ? 'radio_button_unchecked' : 'radio_button_checked'}</button>
417
417
  <button id="button-edit-cancel" part="button-icon-light" class="mrl-5 material-icons button-icon-click">edit_off</button>
418
- <button class="mrl-5 material-icons hide" part="button-icon" id="button-submit" disabled>save</button>
418
+ <button class="mrl-5 material-icons hide" part="button-icon" id="button-submit" disabled>upload</button>
419
419
  <button class="mrl-5 material-icons hide" part="button-icon-light" id="button-submit-cancel">close</button>
420
420
  <button class="mrl-5 material-icons hide" part="button-icon" id="button-submit-confirm">check save</button>
421
421
  `)}