We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 675f5de commit 808f8d7Copy full SHA for 808f8d7
packages/uui-input-lock/lib/uui-input-lock.element.ts
@@ -22,13 +22,13 @@ export class UUIInputLockElement extends UUIInputElement {
22
* @default true
23
*/
24
@property({ type: Boolean, reflect: true })
25
- public get locked(): boolean {
26
- return this.#locked;
27
- }
28
public set locked(lock: boolean) {
29
this.#locked = lock;
30
this.tabIndex = lock ? -1 : 0;
31
}
+ public get locked(): boolean {
+ return this.#locked;
+ }
32
#locked: boolean = true;
33
34
/**
0 commit comments