Skip to content

Commit

Permalink
add recordPicker stubs (#322)
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasFoulon authored Jul 5, 2023
1 parent 3389a2d commit 893045c
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/lightning-stubs/recordPicker/recordPicker.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<!--
Copyright (c) 2018, salesforce.com, inc.
All rights reserved.
SPDX-License-Identifier: MIT
For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT
-->
<template></template>
22 changes: 22 additions & 0 deletions src/lightning-stubs/recordPicker/recordPicker.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
/*
* Copyright (c) 2018, salesforce.com, inc.
* All rights reserved.
* SPDX-License-Identifier: MIT
* For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT
*/
import { LightningElement, api } from 'lwc';

export default class RecordPicker extends LightningElement {
@api displayInfo;
@api filter;
@api label;
@api matchingInfo;
@api objectApiName;
@api placeholder;
@api required;
@api value;
@api variant;
@api checkValidity() {}
@api reportValidity() {}
@api setCustomValidity() {}
}

0 comments on commit 893045c

Please sign in to comment.