@festo-ui/angular 4.0.3-pre-20221124.8 → 5.0.0-dev.102
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 +13 -53
- package/css/bundle.css +1 -1
- package/css/image-gallery.css +1 -1
- package/css/popover.css +1 -1
- package/esm2020/festo-ui-angular.mjs +2 -2
- package/esm2020/lib/components/accordion/accordion-header/accordion-header.component.mjs +6 -6
- package/esm2020/lib/components/accordion/accordion-item/accordion-item-body/accordion-item-body.component.mjs +6 -6
- package/esm2020/lib/components/accordion/accordion-item/accordion-item-header/accordion-item-header.component.mjs +11 -11
- package/esm2020/lib/components/accordion/accordion-item/accordion-item.component.mjs +41 -36
- package/esm2020/lib/components/accordion/accordion.component.mjs +21 -21
- package/esm2020/lib/components/accordion/index.mjs +1 -1
- package/esm2020/lib/components/breadcrumb/breadcrumb.component.mjs +9 -6
- package/esm2020/lib/components/buttons/button/button.component.mjs +8 -7
- package/esm2020/lib/components/buttons/link-button/link-button.component.mjs +8 -7
- package/esm2020/lib/components/chips/chip/chip.component.mjs +7 -6
- package/esm2020/lib/components/chips/chip-container/chip-container.component.mjs +7 -6
- package/esm2020/lib/components/components.module.mjs +202 -208
- package/esm2020/lib/components/loading-indicator/loading-indicator.component.mjs +7 -6
- package/esm2020/lib/components/mobile-flyout/mobile-flyout-item/mobile-flyout-item.component.mjs +8 -7
- package/esm2020/lib/components/mobile-flyout/mobile-flyout-page/mobile-flyout-page.component.mjs +10 -9
- package/esm2020/lib/components/mobile-flyout/mobile-flyout.component.mjs +10 -10
- package/esm2020/lib/components/pagination/pagination.component.mjs +15 -13
- package/esm2020/lib/components/popovers/legend/legend.component.mjs +14 -14
- package/esm2020/lib/components/popovers/legend/legend.directive.mjs +8 -8
- package/esm2020/lib/components/popovers/popover/popover.component.mjs +11 -11
- package/esm2020/lib/components/popovers/popover-content/popover-content.component.mjs +16 -18
- package/esm2020/lib/components/popovers/popover-content/popover-content.directive.mjs +7 -7
- package/esm2020/lib/components/popovers/popover-menu/popover-menu.component.mjs +18 -19
- package/esm2020/lib/components/popovers/popover-ref.mjs +2 -2
- package/esm2020/lib/components/popovers/popover.defaults.mjs +17 -18
- package/esm2020/lib/components/popovers/popover.models.mjs +7 -23
- package/esm2020/lib/components/popovers/popover.service.mjs +31 -32
- package/esm2020/lib/components/popovers/tooltip/tooltip.directive.mjs +18 -18
- package/esm2020/lib/components/progress/progress.component.mjs +8 -6
- package/esm2020/lib/components/scroll/index.mjs +1 -1
- package/esm2020/lib/components/scroll/scrollable.directive.mjs +10 -7
- package/esm2020/lib/components/search-input/search-input.component.mjs +20 -10
- package/esm2020/lib/components/snackbar/snackbar-container.component.mjs +7 -7
- package/esm2020/lib/components/snackbar/snackbar-container.directive.mjs +12 -15
- package/esm2020/lib/components/snackbar/snackbar.component.mjs +9 -7
- package/esm2020/lib/components/snackbar/snackbar.models.mjs +1 -1
- package/esm2020/lib/components/snackbar/snackbar.module.mjs +12 -14
- package/esm2020/lib/components/snackbar/snackbar.service.mjs +5 -5
- package/esm2020/lib/components/stepper-horizontal/step-horizontal/step-horizontal.component.mjs +6 -6
- package/esm2020/lib/components/stepper-horizontal/stepper-horizontal.component.mjs +10 -9
- package/esm2020/lib/components/stepper-vertical/step-vertical/step-vertical.component.mjs +8 -7
- package/esm2020/lib/components/stepper-vertical/stepper-vertical.component.mjs +9 -9
- package/esm2020/lib/components/table-header-cell/table-header-cell.directive.mjs +9 -8
- package/esm2020/lib/components/tabs/tab-pane/tab-pane.component.mjs +8 -8
- package/esm2020/lib/components/tabs/tabs.component.mjs +113 -27
- package/esm2020/lib/directives/click-outside.directive.mjs +29 -0
- package/esm2020/lib/festo-angular.module.mjs +9 -72
- package/esm2020/lib/forms/checkbox/checkbox.component.mjs +29 -24
- package/esm2020/lib/forms/color-indicator/color-indicator.component.mjs +29 -9
- package/esm2020/lib/forms/color-picker/color-helper.mjs +16 -8
- package/esm2020/lib/forms/color-picker/color-picker.component.mjs +38 -19
- package/esm2020/lib/forms/date-picker/date-picker.component.mjs +29 -26
- package/esm2020/lib/forms/date-range-picker/date-range-picker.component.mjs +33 -29
- package/esm2020/lib/forms/flatpickr/flatpickr.component.mjs +55 -0
- package/esm2020/lib/forms/forms.module.mjs +117 -110
- package/esm2020/lib/forms/radio/radio.component.mjs +54 -50
- package/esm2020/lib/forms/segment/segment-control/segment-control.component.mjs +22 -14
- package/esm2020/lib/forms/segment/segment.component.mjs +60 -30
- package/esm2020/lib/forms/select/chip-text.pipe.mjs +16 -11
- package/esm2020/lib/forms/select/select-option/select-option.component.mjs +8 -7
- package/esm2020/lib/forms/select/select.component.mjs +55 -47
- package/esm2020/lib/forms/slider/slider.component.mjs +27 -24
- package/esm2020/lib/forms/switch/switch.component.mjs +21 -20
- package/esm2020/lib/forms/text-area/text-area.component.mjs +19 -12
- package/esm2020/lib/forms/text-editor/text-editor.component.mjs +73 -65
- package/esm2020/lib/forms/text-input/text-input.component.mjs +40 -15
- package/esm2020/lib/forms/time-picker/time-picker-dropdown/time-picker-dropdown.component.mjs +9 -7
- package/esm2020/lib/forms/time-picker/time-picker.component.mjs +23 -20
- package/esm2020/lib/forms/unique-selection-dispatcher.mjs +8 -6
- package/esm2020/lib/forms/value-accessor-base.mjs +6 -6
- package/esm2020/lib/modals/alert/alert.component.mjs +54 -0
- package/esm2020/lib/modals/confirm/confirm.component.mjs +55 -0
- package/esm2020/lib/modals/custom-modal/custom-modal.component.mjs +70 -0
- package/esm2020/lib/modals/image-gallery/image-gallery.component.mjs +62 -0
- package/esm2020/lib/modals/index.mjs +2 -0
- package/esm2020/lib/modals/modal.service.mjs +118 -0
- package/esm2020/lib/modals/modals.module.mjs +25 -0
- package/esm2020/lib/modals/prompt/prompt.component.mjs +106 -0
- package/esm2020/lib/pipes/safe-html.pipe.mjs +7 -7
- package/esm2020/public-api.mjs +66 -0
- package/fesm2015/festo-ui-angular.mjs +4757 -4593
- package/fesm2015/festo-ui-angular.mjs.map +1 -1
- package/fesm2020/festo-ui-angular.mjs +4929 -4805
- package/fesm2020/festo-ui-angular.mjs.map +1 -1
- package/index.d.ts +5 -13
- package/lib/components/accordion/accordion-header/accordion-header.component.d.ts +3 -3
- package/lib/components/accordion/accordion-item/accordion-item-body/accordion-item-body.component.d.ts +3 -3
- package/lib/components/accordion/accordion-item/accordion-item-header/accordion-item-header.component.d.ts +5 -5
- package/lib/components/accordion/accordion-item/accordion-item.component.d.ts +9 -8
- package/lib/components/accordion/accordion.component.d.ts +7 -7
- package/lib/components/breadcrumb/breadcrumb.component.d.ts +3 -3
- package/lib/components/buttons/button/button.component.d.ts +6 -6
- package/lib/components/buttons/link-button/link-button.component.d.ts +6 -6
- package/lib/components/chips/chip/chip.component.d.ts +4 -4
- package/lib/components/chips/chip-container/chip-container.component.d.ts +3 -3
- package/lib/components/components.module.d.ts +35 -69
- package/lib/components/loading-indicator/loading-indicator.component.d.ts +3 -3
- package/lib/components/mobile-flyout/mobile-flyout-item/mobile-flyout-item.component.d.ts +3 -3
- package/lib/components/mobile-flyout/mobile-flyout-page/mobile-flyout-page.component.d.ts +5 -5
- package/lib/components/mobile-flyout/mobile-flyout.component.d.ts +5 -5
- package/lib/components/pagination/pagination.component.d.ts +6 -6
- package/lib/components/popovers/legend/legend.component.d.ts +10 -10
- package/lib/components/popovers/legend/legend.directive.d.ts +5 -5
- package/lib/components/popovers/popover/popover.component.d.ts +6 -6
- package/lib/components/popovers/popover-content/popover-content.component.d.ts +13 -13
- package/lib/components/popovers/popover-content/popover-content.directive.d.ts +5 -5
- package/lib/components/popovers/popover-menu/popover-menu.component.d.ts +15 -15
- package/lib/components/popovers/popover-ref.d.ts +4 -4
- package/lib/components/popovers/popover.defaults.d.ts +4 -4
- package/lib/components/popovers/popover.models.d.ts +18 -30
- package/lib/components/popovers/popover.service.d.ts +7 -7
- package/lib/components/popovers/tooltip/tooltip.directive.d.ts +9 -9
- package/lib/components/progress/progress.component.d.ts +3 -3
- package/lib/components/scroll/scrollable.directive.d.ts +4 -4
- package/lib/components/search-input/search-input.component.d.ts +9 -9
- package/lib/components/snackbar/snackbar-container.component.d.ts +5 -5
- package/lib/components/snackbar/snackbar-container.directive.d.ts +8 -11
- package/lib/components/snackbar/snackbar.component.d.ts +5 -5
- package/lib/components/snackbar/snackbar.models.d.ts +2 -2
- package/lib/components/snackbar/snackbar.module.d.ts +1 -2
- package/lib/components/snackbar/snackbar.service.d.ts +8 -8
- package/lib/components/stepper-horizontal/step-horizontal/step-horizontal.component.d.ts +3 -3
- package/lib/components/stepper-horizontal/stepper-horizontal.component.d.ts +5 -5
- package/lib/components/stepper-vertical/step-vertical/step-vertical.component.d.ts +4 -4
- package/lib/components/stepper-vertical/stepper-vertical.component.d.ts +5 -5
- package/lib/components/table-header-cell/table-header-cell.directive.d.ts +11 -11
- package/lib/components/tabs/tab-pane/tab-pane.component.d.ts +9 -9
- package/lib/components/tabs/tabs.component.d.ts +24 -24
- package/lib/directives/click-outside.directive.d.ts +10 -0
- package/lib/festo-angular.module.d.ts +6 -11
- package/lib/forms/checkbox/checkbox.component.d.ts +3 -3
- package/lib/forms/color-indicator/color-indicator.component.d.ts +3 -3
- package/lib/forms/color-picker/color-helper.d.ts +4 -4
- package/lib/forms/color-picker/color-picker.component.d.ts +8 -8
- package/lib/forms/date-picker/date-picker.component.d.ts +15 -15
- package/lib/forms/date-range-picker/date-range-picker.component.d.ts +16 -16
- package/lib/forms/flatpickr/flatpickr.component.d.ts +19 -0
- package/lib/forms/forms.module.d.ts +17 -37
- package/lib/forms/radio/radio.component.d.ts +22 -22
- package/lib/forms/segment/segment-control/segment-control.component.d.ts +14 -15
- package/lib/forms/segment/segment.component.d.ts +20 -11
- package/lib/forms/select/chip-text.pipe.d.ts +3 -3
- package/lib/forms/select/select-option/select-option.component.d.ts +5 -5
- package/lib/forms/select/select.component.d.ts +15 -15
- package/lib/forms/slider/slider.component.d.ts +8 -8
- package/lib/forms/switch/switch.component.d.ts +7 -7
- package/lib/forms/text-area/text-area.component.d.ts +14 -14
- package/lib/forms/text-editor/text-editor.component.d.ts +22 -22
- package/lib/forms/text-input/text-input.component.d.ts +6 -7
- package/lib/forms/time-picker/time-picker-dropdown/time-picker-dropdown.component.d.ts +8 -8
- package/lib/forms/time-picker/time-picker.component.d.ts +11 -11
- package/lib/forms/unique-selection-dispatcher.d.ts +5 -5
- package/lib/forms/value-accessor-base.d.ts +6 -6
- package/lib/{components/modals → modals}/alert/alert.component.d.ts +6 -6
- package/lib/{components/modals → modals}/confirm/confirm.component.d.ts +6 -6
- package/lib/modals/custom-modal/custom-modal.component.d.ts +21 -0
- package/lib/{components → modals}/image-gallery/image-gallery.component.d.ts +8 -8
- package/lib/{components/modals → modals}/index.d.ts +1 -1
- package/lib/modals/modal.service.d.ts +22 -0
- package/lib/{components/modals → modals}/modals.module.d.ts +1 -6
- package/lib/{components/modals → modals}/prompt/prompt.component.d.ts +6 -6
- package/lib/pipes/safe-html.pipe.d.ts +3 -3
- package/package.json +13 -16
- package/public-api.d.ts +62 -0
- package/scss/base/image-gallery.scss +3 -0
- package/scss/base/popover.scss +9 -0
- package/scss/base/styles.scss +5 -0
- package/esm2020/index.mjs +0 -26
- package/esm2020/lib/components/click-outside.directive.mjs +0 -28
- package/esm2020/lib/components/image-gallery/image-gallery.component.mjs +0 -60
- package/esm2020/lib/components/image-gallery/image-gallery.module.mjs +0 -22
- package/esm2020/lib/components/modals/alert/alert.component.mjs +0 -52
- package/esm2020/lib/components/modals/confirm/confirm.component.mjs +0 -53
- package/esm2020/lib/components/modals/custom-modal/custom-modal.component.mjs +0 -70
- package/esm2020/lib/components/modals/index.mjs +0 -2
- package/esm2020/lib/components/modals/modal.service.mjs +0 -121
- package/esm2020/lib/components/modals/modals.module.mjs +0 -31
- package/esm2020/lib/components/modals/prompt/prompt.component.mjs +0 -102
- package/esm2020/lib/content/content.module.mjs +0 -20
- package/esm2020/lib/content/icon/icon.component.mjs +0 -17
- package/esm2020/lib/forms/container-host.mjs +0 -27
- package/esm2020/lib/forms/date-picker.module.mjs +0 -28
- package/esm2020/lib/forms/text-editor/text-editor.module.mjs +0 -25
- package/esm2020/lib/layout/layout.module.mjs +0 -18
- package/esm2020/lib/pipes/pipes.module.mjs +0 -20
- package/esm2020/lib/wrappers/flatpickr/flatpickr.component.mjs +0 -59
- package/lib/components/click-outside.directive.d.ts +0 -10
- package/lib/components/image-gallery/image-gallery.module.d.ts +0 -11
- package/lib/components/modals/custom-modal/custom-modal.component.d.ts +0 -21
- package/lib/components/modals/modal.service.d.ts +0 -22
- package/lib/content/content.module.d.ts +0 -9
- package/lib/content/icon/icon.component.d.ts +0 -45
- package/lib/forms/container-host.d.ts +0 -11
- package/lib/forms/date-picker.module.d.ts +0 -17
- package/lib/forms/text-editor/text-editor.module.d.ts +0 -14
- package/lib/layout/layout.module.d.ts +0 -7
- package/lib/pipes/pipes.module.d.ts +0 -9
- package/lib/wrappers/flatpickr/flatpickr.component.d.ts +0 -19
- package/scss/base/components/accordion/accordion-header/accordion-header.component.scss +0 -12
- package/scss/base/components/accordion/accordion-item/accordion-item-body/accordion-item-body.component.scss +0 -109
- package/scss/base/components/accordion/accordion-item/accordion-item-header/accordion-item-header.component.scss +0 -9
- package/scss/base/components/accordion/accordion-item/accordion-item.component.scss +0 -71
- package/scss/base/components/accordion/accordion.component.scss +0 -6
- package/scss/base/components/breadcrumb/breadcrumb.component.scss +0 -0
- package/scss/base/components/buttons/button/button.component.scss +0 -7
- package/scss/base/components/buttons/link-button/link-button.component.scss +0 -0
- package/scss/base/components/chips/chip/chip.component.scss +0 -0
- package/scss/base/components/chips/chip-container/chip-container.component.scss +0 -0
- package/scss/base/components/image-gallery/image-gallery.component.scss +0 -0
- package/scss/base/components/image-gallery/styles.scss +0 -5
- package/scss/base/components/loading-indicator/loading-indicator.component.scss +0 -0
- package/scss/base/components/modals/alert/alert.component.scss +0 -0
- package/scss/base/components/modals/confirm/confirm.component.scss +0 -0
- package/scss/base/components/modals/prompt/prompt.component.scss +0 -0
- package/scss/base/components/pagination/pagination.component.scss +0 -0
- package/scss/base/components/popovers/legend/legend.component.scss +0 -9
- package/scss/base/components/popovers/popover/popover.component.scss +0 -0
- package/scss/base/components/popovers/popover/styles.scss +0 -84
- package/scss/base/components/popovers/popover-content/popover-content.component.scss +0 -12
- package/scss/base/components/popovers/popover-menu/popover-menu.component.scss +0 -0
- package/scss/base/components/scroll/scroll-story-helper.scss +0 -12
- package/scss/base/components/search-input/search-input.component.scss +0 -7
- package/scss/base/components/snackbar/snackbar-container.component.scss +0 -3
- package/scss/base/components/snackbar/snackbar.component.scss +0 -3
- package/scss/base/components/stepper-horizontal/step-horizontal/step-horizontal.component.scss +0 -23
- package/scss/base/components/stepper-vertical/step-vertical/step-vertical.component.scss +0 -6
- package/scss/base/components/tabs/tab-pane/tab-pane.component.scss +0 -7
- package/scss/base/components/tabs/tabs.component.scss +0 -326
- package/scss/base/content/icon/icon.component.scss +0 -0
- package/scss/base/forms/checkbox/checkbox.component.scss +0 -160
- package/scss/base/forms/color-indicator/color-indicator.component.scss +0 -59
- package/scss/base/forms/color-picker/color-picker.component.scss +0 -207
- package/scss/base/forms/date-picker/date-picker.component.scss +0 -5
- package/scss/base/forms/date-range-picker/date-range-picker.component.scss +0 -34
- package/scss/base/forms/radio/radio.component.scss +0 -9
- package/scss/base/forms/segment/segment-control/segment-control.component.scss +0 -0
- package/scss/base/forms/segment/segment.component.scss +0 -0
- package/scss/base/forms/select/select-option/select-option.component.scss +0 -0
- package/scss/base/forms/select/select.component.scss +0 -251
- package/scss/base/forms/slider/slider.component.scss +0 -20
- package/scss/base/forms/switch/switch.component.scss +0 -145
- package/scss/base/forms/text-area/text-area.component.scss +0 -43
- package/scss/base/forms/text-editor/text-editor.component.scss +0 -294
- package/scss/base/forms/text-input/text-input.component.scss +0 -60
- package/scss/base/forms/time-picker/time-picker-dropdown/time-picker-dropdown.component.scss +0 -10
- package/scss/base/forms/time-picker/time-picker.component.scss +0 -5
|
@@ -1,24 +1,24 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
1
|
+
import { ElementRef, EventEmitter, TemplateRef } from '@angular/core';
|
|
2
|
+
import { FngPopoverMenu, FngPopoverMenuAction, FngPopoverPosition } from '../popover.models';
|
|
3
|
+
import { FngPopoverService } from '../popover.service';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
|
-
export interface
|
|
6
|
-
positions?:
|
|
5
|
+
export interface FngPopoverMenuOptions {
|
|
6
|
+
positions?: FngPopoverPosition[];
|
|
7
7
|
}
|
|
8
|
-
export declare class
|
|
8
|
+
export declare class FngPopoverMenuComponent {
|
|
9
9
|
private popoverService;
|
|
10
10
|
icon: string;
|
|
11
|
-
menu:
|
|
12
|
-
options:
|
|
13
|
-
menuAction: EventEmitter<
|
|
14
|
-
menuTpl: TemplateRef<any
|
|
15
|
-
origin: ElementRef;
|
|
11
|
+
menu: FngPopoverMenu[];
|
|
12
|
+
options: FngPopoverMenuOptions;
|
|
13
|
+
menuAction: EventEmitter<FngPopoverMenuAction>;
|
|
14
|
+
menuTpl: TemplateRef<any> | undefined;
|
|
15
|
+
origin: ElementRef | undefined;
|
|
16
16
|
private popoverRef;
|
|
17
17
|
private itemHeight;
|
|
18
|
-
constructor(popoverService:
|
|
19
|
-
show(event: Event, content: TemplateRef<any
|
|
18
|
+
constructor(popoverService: FngPopoverService);
|
|
19
|
+
show(event: Event, content: TemplateRef<any> | undefined, origin: HTMLElement): void;
|
|
20
20
|
action(action: string, payload: any): void;
|
|
21
21
|
hide(): void;
|
|
22
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
23
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
22
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FngPopoverMenuComponent, never>;
|
|
23
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FngPopoverMenuComponent, "fng-popover-menu", never, { "icon": "icon"; "menu": "menu"; "options": "options"; }, { "menuAction": "menuAction"; }, never, never, true, never>;
|
|
24
24
|
}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { OverlayRef } from '@angular/cdk/overlay';
|
|
2
|
-
import {
|
|
2
|
+
import { FngPopoverContent, FngPopoverCloseEvent } from './popover.models';
|
|
3
3
|
export declare class PopoverRef<T = any> {
|
|
4
4
|
overlay: OverlayRef;
|
|
5
|
-
content:
|
|
5
|
+
content: FngPopoverContent | undefined;
|
|
6
6
|
data: T;
|
|
7
7
|
private afterClosed;
|
|
8
|
-
afterClosed$: import("rxjs").Observable<
|
|
9
|
-
constructor(overlay: OverlayRef, content:
|
|
8
|
+
afterClosed$: import("rxjs").Observable<FngPopoverCloseEvent<T>>;
|
|
9
|
+
constructor(overlay: OverlayRef, content: FngPopoverContent | undefined, data: T);
|
|
10
10
|
close(data?: T): void;
|
|
11
11
|
private _close;
|
|
12
12
|
}
|
|
@@ -27,7 +27,7 @@ export declare const defaultPositions: {
|
|
|
27
27
|
overlayY: string;
|
|
28
28
|
offsetX: number;
|
|
29
29
|
};
|
|
30
|
-
|
|
30
|
+
leftTop: {
|
|
31
31
|
originX: string;
|
|
32
32
|
originY: string;
|
|
33
33
|
overlayX: string;
|
|
@@ -35,7 +35,7 @@ export declare const defaultPositions: {
|
|
|
35
35
|
offsetX: number;
|
|
36
36
|
offsetY: number;
|
|
37
37
|
};
|
|
38
|
-
|
|
38
|
+
rightTop: {
|
|
39
39
|
originX: string;
|
|
40
40
|
originY: string;
|
|
41
41
|
overlayX: string;
|
|
@@ -53,6 +53,6 @@ export declare const defaultClasses: {
|
|
|
53
53
|
top: string;
|
|
54
54
|
right: string;
|
|
55
55
|
left: string;
|
|
56
|
-
|
|
57
|
-
|
|
56
|
+
rightTop: string;
|
|
57
|
+
leftTop: string;
|
|
58
58
|
};
|
|
@@ -1,26 +1,14 @@
|
|
|
1
1
|
import { TemplateRef, Type } from '@angular/core';
|
|
2
|
-
export interface
|
|
3
|
-
origin
|
|
4
|
-
content
|
|
5
|
-
options?:
|
|
6
|
-
data
|
|
7
|
-
}
|
|
8
|
-
export declare enum PopoverTypes {
|
|
9
|
-
Tooltip = "tooltip",
|
|
10
|
-
Menu = "menu",
|
|
11
|
-
Legend = "legend",
|
|
12
|
-
Content = "content"
|
|
13
|
-
}
|
|
14
|
-
export declare enum PopoverPosition {
|
|
15
|
-
Top = "top",
|
|
16
|
-
Bottom = "bottom",
|
|
17
|
-
Right = "right",
|
|
18
|
-
RightTop = "right-top",
|
|
19
|
-
Left = "left",
|
|
20
|
-
LeftTop = "left-top"
|
|
2
|
+
export interface FngPopoverParams<T> {
|
|
3
|
+
origin?: HTMLElement;
|
|
4
|
+
content?: FngPopoverContent;
|
|
5
|
+
options?: FngPopoverOptions;
|
|
6
|
+
data: T;
|
|
21
7
|
}
|
|
22
|
-
export
|
|
23
|
-
|
|
8
|
+
export type FngPopoverTypes = 'tooltip' | 'menu' | 'legend' | 'content';
|
|
9
|
+
export type FngPopoverPosition = 'top' | 'bottom' | 'right' | 'rightTop' | 'left' | 'leftTop';
|
|
10
|
+
export interface FngPopoverOptions {
|
|
11
|
+
type: FngPopoverTypes;
|
|
24
12
|
width?: string | number;
|
|
25
13
|
height?: string | number;
|
|
26
14
|
maxWidth?: string | number;
|
|
@@ -29,28 +17,28 @@ export interface PopoverOptions {
|
|
|
29
17
|
minHeight?: string | number;
|
|
30
18
|
hasBackdrop?: boolean;
|
|
31
19
|
backdropClass?: string;
|
|
32
|
-
positions?:
|
|
20
|
+
positions?: FngPopoverPosition[] | undefined;
|
|
33
21
|
}
|
|
34
|
-
export interface
|
|
22
|
+
export interface FngPopoverCloseEvent<T = any> {
|
|
35
23
|
type: 'backdropClick' | 'close';
|
|
36
|
-
data: T;
|
|
24
|
+
data: T | undefined;
|
|
37
25
|
}
|
|
38
|
-
export declare enum
|
|
26
|
+
export declare enum FngPopoverContentTypes {
|
|
39
27
|
Template = "template",
|
|
40
28
|
Component = "component",
|
|
41
29
|
Text = "text"
|
|
42
30
|
}
|
|
43
|
-
export
|
|
44
|
-
export interface
|
|
31
|
+
export type FngPopoverContent = TemplateRef<any> | Type<any> | string;
|
|
32
|
+
export interface FngPopoverMenu<T = any> {
|
|
45
33
|
text: string;
|
|
46
34
|
icon: string;
|
|
47
35
|
action: string;
|
|
48
36
|
data?: T;
|
|
49
37
|
}
|
|
50
|
-
export interface
|
|
38
|
+
export interface FngPopoverMenuAction<T = any> {
|
|
51
39
|
action: string;
|
|
52
40
|
payload: T;
|
|
53
41
|
}
|
|
54
|
-
export interface
|
|
55
|
-
onMenuAction(event:
|
|
42
|
+
export interface FngPopoverMenuActionAware<T = any> {
|
|
43
|
+
onMenuAction(event: FngPopoverMenuAction<T>): void;
|
|
56
44
|
}
|
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
import { Injector } from '@angular/core';
|
|
2
2
|
import { Overlay } from '@angular/cdk/overlay';
|
|
3
3
|
import { PopoverRef } from './popover-ref';
|
|
4
|
-
import {
|
|
4
|
+
import { FngPopoverParams, FngPopoverOptions } from './popover.models';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
|
-
export declare class
|
|
6
|
+
export declare class FngPopoverService {
|
|
7
7
|
private overlay;
|
|
8
8
|
private injector;
|
|
9
|
-
readonly options:
|
|
10
|
-
get defaultOptions():
|
|
9
|
+
readonly options: FngPopoverOptions;
|
|
10
|
+
get defaultOptions(): FngPopoverOptions;
|
|
11
11
|
constructor(overlay: Overlay, injector: Injector);
|
|
12
|
-
open<T>({ origin, content, data, options }:
|
|
12
|
+
open<T>({ origin, content, data, options }: FngPopoverParams<T>): PopoverRef<T>;
|
|
13
13
|
private getOverlayConfig;
|
|
14
14
|
private getOverlayPosition;
|
|
15
15
|
private createInjector;
|
|
16
16
|
private getDefaultPositions;
|
|
17
17
|
private getPositions;
|
|
18
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
19
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FngPopoverService, never>;
|
|
19
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<FngPopoverService>;
|
|
20
20
|
}
|
|
@@ -1,29 +1,29 @@
|
|
|
1
1
|
import { ElementRef, OnChanges, OnDestroy, SimpleChanges } from '@angular/core';
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
2
|
+
import { FngPopoverPosition } from './../popover.models';
|
|
3
|
+
import { FngPopoverService } from '../popover.service';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
|
-
export interface
|
|
5
|
+
export interface FngTooltipOptions {
|
|
6
6
|
maxWidth?: string | number;
|
|
7
7
|
delay?: number;
|
|
8
8
|
}
|
|
9
|
-
export declare class
|
|
9
|
+
export declare class FngTooltipDirective implements OnChanges, OnDestroy {
|
|
10
10
|
private elmenetRef;
|
|
11
11
|
private popoverService;
|
|
12
12
|
text: string;
|
|
13
13
|
isVisible: boolean;
|
|
14
|
-
positions:
|
|
15
|
-
options:
|
|
14
|
+
positions: FngPopoverPosition[];
|
|
15
|
+
options: FngTooltipOptions;
|
|
16
16
|
private origin;
|
|
17
17
|
private popoverRef;
|
|
18
18
|
private innerIsVisible;
|
|
19
19
|
private timeoutHandle;
|
|
20
|
-
constructor(elmenetRef: ElementRef, popoverService:
|
|
20
|
+
constructor(elmenetRef: ElementRef, popoverService: FngPopoverService);
|
|
21
21
|
ngOnChanges(changes: SimpleChanges): void;
|
|
22
22
|
ngOnDestroy(): void;
|
|
23
23
|
show(): void;
|
|
24
24
|
hide(): void;
|
|
25
25
|
private open;
|
|
26
26
|
private close;
|
|
27
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
28
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<
|
|
27
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FngTooltipDirective, never>;
|
|
28
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<FngTooltipDirective, "[fngTooltip]", never, { "text": "fngTooltip"; "isVisible": "fngTooltipVisible"; "positions": "fngTooltipPositions"; "options": "fngTooltipOptions"; }, {}, never, never, true, never>;
|
|
29
29
|
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
|
-
export declare class
|
|
2
|
+
export declare class FngProgressComponent {
|
|
3
3
|
progress: number;
|
|
4
4
|
error: boolean;
|
|
5
5
|
background: 'white' | 'background' | 'black';
|
|
6
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
7
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FngProgressComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FngProgressComponent, "fng-progress", never, { "progress": "progress"; "error": "error"; "background": "background"; }, {}, never, never, true, never>;
|
|
8
8
|
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { ElementRef, OnChanges, SimpleChanges, AfterViewInit, NgZone, Renderer2, OnDestroy } from '@angular/core';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
|
-
export interface
|
|
3
|
+
export interface FngScrollableAware extends AfterViewInit {
|
|
4
4
|
scrollableViewReady: boolean;
|
|
5
5
|
}
|
|
6
|
-
export declare class
|
|
6
|
+
export declare class FngScrollableDirective implements OnChanges, OnDestroy {
|
|
7
7
|
private el;
|
|
8
8
|
private ngZone;
|
|
9
9
|
private renderer;
|
|
@@ -19,6 +19,6 @@ export declare class ScrollableDirective implements OnChanges, OnDestroy {
|
|
|
19
19
|
private initResizeObserver;
|
|
20
20
|
private updateMaxWidth;
|
|
21
21
|
private delay;
|
|
22
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
23
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<
|
|
22
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FngScrollableDirective, never>;
|
|
23
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<FngScrollableDirective, "[fngScrollable]", never, { "scrollbarMinSize": "fngScrollableScrollbarMinSize"; "viewReady": "fngScrollableViewReady"; }, {}, never, never, true, never>;
|
|
24
24
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ElementRef, EventEmitter } from '@angular/core';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class
|
|
3
|
+
export declare class FngSearchSuggestion {
|
|
4
4
|
/**
|
|
5
5
|
* a html-string. e.g.: '<b> hello </b>'
|
|
6
6
|
*/
|
|
@@ -15,12 +15,12 @@ export declare class SearchSuggestion {
|
|
|
15
15
|
* @param query The current query. This string will be highlighted.
|
|
16
16
|
* @returns a html-string.
|
|
17
17
|
*/
|
|
18
|
-
static basicSuggestion(suggestionString: string, query: string):
|
|
18
|
+
static basicSuggestion(suggestionString: string, query: string): FngSearchSuggestion;
|
|
19
19
|
}
|
|
20
20
|
/**
|
|
21
21
|
* A custom form element for search inputs.
|
|
22
22
|
*/
|
|
23
|
-
export declare class
|
|
23
|
+
export declare class FngSearchInputComponent {
|
|
24
24
|
inputRef: ElementRef<HTMLInputElement>;
|
|
25
25
|
/**
|
|
26
26
|
* the querrry was changed, update the suggetion list
|
|
@@ -53,12 +53,12 @@ export declare class SearchInputComponent {
|
|
|
53
53
|
/**
|
|
54
54
|
* The list of suggestions
|
|
55
55
|
*/
|
|
56
|
-
set suggestions(value:
|
|
56
|
+
set suggestions(value: FngSearchSuggestion[]);
|
|
57
57
|
/**
|
|
58
58
|
* The list of suggestions capped by 10 entries
|
|
59
59
|
*/
|
|
60
|
-
get cappedSuggestions():
|
|
61
|
-
innerSuggestions:
|
|
60
|
+
get cappedSuggestions(): FngSearchSuggestion[];
|
|
61
|
+
innerSuggestions: FngSearchSuggestion[];
|
|
62
62
|
hideSuggestionList: boolean;
|
|
63
63
|
selectedSuggestionIndex: number;
|
|
64
64
|
keyhandler(event: KeyboardEvent): void;
|
|
@@ -66,8 +66,8 @@ export declare class SearchInputComponent {
|
|
|
66
66
|
onFocus(): void;
|
|
67
67
|
onInput(event: any): void;
|
|
68
68
|
onSearch(event: any): void;
|
|
69
|
-
onSuggestionClick(suggestion:
|
|
69
|
+
onSuggestionClick(suggestion: FngSearchSuggestion): void;
|
|
70
70
|
clearQuery(): void;
|
|
71
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
72
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
71
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FngSearchInputComponent, never>;
|
|
72
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FngSearchInputComponent, "fng-search-input", never, { "label": "label"; "disabled": "disabled"; "value": "value"; "suggestions": "suggestions"; }, { "fngChange": "fngChange"; "fngSearch": "fngSearch"; }, never, never, true, never>;
|
|
73
73
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { FngSnackbarConfig } from './snackbar.models';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class
|
|
4
|
-
config:
|
|
5
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
6
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
3
|
+
export declare class FngSnackbarContainerComponent {
|
|
4
|
+
config: FngSnackbarConfig;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FngSnackbarContainerComponent, never>;
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FngSnackbarContainerComponent, "fng-snackbar-container", never, { "config": "config"; }, {}, never, never, true, never>;
|
|
7
7
|
}
|
|
@@ -1,20 +1,17 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
1
|
+
import { OnDestroy, ViewContainerRef } from '@angular/core';
|
|
2
|
+
import { FngSnackbarConfig } from './snackbar.models';
|
|
3
|
+
import { FngSnackbarService } from './snackbar.service';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class
|
|
5
|
+
export declare class FngSnackbarContainerDirective implements OnDestroy {
|
|
6
6
|
private viewContainerRef;
|
|
7
|
-
private componentFactoryResolver;
|
|
8
7
|
private snackbarService;
|
|
9
|
-
fngSnackbarContainer:
|
|
8
|
+
fngSnackbarContainer: FngSnackbarConfig;
|
|
10
9
|
private snacks;
|
|
11
10
|
private snacksSub;
|
|
12
|
-
|
|
13
|
-
constructor(viewContainerRef: ViewContainerRef, componentFactoryResolver: ComponentFactoryResolver, snackbarService: SnackbarService);
|
|
14
|
-
ngOnInit(): void;
|
|
11
|
+
constructor(viewContainerRef: ViewContainerRef, snackbarService: FngSnackbarService);
|
|
15
12
|
ngOnDestroy(): void;
|
|
16
13
|
private push;
|
|
17
14
|
private remove;
|
|
18
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
19
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FngSnackbarContainerDirective, never>;
|
|
16
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<FngSnackbarContainerDirective, "[fngSnackbarContainer]", never, { "fngSnackbarContainer": "fngSnackbarContainer"; }, {}, never, never, true, never>;
|
|
20
17
|
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { AfterViewInit, EventEmitter, OnDestroy } from '@angular/core';
|
|
2
|
-
import {
|
|
2
|
+
import { FngSnackbarData } from './snackbar.models';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class
|
|
5
|
-
data:
|
|
4
|
+
export declare class FngSnackbarComponent implements AfterViewInit, OnDestroy {
|
|
5
|
+
data: FngSnackbarData;
|
|
6
6
|
close: EventEmitter<any>;
|
|
7
7
|
action: EventEmitter<any>;
|
|
8
8
|
blockDisplay: string;
|
|
@@ -12,6 +12,6 @@ export declare class SnackbarComponent implements AfterViewInit, OnDestroy {
|
|
|
12
12
|
ngOnDestroy(): void;
|
|
13
13
|
onAction(): void;
|
|
14
14
|
onClose(): void;
|
|
15
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
16
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FngSnackbarComponent, never>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FngSnackbarComponent, "fng-snackbar", never, { "data": "data"; }, { "close": "close"; "action": "action"; }, never, never, true, never>;
|
|
17
17
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export interface
|
|
1
|
+
export interface FngSnackbarConfig {
|
|
2
2
|
type?: 'info' | 'warning' | 'error';
|
|
3
3
|
variant?: 'a' | 'b' | 'c';
|
|
4
4
|
darkBackground?: boolean;
|
|
@@ -7,6 +7,6 @@ export interface SnackbarConfig {
|
|
|
7
7
|
disappearAfter?: number;
|
|
8
8
|
closeOnAction?: boolean;
|
|
9
9
|
}
|
|
10
|
-
export interface
|
|
10
|
+
export interface FngSnackbarData extends FngSnackbarConfig {
|
|
11
11
|
text: string;
|
|
12
12
|
}
|
|
@@ -2,13 +2,12 @@ import * as i0 from "@angular/core";
|
|
|
2
2
|
import * as i1 from "./snackbar.component";
|
|
3
3
|
import * as i2 from "./snackbar-container.directive";
|
|
4
4
|
import * as i3 from "./snackbar-container.component";
|
|
5
|
-
import * as i4 from "@angular/common";
|
|
6
5
|
export * from './snackbar.models';
|
|
7
6
|
export * from './snackbar.component';
|
|
8
7
|
export * from './snackbar-container.component';
|
|
9
8
|
export * from './snackbar-container.directive';
|
|
10
9
|
export declare class FestoAngularSnackbarModule {
|
|
11
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<FestoAngularSnackbarModule, never>;
|
|
12
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<FestoAngularSnackbarModule, [typeof i1.
|
|
11
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<FestoAngularSnackbarModule, never, [typeof i1.FngSnackbarComponent, typeof i2.FngSnackbarContainerDirective, typeof i3.FngSnackbarContainerComponent], [typeof i3.FngSnackbarContainerComponent, typeof i2.FngSnackbarContainerDirective, typeof i3.FngSnackbarContainerComponent]>;
|
|
13
12
|
static ɵinj: i0.ɵɵInjectorDeclaration<FestoAngularSnackbarModule>;
|
|
14
13
|
}
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
import { Observable } from 'rxjs';
|
|
2
|
-
import {
|
|
2
|
+
import { FngSnackbarData } from './snackbar.models';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
|
-
export
|
|
5
|
-
data:
|
|
4
|
+
export type FngSnackDescription = {
|
|
5
|
+
data: FngSnackbarData;
|
|
6
6
|
actionCallback?: () => void;
|
|
7
7
|
closeCallback?: () => void;
|
|
8
8
|
resolve: (value: unknown) => void;
|
|
9
9
|
};
|
|
10
|
-
export declare class
|
|
11
|
-
snacks$: Observable<
|
|
10
|
+
export declare class FngSnackbarService {
|
|
11
|
+
snacks$: Observable<FngSnackDescription>;
|
|
12
12
|
private snacks;
|
|
13
13
|
constructor();
|
|
14
|
-
snack(data:
|
|
15
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
16
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<
|
|
14
|
+
snack(data: FngSnackbarData, actionCallback?: () => void, closeCallback?: () => void): Promise<unknown>;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FngSnackbarService, never>;
|
|
16
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<FngSnackbarService>;
|
|
17
17
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
|
-
export declare class
|
|
2
|
+
export declare class FngStepHorizontalComponent {
|
|
3
3
|
isActive: boolean;
|
|
4
4
|
title: string;
|
|
5
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
6
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FngStepHorizontalComponent, never>;
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FngStepHorizontalComponent, "fng-step-horizontal", never, { "isActive": "isActive"; "title": "title"; }, {}, never, ["*"], true, never>;
|
|
7
7
|
}
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import { AfterContentInit, EventEmitter, OnChanges, QueryList } from '@angular/core';
|
|
2
|
-
import {
|
|
2
|
+
import { FngStepHorizontalComponent } from './step-horizontal/step-horizontal.component';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class
|
|
5
|
-
stepComponents: QueryList<
|
|
4
|
+
export declare class FngStepperHorizontalComponent implements AfterContentInit, OnChanges {
|
|
5
|
+
stepComponents: QueryList<FngStepHorizontalComponent>;
|
|
6
6
|
stepIndex: number;
|
|
7
7
|
stepIndexChange: EventEmitter<number>;
|
|
8
8
|
ngOnChanges(): void;
|
|
9
9
|
updateStepComponents(): void;
|
|
10
10
|
ngAfterContentInit(): void;
|
|
11
11
|
onStepClick(index: number): void;
|
|
12
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
13
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FngStepperHorizontalComponent, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FngStepperHorizontalComponent, "fng-stepper-horizontal", never, { "stepIndex": "stepIndex"; }, { "stepIndexChange": "stepIndexChange"; }, ["stepComponents"], ["*"], true, never>;
|
|
14
14
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { AfterViewInit, ElementRef } from '@angular/core';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class
|
|
3
|
+
export declare class FngStepVerticalComponent implements AfterViewInit {
|
|
4
4
|
stepContent?: ElementRef;
|
|
5
5
|
stepContentContainer?: ElementRef;
|
|
6
6
|
index: number;
|
|
@@ -10,9 +10,9 @@ export declare class StepVerticalComponent implements AfterViewInit {
|
|
|
10
10
|
set isActive(value: boolean);
|
|
11
11
|
get isActive(): boolean;
|
|
12
12
|
_isActive: boolean;
|
|
13
|
-
onStepClickCallback: (i: number) => void;
|
|
13
|
+
onStepClickCallback: ((i: number) => void);
|
|
14
14
|
updateHeight(): void;
|
|
15
15
|
ngAfterViewInit(): void;
|
|
16
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
17
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FngStepVerticalComponent, never>;
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FngStepVerticalComponent, "fng-step-vertical", never, { "index": "index"; "title": "title"; "isDone": "isDone"; "isLastElement": "isLastElement"; "isActive": "isActive"; }, {}, never, ["*"], true, never>;
|
|
18
18
|
}
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import { AfterContentInit, EventEmitter, OnChanges, QueryList } from '@angular/core';
|
|
2
|
-
import {
|
|
2
|
+
import { FngStepVerticalComponent } from './step-vertical/step-vertical.component';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class
|
|
5
|
-
stepComponents: QueryList<
|
|
4
|
+
export declare class FngStepperVerticalComponent implements AfterContentInit, OnChanges {
|
|
5
|
+
stepComponents: QueryList<FngStepVerticalComponent>;
|
|
6
6
|
stepIndex: number;
|
|
7
7
|
stepIndexChange: EventEmitter<number>;
|
|
8
8
|
ngOnChanges(): void;
|
|
9
9
|
updateStepComponents(): void;
|
|
10
10
|
ngAfterContentInit(): void;
|
|
11
11
|
onStepClick(index: number): void;
|
|
12
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
13
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FngStepperVerticalComponent, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FngStepperVerticalComponent, "fng-stepper-vertical", never, { "stepIndex": "stepIndex"; }, { "stepIndexChange": "stepIndexChange"; }, ["stepComponents"], ["*"], true, never>;
|
|
14
14
|
}
|
|
@@ -1,21 +1,21 @@
|
|
|
1
1
|
import { EventEmitter } from '@angular/core';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
|
-
export interface
|
|
3
|
+
export interface FngTableColumnOrder {
|
|
4
4
|
orderBy?: string;
|
|
5
5
|
ascending: boolean;
|
|
6
6
|
}
|
|
7
|
-
export declare class
|
|
8
|
-
order:
|
|
9
|
-
fngTh: string;
|
|
7
|
+
export declare class FngTableHeaderCellDirective {
|
|
8
|
+
order: FngTableColumnOrder | undefined;
|
|
9
|
+
fngTh: string | undefined;
|
|
10
10
|
changeOrder: EventEmitter<string>;
|
|
11
|
-
abbr: string;
|
|
12
|
-
colspan: number;
|
|
13
|
-
headers: string;
|
|
14
|
-
rowspan: number;
|
|
15
|
-
scope: string;
|
|
11
|
+
abbr: string | undefined;
|
|
12
|
+
colspan: number | undefined;
|
|
13
|
+
headers: string | undefined;
|
|
14
|
+
rowspan: number | undefined;
|
|
15
|
+
scope: string | undefined;
|
|
16
16
|
get active(): boolean;
|
|
17
17
|
get orderDescending(): boolean;
|
|
18
18
|
onChangeOrder(): void;
|
|
19
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
20
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<
|
|
19
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FngTableHeaderCellDirective, never>;
|
|
20
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<FngTableHeaderCellDirective, "[fngTh]", never, { "order": "order"; "fngTh": "fngTh"; "abbr": "abbr"; "colspan": "colspan"; "headers": "headers"; "rowspan": "rowspan"; "scope": "scope"; }, { "changeOrder": "changeOrder"; }, never, never, true, never>;
|
|
21
21
|
}
|
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
import { OnChanges } from '@angular/core';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class
|
|
3
|
+
export declare class FngTabPaneComponent implements OnChanges {
|
|
4
4
|
static nextId: number;
|
|
5
|
-
id: string;
|
|
6
|
-
name: string;
|
|
7
|
-
icon: string;
|
|
8
|
-
active: boolean;
|
|
9
|
-
isVisible: boolean;
|
|
5
|
+
id: string | undefined;
|
|
6
|
+
name: string | undefined;
|
|
7
|
+
icon: string | undefined;
|
|
8
|
+
active: boolean | undefined;
|
|
9
|
+
isVisible: boolean | undefined;
|
|
10
10
|
disabled: boolean;
|
|
11
|
-
tabId: string;
|
|
11
|
+
tabId: string | undefined;
|
|
12
12
|
tabPaneId: string;
|
|
13
13
|
private changesSubject;
|
|
14
14
|
changes$: import("rxjs").Observable<boolean>;
|
|
15
15
|
ngOnChanges(): void;
|
|
16
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
17
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FngTabPaneComponent, never>;
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FngTabPaneComponent, "fng-tab-pane", never, { "id": "id"; "name": "name"; "icon": "icon"; "active": "active"; "isVisible": "isVisible"; "disabled": "disabled"; }, {}, never, ["*"], true, never>;
|
|
18
18
|
}
|