File tree Expand file tree Collapse file tree 2 files changed +29
-0
lines changed
src/lightning-stubs/recordPicker Expand file tree Collapse file tree 2 files changed +29
-0
lines changed Original file line number Diff line number Diff line change 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 >
Original file line number Diff line number Diff line change 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+ }
You can’t perform that action at this time.
0 commit comments