Skip to content

Commit 6440384

Browse files
committed
style: lint
1 parent e6a9a78 commit 6440384

File tree

3 files changed

+19
-3
lines changed

3 files changed

+19
-3
lines changed

core/src/components/input/input.scss

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,9 @@
106106
flex: 1;
107107

108108
width: 100%;
109-
height: 100%;
110109
max-width: 100%;
110+
111+
height: 100%;
111112
max-height: 100%;
112113

113114
border: 0;

core/src/components/input/input.tsx

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
import type { ComponentInterface, EventEmitter } from '@stencil/core';
2-
import { Build, Component, Element, Event, Host, Listen, Method, Prop, State, Watch, forceUpdate, h } from '@stencil/core';
2+
import {
3+
Build,
4+
Component,
5+
Element,
6+
Event,
7+
Host,
8+
Listen,
9+
Method,
10+
Prop,
11+
State,
12+
Watch,
13+
forceUpdate,
14+
h,
15+
} from '@stencil/core';
316
import type { NotchController } from '@utils/forms';
417
import { createNotchController } from '@utils/forms';
518
import type { Attributes } from '@utils/helpers';

core/src/components/textarea/test/item/textarea.e2e.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,9 @@ configs({ modes: ['ios'], directions: ['ltr'] }).forEach(({ title, config }) =>
109109
expect((event.target as HTMLElement).tagName.toLowerCase()).toBe('ion-textarea');
110110
});
111111

112-
test('clicking native textarea within item should fire click event with target as ion-textarea', async ({ page }) => {
112+
test('clicking native textarea within item should fire click event with target as ion-textarea', async ({
113+
page,
114+
}) => {
113115
await page.setContent(
114116
`
115117
<ion-item>

0 commit comments

Comments
 (0)