Skip to content

Commit 893045c

Browse files
authored
add recordPicker stubs (#322)
1 parent 3389a2d commit 893045c

File tree

2 files changed

+29
-0
lines changed

2 files changed

+29
-0
lines changed
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<!--
2+
Copyright (c) 2018, salesforce.com, inc.
3+
All rights reserved.
4+
SPDX-License-Identifier: MIT
5+
For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT
6+
-->
7+
<template></template>
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
/*
2+
* Copyright (c) 2018, salesforce.com, inc.
3+
* All rights reserved.
4+
* SPDX-License-Identifier: MIT
5+
* For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT
6+
*/
7+
import { LightningElement, api } from 'lwc';
8+
9+
export default class RecordPicker extends LightningElement {
10+
@api displayInfo;
11+
@api filter;
12+
@api label;
13+
@api matchingInfo;
14+
@api objectApiName;
15+
@api placeholder;
16+
@api required;
17+
@api value;
18+
@api variant;
19+
@api checkValidity() {}
20+
@api reportValidity() {}
21+
@api setCustomValidity() {}
22+
}

0 commit comments

Comments
 (0)