igniteui-webcomponents-grids 5.1.1-beta.2 → 5.2.0-beta.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.
- package/bundles/igniteui-webcomponents-grids.umd.js +10 -6
- package/bundles/igniteui-webcomponents-grids.umd.min.js +1 -1
- package/esm2015/lib/CheckboxListView_combined.js +4 -4
- package/esm2015/lib/ColumnFilterCondition_combined.js +4 -0
- package/esm2015/lib/igc-definition-base-component.js +1 -1
- package/esm2015/lib/igc-grid-conditional-style-component.js +1 -1
- package/esm5/lib/CheckboxListView_combined.js +4 -4
- package/esm5/lib/ColumnFilterCondition_combined.js +4 -0
- package/esm5/lib/igc-definition-base-component.js +1 -1
- package/esm5/lib/igc-grid-conditional-style-component.js +1 -1
- package/fesm2015/igniteui-webcomponents-grids.js +10 -6
- package/fesm5/igniteui-webcomponents-grids.js +10 -6
- package/grids/combined.js +485 -478
- package/grids/styles.css +1 -1
- package/grids/themes/dark/bootstrap.css +1 -1
- package/grids/themes/dark/fluent.css +1 -1
- package/grids/themes/dark/indigo.css +1 -1
- package/grids/themes/dark/material.css +1 -1
- package/grids/themes/light/bootstrap.css +1 -1
- package/grids/themes/light/fluent.css +1 -1
- package/grids/themes/light/indigo.css +1 -1
- package/grids/themes/light/material.css +1 -1
- package/package.json +4 -4
|
@@ -34405,8 +34405,10 @@
|
|
|
34405
34405
|
b.paddingLeft = 0;
|
|
34406
34406
|
b.showArrowIcon = false;
|
|
34407
34407
|
b.density = 4;
|
|
34408
|
+
b.subPanelRowHeight = 32;
|
|
34408
34409
|
var c = new igniteuiWebcomponentsCore.ToolActionGroupHeaderInfo();
|
|
34409
34410
|
c.name = "DataGridColumnHeader";
|
|
34411
|
+
c.height = 46;
|
|
34410
34412
|
c.contextBindings = [((function () {
|
|
34411
34413
|
var $ret = new igniteuiWebcomponentsCore.ToolContextBindingInfo();
|
|
34412
34414
|
$ret.contextKey = "GridColumnOptionsColumnName";
|
|
@@ -34680,6 +34682,8 @@
|
|
|
34680
34682
|
w.title = this.am("Cancel", "Cancel");
|
|
34681
34683
|
w.closeOnExecute = true;
|
|
34682
34684
|
u.actions = [v, w];
|
|
34685
|
+
u.height = 42;
|
|
34686
|
+
u.subPanelRowHeight = 42;
|
|
34683
34687
|
t.add(u);
|
|
34684
34688
|
b.actions = t.toArray();
|
|
34685
34689
|
b.name = "DataGridColumnOptions";
|
|
@@ -47224,7 +47228,7 @@
|
|
|
47224
47228
|
childList: true
|
|
47225
47229
|
});
|
|
47226
47230
|
}
|
|
47227
|
-
this._propertiesAdapter = new igniteuiWebcomponentsCore.CollectionAdapter(
|
|
47231
|
+
this._propertiesAdapter = new igniteuiWebcomponentsCore.CollectionAdapter(this.contentProperties, this.i.properties, this.actualProperties, function (c) { return c.i; }, function (i) {
|
|
47228
47232
|
if (_this._initializeElement) {
|
|
47229
47233
|
_this._initializeElement(i);
|
|
47230
47234
|
}
|
|
@@ -47770,7 +47774,7 @@
|
|
|
47770
47774
|
childList: true
|
|
47771
47775
|
});
|
|
47772
47776
|
}
|
|
47773
|
-
this._conditionalStylesAdapter = new igniteuiWebcomponentsCore.CollectionAdapter(
|
|
47777
|
+
this._conditionalStylesAdapter = new igniteuiWebcomponentsCore.CollectionAdapter(this.contentConditionalStyles, this.i.conditionalStyles, this.actualConditionalStyles, function (c) { return c.i; }, function (i) {
|
|
47774
47778
|
if (_this._initializeElement) {
|
|
47775
47779
|
_this._initializeElement(i);
|
|
47776
47780
|
}
|
|
@@ -77566,8 +77570,8 @@
|
|
|
77566
77570
|
b += 4;
|
|
77567
77571
|
var d = this.b.f != null ? this.b.f.actualRowHeight : 30;
|
|
77568
77572
|
var e = d * c;
|
|
77569
|
-
if (e >
|
|
77570
|
-
b +=
|
|
77573
|
+
if (e > 90) {
|
|
77574
|
+
b += 90;
|
|
77571
77575
|
b += 15;
|
|
77572
77576
|
}
|
|
77573
77577
|
else {
|
|
@@ -78697,8 +78701,8 @@
|
|
|
78697
78701
|
var c = this.f != null ? this.f.actualRowHeight : 30;
|
|
78698
78702
|
var d = (this.itemsSource.length);
|
|
78699
78703
|
var e = c * d;
|
|
78700
|
-
if (e >
|
|
78701
|
-
b +=
|
|
78704
|
+
if (e > 90) {
|
|
78705
|
+
b += 90;
|
|
78702
78706
|
b += 15;
|
|
78703
78707
|
}
|
|
78704
78708
|
else {
|