igniteui-react-core
Version:
Ignite UI React Core.
266 lines (265 loc) • 7.61 kB
JavaScript
/*
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
https://www.infragistics.com/legal/license/igultimate-la
https://www.infragistics.com/legal/license/igultimate-eula
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
*/
import { Base, markType } from "./type";
/**
* @hidden
*/
export let ToolActionInfo = /*@__PURE__*/ (() => {
class ToolActionInfo extends Base {
constructor() {
super();
this._parentId = null;
this._commandId = null;
this._commandArgument = null;
this._commandArgumentValue = null;
this._paddingLeft = 0;
this._paddingRight = 0;
this._paddingBottom = 0;
this._paddingTop = 0;
this._name = null;
this._title = null;
this._subtitle = null;
this._iconName = null;
this._iconCollectionName = null;
this._iconViewBoxLeft = 0;
this._iconViewBoxTop = 0;
this._iconViewBoxWidth = 0;
this._iconViewBoxHeight = 0;
this._iconWidth = 0;
this._iconHeight = 0;
this._iconFill = null;
this._iconStroke = null;
this._iconStrokeWidth = 0;
this._subPanelRowHeight = 0;
this._height = 0;
this._isDisabled = false;
this._isHighlighted = false;
this._textColor = null;
this._disabledTextColor = null;
this._closeOnExecute = false;
this._density = 0;
this._actions = null;
this._contextBindings = null;
this.iconCollectionName = "default";
this.subPanelRowHeight = -1;
this.iconViewBoxLeft = NaN;
this.iconViewBoxTop = NaN;
this.iconViewBoxWidth = NaN;
this.iconViewBoxHeight = NaN;
this.iconWidth = NaN;
this.iconHeight = NaN;
this.iconStrokeWidth = NaN;
this.paddingLeft = NaN;
this.paddingRight = NaN;
this.paddingBottom = NaN;
this.paddingTop = NaN;
this.isDisabled = false;
this.isHighlighted = false;
this.height = NaN;
}
get parentId() {
return this._parentId;
}
set parentId(a) {
this._parentId = a;
}
get commandId() {
return this._commandId;
}
set commandId(a) {
this._commandId = a;
}
get commandArgument() {
return this._commandArgument;
}
set commandArgument(a) {
this._commandArgument = a;
}
get commandArgumentValue() {
return this._commandArgumentValue;
}
set commandArgumentValue(a) {
this._commandArgumentValue = a;
}
get paddingLeft() {
return this._paddingLeft;
}
set paddingLeft(a) {
this._paddingLeft = a;
}
get paddingRight() {
return this._paddingRight;
}
set paddingRight(a) {
this._paddingRight = a;
}
get paddingBottom() {
return this._paddingBottom;
}
set paddingBottom(a) {
this._paddingBottom = a;
}
get paddingTop() {
return this._paddingTop;
}
set paddingTop(a) {
this._paddingTop = a;
}
get name() {
return this._name;
}
set name(a) {
this._name = a;
}
get title() {
return this._title;
}
set title(a) {
this._title = a;
}
get subtitle() {
return this._subtitle;
}
set subtitle(a) {
this._subtitle = a;
}
get iconName() {
return this._iconName;
}
set iconName(a) {
this._iconName = a;
}
get iconCollectionName() {
return this._iconCollectionName;
}
set iconCollectionName(a) {
this._iconCollectionName = a;
}
get iconViewBoxLeft() {
return this._iconViewBoxLeft;
}
set iconViewBoxLeft(a) {
this._iconViewBoxLeft = a;
}
get iconViewBoxTop() {
return this._iconViewBoxTop;
}
set iconViewBoxTop(a) {
this._iconViewBoxTop = a;
}
get iconViewBoxWidth() {
return this._iconViewBoxWidth;
}
set iconViewBoxWidth(a) {
this._iconViewBoxWidth = a;
}
get iconViewBoxHeight() {
return this._iconViewBoxHeight;
}
set iconViewBoxHeight(a) {
this._iconViewBoxHeight = a;
}
get iconWidth() {
return this._iconWidth;
}
set iconWidth(a) {
this._iconWidth = a;
}
get iconHeight() {
return this._iconHeight;
}
set iconHeight(a) {
this._iconHeight = a;
}
get iconFill() {
return this._iconFill;
}
set iconFill(a) {
this._iconFill = a;
}
get iconStroke() {
return this._iconStroke;
}
set iconStroke(a) {
this._iconStroke = a;
}
get iconStrokeWidth() {
return this._iconStrokeWidth;
}
set iconStrokeWidth(a) {
this._iconStrokeWidth = a;
}
get subPanelRowHeight() {
return this._subPanelRowHeight;
}
set subPanelRowHeight(a) {
this._subPanelRowHeight = a;
}
get height() {
return this._height;
}
set height(a) {
this._height = a;
}
get isDisabled() {
return this._isDisabled;
}
set isDisabled(a) {
this._isDisabled = a;
}
get isHighlighted() {
return this._isHighlighted;
}
set isHighlighted(a) {
this._isHighlighted = a;
}
get textColor() {
return this._textColor;
}
set textColor(a) {
this._textColor = a;
}
get disabledTextColor() {
return this._disabledTextColor;
}
set disabledTextColor(a) {
this._disabledTextColor = a;
}
get closeOnExecute() {
return this._closeOnExecute;
}
set closeOnExecute(a) {
this._closeOnExecute = a;
}
get density() {
return this._density;
}
set density(a) {
this._density = a;
}
get actions() {
return this._actions;
}
set actions(a) {
this._actions = a;
}
get contextBindings() {
return this._contextBindings;
}
set contextBindings(a) {
this._contextBindings = a;
}
get_d() {
return 0;
}
get d() {
return this.get_d();
}
}
ToolActionInfo.$t = /*@__PURE__*/ markType(ToolActionInfo, 'ToolActionInfo');
return ToolActionInfo;
})();