UNPKG

igniteui-webcomponents-charts

Version:

Ignite UI Web Components charting components for building rich data visualizations using TypeScript APIs.

63 lines (62 loc) 2.59 kB
import { __extends } from "tslib"; import { IgcPolarBaseComponent } from "./igc-polar-base-component"; import { getAllPropertyNames, toSpinal } from "igniteui-webcomponents-core"; /** * Represents the base class from which all IgxDataChartComponent polar line series are derived. */ var IgcPolarLineSeriesBaseComponent = /** @class */ /*@__PURE__*/ (function (_super) { __extends(IgcPolarLineSeriesBaseComponent, _super); function IgcPolarLineSeriesBaseComponent() { return _super.call(this) || this; } Object.defineProperty(IgcPolarLineSeriesBaseComponent.prototype, "i", { /** * @hidden */ get: function () { return this._implementation; }, enumerable: false, configurable: true }); IgcPolarLineSeriesBaseComponent.prototype.connectedCallback = function () { if (_super.prototype["connectedCallback"]) { _super.prototype["connectedCallback"].call(this); } if (this.i.connectedCallback) { this.i.connectedCallback(); } if (!this._attached) { this._attached = true; this._flushQueuedAttributes(); } }; IgcPolarLineSeriesBaseComponent.prototype.disconnectedCallback = function () { if (_super.prototype["disconnectedCallback"]) { _super.prototype["disconnectedCallback"].call(this); } if (this.i.disconnectedCallback) { this.i.disconnectedCallback(); } if (this._attached) { this._attached = false; } }; Object.defineProperty(IgcPolarLineSeriesBaseComponent, "observedAttributes", { get: function () { if (IgcPolarLineSeriesBaseComponent._observedAttributesIgcPolarLineSeriesBaseComponent == null) { var names = getAllPropertyNames(IgcPolarLineSeriesBaseComponent); for (var i = 0; i < names.length; i++) { names[i] = toSpinal(names[i]); } IgcPolarLineSeriesBaseComponent._observedAttributesIgcPolarLineSeriesBaseComponent = names; } return IgcPolarLineSeriesBaseComponent._observedAttributesIgcPolarLineSeriesBaseComponent; }, enumerable: false, configurable: true }); IgcPolarLineSeriesBaseComponent._observedAttributesIgcPolarLineSeriesBaseComponent = null; return IgcPolarLineSeriesBaseComponent; }(IgcPolarBaseComponent)); export { IgcPolarLineSeriesBaseComponent };