igniteui-webcomponents-grids 5.0.0-beta.0 → 5.0.0-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/grids/combined.js +2 -6
- package/package.json +4 -4
package/grids/combined.js
CHANGED
|
@@ -16831,12 +16831,8 @@ var Yt = (() => {
|
|
|
16831
16831
|
this._filled = e;
|
|
16832
16832
|
}
|
|
16833
16833
|
ngAfterViewChecked() {
|
|
16834
|
-
|
|
16835
|
-
|
|
16836
|
-
e && Promise.resolve().then(() => {
|
|
16837
|
-
this._theme$.next(e), this.cdr.markForCheck();
|
|
16838
|
-
});
|
|
16839
|
-
}
|
|
16834
|
+
let e = this.themeService.getComponentTheme(this.element);
|
|
16835
|
+
e && (this._theme$.next(e), this.cdr.markForCheck());
|
|
16840
16836
|
}
|
|
16841
16837
|
ngOnDestroy() {
|
|
16842
16838
|
this._subscription.unsubscribe();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "igniteui-webcomponents-grids",
|
|
3
|
-
"version": "5.0.0-beta.
|
|
3
|
+
"version": "5.0.0-beta.1",
|
|
4
4
|
"description": "Ignite UI Web Components grid components.",
|
|
5
5
|
"homepage": "https://github.com/IgniteUI/igniteui-webcomponents-grids",
|
|
6
6
|
"keywords": [
|
|
@@ -18,9 +18,9 @@
|
|
|
18
18
|
"tslib": "^2.3.1"
|
|
19
19
|
},
|
|
20
20
|
"peerDependencies": {
|
|
21
|
-
"igniteui-webcomponents-core": "5.0.0-beta.
|
|
22
|
-
"igniteui-webcomponents-layouts": "5.0.0-beta.
|
|
23
|
-
"igniteui-webcomponents-inputs": "5.0.0-beta.
|
|
21
|
+
"igniteui-webcomponents-core": "5.0.0-beta.1",
|
|
22
|
+
"igniteui-webcomponents-layouts": "5.0.0-beta.1",
|
|
23
|
+
"igniteui-webcomponents-inputs": "5.0.0-beta.1"
|
|
24
24
|
},
|
|
25
25
|
"sideEffects": [
|
|
26
26
|
"./grids/combined.js"
|