Last active
August 11, 2021 21:34
-
-
Save lukaszhanusik/82c13e4a7dbfbef5b17f648bb98449b5 to your computer and use it in GitHub Desktop.
Base Popover
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Snippets on Popover |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<c-base-popover | |
variant="error" | |
header="Dialog Header" | |
onclose={handleCloseDialog} | |
> | |
<div slot="header"> | |
<c-base-scoped-notification if:true={salesforceMergeFields} | |
variant="warning" | |
has-round-borders | |
heading={labels.templatePreviewSalesforceMergeFieldsNoticeHeading} | |
details={labels.templatePreviewSalesforceMergeFieldsNotice}> | |
</c-base-scoped-notification> | |
</div> | |
<div class="slds-media"> | |
<div class="slds-media__body"> | |
<p> | |
Popover Body | |
</p> | |
</div> | |
</div> | |
</c-base-popover> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment