igniteui-webcomponents-layouts 4.3.0-beta.3 → 4.3.0-beta.4

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.
@@ -8272,7 +8272,7 @@
8272
8272
  $ret.n = "Verdana";
8273
8273
  $ret.d = 14;
8274
8274
  $ret.q = "Normal";
8275
- $ret.s = "Bold";
8275
+ $ret.s = "Normal";
8276
8276
  $ret.o = "Normal";
8277
8277
  return $ret;
8278
8278
  })());
@@ -18404,6 +18404,97 @@
18404
18404
  return IgcToolActionIconButtonModule;
18405
18405
  }());
18406
18406
 
18407
+ /*
18408
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
18409
+ https://www.infragistics.com/legal/license/igultimate-la
18410
+ https://www.infragistics.com/legal/license/igultimate-eula
18411
+ 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.
18412
+ */
18413
+
18414
+ var IgcToolActionIconMenuComponent = /** @class */ /*@__PURE__*/ (function (_super) {
18415
+ tslib.__extends(IgcToolActionIconMenuComponent, _super);
18416
+ function IgcToolActionIconMenuComponent() {
18417
+ return _super.call(this) || this;
18418
+ }
18419
+ IgcToolActionIconMenuComponent.prototype.createImplementation = function () {
18420
+ return new ToolActionIconMenu();
18421
+ };
18422
+ Object.defineProperty(IgcToolActionIconMenuComponent.prototype, "i", {
18423
+ /**
18424
+ * @hidden
18425
+ */
18426
+ get: function () {
18427
+ return this._implementation;
18428
+ },
18429
+ enumerable: false,
18430
+ configurable: true
18431
+ });
18432
+ IgcToolActionIconMenuComponent.prototype.connectedCallback = function () {
18433
+ if (_super.prototype["connectedCallback"]) {
18434
+ _super.prototype["connectedCallback"].call(this);
18435
+ }
18436
+ if (this.i.connectedCallback) {
18437
+ this.i.connectedCallback();
18438
+ }
18439
+ if (!this._attached) {
18440
+ this._attached = true;
18441
+ this._flushQueuedAttributes();
18442
+ }
18443
+ };
18444
+ IgcToolActionIconMenuComponent.prototype.disconnectedCallback = function () {
18445
+ if (_super.prototype["disconnectedCallback"]) {
18446
+ _super.prototype["disconnectedCallback"].call(this);
18447
+ }
18448
+ if (this.i.disconnectedCallback) {
18449
+ this.i.disconnectedCallback();
18450
+ }
18451
+ if (this._attached) {
18452
+ this._attached = false;
18453
+ }
18454
+ };
18455
+ Object.defineProperty(IgcToolActionIconMenuComponent, "observedAttributes", {
18456
+ get: function () {
18457
+ if (IgcToolActionIconMenuComponent._observedAttributesIgcToolActionIconMenuComponent == null) {
18458
+ var names = igniteuiWebcomponentsCore.getAllPropertyNames(IgcToolActionIconMenuComponent);
18459
+ for (var i = 0; i < names.length; i++) {
18460
+ names[i] = igniteuiWebcomponentsCore.toSpinal(names[i]);
18461
+ }
18462
+ IgcToolActionIconMenuComponent._observedAttributesIgcToolActionIconMenuComponent = names;
18463
+ }
18464
+ return IgcToolActionIconMenuComponent._observedAttributesIgcToolActionIconMenuComponent;
18465
+ },
18466
+ enumerable: false,
18467
+ configurable: true
18468
+ });
18469
+ IgcToolActionIconMenuComponent.register = function () {
18470
+ if (!IgcToolActionIconMenuComponent._isElementRegistered) {
18471
+ IgcToolActionIconMenuComponent._isElementRegistered = true;
18472
+ igniteuiWebcomponentsCore.RegisterElementHelper.registerElement(IgcToolActionIconMenuComponent.htmlTagName, IgcToolActionIconMenuComponent);
18473
+ }
18474
+ };
18475
+ IgcToolActionIconMenuComponent._observedAttributesIgcToolActionIconMenuComponent = null;
18476
+ IgcToolActionIconMenuComponent.htmlTagName = "igc-tool-action-icon-menu";
18477
+ IgcToolActionIconMenuComponent._isElementRegistered = false;
18478
+ return IgcToolActionIconMenuComponent;
18479
+ }(IgcToolActionIconButtonComponent));
18480
+
18481
+ /*
18482
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
18483
+ https://www.infragistics.com/legal/license/igultimate-la
18484
+ https://www.infragistics.com/legal/license/igultimate-eula
18485
+ 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.
18486
+ */
18487
+ var IgcToolActionIconMenuModule = /** @class */ /*@__PURE__*/ (function () {
18488
+ function IgcToolActionIconMenuModule() {
18489
+ }
18490
+ IgcToolActionIconMenuModule.register = function () {
18491
+ IgcToolActionIconMenuComponent.register();
18492
+ igniteuiWebcomponentsCore.TypeRegistrar.registerCons("IgcToolActionIconMenuComponent", IgcToolActionIconMenuComponent);
18493
+ igniteuiWebcomponentsCore.TypeRegistrar.register("ToolActionIconMenu", ToolActionIconMenu.$type);
18494
+ };
18495
+ return IgcToolActionIconMenuModule;
18496
+ }());
18497
+
18407
18498
  /*
18408
18499
  THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
18409
18500
  https://www.infragistics.com/legal/license/igultimate-la
@@ -18420,6 +18511,7 @@
18420
18511
  IgcToolActionGroupHeaderModule.register();
18421
18512
  IgcToolActionNumberInputModule.register();
18422
18513
  IgcToolActionIconButtonModule.register();
18514
+ IgcToolActionIconMenuModule.register();
18423
18515
  igniteuiWebcomponentsInputs.IgcXInputGroupModule.register();
18424
18516
  igniteuiWebcomponentsInputs.IgcXCheckboxModule.register();
18425
18517
  igniteuiWebcomponentsInputs.IgcXButtonModule.register();
@@ -18859,97 +18951,6 @@
18859
18951
  return IgcToolActionSeparatorModule;
18860
18952
  }());
18861
18953
 
18862
- /*
18863
- THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
18864
- https://www.infragistics.com/legal/license/igultimate-la
18865
- https://www.infragistics.com/legal/license/igultimate-eula
18866
- 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.
18867
- */
18868
-
18869
- var IgcToolActionIconMenuComponent = /** @class */ /*@__PURE__*/ (function (_super) {
18870
- tslib.__extends(IgcToolActionIconMenuComponent, _super);
18871
- function IgcToolActionIconMenuComponent() {
18872
- return _super.call(this) || this;
18873
- }
18874
- IgcToolActionIconMenuComponent.prototype.createImplementation = function () {
18875
- return new ToolActionIconMenu();
18876
- };
18877
- Object.defineProperty(IgcToolActionIconMenuComponent.prototype, "i", {
18878
- /**
18879
- * @hidden
18880
- */
18881
- get: function () {
18882
- return this._implementation;
18883
- },
18884
- enumerable: false,
18885
- configurable: true
18886
- });
18887
- IgcToolActionIconMenuComponent.prototype.connectedCallback = function () {
18888
- if (_super.prototype["connectedCallback"]) {
18889
- _super.prototype["connectedCallback"].call(this);
18890
- }
18891
- if (this.i.connectedCallback) {
18892
- this.i.connectedCallback();
18893
- }
18894
- if (!this._attached) {
18895
- this._attached = true;
18896
- this._flushQueuedAttributes();
18897
- }
18898
- };
18899
- IgcToolActionIconMenuComponent.prototype.disconnectedCallback = function () {
18900
- if (_super.prototype["disconnectedCallback"]) {
18901
- _super.prototype["disconnectedCallback"].call(this);
18902
- }
18903
- if (this.i.disconnectedCallback) {
18904
- this.i.disconnectedCallback();
18905
- }
18906
- if (this._attached) {
18907
- this._attached = false;
18908
- }
18909
- };
18910
- Object.defineProperty(IgcToolActionIconMenuComponent, "observedAttributes", {
18911
- get: function () {
18912
- if (IgcToolActionIconMenuComponent._observedAttributesIgcToolActionIconMenuComponent == null) {
18913
- var names = igniteuiWebcomponentsCore.getAllPropertyNames(IgcToolActionIconMenuComponent);
18914
- for (var i = 0; i < names.length; i++) {
18915
- names[i] = igniteuiWebcomponentsCore.toSpinal(names[i]);
18916
- }
18917
- IgcToolActionIconMenuComponent._observedAttributesIgcToolActionIconMenuComponent = names;
18918
- }
18919
- return IgcToolActionIconMenuComponent._observedAttributesIgcToolActionIconMenuComponent;
18920
- },
18921
- enumerable: false,
18922
- configurable: true
18923
- });
18924
- IgcToolActionIconMenuComponent.register = function () {
18925
- if (!IgcToolActionIconMenuComponent._isElementRegistered) {
18926
- IgcToolActionIconMenuComponent._isElementRegistered = true;
18927
- igniteuiWebcomponentsCore.RegisterElementHelper.registerElement(IgcToolActionIconMenuComponent.htmlTagName, IgcToolActionIconMenuComponent);
18928
- }
18929
- };
18930
- IgcToolActionIconMenuComponent._observedAttributesIgcToolActionIconMenuComponent = null;
18931
- IgcToolActionIconMenuComponent.htmlTagName = "igc-tool-action-icon-menu";
18932
- IgcToolActionIconMenuComponent._isElementRegistered = false;
18933
- return IgcToolActionIconMenuComponent;
18934
- }(IgcToolActionIconButtonComponent));
18935
-
18936
- /*
18937
- THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
18938
- https://www.infragistics.com/legal/license/igultimate-la
18939
- https://www.infragistics.com/legal/license/igultimate-eula
18940
- 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.
18941
- */
18942
- var IgcToolActionIconMenuModule = /** @class */ /*@__PURE__*/ (function () {
18943
- function IgcToolActionIconMenuModule() {
18944
- }
18945
- IgcToolActionIconMenuModule.register = function () {
18946
- IgcToolActionIconMenuComponent.register();
18947
- igniteuiWebcomponentsCore.TypeRegistrar.registerCons("IgcToolActionIconMenuComponent", IgcToolActionIconMenuComponent);
18948
- igniteuiWebcomponentsCore.TypeRegistrar.register("ToolActionIconMenu", ToolActionIconMenu.$type);
18949
- };
18950
- return IgcToolActionIconMenuModule;
18951
- }());
18952
-
18953
18954
  /*
18954
18955
  THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
18955
18956
  https://www.infragistics.com/legal/license/igultimate-la