|
559 | 559 | <span class="button is-static" style="background-color: #006177fc;color: white;">milliseconds (1000 milliseconds = 1 seconds)</span> |
560 | 560 | </p> |
561 | 561 | </b-field> |
562 | | - <b-field> |
| 562 | + <b-field style="padding-bottom: 20px;"> |
563 | 563 | <p class="control"> |
564 | 564 | <span class="button is-static">Maximum</span> |
565 | 565 | </p> |
|
568 | 568 | <span class="button is-static" style="background-color: #006177fc;color: white;">milliseconds (1000 milliseconds = 1 seconds)</span> |
569 | 569 | </p> |
570 | 570 | </b-field> |
| 571 | + |
| 572 | + <!-- Change the background color of the data filled field. --> |
| 573 | + <div class="field"> |
| 574 | + <b-switch v-model="appSettings.isFieldBgColor"><code>ON/OFF</code> Change the background color of the data filled field</b-switch> |
| 575 | + </div> |
| 576 | + <b-field v-if="appSettings.isFieldBgColor"> |
| 577 | + <b-input type="color" v-model="appSettings.fieldBgColor" expanded></b-input> |
| 578 | + </b-field> |
571 | 579 | </section> |
572 | 580 | </div> |
573 | 581 | </b-modal> |
@@ -800,6 +808,9 @@ export default { |
800 | 808 | // Typewriter Speed |
801 | 809 | typeWriterMinSpeed: 1, |
802 | 810 | typeWriterMaxSpeed: 5, |
| 811 | + // Change the background color of the data filled field. |
| 812 | + isFieldBgColor: false, |
| 813 | + fieldBgColor: "", |
803 | 814 | }, |
804 | 815 | // Insert Site URL Data |
805 | 816 | url: { |
@@ -858,14 +869,16 @@ export default { |
858 | 869 | releaseNotesData: [ |
859 | 870 | // Tags: NEW, ADDED, FIXED, IMPROVED |
860 | 871 | { |
861 | | - version: '0.1.7', |
| 872 | + version: '0.1.7 - 0.1.8', |
862 | 873 | date: 'Thursday, 12 November 2020', |
863 | 874 | desc: [ |
864 | 875 | { tag: 'IMPROVED', name: 'If your data is not able to feed after this update, then fetch the Excel column again.' }, |
865 | 876 | { tag: 'NEW', name: 'Typewriter Effect and Set Typewriter Speed while filling data in the field' }, |
| 877 | + { tag: 'NEW', name: 'Change Field Background color of fill data completed in the form field.' }, |
866 | 878 | { tag: 'NEW', name: 'Start/Pause Application With <code>Alt+Q</code>' }, |
| 879 | + { tag: 'FIXED', name: 'if name attribute not found in the form field then also generate excel sheet.' }, |
867 | 880 | { tag: 'ADDED', name: '<a href="https://www.youtube.com/playlist?list=PLmrTMUhqzS3hCXSMbmgmh71-h-kwYAQ3t" target="_blank">💻 Video Tutorial - Playlist</a>' }, |
868 | | - { tag: 'ADDED', name: '<a href="https://github.com/ctechhindi/Fill-Excel-Data-on-HTML-Form#v017" target="_blank">Others Changelog</a>' }, |
| 881 | + { tag: 'ADDED', name: '<a href="https://github.com/ctechhindi/Fill-Excel-Data-on-HTML-Form#v018" target="_blank">Others Changelog</a>' }, |
869 | 882 | ], |
870 | 883 | } |
871 | 884 | ] |
|
0 commit comments