igniteui-webcomponents-grids 5.1.1-beta.0 → 5.1.1-beta.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.
- package/bundles/igniteui-webcomponents-grids.umd.js +5 -1
- package/bundles/igniteui-webcomponents-grids.umd.min.js +1 -1
- package/esm2015/lib/NativeUIGridFactory.js +5 -1
- package/esm5/lib/NativeUIGridFactory.js +5 -1
- package/fesm2015/igniteui-webcomponents-grids.js +5 -1
- package/fesm5/igniteui-webcomponents-grids.js +5 -1
- package/grids/combined.js +8624 -8608
- 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
|
@@ -53095,12 +53095,16 @@
|
|
|
53095
53095
|
NativeUIGridFactory.prototype.d = function (a, b) {
|
|
53096
53096
|
var c = a;
|
|
53097
53097
|
var d = c.createElement("div");
|
|
53098
|
+
d.setStyleProperty("width", "100%");
|
|
53099
|
+
d.setStyleProperty("height", "100%");
|
|
53098
53100
|
c.getPortal(d, "CheckboxList", function (e) {
|
|
53099
53101
|
var comp_ = e.componentRef;
|
|
53102
|
+
comp_.width = '100%';
|
|
53103
|
+
comp_.height = '100%';
|
|
53100
53104
|
var f = (comp_.i);
|
|
53101
53105
|
var g = new CheckboxListBridge(f);
|
|
53102
53106
|
var h = new igniteuiWebcomponentsCore.NativeUICheckboxList();
|
|
53103
|
-
h.an = d
|
|
53107
|
+
h.an = d;
|
|
53104
53108
|
h.d = g;
|
|
53105
53109
|
b(h);
|
|
53106
53110
|
}, false);
|