igniteui-webcomponents-grids 5.0.0-beta.3 → 5.0.1

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.
Files changed (34) hide show
  1. package/bundles/igniteui-webcomponents-grids.umd.js +28 -39
  2. package/bundles/igniteui-webcomponents-grids.umd.min.js +1 -1
  3. package/esm2015/lib/CheckboxListBridge.js +1 -4
  4. package/esm2015/lib/CheckboxListView_combined.js +24 -24
  5. package/esm2015/lib/igc-checkbox-list-component.js +5 -1
  6. package/esm2015/public_api.js +0 -1
  7. package/esm5/lib/CheckboxListBridge.js +1 -4
  8. package/esm5/lib/CheckboxListView_combined.js +24 -24
  9. package/esm5/lib/igc-checkbox-list-component.js +5 -1
  10. package/esm5/public_api.js +0 -1
  11. package/fesm2015/igniteui-webcomponents-grids.js +30 -40
  12. package/fesm5/igniteui-webcomponents-grids.js +30 -40
  13. package/grids/combined.js +16443 -15816
  14. package/grids/lib/igc-pivot-aggregator.d.ts +1 -1
  15. package/grids/lib/igc-pivot-configuration.d.ts +1 -1
  16. package/grids/lib/igc-pivot-dimension.d.ts +1 -1
  17. package/grids/lib/igc-pivot-value.d.ts +1 -1
  18. package/grids/styles.css +1 -1
  19. package/grids/themes/dark/bootstrap.css +1 -1
  20. package/grids/themes/dark/fluent.css +1 -1
  21. package/grids/themes/dark/indigo.css +1 -1
  22. package/grids/themes/dark/material.css +1 -1
  23. package/grids/themes/light/bootstrap.css +1 -1
  24. package/grids/themes/light/fluent.css +1 -1
  25. package/grids/themes/light/indigo.css +1 -1
  26. package/grids/themes/light/material.css +1 -1
  27. package/lib/CheckboxListExternal.d.ts +6 -4
  28. package/lib/CheckboxListView_combined.d.ts +3 -3
  29. package/lib/igc-checkbox-list-component.d.ts +2 -0
  30. package/package.json +4 -4
  31. package/public_api.d.ts +0 -1
  32. package/esm2015/lib/CheckboxListViewExternal.js +0 -11
  33. package/esm5/lib/CheckboxListViewExternal.js +0 -11
  34. package/lib/CheckboxListViewExternal.d.ts +0 -16
@@ -71161,29 +71161,6 @@
71161
71161
  this.c.fill = this.b.d1;
71162
71162
  }
71163
71163
  };
71164
- CheckboxListView.prototype.aj = function () {
71165
- var a = 248;
71166
- var b = 0;
71167
- if (this.b.itemsSource == null) {
71168
- return new igniteuiWebcomponentsCore.Size(1, a, b + 158);
71169
- }
71170
- var c = (this.b.itemsSource.length);
71171
- b += 4;
71172
- b += 16;
71173
- b += 38;
71174
- b += 8;
71175
- b += 4;
71176
- var d = this.b.h != null ? this.b.h.actualRowHeight : 30;
71177
- var e = d * c;
71178
- if (e > 150) {
71179
- b += 150;
71180
- b += 15;
71181
- }
71182
- else {
71183
- b += e;
71184
- }
71185
- return new igniteuiWebcomponentsCore.Size(1, a, b);
71186
- };
71187
71164
  CheckboxListView.prototype.ac = function () {
71188
71165
  if (this.b.ag != null) {
71189
71166
  this.i.setStyleProperty("font", this.b.ag.fontString);
@@ -72227,6 +72204,29 @@
72227
72204
  this.g.remove(b);
72228
72205
  }
72229
72206
  };
72207
+ CheckboxList.prototype.getDesiredSize = function () {
72208
+ var a = 248;
72209
+ var b = 0;
72210
+ if (this.itemsSource == null) {
72211
+ return new igniteuiWebcomponentsCore.Size(1, a, b + 158);
72212
+ }
72213
+ b += 4;
72214
+ b += 16;
72215
+ b += 38;
72216
+ b += 8;
72217
+ b += 4;
72218
+ var c = this.h != null ? this.h.actualRowHeight : 30;
72219
+ var d = (this.itemsSource.length);
72220
+ var e = c * d;
72221
+ if (e > 150) {
72222
+ b += 150;
72223
+ b += 15;
72224
+ }
72225
+ else {
72226
+ b += e;
72227
+ }
72228
+ return new igniteuiWebcomponentsCore.Size(1, a, b);
72229
+ };
72230
72230
  Object.defineProperty(CheckboxList.prototype, "b0", {
72231
72231
  get: function () {
72232
72232
  return this.bz != null ? this.bz : !igniteuiWebcomponentsCore.stringIsNullOrWhiteSpace(this.aj.b1("Select_All")) ? this.aj.b1("Select_All") : "(Select All)";
@@ -73358,6 +73358,10 @@
73358
73358
  IgcCheckboxListComponent.prototype.removeKeyValue = function (value) {
73359
73359
  this.i.c1(value);
73360
73360
  };
73361
+ IgcCheckboxListComponent.prototype.getDesiredSize = function () {
73362
+ var iv = this.i.getDesiredSize();
73363
+ return igniteuiWebcomponentsCore.fromSize(iv);
73364
+ };
73361
73365
  /**
73362
73366
  * Returns true if no items are selected / checked; otherwise false.
73363
73367
 
@@ -73526,7 +73530,7 @@
73526
73530
  return _this;
73527
73531
  }
73528
73532
  CheckboxListBridge.prototype.getDesiredSize = function (a, b) {
73529
- return this.t.view.getDesiredSize();
73533
+ return this.t.getDesiredSize();
73530
73534
  };
73531
73535
  CheckboxListBridge.prototype.addHandler = function (a, b, c, d) {
73532
73536
  var e = a;
@@ -73569,7 +73573,6 @@
73569
73573
  }
73570
73574
  };
73571
73575
  CheckboxListBridge.prototype.aa = function (a, b) {
73572
- var c = a;
73573
73576
  if (this.u != null) {
73574
73577
  this.u(this.x, ((function () {
73575
73578
  var $ret = new igniteuiWebcomponentsCore.NativeUICheckboxListChangeEventArgs();
@@ -73581,7 +73584,6 @@
73581
73584
  }
73582
73585
  };
73583
73586
  CheckboxListBridge.prototype.ab = function (a, b) {
73584
- var c = a;
73585
73587
  if (this.v != null) {
73586
73588
  this.v(this.y, ((function () {
73587
73589
  var $ret = new igniteuiWebcomponentsCore.NativeUICheckboxListChangeEventArgs();
@@ -73593,7 +73595,6 @@
73593
73595
  }
73594
73596
  };
73595
73597
  CheckboxListBridge.prototype.ac = function (a, b) {
73596
- var c = a;
73597
73598
  if (this.w != null) {
73598
73599
  this.w(this.z, ((function () {
73599
73600
  var $ret = new igniteuiWebcomponentsCore.NativeUICheckboxListChangeEventArgs();
@@ -92194,17 +92195,6 @@
92194
92195
  */
92195
92196
  var CheckboxListExternal_$type = /*@__PURE__*/ new igniteuiWebcomponentsCore.Type(null, 'CheckboxListExternal');
92196
92197
 
92197
- /*
92198
- THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
92199
- https://www.infragistics.com/legal/license/igultimate-la
92200
- https://www.infragistics.com/legal/license/igultimate-eula
92201
- 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.
92202
- */
92203
- /**
92204
- * @hidden
92205
- */
92206
- var CheckboxListViewExternal_$type = /*@__PURE__*/ new igniteuiWebcomponentsCore.Type(null, 'CheckboxListViewExternal');
92207
-
92208
92198
  /*
92209
92199
  THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
92210
92200
  https://www.infragistics.com/legal/license/igultimate-la
@@ -99563,7 +99553,6 @@
99563
99553
  exports.CheckboxListIndexType = CheckboxListIndexType;
99564
99554
  exports.CheckboxListIndexType_$type = CheckboxListIndexType_$type;
99565
99555
  exports.CheckboxListView = CheckboxListView;
99566
- exports.CheckboxListViewExternal_$type = CheckboxListViewExternal_$type;
99567
99556
  exports.CheckedChangedEventArgs = CheckedChangedEventArgs;
99568
99557
  exports.CloneDataSourceFilterOperation = CloneDataSourceFilterOperation;
99569
99558
  exports.CloneDataSourceFilterOperation_$type = CloneDataSourceFilterOperation_$type;