igniteui-webcomponents-charts
Version:
Ignite UI Web Components charting components for building rich data visualizations using TypeScript APIs.
52 lines (51 loc) • 2.03 kB
JavaScript
import { IgcPolarBaseComponent } from "./igc-polar-base-component";
import { getAllPropertyNames, toSpinal } from "igniteui-webcomponents-core";
let IgcPolarLineSeriesBaseComponent = /*@__PURE__*/ (() => {
class IgcPolarLineSeriesBaseComponent extends IgcPolarBaseComponent {
/**
* @hidden
*/
get i() {
return this._implementation;
}
constructor() {
super();
}
connectedCallback() {
if (super["connectedCallback"]) {
super["connectedCallback"]();
}
if (this.i.connectedCallback) {
this.i.connectedCallback();
}
if (!this._attached) {
this._attached = true;
this._flushQueuedAttributes();
}
}
disconnectedCallback() {
if (super["disconnectedCallback"]) {
super["disconnectedCallback"]();
}
if (this.i.disconnectedCallback) {
this.i.disconnectedCallback();
}
if (this._attached) {
this._attached = false;
}
}
static get observedAttributes() {
if (IgcPolarLineSeriesBaseComponent._observedAttributesIgcPolarLineSeriesBaseComponent == null) {
let names = getAllPropertyNames(IgcPolarLineSeriesBaseComponent);
for (let i = 0; i < names.length; i++) {
names[i] = toSpinal(names[i]);
}
IgcPolarLineSeriesBaseComponent._observedAttributesIgcPolarLineSeriesBaseComponent = names;
}
return IgcPolarLineSeriesBaseComponent._observedAttributesIgcPolarLineSeriesBaseComponent;
}
}
IgcPolarLineSeriesBaseComponent._observedAttributesIgcPolarLineSeriesBaseComponent = null;
return IgcPolarLineSeriesBaseComponent;
})();
export { IgcPolarLineSeriesBaseComponent };