Skip to content

Commit

Permalink
chore: fix
Browse files Browse the repository at this point in the history
  • Loading branch information
waterplea committed Dec 18, 2024
1 parent 9f480cd commit 761d14a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ export class TuiDropdownMobile {
if (
!this.isMobile ||
!tuiIsHTMLElement(event.target) ||
!event.target.matches('input,textarea')
!event.target.matches('input,textarea') ||
this.tuiDropdownMobile
) {
return;
}
Expand Down
1 change: 1 addition & 0 deletions projects/demo/src/modules/app/pages.ts
Original file line number Diff line number Diff line change
Expand Up @@ -426,6 +426,7 @@ export const pages: DocRoutePages = [
title: 'Form',
keywords: 'форма, поле, кнопка, группировка, группа',
route: DemoRoute.FormLayout,
meta: {scheme: 'beaver', name: 'form'},
},
{
section: 'Components',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,3 @@
[(ngModel)]="value"
/>
</tui-textfield>
<input type="tel" />
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ const NOT_FORM_CONTROL_SYMBOLS = /[^+\d]/g;
host: {
type: 'tel',
'[attr.readonly]': 'readOnly() || null',
'[attr.inputmode]': 'open() ? "none" : null',
'[disabled]': 'disabled()',
'[value]': 'masked()',
'(blur)': 'onTouched()',
Expand Down

0 comments on commit 761d14a

Please sign in to comment.