igniteui-react-grids
Version:
Ignite UI React grid components.
80 lines (79 loc) • 2.57 kB
JavaScript
import { __extends } from "tslib";
import { IgrDefinitionBase } from "./igr-definition-base";
import { FilterRowDefinition } from "./FilterRowDefinition";
/**
* Represents a base class used to configure the appearance of the column header cells.
*/
var IgrFilterRowDefinition = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(IgrFilterRowDefinition, _super);
function IgrFilterRowDefinition(props) {
return _super.call(this, props) || this;
}
IgrFilterRowDefinition.prototype.createImplementation = function () {
return new FilterRowDefinition();
};
Object.defineProperty(IgrFilterRowDefinition.prototype, "i", {
/**
* @hidden
*/
get: function () {
return this._implementation;
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgrFilterRowDefinition.prototype, "paddingLeft", {
/**
* Gets or sets the amount of left padding to use for the cell content for this column.
*/
get: function () {
return this.i.g3;
},
set: function (v) {
this.i.g3 = +v;
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgrFilterRowDefinition.prototype, "paddingTop", {
/**
* Gets or sets the amount of top padding to use for the cell content for this column.
*/
get: function () {
return this.i.g5;
},
set: function (v) {
this.i.g5 = +v;
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgrFilterRowDefinition.prototype, "paddingRight", {
/**
* Gets or sets the amount of right padding to use for the cell content of this column.
*/
get: function () {
return this.i.g4;
},
set: function (v) {
this.i.g4 = +v;
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgrFilterRowDefinition.prototype, "paddingBottom", {
/**
* Gets or sets the amount of bottom padding to use for the cell content of this column.
*/
get: function () {
return this.i.g2;
},
set: function (v) {
this.i.g2 = +v;
},
enumerable: false,
configurable: true
});
return IgrFilterRowDefinition;
}(IgrDefinitionBase));
export { IgrFilterRowDefinition };