Move configuration row to shared
This commit is contained in:
@ -1,28 +0,0 @@
|
||||
// SPDX-FileCopyrightText: 2024 Mehdi Benadel <https://mehdibenadel.com>
|
||||
//
|
||||
// SPDX-License-Identifier: AGPL-3.0-only
|
||||
|
||||
import { html } from 'lit'
|
||||
import { customElement, property } from 'lit/decorators.js'
|
||||
import { LivechatElement } from '../../lib/elements/livechat'
|
||||
|
||||
@customElement('livechat-configuration-row')
|
||||
export class ConfigurationRowElement extends LivechatElement {
|
||||
@property({ attribute: false })
|
||||
public title: string = 'title'
|
||||
|
||||
@property({ attribute: false })
|
||||
public description: string = 'Here\'s a description'
|
||||
|
||||
@property({ attribute: false })
|
||||
public helpPage: string = 'documentation'
|
||||
|
||||
protected override render = (): unknown => {
|
||||
return html`
|
||||
<h2>${this.title}</h2>
|
||||
<p>${this.description}</p>
|
||||
<livechat-help-button .page=${this.helpPage}>
|
||||
</livechat-help-button>
|
||||
`
|
||||
}
|
||||
}
|
@ -5,4 +5,3 @@
|
||||
// Add here all your elements, the main JS file will import them all.
|
||||
import './channel-configuration'
|
||||
import './channel-home'
|
||||
import './configuration-row'
|
||||
|
Reference in New Issue
Block a user