blob: e73aad6074224732c91da87f80034dd3e23356c2 [file] [log] [blame]
/**
* @license
* Copyright 2017 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import {LitElement, PropertyValues} from 'lit';
import {customElement, property} from 'lit/decorators.js';
declare global {
interface HTMLElementTagNameMap {
'gr-endpoint-param': GrEndpointParam;
}
}
@customElement('gr-endpoint-param')
export class GrEndpointParam extends LitElement {
@property({type: String, reflect: true})
name = '';
@property({type: Object})
value?: unknown;
override willUpdate(changedProperties: PropertyValues) {
if (changedProperties.has('value')) {
this.dispatchEvent(
new CustomEvent('value-changed', {detail: {value: this.value}})
);
}
}
}