@webilix/ngx-helper-m3 0.0.15 → 0.0.16
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/fesm2022/webilix-ngx-helper-m3.mjs +198 -135
- package/fesm2022/webilix-ngx-helper-m3.mjs.map +1 -1
- package/lib/components/section/column/ngx-helper-section-column.component.d.ts +16 -3
- package/lib/directives/ngx-helper-sticky.directive.d.ts +19 -0
- package/ngx-helper-m3.css +0 -1
- package/package.json +1 -1
- package/public-api.d.ts +9 -9
- package/lib/components/section/ngx-helper-section-sticky.directive.d.ts +0 -18
@@ -1,12 +1,25 @@
|
|
1
1
|
import { OnChanges, SimpleChanges } from '@angular/core';
|
2
|
+
import { INgxHelperConfig } from '../../../ngx-helper.config';
|
3
|
+
import { ComponentService } from '../../component.service';
|
2
4
|
import * as i0 from "@angular/core";
|
3
5
|
export declare class NgxHelperSectionColumnComponent implements OnChanges {
|
6
|
+
private readonly componentService;
|
7
|
+
private readonly config?;
|
4
8
|
flexStyle: string;
|
5
9
|
widthStyle: string;
|
10
|
+
stickyPosition: string;
|
11
|
+
stickyZIndex: string;
|
12
|
+
stickyTop: string;
|
6
13
|
flex?: number;
|
7
14
|
width?: string;
|
8
|
-
sticky?: '
|
15
|
+
sticky?: boolean | 'DESKTOP' | 'MOBILE';
|
16
|
+
zIndex?: number;
|
17
|
+
private componentConfig;
|
18
|
+
private isMobile;
|
19
|
+
constructor(componentService: ComponentService, config?: Partial<INgxHelperConfig> | undefined);
|
9
20
|
ngOnChanges(changes: SimpleChanges): void;
|
10
|
-
|
11
|
-
|
21
|
+
onResize(): void;
|
22
|
+
setPosition(): void;
|
23
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NgxHelperSectionColumnComponent, [null, { optional: true; }]>;
|
24
|
+
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>;
|
12
25
|
}
|
@@ -0,0 +1,19 @@
|
|
1
|
+
import { ElementRef, OnInit } from '@angular/core';
|
2
|
+
import { INgxHelperConfig } from '../ngx-helper.config';
|
3
|
+
import * as i0 from "@angular/core";
|
4
|
+
export declare class NgxHelperStickyDirective implements OnInit {
|
5
|
+
private readonly elementRef;
|
6
|
+
private readonly config?;
|
7
|
+
ngxHelperSticky: 'TOP' | 'BOTTOM';
|
8
|
+
stickyIn: 'ALWAYS' | 'DESKTOP' | 'MOBILE';
|
9
|
+
zIndex?: number;
|
10
|
+
private mobileWidth;
|
11
|
+
private stickyView;
|
12
|
+
private isMobile;
|
13
|
+
constructor(elementRef: ElementRef, config?: Partial<INgxHelperConfig> | undefined);
|
14
|
+
ngOnInit(): void;
|
15
|
+
onResize(): void;
|
16
|
+
setPosition(): void;
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NgxHelperStickyDirective, [null, { optional: true; }]>;
|
18
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<NgxHelperStickyDirective, "[ngxHelperSticky]", never, { "ngxHelperSticky": { "alias": "ngxHelperSticky"; "required": true; }; "stickyIn": { "alias": "stickyIn"; "required": false; }; "zIndex": { "alias": "zIndex"; "required": false; }; }, {}, never, never, true, never>;
|
19
|
+
}
|
package/ngx-helper-m3.css
CHANGED
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
@@ -7,13 +7,21 @@ export * from './lib/components/loader/ngx-helper-loader.component';
|
|
7
7
|
export * from './lib/components/page-group/ngx-helper-page-group.component';
|
8
8
|
export * from './lib/components/page-group/ngx-helper-page-group.interface';
|
9
9
|
export * from './lib/components/progress/ngx-helper-progress.component';
|
10
|
-
export * from './lib/components/section/ngx-helper-section-sticky.directive';
|
11
10
|
export * from './lib/components/section/ngx-helper-section.component';
|
12
11
|
export * from './lib/components/section/column/ngx-helper-section-column.component';
|
13
12
|
export * from './lib/components/value/box/ngx-helper-value-box.component';
|
14
13
|
export * from './lib/components/value/list/ngx-helper-value-list.component';
|
15
14
|
export * from './lib/components/value/ngx-helper-value.interface';
|
16
15
|
export * from './lib/components/value/ngx-helper-value.pipe';
|
16
|
+
export * from './lib/confirm/confirm.interface';
|
17
|
+
export * from './lib/confirm/confirm.service';
|
18
|
+
export * from './lib/container/container.interface';
|
19
|
+
export * from './lib/container/container.service';
|
20
|
+
export * from './lib/http/ngx-helper-http.interface';
|
21
|
+
export * from './lib/http/ngx-helper-http.service';
|
22
|
+
export * from './lib/toast/ngx-helper-toast.interface';
|
23
|
+
export * from './lib/toast/ngx-helper-toast.service';
|
24
|
+
export * from './lib/directives/ngx-helper-sticky.directive';
|
17
25
|
export * from './lib/pipes/bank-card.pipe';
|
18
26
|
export * from './lib/pipes/date.pipe';
|
19
27
|
export * from './lib/pipes/duration.pipe';
|
@@ -26,11 +34,3 @@ export * from './lib/pipes/price.pipe';
|
|
26
34
|
export * from './lib/pipes/safe.pipe';
|
27
35
|
export * from './lib/pipes/volume.pipe';
|
28
36
|
export * from './lib/pipes/weight.pipe';
|
29
|
-
export * from './lib/confirm/confirm.interface';
|
30
|
-
export * from './lib/confirm/confirm.service';
|
31
|
-
export * from './lib/container/container.interface';
|
32
|
-
export * from './lib/container/container.service';
|
33
|
-
export * from './lib/http/ngx-helper-http.interface';
|
34
|
-
export * from './lib/http/ngx-helper-http.service';
|
35
|
-
export * from './lib/toast/ngx-helper-toast.interface';
|
36
|
-
export * from './lib/toast/ngx-helper-toast.service';
|
@@ -1,18 +0,0 @@
|
|
1
|
-
import { ElementRef, OnInit } from '@angular/core';
|
2
|
-
import { INgxHelperConfig } from '../../ngx-helper.config';
|
3
|
-
import * as i0 from "@angular/core";
|
4
|
-
export declare class NgxHelperSectionStickyDirective implements OnInit {
|
5
|
-
private readonly elementRef;
|
6
|
-
private readonly config?;
|
7
|
-
ngxHelperSectionSticky: 'TOP' | 'BOTTOM';
|
8
|
-
ngxHelperSectionZIndex?: number;
|
9
|
-
private componentService;
|
10
|
-
private componentConfig;
|
11
|
-
private isMobile;
|
12
|
-
constructor(elementRef: ElementRef, config?: Partial<INgxHelperConfig> | undefined);
|
13
|
-
ngOnInit(): void;
|
14
|
-
onResize(): void;
|
15
|
-
setPosition(): void;
|
16
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<NgxHelperSectionStickyDirective, [null, { optional: true; }]>;
|
17
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<NgxHelperSectionStickyDirective, "[ngxHelperSectionSticky]", never, { "ngxHelperSectionSticky": { "alias": "ngxHelperSectionSticky"; "required": true; }; "ngxHelperSectionZIndex": { "alias": "ngxHelperSectionZIndex"; "required": false; }; }, {}, never, never, true, never>;
|
18
|
-
}
|