Skip to content

Commit e00dd29

Browse files
authored
add stub. modalBody, modalHeader, modalFooter (#303)
1 parent 4b92dbf commit e00dd29

File tree

6 files changed

+54
-0
lines changed

6 files changed

+54
-0
lines changed
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
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>
8+
<slot></slot>
9+
</template>
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
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 } from 'lwc';
8+
9+
export default class ModalBody extends LightningElement {}
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
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>
8+
<slot></slot>
9+
</template>
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
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 } from 'lwc';
8+
9+
export default class ModalFooter extends LightningElement {}
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: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
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 ModalHeader extends LightningElement {
10+
@api label;
11+
}

0 commit comments

Comments
 (0)