ngx-sfc-common 0.0.0-watch
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/README.md +644 -0
- package/esm2020/lib/components/button/button-type.enum.mjs +9 -0
- package/esm2020/lib/components/button/button.component.mjs +44 -0
- package/esm2020/lib/components/checkmark/checkmark-type.enum.mjs +7 -0
- package/esm2020/lib/components/checkmark/checkmark.component.mjs +39 -0
- package/esm2020/lib/components/close/close.component.mjs +16 -0
- package/esm2020/lib/components/delimeter/delimeter.component.mjs +28 -0
- package/esm2020/lib/components/dots/dots.component.mjs +30 -0
- package/esm2020/lib/components/hamburger/default/hamburger.component.mjs +12 -0
- package/esm2020/lib/components/hamburger/hamburger-base.component.mjs +23 -0
- package/esm2020/lib/components/hamburger/menu/hamburger-menu.component.mjs +18 -0
- package/esm2020/lib/components/icon/icon.component.mjs +21 -0
- package/esm2020/lib/components/index.mjs +34 -0
- package/esm2020/lib/components/load-container/load-container.component.mjs +180 -0
- package/esm2020/lib/components/load-container/load-container.constants.mjs +5 -0
- package/esm2020/lib/components/load-container/load-container.enum.mjs +11 -0
- package/esm2020/lib/components/load-container/models/load-container.model.mjs +2 -0
- package/esm2020/lib/components/load-container/models/load-more-parameters.model.mjs +2 -0
- package/esm2020/lib/components/load-container/models/load-more-predicate-parameters.model.mjs +2 -0
- package/esm2020/lib/components/load-container/models/load-more.model.mjs +2 -0
- package/esm2020/lib/components/load-container/service/load-more.service.mjs +27 -0
- package/esm2020/lib/components/load-more-button/load-more-button.component.mjs +31 -0
- package/esm2020/lib/components/loader/bounce/bounce-loader.component.mjs +13 -0
- package/esm2020/lib/components/loader/circle/circle-loader-type.enum.mjs +6 -0
- package/esm2020/lib/components/loader/circle/circle-loader.component.mjs +20 -0
- package/esm2020/lib/components/loader/loader-base.component.mjs +51 -0
- package/esm2020/lib/components/loader/loader.constants.mjs +6 -0
- package/esm2020/lib/components/loader/loader.event.mjs +2 -0
- package/esm2020/lib/components/loader/service/loader.service.mjs +76 -0
- package/esm2020/lib/components/modal/directive/click/modal-open-on-click.directive.mjs +50 -0
- package/esm2020/lib/components/modal/directive/open/modal-open.directive.mjs +28 -0
- package/esm2020/lib/components/modal/footer/default/default-modal-footer.component.mjs +60 -0
- package/esm2020/lib/components/modal/footer/default/default-modal-footer.model.mjs +2 -0
- package/esm2020/lib/components/modal/header/default/default-modal-header.component.mjs +38 -0
- package/esm2020/lib/components/modal/header/default/default-modal-header.model.mjs +2 -0
- package/esm2020/lib/components/modal/modal-template.enum.mjs +7 -0
- package/esm2020/lib/components/modal/modal.component.mjs +103 -0
- package/esm2020/lib/components/modal/service/modal.event.mjs +2 -0
- package/esm2020/lib/components/modal/service/modal.service.mjs +31 -0
- package/esm2020/lib/components/pagination/models/pagination-view.model.mjs +2 -0
- package/esm2020/lib/components/pagination/pagination.component.mjs +104 -0
- package/esm2020/lib/components/pagination/pagination.constants.mjs +6 -0
- package/esm2020/lib/components/pagination/service/pagination.event.mjs +2 -0
- package/esm2020/lib/components/pagination/service/pagination.service.mjs +47 -0
- package/esm2020/lib/components/sorting/service/sorting.event.mjs +2 -0
- package/esm2020/lib/components/sorting/service/sorting.service.mjs +21 -0
- package/esm2020/lib/components/sorting/sorting.component.mjs +71 -0
- package/esm2020/lib/components/sorting/sorting.constants.mjs +6 -0
- package/esm2020/lib/components/sorting/sorting.model.mjs +2 -0
- package/esm2020/lib/components/template-content/template-content.component.mjs +31 -0
- package/esm2020/lib/components/toggle-switcher/toggle-switcher.component.mjs +38 -0
- package/esm2020/lib/components/toggle-switcher/toggle-switcher.model.mjs +2 -0
- package/esm2020/lib/components/tooltip/tooltip-type.enum.mjs +6 -0
- package/esm2020/lib/components/tooltip/tooltip.component.mjs +69 -0
- package/esm2020/lib/constants/common.constants.mjs +9 -0
- package/esm2020/lib/constants/date-time.constants.mjs +10 -0
- package/esm2020/lib/constants/file.constants.mjs +2 -0
- package/esm2020/lib/constants/index.mjs +4 -0
- package/esm2020/lib/constants/ui.constants.mjs +23 -0
- package/esm2020/lib/directives/click-outside/click-outside.directive.mjs +63 -0
- package/esm2020/lib/directives/click-outside/click-outside.event.mjs +2 -0
- package/esm2020/lib/directives/component-size/component-size.directive.mjs +59 -0
- package/esm2020/lib/directives/destroy-parent/destroy-parent.directive.mjs +27 -0
- package/esm2020/lib/directives/dom-changes/dom-changes.directive.mjs +32 -0
- package/esm2020/lib/directives/if/if.directive.mjs +26 -0
- package/esm2020/lib/directives/image-size/image-load.directive.mjs +41 -0
- package/esm2020/lib/directives/image-size/services/image-load.event.mjs +2 -0
- package/esm2020/lib/directives/image-size/services/image-load.service.mjs +22 -0
- package/esm2020/lib/directives/image-size/services/image-size.model.mjs +2 -0
- package/esm2020/lib/directives/index.mjs +14 -0
- package/esm2020/lib/directives/mouse-down/mouse-down.directive.mjs +37 -0
- package/esm2020/lib/directives/scroll-into-view/scroll-into-view.directive.mjs +39 -0
- package/esm2020/lib/directives/scroll-tracker/scroll-tracker.directive.mjs +39 -0
- package/esm2020/lib/directives/show-hide-element/show-hide-element.directive.mjs +42 -0
- package/esm2020/lib/directives/template-reference/template-reference.directive.mjs +23 -0
- package/esm2020/lib/directives/throw-element-on-hover/throw-element-on-hover.directive.mjs +38 -0
- package/esm2020/lib/enums/direction.enum.mjs +9 -0
- package/esm2020/lib/enums/index.mjs +9 -0
- package/esm2020/lib/enums/media.enum.mjs +13 -0
- package/esm2020/lib/enums/position.enum.mjs +12 -0
- package/esm2020/lib/enums/sequence.enum.mjs +9 -0
- package/esm2020/lib/enums/size.enum.mjs +11 -0
- package/esm2020/lib/enums/sorting-direction.enum.mjs +9 -0
- package/esm2020/lib/enums/theme.enum.mjs +9 -0
- package/esm2020/lib/enums/ui.enum.mjs +30 -0
- package/esm2020/lib/models/class.model.mjs +2 -0
- package/esm2020/lib/models/index.mjs +2 -0
- package/esm2020/lib/ngx-sfc-common.module.mjs +190 -0
- package/esm2020/lib/pipes/index.mjs +2 -0
- package/esm2020/lib/pipes/switch-multi-case/switch-multi-case.pipe.mjs +16 -0
- package/esm2020/lib/services/document-ref.service.mjs +71 -0
- package/esm2020/lib/services/index.mjs +4 -0
- package/esm2020/lib/services/resize.service.mjs +42 -0
- package/esm2020/lib/services/window-ref.service.mjs +70 -0
- package/esm2020/lib/utils/collections.utils.mjs +280 -0
- package/esm2020/lib/utils/common.utils.mjs +184 -0
- package/esm2020/lib/utils/date-time.utils.mjs +265 -0
- package/esm2020/lib/utils/file.utils.mjs +53 -0
- package/esm2020/lib/utils/index.mjs +7 -0
- package/esm2020/lib/utils/string.utils.mjs +31 -0
- package/esm2020/lib/utils/ui.utils.mjs +90 -0
- package/esm2020/ngx-sfc-common.mjs +5 -0
- package/esm2020/public-api.mjs +12 -0
- package/fesm2015/ngx-sfc-common.mjs +3097 -0
- package/fesm2015/ngx-sfc-common.mjs.map +1 -0
- package/fesm2020/ngx-sfc-common.mjs +3088 -0
- package/fesm2020/ngx-sfc-common.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/lib/components/button/button-type.enum.d.ts +7 -0
- package/lib/components/button/button.component.d.ts +16 -0
- package/lib/components/checkmark/checkmark-type.enum.d.ts +5 -0
- package/lib/components/checkmark/checkmark.component.d.ts +11 -0
- package/lib/components/close/close.component.d.ts +6 -0
- package/lib/components/delimeter/delimeter.component.d.ts +9 -0
- package/lib/components/dots/dots.component.d.ts +9 -0
- package/lib/components/hamburger/default/hamburger.component.d.ts +6 -0
- package/lib/components/hamburger/hamburger-base.component.d.ts +7 -0
- package/lib/components/hamburger/menu/hamburger-menu.component.d.ts +7 -0
- package/lib/components/icon/icon.component.d.ts +9 -0
- package/lib/components/index.d.ts +44 -0
- package/lib/components/load-container/load-container.component.d.ts +50 -0
- package/lib/components/load-container/load-container.constants.d.ts +4 -0
- package/lib/components/load-container/load-container.enum.d.ts +8 -0
- package/lib/components/load-container/models/load-container.model.d.ts +14 -0
- package/lib/components/load-container/models/load-more-parameters.model.d.ts +5 -0
- package/lib/components/load-container/models/load-more-predicate-parameters.model.d.ts +3 -0
- package/lib/components/load-container/models/load-more.model.d.ts +5 -0
- package/lib/components/load-container/service/load-more.service.d.ts +12 -0
- package/lib/components/load-more-button/load-more-button.component.d.ts +12 -0
- package/lib/components/loader/bounce/bounce-loader.component.d.ts +6 -0
- package/lib/components/loader/circle/circle-loader-type.enum.d.ts +4 -0
- package/lib/components/loader/circle/circle-loader.component.d.ts +8 -0
- package/lib/components/loader/loader-base.component.d.ts +27 -0
- package/lib/components/loader/loader.constants.d.ts +5 -0
- package/lib/components/loader/loader.event.d.ts +4 -0
- package/lib/components/loader/service/loader.service.d.ts +33 -0
- package/lib/components/modal/directive/click/modal-open-on-click.directive.d.ts +17 -0
- package/lib/components/modal/directive/open/modal-open.directive.d.ts +13 -0
- package/lib/components/modal/footer/default/default-modal-footer.component.d.ts +19 -0
- package/lib/components/modal/footer/default/default-modal-footer.model.d.ts +8 -0
- package/lib/components/modal/header/default/default-modal-header.component.d.ts +16 -0
- package/lib/components/modal/header/default/default-modal-header.model.d.ts +6 -0
- package/lib/components/modal/modal-template.enum.d.ts +5 -0
- package/lib/components/modal/modal.component.d.ts +26 -0
- package/lib/components/modal/service/modal.event.d.ts +4 -0
- package/lib/components/modal/service/modal.service.d.ts +13 -0
- package/lib/components/pagination/models/pagination-view.model.d.ts +12 -0
- package/lib/components/pagination/pagination.component.d.ts +31 -0
- package/lib/components/pagination/pagination.constants.d.ts +5 -0
- package/lib/components/pagination/service/pagination.event.d.ts +6 -0
- package/lib/components/pagination/service/pagination.service.d.ts +25 -0
- package/lib/components/sorting/service/sorting.event.d.ts +5 -0
- package/lib/components/sorting/service/sorting.service.d.ts +9 -0
- package/lib/components/sorting/sorting.component.d.ts +22 -0
- package/lib/components/sorting/sorting.constants.d.ts +4 -0
- package/lib/components/sorting/sorting.model.d.ts +12 -0
- package/lib/components/template-content/template-content.component.d.ts +14 -0
- package/lib/components/toggle-switcher/toggle-switcher.component.d.ts +12 -0
- package/lib/components/toggle-switcher/toggle-switcher.model.d.ts +5 -0
- package/lib/components/tooltip/tooltip-type.enum.d.ts +4 -0
- package/lib/components/tooltip/tooltip.component.d.ts +22 -0
- package/lib/constants/common.constants.d.ts +8 -0
- package/lib/constants/date-time.constants.d.ts +9 -0
- package/lib/constants/file.constants.d.ts +1 -0
- package/lib/constants/index.d.ts +4 -0
- package/lib/constants/ui.constants.d.ts +22 -0
- package/lib/directives/click-outside/click-outside.directive.d.ts +23 -0
- package/lib/directives/click-outside/click-outside.event.d.ts +4 -0
- package/lib/directives/component-size/component-size.directive.d.ts +18 -0
- package/lib/directives/destroy-parent/destroy-parent.directive.d.ts +10 -0
- package/lib/directives/dom-changes/dom-changes.directive.d.ts +12 -0
- package/lib/directives/if/if.directive.d.ts +11 -0
- package/lib/directives/image-size/image-load.directive.d.ts +12 -0
- package/lib/directives/image-size/services/image-load.event.d.ts +5 -0
- package/lib/directives/image-size/services/image-load.service.d.ts +10 -0
- package/lib/directives/image-size/services/image-size.model.d.ts +4 -0
- package/lib/directives/index.d.ts +16 -0
- package/lib/directives/mouse-down/mouse-down.directive.d.ts +12 -0
- package/lib/directives/scroll-into-view/scroll-into-view.directive.d.ts +11 -0
- package/lib/directives/scroll-tracker/scroll-tracker.directive.d.ts +11 -0
- package/lib/directives/show-hide-element/show-hide-element.directive.d.ts +13 -0
- package/lib/directives/template-reference/template-reference.directive.d.ts +10 -0
- package/lib/directives/throw-element-on-hover/throw-element-on-hover.directive.d.ts +13 -0
- package/lib/enums/direction.enum.d.ts +7 -0
- package/lib/enums/index.d.ts +8 -0
- package/lib/enums/media.enum.d.ts +11 -0
- package/lib/enums/position.enum.d.ts +10 -0
- package/lib/enums/sequence.enum.d.ts +7 -0
- package/lib/enums/size.enum.d.ts +9 -0
- package/lib/enums/sorting-direction.enum.d.ts +7 -0
- package/lib/enums/theme.enum.d.ts +7 -0
- package/lib/enums/ui.enum.d.ts +27 -0
- package/lib/models/class.model.d.ts +3 -0
- package/lib/models/index.d.ts +1 -0
- package/lib/ngx-sfc-common.module.d.ts +43 -0
- package/lib/pipes/index.d.ts +1 -0
- package/lib/pipes/switch-multi-case/switch-multi-case.pipe.d.ts +7 -0
- package/lib/services/document-ref.service.d.ts +43 -0
- package/lib/services/index.d.ts +3 -0
- package/lib/services/resize.service.d.ts +32 -0
- package/lib/services/window-ref.service.d.ts +43 -0
- package/lib/utils/collections.utils.d.ts +156 -0
- package/lib/utils/common.utils.d.ts +78 -0
- package/lib/utils/date-time.utils.d.ts +164 -0
- package/lib/utils/file.utils.d.ts +25 -0
- package/lib/utils/index.d.ts +6 -0
- package/lib/utils/string.utils.d.ts +19 -0
- package/lib/utils/ui.utils.d.ts +58 -0
- package/package.json +56 -0
- package/public-api.d.ts +8 -0
- package/styles/_colors.scss +48 -0
- package/styles/_index.scss +4 -0
- package/styles/_mixins-delimeter.scss +21 -0
- package/styles/_mixins-scroll.scss +38 -0
- package/styles/_mixins.scss +46 -0
- package/styles/_variables.scss +12 -0
- package/styles/themes/_dark.scss +17 -0
- package/styles/themes/_default.scss +18 -0
- package/styles/themes/_yellow.scss +3 -0
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { QueryList, TemplateRef } from '@angular/core';
|
|
2
|
+
import { TemplateReferenceDirective } from '../../directives';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class TemplateContentComponent {
|
|
5
|
+
contextData?: any;
|
|
6
|
+
referenceContent?: TemplateRef<any>;
|
|
7
|
+
templateType?: string;
|
|
8
|
+
templatesContent: QueryList<TemplateReferenceDirective> | undefined;
|
|
9
|
+
defaultContent?: TemplateRef<any>;
|
|
10
|
+
get showDefault(): boolean;
|
|
11
|
+
get templateContent(): TemplateRef<any> | null;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TemplateContentComponent, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TemplateContentComponent, "sfc-template-content", never, { "contextData": "contextData"; "referenceContent": "referenceContent"; "templateType": "templateType"; "templatesContent": "templatesContent"; "defaultContent": "defaultContent"; }, {}, never, never, false, never>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { IToggleSwitcherModel } from './toggle-switcher.model';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class ToggleSwitcherComponent {
|
|
4
|
+
active: boolean;
|
|
5
|
+
disabled: boolean;
|
|
6
|
+
leftModel: IToggleSwitcherModel;
|
|
7
|
+
rightModel: IToggleSwitcherModel;
|
|
8
|
+
onClick: () => boolean;
|
|
9
|
+
constructor();
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ToggleSwitcherComponent, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ToggleSwitcherComponent, "sfc-toggle-switcher", never, { "active": "active"; "disabled": "disabled"; "leftModel": "leftModel"; "rightModel": "rightModel"; }, {}, never, never, false, never>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { AfterContentInit, OnDestroy, OnInit } from '@angular/core';
|
|
2
|
+
import { Position } from '../../enums';
|
|
3
|
+
import { ResizeService } from '../../services';
|
|
4
|
+
import { TooltipType } from './tooltip-type.enum';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class TooltipComponent implements OnInit, OnDestroy, AfterContentInit {
|
|
7
|
+
private resizeService;
|
|
8
|
+
private window;
|
|
9
|
+
value?: string;
|
|
10
|
+
tooltipType: TooltipType;
|
|
11
|
+
tooltipPosition: Position;
|
|
12
|
+
tooltipShow: boolean;
|
|
13
|
+
click(): void;
|
|
14
|
+
private _position;
|
|
15
|
+
private _resizeSubscription?;
|
|
16
|
+
constructor(resizeService: ResizeService, window: Window);
|
|
17
|
+
ngOnInit(): void;
|
|
18
|
+
ngAfterContentInit(): void;
|
|
19
|
+
ngOnDestroy(): void;
|
|
20
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TooltipComponent, never>;
|
|
21
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TooltipComponent, "[sfc-tooltip]", never, { "value": "sfc-tooltip"; "tooltipType": "tooltipType"; "tooltipPosition": "tooltipPosition"; "tooltipShow": "tooltipShow"; }, {}, never, ["*"], false, never>;
|
|
22
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export declare class DateTimeConstants {
|
|
2
|
+
static DAYS_IN_WEEK: number;
|
|
3
|
+
static HOURS_IN_SHORT_TIME: number;
|
|
4
|
+
static HOURS_IN_TIME: number;
|
|
5
|
+
static MIDNIGHT_HOUR: number;
|
|
6
|
+
static MINUTES_IN_HOUR: number;
|
|
7
|
+
static DAYS_OF_WEEK: string[];
|
|
8
|
+
static DAYS_OF_WEEK_3: string[];
|
|
9
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare type ImageFormat = 'gif' | 'jpeg' | 'jpg' | 'tiff' | 'png' | 'webp' | 'bmp';
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
export declare class UIConstants {
|
|
2
|
+
static CSS_PIXELS: string;
|
|
3
|
+
static CSS_PERCENTAGE: string;
|
|
4
|
+
static CSS_DEGREES: string;
|
|
5
|
+
static CSS_EM: string;
|
|
6
|
+
static CSS_CH: string;
|
|
7
|
+
static CSS_INITIAL: string;
|
|
8
|
+
static CSS_INHERIT: string;
|
|
9
|
+
static CSS_NONE: string;
|
|
10
|
+
static CSS_VISIBILITY_VISIBLE: string;
|
|
11
|
+
static CSS_VISIBILITY_HIDDEN: string;
|
|
12
|
+
static CSS_WIDTH: string;
|
|
13
|
+
static CSS_LEFT: string;
|
|
14
|
+
static CSS_RIGHT: string;
|
|
15
|
+
static CSS_START: string;
|
|
16
|
+
static CSS_END: string;
|
|
17
|
+
static CSS_CENTER: string;
|
|
18
|
+
static CSS_CLASS_FIXED: string;
|
|
19
|
+
static CSS_CLASS_BACKGROUND: string;
|
|
20
|
+
static CSS_CLASS_TOP: string;
|
|
21
|
+
static RGB_OPACITY_PLACEHOLDER: string;
|
|
22
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { AfterViewInit, ElementRef, EventEmitter, OnDestroy } from '@angular/core';
|
|
2
|
+
import { ClickOutsideEvent } from './click-outside.event';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class ClickOutsideDirective implements AfterViewInit, OnDestroy {
|
|
5
|
+
private elementRef;
|
|
6
|
+
private document;
|
|
7
|
+
/**
|
|
8
|
+
* Toggler for checking ouside click event
|
|
9
|
+
*/
|
|
10
|
+
listening: boolean;
|
|
11
|
+
/**
|
|
12
|
+
* Emitter for click event
|
|
13
|
+
*/
|
|
14
|
+
action: EventEmitter<ClickOutsideEvent>;
|
|
15
|
+
private _clickSubscription?;
|
|
16
|
+
constructor(elementRef: ElementRef, document: Document);
|
|
17
|
+
ngAfterViewInit(): void;
|
|
18
|
+
ngOnDestroy(): void;
|
|
19
|
+
private onClick;
|
|
20
|
+
private isDescendant;
|
|
21
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ClickOutsideDirective, never>;
|
|
22
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ClickOutsideDirective, "[sfcClickOutside]", never, { "listening": "sfcClickOutside"; }, { "action": "action"; }, never, never, false, never>;
|
|
23
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { ElementRef } from '@angular/core';
|
|
2
|
+
import { ComponentSize } from '../../enums';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class ComponentSizeDirective {
|
|
5
|
+
private el;
|
|
6
|
+
private _size;
|
|
7
|
+
set size(value: ComponentSize | null | undefined);
|
|
8
|
+
get size(): ComponentSize | null | undefined;
|
|
9
|
+
private _customSize;
|
|
10
|
+
set customSize(value: number | null);
|
|
11
|
+
get customSize(): number | null;
|
|
12
|
+
get proportion(): number;
|
|
13
|
+
private get style();
|
|
14
|
+
constructor(el: ElementRef);
|
|
15
|
+
private getSizeProportion;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ComponentSizeDirective, never>;
|
|
17
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ComponentSizeDirective, "[sfcComponentSize]", never, { "size": "sfcComponentSize"; "customSize": "customSize"; }, {}, never, never, false, never>;
|
|
18
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ElementRef } from "@angular/core";
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class DestroyParentDirective {
|
|
4
|
+
private el;
|
|
5
|
+
set destroyParent(value: boolean);
|
|
6
|
+
delay: number;
|
|
7
|
+
constructor(el: ElementRef);
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DestroyParentDirective, never>;
|
|
9
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DestroyParentDirective, "[sfcDestroyParent]", never, { "destroyParent": "sfcDestroyParent"; "delay": "delay"; }, {}, never, never, false, never>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { ElementRef, EventEmitter, OnDestroy } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class DomChangesDirective implements OnDestroy {
|
|
4
|
+
private elementRef;
|
|
5
|
+
sfcDomChanges: EventEmitter<MutationRecord>;
|
|
6
|
+
options: MutationObserverInit;
|
|
7
|
+
private changes;
|
|
8
|
+
constructor(elementRef: ElementRef);
|
|
9
|
+
ngOnDestroy(): void;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DomChangesDirective, never>;
|
|
11
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DomChangesDirective, "[sfcDomChanges]", never, { "options": "options"; }, { "sfcDomChanges": "sfcDomChanges"; }, never, never, false, never>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { ElementRef } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class IfDirective {
|
|
4
|
+
private el;
|
|
5
|
+
set sfcIf(show: boolean);
|
|
6
|
+
private display;
|
|
7
|
+
private get style();
|
|
8
|
+
constructor(el: ElementRef);
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IfDirective, never>;
|
|
10
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<IfDirective, "[sfcIf]", never, { "sfcIf": "sfcIf"; }, {}, never, never, false, never>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { ElementRef, EventEmitter } from '@angular/core';
|
|
2
|
+
import { ImageLoadService } from './services/image-load.service';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class ImageLoadDirective {
|
|
5
|
+
private el;
|
|
6
|
+
private loadService;
|
|
7
|
+
action: EventEmitter<Event>;
|
|
8
|
+
private onLoad;
|
|
9
|
+
constructor(el: ElementRef, loadService: ImageLoadService);
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ImageLoadDirective, never>;
|
|
11
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ImageLoadDirective, "[sfcImageLoad]", never, {}, { "action": "sfcImageLoad"; }, never, never, false, never>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { Observable } from 'rxjs';
|
|
2
|
+
import { ImageLoadEvent } from './image-load.event';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class ImageLoadService {
|
|
5
|
+
private loadSubject;
|
|
6
|
+
load$: Observable<ImageLoadEvent>;
|
|
7
|
+
load(value: ImageLoadEvent): void;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ImageLoadService, never>;
|
|
9
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ImageLoadService>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export { ClickOutsideDirective } from './click-outside/click-outside.directive';
|
|
2
|
+
export { ClickOutsideEvent } from './click-outside/click-outside.event';
|
|
3
|
+
export { ShowHideElementDirective } from './show-hide-element/show-hide-element.directive';
|
|
4
|
+
export { IfDirective } from './if/if.directive';
|
|
5
|
+
export { ThrowElementOnHoverDirective } from './throw-element-on-hover/throw-element-on-hover.directive';
|
|
6
|
+
export { TemplateReferenceDirective } from './template-reference/template-reference.directive';
|
|
7
|
+
export { MouseDownDirective } from './mouse-down/mouse-down.directive';
|
|
8
|
+
export { ComponentSizeDirective } from './component-size/component-size.directive';
|
|
9
|
+
export { DestroyParentDirective } from './destroy-parent/destroy-parent.directive';
|
|
10
|
+
export { DomChangesDirective } from './dom-changes/dom-changes.directive';
|
|
11
|
+
export { ScrollTrackerDirective } from './scroll-tracker/scroll-tracker.directive';
|
|
12
|
+
export { ScrollIntoViewDirective } from './scroll-into-view/scroll-into-view.directive';
|
|
13
|
+
export { ImageLoadDirective } from './image-size/image-load.directive';
|
|
14
|
+
export { ImageSize } from './image-size/services/image-size.model';
|
|
15
|
+
export { ImageLoadEvent } from './image-size/services/image-load.event';
|
|
16
|
+
export { ImageLoadService } from './image-size/services/image-load.service';
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class MouseDownDirective {
|
|
4
|
+
/**
|
|
5
|
+
* Allowed mouse button
|
|
6
|
+
*/
|
|
7
|
+
button: number;
|
|
8
|
+
action: EventEmitter<MouseEvent>;
|
|
9
|
+
onMouseDown($event: MouseEvent): void;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MouseDownDirective, never>;
|
|
11
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MouseDownDirective, "[sfcMouseDown]", never, { "button": "button"; }, { "action": "sfcMouseDown"; }, never, never, false, never>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class ScrollIntoViewDirective {
|
|
3
|
+
set sfcScrollIntoView(target: HTMLElement);
|
|
4
|
+
/**
|
|
5
|
+
* Scroll into middle of local container(not whole page)
|
|
6
|
+
*/
|
|
7
|
+
local: boolean;
|
|
8
|
+
options: ScrollIntoViewOptions;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ScrollIntoViewDirective, never>;
|
|
10
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ScrollIntoViewDirective, "[sfcScrollIntoView]", never, { "sfcScrollIntoView": "sfcScrollIntoView"; "local": "local"; "options": "options"; }, {}, never, never, false, never>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { Position } from '../../enums';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class ScrollTrackerDirective {
|
|
5
|
+
positions: Position[];
|
|
6
|
+
sfcScrollTracker: EventEmitter<Position>;
|
|
7
|
+
private onScroll;
|
|
8
|
+
private getPosition;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ScrollTrackerDirective, never>;
|
|
10
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ScrollTrackerDirective, "[sfcScrollTracker]", never, { "positions": "positions"; }, { "sfcScrollTracker": "sfcScrollTracker"; }, never, never, false, never>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { ElementRef } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class ShowHideElementDirective {
|
|
4
|
+
private el;
|
|
5
|
+
private readonly SHOW_HIDE_TRANSITION_DELAY_DEFAULT;
|
|
6
|
+
set showHideElement(show: boolean);
|
|
7
|
+
set delay(value: number);
|
|
8
|
+
private get style();
|
|
9
|
+
constructor(el: ElementRef);
|
|
10
|
+
private getTransitionValue;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ShowHideElementDirective, never>;
|
|
12
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ShowHideElementDirective, "[sfcShowHideElement]", never, { "showHideElement": "sfcShowHideElement"; "delay": "delay"; }, {}, never, never, false, never>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { TemplateRef } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class TemplateReferenceDirective {
|
|
4
|
+
readonly template: TemplateRef<any>;
|
|
5
|
+
templateName: string;
|
|
6
|
+
data: any;
|
|
7
|
+
constructor(template: TemplateRef<any>);
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TemplateReferenceDirective, never>;
|
|
9
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TemplateReferenceDirective, "[sfcTemplateReference]", never, { "templateName": "sfcTemplateReference"; "data": "data"; }, {}, never, never, false, never>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { ElementRef } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class ThrowElementOnHoverDirective {
|
|
4
|
+
private el;
|
|
5
|
+
throwValue?: number;
|
|
6
|
+
onMouseEnter(): void;
|
|
7
|
+
onMouseLeave(): void;
|
|
8
|
+
private get style();
|
|
9
|
+
constructor(el: ElementRef);
|
|
10
|
+
private throw;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ThrowElementOnHoverDirective, never>;
|
|
12
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ThrowElementOnHoverDirective, "[sfcThrowElementOnHover]", never, { "throwValue": "sfcThrowElementOnHover"; }, {}, never, never, false, never>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export { ComponentSize } from './size.enum';
|
|
2
|
+
export { Direction } from './direction.enum';
|
|
3
|
+
export { MediaLimits } from './media.enum';
|
|
4
|
+
export { Position } from './position.enum';
|
|
5
|
+
export { SortingDirection } from './sorting-direction.enum';
|
|
6
|
+
export { Theme } from './theme.enum';
|
|
7
|
+
export { UIClass } from './ui.enum';
|
|
8
|
+
export { Sequence } from './sequence.enum';
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* UI classes
|
|
3
|
+
*/
|
|
4
|
+
export declare enum UIClass {
|
|
5
|
+
Active = "active",
|
|
6
|
+
Valid = "valid",
|
|
7
|
+
Invalid = "invalid",
|
|
8
|
+
InnerInvalid = "inner-invalid",
|
|
9
|
+
Enabled = "enabled",
|
|
10
|
+
Disabled = "disabled",
|
|
11
|
+
Selected = "selected",
|
|
12
|
+
Empty = "empty",
|
|
13
|
+
Focus = "focus",
|
|
14
|
+
Open = "open",
|
|
15
|
+
Loading = "loading",
|
|
16
|
+
Removed = "removed",
|
|
17
|
+
Visible = "visible",
|
|
18
|
+
Hidden = "hidden",
|
|
19
|
+
Animated = "animated",
|
|
20
|
+
Expanded = "expanded",
|
|
21
|
+
Fixed = "fixed",
|
|
22
|
+
Bordered = "bordered",
|
|
23
|
+
Even = "even",
|
|
24
|
+
Pointer = "pointer",
|
|
25
|
+
Default = "default",
|
|
26
|
+
Initialization = "initialization"
|
|
27
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { IClassModel } from './class.model';
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./directives/click-outside/click-outside.directive";
|
|
3
|
+
import * as i2 from "./directives/show-hide-element/show-hide-element.directive";
|
|
4
|
+
import * as i3 from "./directives/if/if.directive";
|
|
5
|
+
import * as i4 from "./directives/throw-element-on-hover/throw-element-on-hover.directive";
|
|
6
|
+
import * as i5 from "./directives/template-reference/template-reference.directive";
|
|
7
|
+
import * as i6 from "./directives/mouse-down/mouse-down.directive";
|
|
8
|
+
import * as i7 from "./directives/component-size/component-size.directive";
|
|
9
|
+
import * as i8 from "./directives/destroy-parent/destroy-parent.directive";
|
|
10
|
+
import * as i9 from "./directives/dom-changes/dom-changes.directive";
|
|
11
|
+
import * as i10 from "./directives/scroll-tracker/scroll-tracker.directive";
|
|
12
|
+
import * as i11 from "./directives/scroll-into-view/scroll-into-view.directive";
|
|
13
|
+
import * as i12 from "./directives/image-size/image-load.directive";
|
|
14
|
+
import * as i13 from "./components/button/button.component";
|
|
15
|
+
import * as i14 from "./components/tooltip/tooltip.component";
|
|
16
|
+
import * as i15 from "./components/delimeter/delimeter.component";
|
|
17
|
+
import * as i16 from "./components/toggle-switcher/toggle-switcher.component";
|
|
18
|
+
import * as i17 from "./components/checkmark/checkmark.component";
|
|
19
|
+
import * as i18 from "./components/template-content/template-content.component";
|
|
20
|
+
import * as i19 from "./components/close/close.component";
|
|
21
|
+
import * as i20 from "./components/hamburger/default/hamburger.component";
|
|
22
|
+
import * as i21 from "./components/hamburger/menu/hamburger-menu.component";
|
|
23
|
+
import * as i22 from "./components/dots/dots.component";
|
|
24
|
+
import * as i23 from "./components/pagination/pagination.component";
|
|
25
|
+
import * as i24 from "./components/sorting/sorting.component";
|
|
26
|
+
import * as i25 from "./components/load-more-button/load-more-button.component";
|
|
27
|
+
import * as i26 from "./components/load-container/load-container.component";
|
|
28
|
+
import * as i27 from "./components/icon/icon.component";
|
|
29
|
+
import * as i28 from "./components/loader/bounce/bounce-loader.component";
|
|
30
|
+
import * as i29 from "./components/loader/circle/circle-loader.component";
|
|
31
|
+
import * as i30 from "./components/modal/modal.component";
|
|
32
|
+
import * as i31 from "./components/modal/directive/open/modal-open.directive";
|
|
33
|
+
import * as i32 from "./components/modal/directive/click/modal-open-on-click.directive";
|
|
34
|
+
import * as i33 from "./components/modal/header/default/default-modal-header.component";
|
|
35
|
+
import * as i34 from "./components/modal/footer/default/default-modal-footer.component";
|
|
36
|
+
import * as i35 from "./pipes/switch-multi-case/switch-multi-case.pipe";
|
|
37
|
+
import * as i36 from "@angular/common";
|
|
38
|
+
import * as i37 from "@fortawesome/angular-fontawesome";
|
|
39
|
+
export declare class NgxSfcCommonModule {
|
|
40
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NgxSfcCommonModule, never>;
|
|
41
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<NgxSfcCommonModule, [typeof i1.ClickOutsideDirective, typeof i2.ShowHideElementDirective, typeof i3.IfDirective, typeof i4.ThrowElementOnHoverDirective, typeof i5.TemplateReferenceDirective, typeof i6.MouseDownDirective, typeof i7.ComponentSizeDirective, typeof i8.DestroyParentDirective, typeof i9.DomChangesDirective, typeof i10.ScrollTrackerDirective, typeof i11.ScrollIntoViewDirective, typeof i12.ImageLoadDirective, typeof i13.ButtonComponent, typeof i14.TooltipComponent, typeof i15.DelimeterComponent, typeof i16.ToggleSwitcherComponent, typeof i17.CheckmarkComponent, typeof i18.TemplateContentComponent, typeof i19.CloseComponent, typeof i20.HamburgerComponent, typeof i21.HamburgerMenuComponent, typeof i22.DotsComponent, typeof i23.PaginationComponent, typeof i24.SortingComponent, typeof i25.LoadMoreButtonComponent, typeof i26.LoadContainerComponent, typeof i27.IconComponent, typeof i28.BounceLoaderComponent, typeof i29.CircleLoaderComponent, typeof i30.ModalComponent, typeof i31.ModalOpenDirective, typeof i32.ModalOpenOnClickDirective, typeof i33.DefaultModalHeaderComponent, typeof i34.DefaultModalFooterComponent, typeof i35.SwitchMultiCasePipe], [typeof i36.CommonModule, typeof i37.FontAwesomeModule], [typeof i1.ClickOutsideDirective, typeof i2.ShowHideElementDirective, typeof i3.IfDirective, typeof i4.ThrowElementOnHoverDirective, typeof i5.TemplateReferenceDirective, typeof i6.MouseDownDirective, typeof i7.ComponentSizeDirective, typeof i8.DestroyParentDirective, typeof i9.DomChangesDirective, typeof i10.ScrollTrackerDirective, typeof i11.ScrollIntoViewDirective, typeof i12.ImageLoadDirective, typeof i13.ButtonComponent, typeof i14.TooltipComponent, typeof i15.DelimeterComponent, typeof i19.CloseComponent, typeof i17.CheckmarkComponent, typeof i18.TemplateContentComponent, typeof i16.ToggleSwitcherComponent, typeof i22.DotsComponent, typeof i20.HamburgerComponent, typeof i21.HamburgerMenuComponent, typeof i23.PaginationComponent, typeof i24.SortingComponent, typeof i25.LoadMoreButtonComponent, typeof i26.LoadContainerComponent, typeof i27.IconComponent, typeof i28.BounceLoaderComponent, typeof i29.CircleLoaderComponent, typeof i30.ModalComponent, typeof i31.ModalOpenDirective, typeof i32.ModalOpenOnClickDirective, typeof i33.DefaultModalHeaderComponent, typeof i34.DefaultModalFooterComponent, typeof i35.SwitchMultiCasePipe]>;
|
|
42
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<NgxSfcCommonModule>;
|
|
43
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { SwitchMultiCasePipe } from './switch-multi-case/switch-multi-case.pipe';
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class SwitchMultiCasePipe implements PipeTransform {
|
|
4
|
+
transform(cases: any[], switchOption: any): any;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SwitchMultiCasePipe, never>;
|
|
6
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<SwitchMultiCasePipe, "sfcSwitchMultiCase", false>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { ClassProvider, FactoryProvider, InjectionToken } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
/**
|
|
4
|
+
* Create a new injection token for injecting the Document into a component.
|
|
5
|
+
*/
|
|
6
|
+
export declare const DOCUMENT: InjectionToken<Document>;
|
|
7
|
+
/**
|
|
8
|
+
* Define abstract class for obtaining reference to the global Document object.
|
|
9
|
+
*/
|
|
10
|
+
export declare abstract class DocumentRef {
|
|
11
|
+
get nativeDocument(): Document | Object;
|
|
12
|
+
}
|
|
13
|
+
/**
|
|
14
|
+
* Define class that implements the abstract class and returns the native Document object.
|
|
15
|
+
*/
|
|
16
|
+
export declare class BrowserDocumentRef extends DocumentRef {
|
|
17
|
+
constructor();
|
|
18
|
+
/**
|
|
19
|
+
* @returns Document object
|
|
20
|
+
*/
|
|
21
|
+
get nativeDocument(): Document | Object;
|
|
22
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BrowserDocumentRef, never>;
|
|
23
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<BrowserDocumentRef>;
|
|
24
|
+
}
|
|
25
|
+
/**
|
|
26
|
+
* Create an factory function that returns the native Document object.
|
|
27
|
+
* @param browserDocumentRef Native Document object
|
|
28
|
+
* @param platformId id of platform
|
|
29
|
+
* @returns type of platform of empty object
|
|
30
|
+
*/
|
|
31
|
+
export declare function documentFactory(browserDocumentRef: BrowserDocumentRef, platformId: Object): Document | Object;
|
|
32
|
+
/**
|
|
33
|
+
* Create a injectable provider for the DocumentRef token that uses the BrowserDocumentRef class.
|
|
34
|
+
*/
|
|
35
|
+
export declare const browserDocumentProvider: ClassProvider;
|
|
36
|
+
/**
|
|
37
|
+
* Create an injectable provider that uses the DocumentFactory function for returning the native Document object.
|
|
38
|
+
*/
|
|
39
|
+
export declare const documentProvider: FactoryProvider;
|
|
40
|
+
/**
|
|
41
|
+
* Create an array of providers.
|
|
42
|
+
*/
|
|
43
|
+
export declare const DOCUMENT_PROVIDERS: (ClassProvider | FactoryProvider)[];
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { EventManager } from '@angular/platform-browser';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class ResizeService {
|
|
5
|
+
private eventManager;
|
|
6
|
+
/**
|
|
7
|
+
* Width of window
|
|
8
|
+
*/
|
|
9
|
+
windowWidth: any;
|
|
10
|
+
/**
|
|
11
|
+
* Makes resizeSubject become Observable
|
|
12
|
+
* @returns Observable of resizeSubject
|
|
13
|
+
*/
|
|
14
|
+
get onResize$(): Observable<Window>;
|
|
15
|
+
/**
|
|
16
|
+
* Subject of 'resize' event
|
|
17
|
+
*/
|
|
18
|
+
private resizeSubject;
|
|
19
|
+
constructor(eventManager: EventManager);
|
|
20
|
+
/**
|
|
21
|
+
* Handler of 'resize' event. Passes data throw resizeSubject
|
|
22
|
+
* @param event Event Object of 'resize' event
|
|
23
|
+
*/
|
|
24
|
+
private onResize;
|
|
25
|
+
/**
|
|
26
|
+
* Handler of 'onload' event. Defines the width of window
|
|
27
|
+
* @param event Event Object of 'onload' event
|
|
28
|
+
*/
|
|
29
|
+
private onLoaded;
|
|
30
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ResizeService, never>;
|
|
31
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ResizeService>;
|
|
32
|
+
}
|