simpo-component-library 3.6.828 → 3.6.830
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/esm2022/lib/directive/image-editor.directive.mjs +1 -1
- package/esm2022/lib/ecommerce/sections/featured-products/featured-products.component.mjs +3 -3
- package/esm2022/lib/sections/banner-grid-section/banner-grid-section.component.mjs +3 -3
- package/esm2022/lib/sections/footer/footer.component.mjs +3 -3
- package/esm2022/lib/sections/header-section/header-section.component.mjs +35 -8
- package/esm2022/lib/sections/image-carousel-section/image-carousel-section.component.mjs +4 -4
- package/esm2022/lib/sections/product-info-section/product-info-section.component.mjs +3 -3
- package/fesm2022/simpo-component-library.mjs +45 -18
- package/fesm2022/simpo-component-library.mjs.map +1 -1
- package/lib/sections/header-section/header-section.component.d.ts +5 -1
- package/package.json +1 -1
- package/simpo-component-library-3.6.830.tgz +0 -0
- package/simpo-component-library-3.6.828.tgz +0 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AfterViewInit, OnDestroy, OnInit } from '@angular/core';
|
|
1
|
+
import { AfterViewInit, ElementRef, OnDestroy, OnInit } from '@angular/core';
|
|
2
2
|
import { HeaderContentModel, HeaderSectionModel, HeaderStyleModel } from './header-section.model';
|
|
3
3
|
import { EventsService } from './../../services/events.service';
|
|
4
4
|
import { ActionModel, LayOutModel } from '../../styles/style.model';
|
|
@@ -27,11 +27,15 @@ export declare class HeaderSectionComponent implements OnInit, AfterViewInit, On
|
|
|
27
27
|
customClass?: string;
|
|
28
28
|
edit?: boolean;
|
|
29
29
|
childContainer: any;
|
|
30
|
+
mobileOffcanvas?: ElementRef<HTMLElement>;
|
|
30
31
|
private resizeObserver?;
|
|
31
32
|
private queryParamSubscription?;
|
|
32
33
|
private routerSubscription?;
|
|
33
34
|
private isBrowser;
|
|
34
35
|
scrollValue: number;
|
|
36
|
+
isOffcanvasOpen: boolean;
|
|
37
|
+
private offcanvasShownHandler?;
|
|
38
|
+
private offcanvasHiddenHandler?;
|
|
35
39
|
content?: HeaderContentModel | any;
|
|
36
40
|
style?: HeaderStyleModel;
|
|
37
41
|
action?: ActionModel;
|
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|