()
| 407 | } |
| 408 | |
| 409 | get classes() { |
| 410 | return { |
| 411 | main: { |
| 412 | "ui5-checkbox--hoverable": !this.disabled && !this.readonly && isDesktop(), |
| 413 | }, |
| 414 | }; |
| 415 | } |
| 416 | |
| 417 | get ariaReadonly() { |
| 418 | return this.readonly || this.displayOnly ? "true" : undefined; |
nothing calls this directly
no test coverage detected