()
| 461 | } |
| 462 | |
| 463 | get groupSeparator() { |
| 464 | if (!this._groupSeparator) { |
| 465 | const localeData = getCachedLocaleDataInstance(getLocale()); |
| 466 | this._groupSeparator = localeData.getNumberSymbol("group") || ","; |
| 467 | } |
| 468 | |
| 469 | return this._groupSeparator; |
| 470 | } |
| 471 | |
| 472 | get input(): Input { |
| 473 | return this.shadowRoot!.querySelector<Input>("[ui5-input]")!; |
nothing calls this directly
no test coverage detected