igniteui-webcomponents-layouts 6.3.1 → 7.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -14977,6 +14977,9 @@
14977
14977
  if (igniteuiWebcomponentsCore.stringEndsWith(c[d], "@stringUnion")) {
14978
14978
  continue;
14979
14979
  }
14980
+ if (igniteuiWebcomponentsCore.stringEndsWith(c[d], "@constantValues")) {
14981
+ continue;
14982
+ }
14980
14983
  var e = this.b.getMetadata(this.n, c[d]);
14981
14984
  var f = this.f(e);
14982
14985
  if (f.w == 0) {
@@ -38121,70 +38124,126 @@
38121
38124
  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.
38122
38125
  */
38123
38126
 
38124
- var IgcToolActionPopupOpeningEventArgs = /** @class */ /*@__PURE__*/ (function () {
38125
- function IgcToolActionPopupOpeningEventArgs() {
38126
- this._implementation = this.createImplementation();
38127
- this._implementation.externalObject = this;
38128
- this.onImplementationCreated();
38129
- if (this._initializeAdapters) {
38130
- this._initializeAdapters();
38131
- }
38127
+ var IgcToolActionSeparatorComponent = /** @class */ /*@__PURE__*/ (function (_super) {
38128
+ tslib.__extends(IgcToolActionSeparatorComponent, _super);
38129
+ function IgcToolActionSeparatorComponent() {
38130
+ return _super.call(this) || this;
38132
38131
  }
38133
- IgcToolActionPopupOpeningEventArgs.prototype.createImplementation = function () {
38134
- return new ToolActionPopupOpeningEventArgs();
38132
+ IgcToolActionSeparatorComponent.prototype.createImplementation = function () {
38133
+ return new ToolActionSeparator();
38135
38134
  };
38136
- Object.defineProperty(IgcToolActionPopupOpeningEventArgs.prototype, "i", {
38135
+ Object.defineProperty(IgcToolActionSeparatorComponent.prototype, "i", {
38137
38136
  /**
38138
- * @hidden
38139
- */
38137
+ * @hidden
38138
+ */
38140
38139
  get: function () {
38141
38140
  return this._implementation;
38142
38141
  },
38143
38142
  enumerable: false,
38144
38143
  configurable: true
38145
38144
  });
38146
- IgcToolActionPopupOpeningEventArgs.prototype.onImplementationCreated = function () {
38145
+ IgcToolActionSeparatorComponent.prototype.connectedCallback = function () {
38146
+ if (_super.prototype["connectedCallback"]) {
38147
+ _super.prototype["connectedCallback"].call(this);
38148
+ }
38149
+ if (this.i.connectedCallback) {
38150
+ this.i.connectedCallback();
38151
+ }
38152
+ if (this.updateContentChildren) {
38153
+ this.updateContentChildren();
38154
+ }
38155
+ else if (this._updateAdapters) {
38156
+ this._updateAdapters();
38157
+ }
38158
+ if (!this._attached) {
38159
+ this._attached = true;
38160
+ this._flushQueuedAttributes();
38161
+ }
38147
38162
  };
38148
- IgcToolActionPopupOpeningEventArgs.prototype._provideImplementation = function (i) {
38149
- this._implementation = i;
38150
- this._implementation.externalObject = this;
38151
- this.onImplementationCreated();
38152
- if (this._initializeAdapters) {
38153
- this._initializeAdapters();
38163
+ IgcToolActionSeparatorComponent.prototype.disconnectedCallback = function () {
38164
+ if (_super.prototype["disconnectedCallback"]) {
38165
+ _super.prototype["disconnectedCallback"].call(this);
38166
+ }
38167
+ if (this.i.disconnectedCallback) {
38168
+ this.i.disconnectedCallback();
38169
+ }
38170
+ if (this._attached) {
38171
+ this._attached = false;
38154
38172
  }
38155
38173
  };
38156
- Object.defineProperty(IgcToolActionPopupOpeningEventArgs.prototype, "sourceAction", {
38174
+ Object.defineProperty(IgcToolActionSeparatorComponent, "observedAttributes", {
38157
38175
  get: function () {
38158
- var r = this.i.a;
38159
- if (r == null) {
38160
- return null;
38161
- }
38162
- if (!r.externalObject) {
38163
- var e = IgcToolActionComponent._createFromInternal(r);
38164
- if (e) {
38165
- e._implementation = r;
38176
+ if (IgcToolActionSeparatorComponent._observedAttributesIgcToolActionSeparatorComponent == null) {
38177
+ var names = igniteuiWebcomponentsCore.getAllPropertyNames(IgcToolActionSeparatorComponent);
38178
+ for (var i = 0; i < names.length; i++) {
38179
+ names[i] = igniteuiWebcomponentsCore.toSpinal(names[i]);
38166
38180
  }
38167
- r.externalObject = e;
38181
+ IgcToolActionSeparatorComponent._observedAttributesIgcToolActionSeparatorComponent = names;
38168
38182
  }
38169
- return r.externalObject;
38183
+ return IgcToolActionSeparatorComponent._observedAttributesIgcToolActionSeparatorComponent;
38184
+ },
38185
+ enumerable: false,
38186
+ configurable: true
38187
+ });
38188
+ IgcToolActionSeparatorComponent.register = function () {
38189
+ if (!IgcToolActionSeparatorComponent._isElementRegistered) {
38190
+ IgcToolActionSeparatorComponent._isElementRegistered = true;
38191
+ igniteuiWebcomponentsCore.RegisterElementHelper.registerElement(IgcToolActionSeparatorComponent.htmlTagName, IgcToolActionSeparatorComponent);
38192
+ }
38193
+ };
38194
+ Object.defineProperty(IgcToolActionSeparatorComponent.prototype, "size", {
38195
+ /**
38196
+ * Gets or sets the size of the separator.
38197
+ */
38198
+ get: function () {
38199
+ return this.i.ho;
38170
38200
  },
38171
38201
  set: function (v) {
38172
- v == null ? this.i.a = null : this.i.a = v.i;
38202
+ this.i.ho = +v;
38203
+ this._a("size", this.i.ho);
38173
38204
  },
38174
38205
  enumerable: false,
38175
38206
  configurable: true
38176
38207
  });
38177
- Object.defineProperty(IgcToolActionPopupOpeningEventArgs.prototype, "cancel", {
38208
+ Object.defineProperty(IgcToolActionSeparatorComponent.prototype, "isGroupHeaderSeparator", {
38209
+ /**
38210
+ * Gets or sets whether to use group header styling or regular styling on this separator.
38211
+ */
38178
38212
  get: function () {
38179
- return this.i.b;
38213
+ return this.i.hm;
38180
38214
  },
38181
38215
  set: function (v) {
38182
- this.i.b = igniteuiWebcomponentsCore.ensureBool(v);
38216
+ this.i.hm = igniteuiWebcomponentsCore.ensureBool(v);
38217
+ this._a("isGroupHeaderSeparator", this.i.hm);
38183
38218
  },
38184
38219
  enumerable: false,
38185
38220
  configurable: true
38186
38221
  });
38187
- return IgcToolActionPopupOpeningEventArgs;
38222
+ IgcToolActionSeparatorComponent.prototype.exportVisualData = function () {
38223
+ var iv = this.i.cr();
38224
+ return (iv);
38225
+ };
38226
+ IgcToolActionSeparatorComponent._observedAttributesIgcToolActionSeparatorComponent = null;
38227
+ IgcToolActionSeparatorComponent.htmlTagName = "igc-tool-action-separator";
38228
+ IgcToolActionSeparatorComponent._isElementRegistered = false;
38229
+ return IgcToolActionSeparatorComponent;
38230
+ }(IgcToolActionComponent));
38231
+
38232
+ /*
38233
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
38234
+ https://www.infragistics.com/legal/license/igultimate-la
38235
+ https://www.infragistics.com/legal/license/igultimate-eula
38236
+ 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.
38237
+ */
38238
+ var IgcToolActionSeparatorModule = /** @class */ /*@__PURE__*/ (function () {
38239
+ function IgcToolActionSeparatorModule() {
38240
+ }
38241
+ IgcToolActionSeparatorModule.register = function () {
38242
+ IgcToolActionSeparatorComponent.register();
38243
+ igniteuiWebcomponentsCore.TypeRegistrar.registerCons("IgcToolActionSeparatorComponent", IgcToolActionSeparatorComponent);
38244
+ igniteuiWebcomponentsCore.TypeRegistrar.register("ToolActionSeparator", ToolActionSeparator.$type);
38245
+ };
38246
+ return IgcToolActionSeparatorModule;
38188
38247
  }());
38189
38248
 
38190
38249
  /*
@@ -38194,18 +38253,15 @@
38194
38253
  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.
38195
38254
  */
38196
38255
 
38197
- var IgcToolActionIconButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
38198
- tslib.__extends(IgcToolActionIconButtonComponent, _super);
38199
- function IgcToolActionIconButtonComponent() {
38200
- var _this = _super.call(this) || this;
38201
- _this._popupOpening = null;
38202
- _this._popupOpening_wrapped = null;
38203
- return _this;
38256
+ var IgcToolActionRadioComponent = /** @class */ /*@__PURE__*/ (function (_super) {
38257
+ tslib.__extends(IgcToolActionRadioComponent, _super);
38258
+ function IgcToolActionRadioComponent() {
38259
+ return _super.call(this) || this;
38204
38260
  }
38205
- IgcToolActionIconButtonComponent.prototype.createImplementation = function () {
38206
- return new ToolActionIconButton();
38261
+ IgcToolActionRadioComponent.prototype.createImplementation = function () {
38262
+ return new ToolActionRadio();
38207
38263
  };
38208
- Object.defineProperty(IgcToolActionIconButtonComponent.prototype, "i", {
38264
+ Object.defineProperty(IgcToolActionRadioComponent.prototype, "i", {
38209
38265
  /**
38210
38266
  * @hidden
38211
38267
  */
@@ -38215,7 +38271,7 @@
38215
38271
  enumerable: false,
38216
38272
  configurable: true
38217
38273
  });
38218
- IgcToolActionIconButtonComponent.prototype.connectedCallback = function () {
38274
+ IgcToolActionRadioComponent.prototype.connectedCallback = function () {
38219
38275
  if (_super.prototype["connectedCallback"]) {
38220
38276
  _super.prototype["connectedCallback"].call(this);
38221
38277
  }
@@ -38233,7 +38289,7 @@
38233
38289
  this._flushQueuedAttributes();
38234
38290
  }
38235
38291
  };
38236
- IgcToolActionIconButtonComponent.prototype.disconnectedCallback = function () {
38292
+ IgcToolActionRadioComponent.prototype.disconnectedCallback = function () {
38237
38293
  if (_super.prototype["disconnectedCallback"]) {
38238
38294
  _super.prototype["disconnectedCallback"].call(this);
38239
38295
  }
@@ -38244,335 +38300,189 @@
38244
38300
  this._attached = false;
38245
38301
  }
38246
38302
  };
38247
- Object.defineProperty(IgcToolActionIconButtonComponent, "observedAttributes", {
38303
+ Object.defineProperty(IgcToolActionRadioComponent, "observedAttributes", {
38248
38304
  get: function () {
38249
- if (IgcToolActionIconButtonComponent._observedAttributesIgcToolActionIconButtonComponent == null) {
38250
- var names = igniteuiWebcomponentsCore.getAllPropertyNames(IgcToolActionIconButtonComponent);
38305
+ if (IgcToolActionRadioComponent._observedAttributesIgcToolActionRadioComponent == null) {
38306
+ var names = igniteuiWebcomponentsCore.getAllPropertyNames(IgcToolActionRadioComponent);
38251
38307
  for (var i = 0; i < names.length; i++) {
38252
38308
  names[i] = igniteuiWebcomponentsCore.toSpinal(names[i]);
38253
38309
  }
38254
- IgcToolActionIconButtonComponent._observedAttributesIgcToolActionIconButtonComponent = names;
38310
+ IgcToolActionRadioComponent._observedAttributesIgcToolActionRadioComponent = names;
38255
38311
  }
38256
- return IgcToolActionIconButtonComponent._observedAttributesIgcToolActionIconButtonComponent;
38312
+ return IgcToolActionRadioComponent._observedAttributesIgcToolActionRadioComponent;
38257
38313
  },
38258
38314
  enumerable: false,
38259
38315
  configurable: true
38260
38316
  });
38261
- IgcToolActionIconButtonComponent.register = function () {
38262
- if (!IgcToolActionIconButtonComponent._isElementRegistered) {
38263
- IgcToolActionIconButtonComponent._isElementRegistered = true;
38264
- igniteuiWebcomponentsCore.RegisterElementHelper.registerElement(IgcToolActionIconButtonComponent.htmlTagName, IgcToolActionIconButtonComponent);
38317
+ IgcToolActionRadioComponent.register = function () {
38318
+ if (!IgcToolActionRadioComponent._isElementRegistered) {
38319
+ IgcToolActionRadioComponent._isElementRegistered = true;
38320
+ igniteuiWebcomponentsCore.RegisterElementHelper.registerElement(IgcToolActionRadioComponent.htmlTagName, IgcToolActionRadioComponent);
38265
38321
  }
38266
38322
  };
38267
- Object.defineProperty(IgcToolActionIconButtonComponent.prototype, "tooltipDelay", {
38323
+ Object.defineProperty(IgcToolActionRadioComponent.prototype, "channel", {
38268
38324
  /**
38269
- * Gets or sets how long it takes before the tooltip is displayed (in milliseconds).
38325
+ * Gets or sets the channel this radio button belongs to.
38270
38326
  */
38271
38327
  get: function () {
38272
- return this.i.iw;
38328
+ return this.i.hu;
38273
38329
  },
38274
38330
  set: function (v) {
38275
- this.i.iw = +v;
38276
- this._a("tooltipDelay", this.i.iw);
38331
+ this.i.hu = v;
38277
38332
  },
38278
38333
  enumerable: false,
38279
38334
  configurable: true
38280
38335
  });
38281
- Object.defineProperty(IgcToolActionIconButtonComponent.prototype, "actualTooltipDelay", {
38336
+ Object.defineProperty(IgcToolActionRadioComponent.prototype, "isChecked", {
38282
38337
  /**
38283
- * Gets the actual delay before the tooltip is displayed (in milliseconds).
38338
+ * Gets or sets if the tool action is checked.
38284
38339
  */
38285
38340
  get: function () {
38286
- return this.i.iv;
38341
+ return this.i.hn;
38287
38342
  },
38288
38343
  set: function (v) {
38289
- this.i.iv = +v;
38290
- this._a("actualTooltipDelay", this.i.iv);
38344
+ this.i.hn = igniteuiWebcomponentsCore.ensureBool(v);
38345
+ this._a("isChecked", this.i.hn);
38291
38346
  },
38292
38347
  enumerable: false,
38293
38348
  configurable: true
38294
38349
  });
38295
- Object.defineProperty(IgcToolActionIconButtonComponent.prototype, "contentPaddingLeft", {
38350
+ Object.defineProperty(IgcToolActionRadioComponent.prototype, "isManual", {
38351
+ /**
38352
+ * Gets or sets if the checked state of the radio is handled manually by the user. The radio
38353
+ * well not become selected when clicked if this property is true.
38354
+ */
38296
38355
  get: function () {
38297
- return this.i.ip;
38356
+ return this.i.ho;
38298
38357
  },
38299
38358
  set: function (v) {
38300
- this.i.ip = +v;
38301
- this._a("contentPaddingLeft", this.i.ip);
38359
+ this.i.ho = igniteuiWebcomponentsCore.ensureBool(v);
38360
+ this._a("isManual", this.i.ho);
38302
38361
  },
38303
38362
  enumerable: false,
38304
38363
  configurable: true
38305
38364
  });
38306
- Object.defineProperty(IgcToolActionIconButtonComponent.prototype, "actualContentPaddingLeft", {
38365
+ Object.defineProperty(IgcToolActionRadioComponent.prototype, "uncheckedBackgroundColor", {
38366
+ /**
38367
+ * Gets or sets the background color of the radio when in the unchecked state.
38368
+ */
38307
38369
  get: function () {
38308
- return this.i.ik;
38370
+ return igniteuiWebcomponentsCore.brushToString(this.i.ia);
38309
38371
  },
38310
38372
  set: function (v) {
38311
- this.i.ik = +v;
38312
- this._a("actualContentPaddingLeft", this.i.ik);
38373
+ this.i.ia = igniteuiWebcomponentsCore.stringToBrush(v);
38374
+ this._a("uncheckedBackgroundColor", igniteuiWebcomponentsCore.brushToString(this.i.ia));
38313
38375
  },
38314
38376
  enumerable: false,
38315
38377
  configurable: true
38316
38378
  });
38317
- Object.defineProperty(IgcToolActionIconButtonComponent.prototype, "contentPaddingTop", {
38379
+ Object.defineProperty(IgcToolActionRadioComponent.prototype, "actualUncheckedBackgroundColor", {
38380
+ /**
38381
+ * Gets the actual background color of the radio when in the unchecked state.
38382
+ */
38318
38383
  get: function () {
38319
- return this.i.ir;
38384
+ return igniteuiWebcomponentsCore.brushToString(this.i.h6);
38320
38385
  },
38321
38386
  set: function (v) {
38322
- this.i.ir = +v;
38323
- this._a("contentPaddingTop", this.i.ir);
38387
+ this.i.h6 = igniteuiWebcomponentsCore.stringToBrush(v);
38388
+ this._a("actualUncheckedBackgroundColor", igniteuiWebcomponentsCore.brushToString(this.i.h6));
38324
38389
  },
38325
38390
  enumerable: false,
38326
38391
  configurable: true
38327
38392
  });
38328
- Object.defineProperty(IgcToolActionIconButtonComponent.prototype, "actualContentPaddingTop", {
38393
+ Object.defineProperty(IgcToolActionRadioComponent.prototype, "checkedBackgroundColor", {
38394
+ /**
38395
+ * Gets or sets the background color of the radio when in the checked state.
38396
+ */
38329
38397
  get: function () {
38330
- return this.i.im;
38398
+ return igniteuiWebcomponentsCore.brushToString(this.i.h8);
38331
38399
  },
38332
38400
  set: function (v) {
38333
- this.i.im = +v;
38334
- this._a("actualContentPaddingTop", this.i.im);
38401
+ this.i.h8 = igniteuiWebcomponentsCore.stringToBrush(v);
38402
+ this._a("checkedBackgroundColor", igniteuiWebcomponentsCore.brushToString(this.i.h8));
38335
38403
  },
38336
38404
  enumerable: false,
38337
38405
  configurable: true
38338
38406
  });
38339
- Object.defineProperty(IgcToolActionIconButtonComponent.prototype, "contentPaddingRight", {
38407
+ Object.defineProperty(IgcToolActionRadioComponent.prototype, "actualCheckedBackgroundColor", {
38408
+ /**
38409
+ * Gets the actual background color of the radio when in the checked state.
38410
+ */
38340
38411
  get: function () {
38341
- return this.i.iq;
38412
+ return igniteuiWebcomponentsCore.brushToString(this.i.h4);
38342
38413
  },
38343
38414
  set: function (v) {
38344
- this.i.iq = +v;
38345
- this._a("contentPaddingRight", this.i.iq);
38415
+ this.i.h4 = igniteuiWebcomponentsCore.stringToBrush(v);
38416
+ this._a("actualCheckedBackgroundColor", igniteuiWebcomponentsCore.brushToString(this.i.h4));
38346
38417
  },
38347
38418
  enumerable: false,
38348
38419
  configurable: true
38349
38420
  });
38350
- Object.defineProperty(IgcToolActionIconButtonComponent.prototype, "actualContentPaddingRight", {
38421
+ Object.defineProperty(IgcToolActionRadioComponent.prototype, "uncheckedBorderColor", {
38422
+ /**
38423
+ * Gets or sets the border color of the radio when in the unchecked state.
38424
+ */
38351
38425
  get: function () {
38352
- return this.i.il;
38426
+ return igniteuiWebcomponentsCore.brushToString(this.i.ib);
38353
38427
  },
38354
38428
  set: function (v) {
38355
- this.i.il = +v;
38356
- this._a("actualContentPaddingRight", this.i.il);
38429
+ this.i.ib = igniteuiWebcomponentsCore.stringToBrush(v);
38430
+ this._a("uncheckedBorderColor", igniteuiWebcomponentsCore.brushToString(this.i.ib));
38357
38431
  },
38358
38432
  enumerable: false,
38359
38433
  configurable: true
38360
38434
  });
38361
- Object.defineProperty(IgcToolActionIconButtonComponent.prototype, "contentPaddingBottom", {
38362
- get: function () {
38363
- return this.i.io;
38364
- },
38365
- set: function (v) {
38366
- this.i.io = +v;
38367
- this._a("contentPaddingBottom", this.i.io);
38368
- },
38369
- enumerable: false,
38370
- configurable: true
38371
- });
38372
- Object.defineProperty(IgcToolActionIconButtonComponent.prototype, "actualContentPaddingBottom", {
38373
- get: function () {
38374
- return this.i.ij;
38375
- },
38376
- set: function (v) {
38377
- this.i.ij = +v;
38378
- this._a("actualContentPaddingBottom", this.i.ij);
38379
- },
38380
- enumerable: false,
38381
- configurable: true
38382
- });
38383
- Object.defineProperty(IgcToolActionIconButtonComponent.prototype, "isOpen", {
38384
- get: function () {
38385
- return this.i.ba;
38386
- },
38387
- enumerable: false,
38388
- configurable: true
38389
- });
38390
- IgcToolActionIconButtonComponent.prototype.openSubMenu = function () {
38391
- this.i.gf();
38392
- };
38393
- IgcToolActionIconButtonComponent.prototype.closeSubmenu = function () {
38394
- this.i.fd();
38395
- };
38396
- IgcToolActionIconButtonComponent.prototype.exportVisualData = function () {
38397
- var iv = this.i.cr();
38398
- return (iv);
38399
- };
38400
- Object.defineProperty(IgcToolActionIconButtonComponent.prototype, "popupOpening", {
38401
- get: function () {
38402
- return this._popupOpening;
38403
- },
38404
- set: function (ev) {
38405
- var _this = this;
38406
- if (this._popupOpening_wrapped !== null) {
38407
- this.i.popupOpening = igniteuiWebcomponentsCore.delegateRemove(this.i.popupOpening, this._popupOpening_wrapped);
38408
- this._popupOpening_wrapped = null;
38409
- this._popupOpening = null;
38410
- }
38411
- this._popupOpening = ev;
38412
- this._popupOpening_wrapped = function (o, e) {
38413
- var outerArgs = new IgcToolActionPopupOpeningEventArgs();
38414
- outerArgs._provideImplementation(e);
38415
- if (_this.beforePopupOpening) {
38416
- _this.beforePopupOpening(_this, outerArgs);
38417
- }
38418
- if (_this._popupOpening) {
38419
- _this._popupOpening(_this, outerArgs);
38420
- }
38421
- };
38422
- this.i.popupOpening = igniteuiWebcomponentsCore.delegateCombine(this.i.popupOpening, this._popupOpening_wrapped);
38423
- ;
38424
- },
38425
- enumerable: false,
38426
- configurable: true
38427
- });
38428
- IgcToolActionIconButtonComponent._observedAttributesIgcToolActionIconButtonComponent = null;
38429
- IgcToolActionIconButtonComponent.htmlTagName = "igc-tool-action-icon-button";
38430
- IgcToolActionIconButtonComponent._isElementRegistered = false;
38431
- return IgcToolActionIconButtonComponent;
38432
- }(IgcToolActionComponent));
38433
-
38434
- /*
38435
- THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
38436
- https://www.infragistics.com/legal/license/igultimate-la
38437
- https://www.infragistics.com/legal/license/igultimate-eula
38438
- 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.
38439
- */
38440
- var IgcToolActionIconButtonModule = /** @class */ /*@__PURE__*/ (function () {
38441
- function IgcToolActionIconButtonModule() {
38442
- }
38443
- IgcToolActionIconButtonModule.register = function () {
38444
- IgcToolActionIconButtonComponent.register();
38445
- igniteuiWebcomponentsCore.TypeRegistrar.registerCons("IgcToolActionIconButtonComponent", IgcToolActionIconButtonComponent);
38446
- igniteuiWebcomponentsCore.TypeRegistrar.register("ToolActionIconButton", ToolActionIconButton.$type);
38447
- };
38448
- return IgcToolActionIconButtonModule;
38449
- }());
38450
-
38451
- /*
38452
- THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
38453
- https://www.infragistics.com/legal/license/igultimate-la
38454
- https://www.infragistics.com/legal/license/igultimate-eula
38455
- 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.
38456
- */
38457
-
38458
- var IgcToolActionIconMenuComponent = /** @class */ /*@__PURE__*/ (function (_super) {
38459
- tslib.__extends(IgcToolActionIconMenuComponent, _super);
38460
- function IgcToolActionIconMenuComponent() {
38461
- return _super.call(this) || this;
38462
- }
38463
- IgcToolActionIconMenuComponent.prototype.createImplementation = function () {
38464
- return new ToolActionIconMenu();
38465
- };
38466
- Object.defineProperty(IgcToolActionIconMenuComponent.prototype, "i", {
38467
- /**
38468
- * @hidden
38469
- */
38470
- get: function () {
38471
- return this._implementation;
38472
- },
38473
- enumerable: false,
38474
- configurable: true
38475
- });
38476
- IgcToolActionIconMenuComponent.prototype.connectedCallback = function () {
38477
- if (_super.prototype["connectedCallback"]) {
38478
- _super.prototype["connectedCallback"].call(this);
38479
- }
38480
- if (this.i.connectedCallback) {
38481
- this.i.connectedCallback();
38482
- }
38483
- if (this.updateContentChildren) {
38484
- this.updateContentChildren();
38485
- }
38486
- else if (this._updateAdapters) {
38487
- this._updateAdapters();
38488
- }
38489
- if (!this._attached) {
38490
- this._attached = true;
38491
- this._flushQueuedAttributes();
38492
- }
38493
- };
38494
- IgcToolActionIconMenuComponent.prototype.disconnectedCallback = function () {
38495
- if (_super.prototype["disconnectedCallback"]) {
38496
- _super.prototype["disconnectedCallback"].call(this);
38497
- }
38498
- if (this.i.disconnectedCallback) {
38499
- this.i.disconnectedCallback();
38500
- }
38501
- if (this._attached) {
38502
- this._attached = false;
38503
- }
38504
- };
38505
- Object.defineProperty(IgcToolActionIconMenuComponent, "observedAttributes", {
38506
- get: function () {
38507
- if (IgcToolActionIconMenuComponent._observedAttributesIgcToolActionIconMenuComponent == null) {
38508
- var names = igniteuiWebcomponentsCore.getAllPropertyNames(IgcToolActionIconMenuComponent);
38509
- for (var i = 0; i < names.length; i++) {
38510
- names[i] = igniteuiWebcomponentsCore.toSpinal(names[i]);
38511
- }
38512
- IgcToolActionIconMenuComponent._observedAttributesIgcToolActionIconMenuComponent = names;
38513
- }
38514
- return IgcToolActionIconMenuComponent._observedAttributesIgcToolActionIconMenuComponent;
38515
- },
38516
- enumerable: false,
38517
- configurable: true
38518
- });
38519
- IgcToolActionIconMenuComponent.register = function () {
38520
- if (!IgcToolActionIconMenuComponent._isElementRegistered) {
38521
- IgcToolActionIconMenuComponent._isElementRegistered = true;
38522
- igniteuiWebcomponentsCore.RegisterElementHelper.registerElement(IgcToolActionIconMenuComponent.htmlTagName, IgcToolActionIconMenuComponent);
38523
- }
38524
- };
38525
- Object.defineProperty(IgcToolActionIconMenuComponent.prototype, "arrowStroke", {
38435
+ Object.defineProperty(IgcToolActionRadioComponent.prototype, "actualUncheckedBorderColor", {
38526
38436
  /**
38527
- * Gets or sets the stroke color of the arrow icon.
38437
+ * Gets the actual border color of the radio when in the unchecked state.
38528
38438
  */
38529
38439
  get: function () {
38530
- return igniteuiWebcomponentsCore.brushToString(this.i.kd);
38440
+ return igniteuiWebcomponentsCore.brushToString(this.i.h7);
38531
38441
  },
38532
38442
  set: function (v) {
38533
- this.i.kd = igniteuiWebcomponentsCore.stringToBrush(v);
38534
- this._a("arrowStroke", igniteuiWebcomponentsCore.brushToString(this.i.kd));
38443
+ this.i.h7 = igniteuiWebcomponentsCore.stringToBrush(v);
38444
+ this._a("actualUncheckedBorderColor", igniteuiWebcomponentsCore.brushToString(this.i.h7));
38535
38445
  },
38536
38446
  enumerable: false,
38537
38447
  configurable: true
38538
38448
  });
38539
- Object.defineProperty(IgcToolActionIconMenuComponent.prototype, "actualArrowStroke", {
38449
+ Object.defineProperty(IgcToolActionRadioComponent.prototype, "checkedBorderColor", {
38540
38450
  /**
38541
- * Gets the actual stroke color of the arrow icon.
38451
+ * Gets or sets the border color of the radio when in the checked state.
38542
38452
  */
38543
38453
  get: function () {
38544
- return igniteuiWebcomponentsCore.brushToString(this.i.kc);
38454
+ return igniteuiWebcomponentsCore.brushToString(this.i.h9);
38545
38455
  },
38546
38456
  set: function (v) {
38547
- this.i.kc = igniteuiWebcomponentsCore.stringToBrush(v);
38548
- this._a("actualArrowStroke", igniteuiWebcomponentsCore.brushToString(this.i.kc));
38457
+ this.i.h9 = igniteuiWebcomponentsCore.stringToBrush(v);
38458
+ this._a("checkedBorderColor", igniteuiWebcomponentsCore.brushToString(this.i.h9));
38549
38459
  },
38550
38460
  enumerable: false,
38551
38461
  configurable: true
38552
38462
  });
38553
- Object.defineProperty(IgcToolActionIconMenuComponent.prototype, "showArrowIcon", {
38463
+ Object.defineProperty(IgcToolActionRadioComponent.prototype, "actualCheckedBorderColor", {
38554
38464
  /**
38555
- * Gets or sets whether the arrow icon should be shown.
38465
+ * Gets the actual border color of the radio when in the checked state.
38556
38466
  */
38557
38467
  get: function () {
38558
- return this.i.j1;
38468
+ return igniteuiWebcomponentsCore.brushToString(this.i.h5);
38559
38469
  },
38560
38470
  set: function (v) {
38561
- this.i.j1 = igniteuiWebcomponentsCore.ensureBool(v);
38562
- this._a("showArrowIcon", this.i.j1);
38471
+ this.i.h5 = igniteuiWebcomponentsCore.stringToBrush(v);
38472
+ this._a("actualCheckedBorderColor", igniteuiWebcomponentsCore.brushToString(this.i.h5));
38563
38473
  },
38564
38474
  enumerable: false,
38565
38475
  configurable: true
38566
38476
  });
38567
- IgcToolActionIconMenuComponent.prototype.exportVisualData = function () {
38477
+ IgcToolActionRadioComponent.prototype.exportVisualData = function () {
38568
38478
  var iv = this.i.cr();
38569
38479
  return (iv);
38570
38480
  };
38571
- IgcToolActionIconMenuComponent._observedAttributesIgcToolActionIconMenuComponent = null;
38572
- IgcToolActionIconMenuComponent.htmlTagName = "igc-tool-action-icon-menu";
38573
- IgcToolActionIconMenuComponent._isElementRegistered = false;
38574
- return IgcToolActionIconMenuComponent;
38575
- }(IgcToolActionIconButtonComponent));
38481
+ IgcToolActionRadioComponent._observedAttributesIgcToolActionRadioComponent = null;
38482
+ IgcToolActionRadioComponent.htmlTagName = "igc-tool-action-radio";
38483
+ IgcToolActionRadioComponent._isElementRegistered = false;
38484
+ return IgcToolActionRadioComponent;
38485
+ }(IgcToolActionComponent));
38576
38486
 
38577
38487
  /*
38578
38488
  THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
@@ -38580,15 +38490,15 @@
38580
38490
  https://www.infragistics.com/legal/license/igultimate-eula
38581
38491
  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.
38582
38492
  */
38583
- var IgcToolActionIconMenuModule = /** @class */ /*@__PURE__*/ (function () {
38584
- function IgcToolActionIconMenuModule() {
38493
+ var IgcToolActionRadioModule = /** @class */ /*@__PURE__*/ (function () {
38494
+ function IgcToolActionRadioModule() {
38585
38495
  }
38586
- IgcToolActionIconMenuModule.register = function () {
38587
- IgcToolActionIconMenuComponent.register();
38588
- igniteuiWebcomponentsCore.TypeRegistrar.registerCons("IgcToolActionIconMenuComponent", IgcToolActionIconMenuComponent);
38589
- igniteuiWebcomponentsCore.TypeRegistrar.register("ToolActionIconMenu", ToolActionIconMenu.$type);
38496
+ IgcToolActionRadioModule.register = function () {
38497
+ IgcToolActionRadioComponent.register();
38498
+ igniteuiWebcomponentsCore.TypeRegistrar.registerCons("IgcToolActionRadioComponent", IgcToolActionRadioComponent);
38499
+ igniteuiWebcomponentsCore.TypeRegistrar.register("ToolActionRadio", ToolActionRadio.$type);
38590
38500
  };
38591
- return IgcToolActionIconMenuModule;
38501
+ return IgcToolActionRadioModule;
38592
38502
  }());
38593
38503
 
38594
38504
  /*
@@ -38598,15 +38508,15 @@
38598
38508
  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.
38599
38509
  */
38600
38510
 
38601
- var IgcToolActionSeparatorComponent = /** @class */ /*@__PURE__*/ (function (_super) {
38602
- tslib.__extends(IgcToolActionSeparatorComponent, _super);
38603
- function IgcToolActionSeparatorComponent() {
38511
+ var IgcToolActionButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
38512
+ tslib.__extends(IgcToolActionButtonComponent, _super);
38513
+ function IgcToolActionButtonComponent() {
38604
38514
  return _super.call(this) || this;
38605
38515
  }
38606
- IgcToolActionSeparatorComponent.prototype.createImplementation = function () {
38607
- return new ToolActionSeparator();
38516
+ IgcToolActionButtonComponent.prototype.createImplementation = function () {
38517
+ return new ToolActionButton();
38608
38518
  };
38609
- Object.defineProperty(IgcToolActionSeparatorComponent.prototype, "i", {
38519
+ Object.defineProperty(IgcToolActionButtonComponent.prototype, "i", {
38610
38520
  /**
38611
38521
  * @hidden
38612
38522
  */
@@ -38616,7 +38526,7 @@
38616
38526
  enumerable: false,
38617
38527
  configurable: true
38618
38528
  });
38619
- IgcToolActionSeparatorComponent.prototype.connectedCallback = function () {
38529
+ IgcToolActionButtonComponent.prototype.connectedCallback = function () {
38620
38530
  if (_super.prototype["connectedCallback"]) {
38621
38531
  _super.prototype["connectedCallback"].call(this);
38622
38532
  }
@@ -38634,7 +38544,7 @@
38634
38544
  this._flushQueuedAttributes();
38635
38545
  }
38636
38546
  };
38637
- IgcToolActionSeparatorComponent.prototype.disconnectedCallback = function () {
38547
+ IgcToolActionButtonComponent.prototype.disconnectedCallback = function () {
38638
38548
  if (_super.prototype["disconnectedCallback"]) {
38639
38549
  _super.prototype["disconnectedCallback"].call(this);
38640
38550
  }
@@ -38645,62 +38555,62 @@
38645
38555
  this._attached = false;
38646
38556
  }
38647
38557
  };
38648
- Object.defineProperty(IgcToolActionSeparatorComponent, "observedAttributes", {
38558
+ Object.defineProperty(IgcToolActionButtonComponent, "observedAttributes", {
38649
38559
  get: function () {
38650
- if (IgcToolActionSeparatorComponent._observedAttributesIgcToolActionSeparatorComponent == null) {
38651
- var names = igniteuiWebcomponentsCore.getAllPropertyNames(IgcToolActionSeparatorComponent);
38560
+ if (IgcToolActionButtonComponent._observedAttributesIgcToolActionButtonComponent == null) {
38561
+ var names = igniteuiWebcomponentsCore.getAllPropertyNames(IgcToolActionButtonComponent);
38652
38562
  for (var i = 0; i < names.length; i++) {
38653
38563
  names[i] = igniteuiWebcomponentsCore.toSpinal(names[i]);
38654
38564
  }
38655
- IgcToolActionSeparatorComponent._observedAttributesIgcToolActionSeparatorComponent = names;
38565
+ IgcToolActionButtonComponent._observedAttributesIgcToolActionButtonComponent = names;
38656
38566
  }
38657
- return IgcToolActionSeparatorComponent._observedAttributesIgcToolActionSeparatorComponent;
38567
+ return IgcToolActionButtonComponent._observedAttributesIgcToolActionButtonComponent;
38658
38568
  },
38659
38569
  enumerable: false,
38660
38570
  configurable: true
38661
38571
  });
38662
- IgcToolActionSeparatorComponent.register = function () {
38663
- if (!IgcToolActionSeparatorComponent._isElementRegistered) {
38664
- IgcToolActionSeparatorComponent._isElementRegistered = true;
38665
- igniteuiWebcomponentsCore.RegisterElementHelper.registerElement(IgcToolActionSeparatorComponent.htmlTagName, IgcToolActionSeparatorComponent);
38572
+ IgcToolActionButtonComponent.register = function () {
38573
+ if (!IgcToolActionButtonComponent._isElementRegistered) {
38574
+ IgcToolActionButtonComponent._isElementRegistered = true;
38575
+ igniteuiWebcomponentsCore.RegisterElementHelper.registerElement(IgcToolActionButtonComponent.htmlTagName, IgcToolActionButtonComponent);
38666
38576
  }
38667
38577
  };
38668
- Object.defineProperty(IgcToolActionSeparatorComponent.prototype, "size", {
38578
+ Object.defineProperty(IgcToolActionButtonComponent.prototype, "displayType", {
38669
38579
  /**
38670
- * Gets or sets the size of the separator.
38580
+ * Gets or sets the display type for the button.
38671
38581
  */
38672
38582
  get: function () {
38673
- return this.i.ho;
38583
+ return this.i.hm;
38674
38584
  },
38675
38585
  set: function (v) {
38676
- this.i.ho = +v;
38677
- this._a("size", this.i.ho);
38586
+ this.i.hm = igniteuiWebcomponentsCore.ensureEnum(ToolActionButtonDisplayType_$type, v);
38587
+ this._a("displayType", igniteuiWebcomponentsCore.enumToString(ToolActionButtonDisplayType_$type, this.i.hm));
38678
38588
  },
38679
38589
  enumerable: false,
38680
38590
  configurable: true
38681
38591
  });
38682
- Object.defineProperty(IgcToolActionSeparatorComponent.prototype, "isGroupHeaderSeparator", {
38592
+ Object.defineProperty(IgcToolActionButtonComponent.prototype, "cornerRadius", {
38683
38593
  /**
38684
- * Gets or sets whether to use group header styling or regular styling on this separator.
38594
+ * Gets or sets the button corner radius.
38685
38595
  */
38686
38596
  get: function () {
38687
- return this.i.hm;
38597
+ return this.i.hq;
38688
38598
  },
38689
38599
  set: function (v) {
38690
- this.i.hm = igniteuiWebcomponentsCore.ensureBool(v);
38691
- this._a("isGroupHeaderSeparator", this.i.hm);
38600
+ this.i.hq = +v;
38601
+ this._a("cornerRadius", this.i.hq);
38692
38602
  },
38693
38603
  enumerable: false,
38694
38604
  configurable: true
38695
38605
  });
38696
- IgcToolActionSeparatorComponent.prototype.exportVisualData = function () {
38606
+ IgcToolActionButtonComponent.prototype.exportVisualData = function () {
38697
38607
  var iv = this.i.cr();
38698
38608
  return (iv);
38699
38609
  };
38700
- IgcToolActionSeparatorComponent._observedAttributesIgcToolActionSeparatorComponent = null;
38701
- IgcToolActionSeparatorComponent.htmlTagName = "igc-tool-action-separator";
38702
- IgcToolActionSeparatorComponent._isElementRegistered = false;
38703
- return IgcToolActionSeparatorComponent;
38610
+ IgcToolActionButtonComponent._observedAttributesIgcToolActionButtonComponent = null;
38611
+ IgcToolActionButtonComponent.htmlTagName = "igc-tool-action-button";
38612
+ IgcToolActionButtonComponent._isElementRegistered = false;
38613
+ return IgcToolActionButtonComponent;
38704
38614
  }(IgcToolActionComponent));
38705
38615
 
38706
38616
  /*
@@ -38709,15 +38619,15 @@
38709
38619
  https://www.infragistics.com/legal/license/igultimate-eula
38710
38620
  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.
38711
38621
  */
38712
- var IgcToolActionSeparatorModule = /** @class */ /*@__PURE__*/ (function () {
38713
- function IgcToolActionSeparatorModule() {
38622
+ var IgcToolActionButtonModule = /** @class */ /*@__PURE__*/ (function () {
38623
+ function IgcToolActionButtonModule() {
38714
38624
  }
38715
- IgcToolActionSeparatorModule.register = function () {
38716
- IgcToolActionSeparatorComponent.register();
38717
- igniteuiWebcomponentsCore.TypeRegistrar.registerCons("IgcToolActionSeparatorComponent", IgcToolActionSeparatorComponent);
38718
- igniteuiWebcomponentsCore.TypeRegistrar.register("ToolActionSeparator", ToolActionSeparator.$type);
38625
+ IgcToolActionButtonModule.register = function () {
38626
+ IgcToolActionButtonComponent.register();
38627
+ igniteuiWebcomponentsCore.TypeRegistrar.registerCons("IgcToolActionButtonComponent", IgcToolActionButtonComponent);
38628
+ igniteuiWebcomponentsCore.TypeRegistrar.register("ToolActionButton", ToolActionButton.$type);
38719
38629
  };
38720
- return IgcToolActionSeparatorModule;
38630
+ return IgcToolActionButtonModule;
38721
38631
  }());
38722
38632
 
38723
38633
  /*
@@ -38842,15 +38752,91 @@
38842
38752
  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.
38843
38753
  */
38844
38754
 
38845
- var IgcToolActionRadioComponent = /** @class */ /*@__PURE__*/ (function (_super) {
38846
- tslib.__extends(IgcToolActionRadioComponent, _super);
38847
- function IgcToolActionRadioComponent() {
38848
- return _super.call(this) || this;
38755
+ var IgcToolActionPopupOpeningEventArgs = /** @class */ /*@__PURE__*/ (function () {
38756
+ function IgcToolActionPopupOpeningEventArgs() {
38757
+ this._implementation = this.createImplementation();
38758
+ this._implementation.externalObject = this;
38759
+ this.onImplementationCreated();
38760
+ if (this._initializeAdapters) {
38761
+ this._initializeAdapters();
38762
+ }
38849
38763
  }
38850
- IgcToolActionRadioComponent.prototype.createImplementation = function () {
38851
- return new ToolActionRadio();
38764
+ IgcToolActionPopupOpeningEventArgs.prototype.createImplementation = function () {
38765
+ return new ToolActionPopupOpeningEventArgs();
38852
38766
  };
38853
- Object.defineProperty(IgcToolActionRadioComponent.prototype, "i", {
38767
+ Object.defineProperty(IgcToolActionPopupOpeningEventArgs.prototype, "i", {
38768
+ /**
38769
+ * @hidden
38770
+ */
38771
+ get: function () {
38772
+ return this._implementation;
38773
+ },
38774
+ enumerable: false,
38775
+ configurable: true
38776
+ });
38777
+ IgcToolActionPopupOpeningEventArgs.prototype.onImplementationCreated = function () {
38778
+ };
38779
+ IgcToolActionPopupOpeningEventArgs.prototype._provideImplementation = function (i) {
38780
+ this._implementation = i;
38781
+ this._implementation.externalObject = this;
38782
+ this.onImplementationCreated();
38783
+ if (this._initializeAdapters) {
38784
+ this._initializeAdapters();
38785
+ }
38786
+ };
38787
+ Object.defineProperty(IgcToolActionPopupOpeningEventArgs.prototype, "sourceAction", {
38788
+ get: function () {
38789
+ var r = this.i.a;
38790
+ if (r == null) {
38791
+ return null;
38792
+ }
38793
+ if (!r.externalObject) {
38794
+ var e = IgcToolActionComponent._createFromInternal(r);
38795
+ if (e) {
38796
+ e._implementation = r;
38797
+ }
38798
+ r.externalObject = e;
38799
+ }
38800
+ return r.externalObject;
38801
+ },
38802
+ set: function (v) {
38803
+ v == null ? this.i.a = null : this.i.a = v.i;
38804
+ },
38805
+ enumerable: false,
38806
+ configurable: true
38807
+ });
38808
+ Object.defineProperty(IgcToolActionPopupOpeningEventArgs.prototype, "cancel", {
38809
+ get: function () {
38810
+ return this.i.b;
38811
+ },
38812
+ set: function (v) {
38813
+ this.i.b = igniteuiWebcomponentsCore.ensureBool(v);
38814
+ },
38815
+ enumerable: false,
38816
+ configurable: true
38817
+ });
38818
+ return IgcToolActionPopupOpeningEventArgs;
38819
+ }());
38820
+
38821
+ /*
38822
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
38823
+ https://www.infragistics.com/legal/license/igultimate-la
38824
+ https://www.infragistics.com/legal/license/igultimate-eula
38825
+ 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.
38826
+ */
38827
+
38828
+ var IgcToolActionIconButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
38829
+ tslib.__extends(IgcToolActionIconButtonComponent, _super);
38830
+ function IgcToolActionIconButtonComponent() {
38831
+ var _this = _super.call(this) || this;
38832
+ _this._popupOpening = null;
38833
+ _this._popupOpening_wrapped = null;
38834
+ return _this;
38835
+ }
38836
+ IgcToolActionIconButtonComponent.prototype.createImplementation = function () {
38837
+ return new ToolActionIconButton();
38838
+ };
38839
+ Object.defineProperty(IgcToolActionIconButtonComponent.prototype, "i", {
38854
38840
  /**
38855
38841
  * @hidden
38856
38842
  */
@@ -38860,7 +38846,7 @@
38860
38846
  enumerable: false,
38861
38847
  configurable: true
38862
38848
  });
38863
- IgcToolActionRadioComponent.prototype.connectedCallback = function () {
38849
+ IgcToolActionIconButtonComponent.prototype.connectedCallback = function () {
38864
38850
  if (_super.prototype["connectedCallback"]) {
38865
38851
  _super.prototype["connectedCallback"].call(this);
38866
38852
  }
@@ -38878,7 +38864,7 @@
38878
38864
  this._flushQueuedAttributes();
38879
38865
  }
38880
38866
  };
38881
- IgcToolActionRadioComponent.prototype.disconnectedCallback = function () {
38867
+ IgcToolActionIconButtonComponent.prototype.disconnectedCallback = function () {
38882
38868
  if (_super.prototype["disconnectedCallback"]) {
38883
38869
  _super.prototype["disconnectedCallback"].call(this);
38884
38870
  }
@@ -38889,188 +38875,191 @@
38889
38875
  this._attached = false;
38890
38876
  }
38891
38877
  };
38892
- Object.defineProperty(IgcToolActionRadioComponent, "observedAttributes", {
38878
+ Object.defineProperty(IgcToolActionIconButtonComponent, "observedAttributes", {
38893
38879
  get: function () {
38894
- if (IgcToolActionRadioComponent._observedAttributesIgcToolActionRadioComponent == null) {
38895
- var names = igniteuiWebcomponentsCore.getAllPropertyNames(IgcToolActionRadioComponent);
38880
+ if (IgcToolActionIconButtonComponent._observedAttributesIgcToolActionIconButtonComponent == null) {
38881
+ var names = igniteuiWebcomponentsCore.getAllPropertyNames(IgcToolActionIconButtonComponent);
38896
38882
  for (var i = 0; i < names.length; i++) {
38897
38883
  names[i] = igniteuiWebcomponentsCore.toSpinal(names[i]);
38898
38884
  }
38899
- IgcToolActionRadioComponent._observedAttributesIgcToolActionRadioComponent = names;
38885
+ IgcToolActionIconButtonComponent._observedAttributesIgcToolActionIconButtonComponent = names;
38900
38886
  }
38901
- return IgcToolActionRadioComponent._observedAttributesIgcToolActionRadioComponent;
38887
+ return IgcToolActionIconButtonComponent._observedAttributesIgcToolActionIconButtonComponent;
38902
38888
  },
38903
38889
  enumerable: false,
38904
38890
  configurable: true
38905
38891
  });
38906
- IgcToolActionRadioComponent.register = function () {
38907
- if (!IgcToolActionRadioComponent._isElementRegistered) {
38908
- IgcToolActionRadioComponent._isElementRegistered = true;
38909
- igniteuiWebcomponentsCore.RegisterElementHelper.registerElement(IgcToolActionRadioComponent.htmlTagName, IgcToolActionRadioComponent);
38892
+ IgcToolActionIconButtonComponent.register = function () {
38893
+ if (!IgcToolActionIconButtonComponent._isElementRegistered) {
38894
+ IgcToolActionIconButtonComponent._isElementRegistered = true;
38895
+ igniteuiWebcomponentsCore.RegisterElementHelper.registerElement(IgcToolActionIconButtonComponent.htmlTagName, IgcToolActionIconButtonComponent);
38910
38896
  }
38911
38897
  };
38912
- Object.defineProperty(IgcToolActionRadioComponent.prototype, "channel", {
38898
+ Object.defineProperty(IgcToolActionIconButtonComponent.prototype, "tooltipDelay", {
38913
38899
  /**
38914
- * Gets or sets the channel this radio button belongs to.
38900
+ * Gets or sets how long it takes before the tooltip is displayed (in milliseconds).
38915
38901
  */
38916
38902
  get: function () {
38917
- return this.i.hu;
38903
+ return this.i.iw;
38918
38904
  },
38919
38905
  set: function (v) {
38920
- this.i.hu = v;
38906
+ this.i.iw = +v;
38907
+ this._a("tooltipDelay", this.i.iw);
38921
38908
  },
38922
38909
  enumerable: false,
38923
38910
  configurable: true
38924
38911
  });
38925
- Object.defineProperty(IgcToolActionRadioComponent.prototype, "isChecked", {
38912
+ Object.defineProperty(IgcToolActionIconButtonComponent.prototype, "actualTooltipDelay", {
38926
38913
  /**
38927
- * Gets or sets if the tool action is checked.
38914
+ * Gets the actual delay before the tooltip is displayed (in milliseconds).
38928
38915
  */
38929
38916
  get: function () {
38930
- return this.i.hn;
38917
+ return this.i.iv;
38931
38918
  },
38932
38919
  set: function (v) {
38933
- this.i.hn = igniteuiWebcomponentsCore.ensureBool(v);
38934
- this._a("isChecked", this.i.hn);
38920
+ this.i.iv = +v;
38921
+ this._a("actualTooltipDelay", this.i.iv);
38935
38922
  },
38936
- enumerable: false,
38937
- configurable: true
38938
- });
38939
- Object.defineProperty(IgcToolActionRadioComponent.prototype, "isManual", {
38940
- /**
38941
- * Gets or sets if the checked state of the radio is handled manually by the user. The radio
38942
- * well not become selected when clicked if this property is true.
38943
- */
38923
+ enumerable: false,
38924
+ configurable: true
38925
+ });
38926
+ Object.defineProperty(IgcToolActionIconButtonComponent.prototype, "contentPaddingLeft", {
38944
38927
  get: function () {
38945
- return this.i.ho;
38928
+ return this.i.ip;
38946
38929
  },
38947
38930
  set: function (v) {
38948
- this.i.ho = igniteuiWebcomponentsCore.ensureBool(v);
38949
- this._a("isManual", this.i.ho);
38931
+ this.i.ip = +v;
38932
+ this._a("contentPaddingLeft", this.i.ip);
38950
38933
  },
38951
38934
  enumerable: false,
38952
38935
  configurable: true
38953
38936
  });
38954
- Object.defineProperty(IgcToolActionRadioComponent.prototype, "uncheckedBackgroundColor", {
38955
- /**
38956
- * Gets or sets the background color of the radio when in the unchecked state.
38957
- */
38937
+ Object.defineProperty(IgcToolActionIconButtonComponent.prototype, "actualContentPaddingLeft", {
38958
38938
  get: function () {
38959
- return igniteuiWebcomponentsCore.brushToString(this.i.ia);
38939
+ return this.i.ik;
38960
38940
  },
38961
38941
  set: function (v) {
38962
- this.i.ia = igniteuiWebcomponentsCore.stringToBrush(v);
38963
- this._a("uncheckedBackgroundColor", igniteuiWebcomponentsCore.brushToString(this.i.ia));
38942
+ this.i.ik = +v;
38943
+ this._a("actualContentPaddingLeft", this.i.ik);
38964
38944
  },
38965
38945
  enumerable: false,
38966
38946
  configurable: true
38967
38947
  });
38968
- Object.defineProperty(IgcToolActionRadioComponent.prototype, "actualUncheckedBackgroundColor", {
38969
- /**
38970
- * Gets the actual background color of the radio when in the unchecked state.
38971
- */
38948
+ Object.defineProperty(IgcToolActionIconButtonComponent.prototype, "contentPaddingTop", {
38972
38949
  get: function () {
38973
- return igniteuiWebcomponentsCore.brushToString(this.i.h6);
38950
+ return this.i.ir;
38974
38951
  },
38975
38952
  set: function (v) {
38976
- this.i.h6 = igniteuiWebcomponentsCore.stringToBrush(v);
38977
- this._a("actualUncheckedBackgroundColor", igniteuiWebcomponentsCore.brushToString(this.i.h6));
38953
+ this.i.ir = +v;
38954
+ this._a("contentPaddingTop", this.i.ir);
38978
38955
  },
38979
38956
  enumerable: false,
38980
38957
  configurable: true
38981
38958
  });
38982
- Object.defineProperty(IgcToolActionRadioComponent.prototype, "checkedBackgroundColor", {
38983
- /**
38984
- * Gets or sets the background color of the radio when in the checked state.
38985
- */
38959
+ Object.defineProperty(IgcToolActionIconButtonComponent.prototype, "actualContentPaddingTop", {
38986
38960
  get: function () {
38987
- return igniteuiWebcomponentsCore.brushToString(this.i.h8);
38961
+ return this.i.im;
38988
38962
  },
38989
38963
  set: function (v) {
38990
- this.i.h8 = igniteuiWebcomponentsCore.stringToBrush(v);
38991
- this._a("checkedBackgroundColor", igniteuiWebcomponentsCore.brushToString(this.i.h8));
38964
+ this.i.im = +v;
38965
+ this._a("actualContentPaddingTop", this.i.im);
38992
38966
  },
38993
38967
  enumerable: false,
38994
38968
  configurable: true
38995
38969
  });
38996
- Object.defineProperty(IgcToolActionRadioComponent.prototype, "actualCheckedBackgroundColor", {
38997
- /**
38998
- * Gets the actual background color of the radio when in the checked state.
38999
- */
38970
+ Object.defineProperty(IgcToolActionIconButtonComponent.prototype, "contentPaddingRight", {
39000
38971
  get: function () {
39001
- return igniteuiWebcomponentsCore.brushToString(this.i.h4);
38972
+ return this.i.iq;
39002
38973
  },
39003
38974
  set: function (v) {
39004
- this.i.h4 = igniteuiWebcomponentsCore.stringToBrush(v);
39005
- this._a("actualCheckedBackgroundColor", igniteuiWebcomponentsCore.brushToString(this.i.h4));
38975
+ this.i.iq = +v;
38976
+ this._a("contentPaddingRight", this.i.iq);
39006
38977
  },
39007
38978
  enumerable: false,
39008
38979
  configurable: true
39009
38980
  });
39010
- Object.defineProperty(IgcToolActionRadioComponent.prototype, "uncheckedBorderColor", {
39011
- /**
39012
- * Gets or sets the border color of the radio when in the unchecked state.
39013
- */
38981
+ Object.defineProperty(IgcToolActionIconButtonComponent.prototype, "actualContentPaddingRight", {
39014
38982
  get: function () {
39015
- return igniteuiWebcomponentsCore.brushToString(this.i.ib);
38983
+ return this.i.il;
39016
38984
  },
39017
38985
  set: function (v) {
39018
- this.i.ib = igniteuiWebcomponentsCore.stringToBrush(v);
39019
- this._a("uncheckedBorderColor", igniteuiWebcomponentsCore.brushToString(this.i.ib));
38986
+ this.i.il = +v;
38987
+ this._a("actualContentPaddingRight", this.i.il);
39020
38988
  },
39021
38989
  enumerable: false,
39022
38990
  configurable: true
39023
38991
  });
39024
- Object.defineProperty(IgcToolActionRadioComponent.prototype, "actualUncheckedBorderColor", {
39025
- /**
39026
- * Gets the actual border color of the radio when in the unchecked state.
39027
- */
38992
+ Object.defineProperty(IgcToolActionIconButtonComponent.prototype, "contentPaddingBottom", {
39028
38993
  get: function () {
39029
- return igniteuiWebcomponentsCore.brushToString(this.i.h7);
38994
+ return this.i.io;
39030
38995
  },
39031
38996
  set: function (v) {
39032
- this.i.h7 = igniteuiWebcomponentsCore.stringToBrush(v);
39033
- this._a("actualUncheckedBorderColor", igniteuiWebcomponentsCore.brushToString(this.i.h7));
38997
+ this.i.io = +v;
38998
+ this._a("contentPaddingBottom", this.i.io);
39034
38999
  },
39035
39000
  enumerable: false,
39036
39001
  configurable: true
39037
39002
  });
39038
- Object.defineProperty(IgcToolActionRadioComponent.prototype, "checkedBorderColor", {
39039
- /**
39040
- * Gets or sets the border color of the radio when in the checked state.
39041
- */
39003
+ Object.defineProperty(IgcToolActionIconButtonComponent.prototype, "actualContentPaddingBottom", {
39042
39004
  get: function () {
39043
- return igniteuiWebcomponentsCore.brushToString(this.i.h9);
39005
+ return this.i.ij;
39044
39006
  },
39045
39007
  set: function (v) {
39046
- this.i.h9 = igniteuiWebcomponentsCore.stringToBrush(v);
39047
- this._a("checkedBorderColor", igniteuiWebcomponentsCore.brushToString(this.i.h9));
39008
+ this.i.ij = +v;
39009
+ this._a("actualContentPaddingBottom", this.i.ij);
39048
39010
  },
39049
39011
  enumerable: false,
39050
39012
  configurable: true
39051
39013
  });
39052
- Object.defineProperty(IgcToolActionRadioComponent.prototype, "actualCheckedBorderColor", {
39053
- /**
39054
- * Gets the actual border color of the radio when in the checked state.
39055
- */
39014
+ Object.defineProperty(IgcToolActionIconButtonComponent.prototype, "isOpen", {
39056
39015
  get: function () {
39057
- return igniteuiWebcomponentsCore.brushToString(this.i.h5);
39058
- },
39059
- set: function (v) {
39060
- this.i.h5 = igniteuiWebcomponentsCore.stringToBrush(v);
39061
- this._a("actualCheckedBorderColor", igniteuiWebcomponentsCore.brushToString(this.i.h5));
39016
+ return this.i.ba;
39062
39017
  },
39063
39018
  enumerable: false,
39064
39019
  configurable: true
39065
39020
  });
39066
- IgcToolActionRadioComponent.prototype.exportVisualData = function () {
39021
+ IgcToolActionIconButtonComponent.prototype.openSubMenu = function () {
39022
+ this.i.gf();
39023
+ };
39024
+ IgcToolActionIconButtonComponent.prototype.closeSubmenu = function () {
39025
+ this.i.fd();
39026
+ };
39027
+ IgcToolActionIconButtonComponent.prototype.exportVisualData = function () {
39067
39028
  var iv = this.i.cr();
39068
39029
  return (iv);
39069
39030
  };
39070
- IgcToolActionRadioComponent._observedAttributesIgcToolActionRadioComponent = null;
39071
- IgcToolActionRadioComponent.htmlTagName = "igc-tool-action-radio";
39072
- IgcToolActionRadioComponent._isElementRegistered = false;
39073
- return IgcToolActionRadioComponent;
39031
+ Object.defineProperty(IgcToolActionIconButtonComponent.prototype, "popupOpening", {
39032
+ get: function () {
39033
+ return this._popupOpening;
39034
+ },
39035
+ set: function (ev) {
39036
+ var _this = this;
39037
+ if (this._popupOpening_wrapped !== null) {
39038
+ this.i.popupOpening = igniteuiWebcomponentsCore.delegateRemove(this.i.popupOpening, this._popupOpening_wrapped);
39039
+ this._popupOpening_wrapped = null;
39040
+ this._popupOpening = null;
39041
+ }
39042
+ this._popupOpening = ev;
39043
+ this._popupOpening_wrapped = function (o, e) {
39044
+ var outerArgs = new IgcToolActionPopupOpeningEventArgs();
39045
+ outerArgs._provideImplementation(e);
39046
+ if (_this.beforePopupOpening) {
39047
+ _this.beforePopupOpening(_this, outerArgs);
39048
+ }
39049
+ if (_this._popupOpening) {
39050
+ _this._popupOpening(_this, outerArgs);
39051
+ }
39052
+ };
39053
+ this.i.popupOpening = igniteuiWebcomponentsCore.delegateCombine(this.i.popupOpening, this._popupOpening_wrapped);
39054
+ ;
39055
+ },
39056
+ enumerable: false,
39057
+ configurable: true
39058
+ });
39059
+ IgcToolActionIconButtonComponent._observedAttributesIgcToolActionIconButtonComponent = null;
39060
+ IgcToolActionIconButtonComponent.htmlTagName = "igc-tool-action-icon-button";
39061
+ IgcToolActionIconButtonComponent._isElementRegistered = false;
39062
+ return IgcToolActionIconButtonComponent;
39074
39063
  }(IgcToolActionComponent));
39075
39064
 
39076
39065
  /*
@@ -39079,15 +39068,15 @@
39079
39068
  https://www.infragistics.com/legal/license/igultimate-eula
39080
39069
  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.
39081
39070
  */
39082
- var IgcToolActionRadioModule = /** @class */ /*@__PURE__*/ (function () {
39083
- function IgcToolActionRadioModule() {
39071
+ var IgcToolActionIconButtonModule = /** @class */ /*@__PURE__*/ (function () {
39072
+ function IgcToolActionIconButtonModule() {
39084
39073
  }
39085
- IgcToolActionRadioModule.register = function () {
39086
- IgcToolActionRadioComponent.register();
39087
- igniteuiWebcomponentsCore.TypeRegistrar.registerCons("IgcToolActionRadioComponent", IgcToolActionRadioComponent);
39088
- igniteuiWebcomponentsCore.TypeRegistrar.register("ToolActionRadio", ToolActionRadio.$type);
39074
+ IgcToolActionIconButtonModule.register = function () {
39075
+ IgcToolActionIconButtonComponent.register();
39076
+ igniteuiWebcomponentsCore.TypeRegistrar.registerCons("IgcToolActionIconButtonComponent", IgcToolActionIconButtonComponent);
39077
+ igniteuiWebcomponentsCore.TypeRegistrar.register("ToolActionIconButton", ToolActionIconButton.$type);
39089
39078
  };
39090
- return IgcToolActionRadioModule;
39079
+ return IgcToolActionIconButtonModule;
39091
39080
  }());
39092
39081
 
39093
39082
  /*
@@ -39097,15 +39086,15 @@
39097
39086
  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.
39098
39087
  */
39099
39088
 
39100
- var IgcToolActionButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
39101
- tslib.__extends(IgcToolActionButtonComponent, _super);
39102
- function IgcToolActionButtonComponent() {
39089
+ var IgcToolActionIconMenuComponent = /** @class */ /*@__PURE__*/ (function (_super) {
39090
+ tslib.__extends(IgcToolActionIconMenuComponent, _super);
39091
+ function IgcToolActionIconMenuComponent() {
39103
39092
  return _super.call(this) || this;
39104
39093
  }
39105
- IgcToolActionButtonComponent.prototype.createImplementation = function () {
39106
- return new ToolActionButton();
39094
+ IgcToolActionIconMenuComponent.prototype.createImplementation = function () {
39095
+ return new ToolActionIconMenu();
39107
39096
  };
39108
- Object.defineProperty(IgcToolActionButtonComponent.prototype, "i", {
39097
+ Object.defineProperty(IgcToolActionIconMenuComponent.prototype, "i", {
39109
39098
  /**
39110
39099
  * @hidden
39111
39100
  */
@@ -39115,7 +39104,7 @@
39115
39104
  enumerable: false,
39116
39105
  configurable: true
39117
39106
  });
39118
- IgcToolActionButtonComponent.prototype.connectedCallback = function () {
39107
+ IgcToolActionIconMenuComponent.prototype.connectedCallback = function () {
39119
39108
  if (_super.prototype["connectedCallback"]) {
39120
39109
  _super.prototype["connectedCallback"].call(this);
39121
39110
  }
@@ -39133,7 +39122,7 @@
39133
39122
  this._flushQueuedAttributes();
39134
39123
  }
39135
39124
  };
39136
- IgcToolActionButtonComponent.prototype.disconnectedCallback = function () {
39125
+ IgcToolActionIconMenuComponent.prototype.disconnectedCallback = function () {
39137
39126
  if (_super.prototype["disconnectedCallback"]) {
39138
39127
  _super.prototype["disconnectedCallback"].call(this);
39139
39128
  }
@@ -39144,63 +39133,77 @@
39144
39133
  this._attached = false;
39145
39134
  }
39146
39135
  };
39147
- Object.defineProperty(IgcToolActionButtonComponent, "observedAttributes", {
39136
+ Object.defineProperty(IgcToolActionIconMenuComponent, "observedAttributes", {
39148
39137
  get: function () {
39149
- if (IgcToolActionButtonComponent._observedAttributesIgcToolActionButtonComponent == null) {
39150
- var names = igniteuiWebcomponentsCore.getAllPropertyNames(IgcToolActionButtonComponent);
39138
+ if (IgcToolActionIconMenuComponent._observedAttributesIgcToolActionIconMenuComponent == null) {
39139
+ var names = igniteuiWebcomponentsCore.getAllPropertyNames(IgcToolActionIconMenuComponent);
39151
39140
  for (var i = 0; i < names.length; i++) {
39152
39141
  names[i] = igniteuiWebcomponentsCore.toSpinal(names[i]);
39153
39142
  }
39154
- IgcToolActionButtonComponent._observedAttributesIgcToolActionButtonComponent = names;
39143
+ IgcToolActionIconMenuComponent._observedAttributesIgcToolActionIconMenuComponent = names;
39155
39144
  }
39156
- return IgcToolActionButtonComponent._observedAttributesIgcToolActionButtonComponent;
39145
+ return IgcToolActionIconMenuComponent._observedAttributesIgcToolActionIconMenuComponent;
39157
39146
  },
39158
39147
  enumerable: false,
39159
39148
  configurable: true
39160
39149
  });
39161
- IgcToolActionButtonComponent.register = function () {
39162
- if (!IgcToolActionButtonComponent._isElementRegistered) {
39163
- IgcToolActionButtonComponent._isElementRegistered = true;
39164
- igniteuiWebcomponentsCore.RegisterElementHelper.registerElement(IgcToolActionButtonComponent.htmlTagName, IgcToolActionButtonComponent);
39150
+ IgcToolActionIconMenuComponent.register = function () {
39151
+ if (!IgcToolActionIconMenuComponent._isElementRegistered) {
39152
+ IgcToolActionIconMenuComponent._isElementRegistered = true;
39153
+ igniteuiWebcomponentsCore.RegisterElementHelper.registerElement(IgcToolActionIconMenuComponent.htmlTagName, IgcToolActionIconMenuComponent);
39165
39154
  }
39166
39155
  };
39167
- Object.defineProperty(IgcToolActionButtonComponent.prototype, "displayType", {
39156
+ Object.defineProperty(IgcToolActionIconMenuComponent.prototype, "arrowStroke", {
39168
39157
  /**
39169
- * Gets or sets the display type for the button.
39158
+ * Gets or sets the stroke color of the arrow icon.
39170
39159
  */
39171
39160
  get: function () {
39172
- return this.i.hm;
39161
+ return igniteuiWebcomponentsCore.brushToString(this.i.kd);
39173
39162
  },
39174
39163
  set: function (v) {
39175
- this.i.hm = igniteuiWebcomponentsCore.ensureEnum(ToolActionButtonDisplayType_$type, v);
39176
- this._a("displayType", igniteuiWebcomponentsCore.enumToString(ToolActionButtonDisplayType_$type, this.i.hm));
39164
+ this.i.kd = igniteuiWebcomponentsCore.stringToBrush(v);
39165
+ this._a("arrowStroke", igniteuiWebcomponentsCore.brushToString(this.i.kd));
39177
39166
  },
39178
39167
  enumerable: false,
39179
39168
  configurable: true
39180
39169
  });
39181
- Object.defineProperty(IgcToolActionButtonComponent.prototype, "cornerRadius", {
39170
+ Object.defineProperty(IgcToolActionIconMenuComponent.prototype, "actualArrowStroke", {
39182
39171
  /**
39183
- * Gets or sets the button corner radius.
39172
+ * Gets the actual stroke color of the arrow icon.
39184
39173
  */
39185
39174
  get: function () {
39186
- return this.i.hq;
39175
+ return igniteuiWebcomponentsCore.brushToString(this.i.kc);
39187
39176
  },
39188
39177
  set: function (v) {
39189
- this.i.hq = +v;
39190
- this._a("cornerRadius", this.i.hq);
39178
+ this.i.kc = igniteuiWebcomponentsCore.stringToBrush(v);
39179
+ this._a("actualArrowStroke", igniteuiWebcomponentsCore.brushToString(this.i.kc));
39191
39180
  },
39192
39181
  enumerable: false,
39193
39182
  configurable: true
39194
39183
  });
39195
- IgcToolActionButtonComponent.prototype.exportVisualData = function () {
39184
+ Object.defineProperty(IgcToolActionIconMenuComponent.prototype, "showArrowIcon", {
39185
+ /**
39186
+ * Gets or sets whether the arrow icon should be shown.
39187
+ */
39188
+ get: function () {
39189
+ return this.i.j1;
39190
+ },
39191
+ set: function (v) {
39192
+ this.i.j1 = igniteuiWebcomponentsCore.ensureBool(v);
39193
+ this._a("showArrowIcon", this.i.j1);
39194
+ },
39195
+ enumerable: false,
39196
+ configurable: true
39197
+ });
39198
+ IgcToolActionIconMenuComponent.prototype.exportVisualData = function () {
39196
39199
  var iv = this.i.cr();
39197
39200
  return (iv);
39198
39201
  };
39199
- IgcToolActionButtonComponent._observedAttributesIgcToolActionButtonComponent = null;
39200
- IgcToolActionButtonComponent.htmlTagName = "igc-tool-action-button";
39201
- IgcToolActionButtonComponent._isElementRegistered = false;
39202
- return IgcToolActionButtonComponent;
39203
- }(IgcToolActionComponent));
39202
+ IgcToolActionIconMenuComponent._observedAttributesIgcToolActionIconMenuComponent = null;
39203
+ IgcToolActionIconMenuComponent.htmlTagName = "igc-tool-action-icon-menu";
39204
+ IgcToolActionIconMenuComponent._isElementRegistered = false;
39205
+ return IgcToolActionIconMenuComponent;
39206
+ }(IgcToolActionIconButtonComponent));
39204
39207
 
39205
39208
  /*
39206
39209
  THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
@@ -39208,15 +39211,15 @@
39208
39211
  https://www.infragistics.com/legal/license/igultimate-eula
39209
39212
  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.
39210
39213
  */
39211
- var IgcToolActionButtonModule = /** @class */ /*@__PURE__*/ (function () {
39212
- function IgcToolActionButtonModule() {
39214
+ var IgcToolActionIconMenuModule = /** @class */ /*@__PURE__*/ (function () {
39215
+ function IgcToolActionIconMenuModule() {
39213
39216
  }
39214
- IgcToolActionButtonModule.register = function () {
39215
- IgcToolActionButtonComponent.register();
39216
- igniteuiWebcomponentsCore.TypeRegistrar.registerCons("IgcToolActionButtonComponent", IgcToolActionButtonComponent);
39217
- igniteuiWebcomponentsCore.TypeRegistrar.register("ToolActionButton", ToolActionButton.$type);
39217
+ IgcToolActionIconMenuModule.register = function () {
39218
+ IgcToolActionIconMenuComponent.register();
39219
+ igniteuiWebcomponentsCore.TypeRegistrar.registerCons("IgcToolActionIconMenuComponent", IgcToolActionIconMenuComponent);
39220
+ igniteuiWebcomponentsCore.TypeRegistrar.register("ToolActionIconMenu", ToolActionIconMenu.$type);
39218
39221
  };
39219
- return IgcToolActionButtonModule;
39222
+ return IgcToolActionIconMenuModule;
39220
39223
  }());
39221
39224
 
39222
39225
  /*
@@ -40879,10 +40882,7 @@
40879
40882
  IgcToolActionGroupHeaderModule.register();
40880
40883
  IgcToolActionFieldSelectorModule.register();
40881
40884
  IgcToolActionNumberInputModule.register();
40882
- IgcToolActionIconButtonModule.register();
40883
- IgcToolActionIconMenuModule.register();
40884
40885
  IgcToolActionSeparatorModule.register();
40885
- IgcToolActionSubPanelModule.register();
40886
40886
  IgcToolActionRadioModule.register();
40887
40887
  IgcToolActionButtonModule.register();
40888
40888
  igniteuiWebcomponentsInputs.IgcXInputGroupModule.register();
@@ -40891,6 +40891,9 @@
40891
40891
  igniteuiWebcomponentsInputs.IgcXIconModule.register();
40892
40892
  igniteuiWebcomponentsInputs.IgcColorEditorModule.register();
40893
40893
  igniteuiWebcomponentsInputs.IgcMultiSliderModule.register();
40894
+ IgcToolActionSubPanelModule.register();
40895
+ IgcToolActionIconButtonModule.register();
40896
+ IgcToolActionIconMenuModule.register();
40894
40897
  IgcToolPanelComponent.register();
40895
40898
  igniteuiWebcomponentsCore.TypeRegistrar.registerCons('IgcToolPanelComponent', IgcToolPanelComponent);
40896
40899
  igniteuiWebcomponentsCore.TypeRegistrar.registerCons('IgcToolPanelComponent', IgcToolPanelComponent);
@@ -42708,18 +42711,18 @@
42708
42711
  var a = new igniteuiWebcomponentsCore.DescriptionSerializerBuilder();
42709
42712
  var b = new igniteuiWebcomponentsCore.DescriptionSerializer();
42710
42713
  var c = "root";
42711
- a.f("{");
42712
- a.i();
42713
- a.f("\"descriptions\": {");
42714
- a.i();
42715
- a.e("\"" + c + "\"");
42716
- a.e(": ");
42714
+ a.appendLine("{");
42715
+ a.increaseTabLevel();
42716
+ a.appendLine("\"descriptions\": {");
42717
+ a.increaseTabLevel();
42718
+ a.append("\"" + c + "\"");
42719
+ a.append(": ");
42717
42720
  b.y(this.c, this.b, a);
42718
- a.f("");
42719
- a.h();
42720
- a.e("}");
42721
- a.h();
42722
- a.f("}");
42721
+ a.appendLine("");
42722
+ a.decreaseTabLevel();
42723
+ a.append("}");
42724
+ a.decreaseTabLevel();
42725
+ a.appendLine("}");
42723
42726
  return a.toString();
42724
42727
  };
42725
42728
  PropertyEditorTreeTransformer.$t = igniteuiWebcomponentsCore.markType(PropertyEditorTreeTransformer, 'PropertyEditorTreeTransformer');