@webilix/ngx-helper-m3
Version:
Helper library for Angular and Material 3
27 lines (26 loc) • 1.34 kB
TypeScript
import { OnChanges, OnInit, SimpleChanges } from '@angular/core';
import { INgxHelperConfig } from '../../../ngx-helper.config';
import { ComponentService } from '../../component.service';
import * as i0 from "@angular/core";
export declare class NgxHelperSectionColumnComponent implements OnInit, OnChanges {
private readonly componentService;
private readonly config?;
flexStyle: string;
widthStyle: string;
stickyPosition: string;
stickyZIndex: string;
stickyTop: string;
flex?: number;
width?: string;
sticky?: boolean | 'DESKTOP' | 'MOBILE';
zIndex?: number;
private componentConfig;
private isMobile;
constructor(componentService: ComponentService, config?: Partial<INgxHelperConfig> | undefined);
ngOnInit(): void;
ngOnChanges(changes: SimpleChanges): void;
onResize(): void;
setPosition(): void;
static ɵfac: i0.ɵɵFactoryDeclaration<NgxHelperSectionColumnComponent, [null, { optional: true; }]>;
static ɵcmp: i0.ɵɵComponentDeclaration<NgxHelperSectionColumnComponent, "ngx-helper-section-column", never, { "flex": { "alias": "flex"; "required": false; }; "width": { "alias": "width"; "required": false; }; "sticky": { "alias": "sticky"; "required": false; }; "zIndex": { "alias": "zIndex"; "required": false; }; }, {}, never, ["*"], true, never>;
}