barsa-novin-ray-core 2.3.65 → 2.3.66
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.
|
@@ -12955,6 +12955,9 @@ class RootPortalComponent extends PageBaseComponent {
|
|
|
12955
12955
|
this._portalService.rtl$.subscribe((c) => {
|
|
12956
12956
|
this._dir = c ? 'rtl' : 'ltr';
|
|
12957
12957
|
});
|
|
12958
|
+
this._portalService.deviceSize$.subscribe((c) => {
|
|
12959
|
+
this._deviceSize = c;
|
|
12960
|
+
});
|
|
12958
12961
|
// this.inLocalMode = true;
|
|
12959
12962
|
this._router.events.subscribe((event) => {
|
|
12960
12963
|
if (event instanceof NavigationStart && event instanceof RouterEvent) {
|
|
@@ -13024,7 +13027,7 @@ class RootPortalComponent extends PageBaseComponent {
|
|
|
13024
13027
|
}
|
|
13025
13028
|
}
|
|
13026
13029
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: RootPortalComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
13027
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.6", type: RootPortalComponent, isStandalone: false, selector: "bnrc-root-portal", host: { properties: { "attr.dir": "this._dir" } }, viewQueries: [{ propertyName: "sectionRef", first: true, predicate: ["sectionRef"], descendants: true }, { propertyName: "footerRefVcr", first: true, predicate: ["footerRef"], descendants: true, read: ViewContainerRef }], usesInheritance: true, ngImport: i0, template: `
|
|
13030
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.6", type: RootPortalComponent, isStandalone: false, selector: "bnrc-root-portal", host: { properties: { "attr.dir": "this._dir", "attr.devicesize": "this._deviceSize" } }, viewQueries: [{ propertyName: "sectionRef", first: true, predicate: ["sectionRef"], descendants: true }, { propertyName: "footerRefVcr", first: true, predicate: ["footerRef"], descendants: true, read: ViewContainerRef }], usesInheritance: true, ngImport: i0, template: `
|
|
13028
13031
|
<div
|
|
13029
13032
|
class="tw-hidden grid-cols-0 tw-grid-cols-1 tw-grid-cols-2 tw-grid-cols-3 tw-grid-cols-4 tw-grid-cols-5
|
|
13030
13033
|
tw-grid-cols-6 tw-grid-cols-7 tw-grid-cols-8 tw-grid-cols-9 tw-grid-cols-10 tw-grid-cols-11 tw-grid-cols-12"
|
|
@@ -13175,6 +13178,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImpor
|
|
|
13175
13178
|
}], _dir: [{
|
|
13176
13179
|
type: HostBinding,
|
|
13177
13180
|
args: ['attr.dir']
|
|
13181
|
+
}], _deviceSize: [{
|
|
13182
|
+
type: HostBinding,
|
|
13183
|
+
args: ['attr.devicesize']
|
|
13178
13184
|
}] } });
|
|
13179
13185
|
|
|
13180
13186
|
class AnchorScrollDirective {
|