()
| 873 | } |
| 874 | |
| 875 | get displayValue(): string { |
| 876 | if (!this.getValueFormat().parse(this.value, true)) { |
| 877 | return this.value; |
| 878 | } |
| 879 | |
| 880 | if (!this.value) { |
| 881 | return ""; |
| 882 | } |
| 883 | |
| 884 | if (this.isLiveUpdate) { |
| 885 | return this.liveValue!; |
| 886 | } |
| 887 | |
| 888 | return this.getDisplayFormat().format(this.getValueFormat().parse(this.value, true), true); |
| 889 | } |
| 890 | |
| 891 | get accInfo(): InputAccInfo { |
| 892 | return { |
nothing calls this directly
no test coverage detected