Skip to content

Commit 30e5e6b

Browse files
committed
test: update idl attr inputmode to inputMode
1 parent 1f97d9d commit 30e5e6b

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/as-component-prop/undeclared/modules/x/child/child.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
<span>formnovalidate: {formnovalidate}</span>
6565
<span>hidden: {hidden}</span>
6666
<span>id: {id}</span>
67-
<span>inputmode: {inputmode}</span>
67+
<span>inputmode: {inputMode}</span>
6868
<span>ismap: {ismap}</span>
6969
<span>itemid: {itemid}</span>
7070
<span>itemprop: {itemprop}</span>

packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/as-component-prop/with-@api/expected.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@
204204
id: foo
205205
</span>
206206
<span>
207-
inputmode: foo
207+
inputmode:
208208
</span>
209209
<span>
210210
ismap:

packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/as-component-prop/with-@api/modules/x/child/child.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
<span>formnovalidate: {formnovalidate}</span>
6767
<span>hidden: {hidden}</span>
6868
<span>id: {id}</span>
69-
<span>inputmode: {inputmode}</span>
69+
<span>inputmode: {inputMode}</span>
7070
<span>ismap: {ismap}</span>
7171
<span>itemid: {itemid}</span>
7272
<span>itemprop: {itemprop}</span>

packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/as-component-prop/with-@api/modules/x/child/child.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ export default class extends LightningElement {
7474
@api hidden;
7575
@api id;
7676
@api input;
77-
@api inputmode;
77+
@api inputMode;
7878
@api ismap;
7979
@api itemid;
8080
@api itemprop;

packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/as-component-prop/without-@api-values/modules/x/child/child.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
<span>formnovalidate: {formnovalidate}</span>
6767
<span>hidden: {hidden}</span>
6868
<span>id: {id}</span>
69-
<span>inputmode: {inputmode}</span>
69+
<span>inputmode: {inputMode}</span>
7070
<span>ismap: {ismap}</span>
7171
<span>itemid: {itemid}</span>
7272
<span>itemprop: {itemprop}</span>

packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/as-component-prop/without-@api-values/modules/x/child/child.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ export default class extends LightningElement {
7474
hidden = 'child-value';
7575
id = 'child-value';
7676
input = 'child-value';
77-
inputmode = 'child-value';
77+
inputMode = 'child-value';
7878
ismap = 'child-value';
7979
itemid = 'child-value';
8080
itemprop = 'child-value';

packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/as-component-prop/without-@api/modules/x/child/child.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
<span>formnovalidate: {formnovalidate}</span>
6767
<span>hidden: {hidden}</span>
6868
<span>id: {id}</span>
69-
<span>inputmode: {inputmode}</span>
69+
<span>inputmode: {inputMode}</span>
7070
<span>ismap: {ismap}</span>
7171
<span>itemid: {itemid}</span>
7272
<span>itemprop: {itemprop}</span>

packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/as-component-prop/without-@api/modules/x/child/child.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ export default class extends LightningElement {
7474
hidden;
7575
id;
7676
input;
77-
inputmode;
77+
inputMode;
7878
ismap;
7979
itemid;
8080
itemprop;

0 commit comments

Comments
 (0)