()
| 177 | transform: (value: unknown) => (value == null ? 0 : numberAttribute(value)), |
| 178 | }) |
| 179 | get tabIndex(): number { |
| 180 | return this.isDisabled ? -1 : this._tabIndex; |
| 181 | } |
| 182 | set tabIndex(value: number) { |
| 183 | // If the specified tabIndex value is null or undefined, fall back to the default value. |
| 184 | this._tabIndex = value; |
no outgoing calls
no test coverage detected