@festo-ui/angular 4.0.3-pre-20221213.1 → 5.0.0
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 +5 -5
- package/esm2020/lib/components/accordion/accordion-item/accordion-item-body/accordion-item-body.component.mjs +5 -5
- package/esm2020/lib/components/accordion/accordion-item/accordion-item-header/accordion-item-header.component.mjs +5 -5
- package/esm2020/lib/components/accordion/accordion-item/accordion-item.component.mjs +30 -25
- package/esm2020/lib/components/accordion/accordion.component.mjs +9 -9
- package/esm2020/lib/components/accordion/index.mjs +1 -1
- package/esm2020/lib/components/breadcrumb/breadcrumb.component.mjs +8 -5
- package/esm2020/lib/components/buttons/button/button.component.mjs +7 -6
- package/esm2020/lib/components/buttons/link-button/link-button.component.mjs +7 -6
- package/esm2020/lib/components/chips/chip/chip.component.mjs +6 -5
- package/esm2020/lib/components/chips/chip-container/chip-container.component.mjs +6 -5
- package/esm2020/lib/components/components.module.mjs +148 -151
- package/esm2020/lib/components/loading-indicator/loading-indicator.component.mjs +6 -5
- package/esm2020/lib/components/mobile-flyout/mobile-flyout-item/mobile-flyout-item.component.mjs +7 -6
- package/esm2020/lib/components/mobile-flyout/mobile-flyout-page/mobile-flyout-page.component.mjs +7 -6
- package/esm2020/lib/components/mobile-flyout/mobile-flyout.component.mjs +7 -7
- package/esm2020/lib/components/pagination/pagination.component.mjs +7 -5
- package/esm2020/lib/components/popovers/legend/legend.component.mjs +12 -12
- package/esm2020/lib/components/popovers/legend/legend.directive.mjs +7 -7
- package/esm2020/lib/components/popovers/popover/popover.component.mjs +6 -6
- package/esm2020/lib/components/popovers/popover-content/popover-content.component.mjs +14 -16
- package/esm2020/lib/components/popovers/popover-content/popover-content.directive.mjs +6 -6
- package/esm2020/lib/components/popovers/popover-menu/popover-menu.component.mjs +16 -17
- 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 +1 -17
- package/esm2020/lib/components/popovers/popover.service.mjs +28 -29
- package/esm2020/lib/components/popovers/tooltip/tooltip.directive.mjs +14 -15
- package/esm2020/lib/components/progress/progress.component.mjs +7 -5
- package/esm2020/lib/components/scroll/index.mjs +1 -1
- package/esm2020/lib/components/scroll/scrollable.directive.mjs +9 -6
- package/esm2020/lib/components/search-input/search-input.component.mjs +18 -8
- package/esm2020/lib/components/snackbar/snackbar-container.component.mjs +6 -6
- package/esm2020/lib/components/snackbar/snackbar-container.directive.mjs +10 -13
- package/esm2020/lib/components/snackbar/snackbar.component.mjs +8 -6
- package/esm2020/lib/components/snackbar/snackbar.models.mjs +1 -1
- package/esm2020/lib/components/snackbar/snackbar.module.mjs +7 -8
- package/esm2020/lib/components/snackbar/snackbar.service.mjs +4 -4
- package/esm2020/lib/components/stepper-horizontal/step-horizontal/step-horizontal.component.mjs +5 -5
- package/esm2020/lib/components/stepper-horizontal/stepper-horizontal.component.mjs +7 -6
- package/esm2020/lib/components/stepper-vertical/step-vertical/step-vertical.component.mjs +7 -6
- package/esm2020/lib/components/stepper-vertical/stepper-vertical.component.mjs +6 -6
- package/esm2020/lib/components/table-header-cell/table-header-cell.directive.mjs +8 -7
- package/esm2020/lib/components/tabs/tab-pane/tab-pane.component.mjs +5 -5
- package/esm2020/lib/components/tabs/tabs.component.mjs +108 -22
- 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 +26 -21
- package/esm2020/lib/forms/color-indicator/color-indicator.component.mjs +28 -8
- package/esm2020/lib/forms/color-picker/color-helper.mjs +16 -8
- package/esm2020/lib/forms/color-picker/color-picker.component.mjs +35 -16
- package/esm2020/lib/forms/date-picker/date-picker.component.mjs +25 -22
- package/esm2020/lib/forms/date-range-picker/date-range-picker.component.mjs +29 -25
- package/esm2020/lib/forms/flatpickr/flatpickr.component.mjs +55 -0
- package/esm2020/lib/forms/forms.module.mjs +106 -79
- package/esm2020/lib/forms/radio/radio.component.mjs +43 -39
- package/esm2020/lib/forms/segment/segment-control/segment-control.component.mjs +15 -12
- package/esm2020/lib/forms/segment/segment.component.mjs +28 -23
- package/esm2020/lib/forms/select/chip-text.pipe.mjs +15 -10
- package/esm2020/lib/forms/select/select-option/select-option.component.mjs +7 -6
- package/esm2020/lib/forms/select/select.component.mjs +49 -41
- package/esm2020/lib/forms/slider/slider.component.mjs +24 -21
- package/esm2020/lib/forms/switch/switch.component.mjs +18 -17
- package/esm2020/lib/forms/text-area/text-area.component.mjs +16 -9
- package/esm2020/lib/forms/text-editor/text-editor.component.mjs +69 -61
- package/esm2020/lib/forms/text-input/text-input.component.mjs +38 -11
- package/esm2020/lib/forms/time-picker/time-picker-dropdown/time-picker-dropdown.component.mjs +8 -6
- package/esm2020/lib/forms/time-picker/time-picker.component.mjs +18 -15
- package/esm2020/lib/forms/unique-selection-dispatcher.mjs +7 -5
- package/esm2020/lib/forms/value-accessor-base.mjs +5 -5
- 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/{components/modals → modals}/modal.service.mjs +8 -11
- package/esm2020/lib/modals/modals.module.mjs +28 -0
- package/esm2020/lib/modals/prompt/prompt.component.mjs +106 -0
- package/esm2020/lib/pipes/safe-html.pipe.mjs +5 -5
- package/esm2020/public-api.mjs +66 -0
- package/fesm2015/festo-ui-angular.mjs +4659 -4507
- package/fesm2015/festo-ui-angular.mjs.map +1 -1
- package/fesm2020/festo-ui-angular.mjs +4590 -4478
- 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 +1 -1
- package/lib/components/accordion/accordion-item/accordion-item-body/accordion-item-body.component.d.ts +1 -1
- package/lib/components/accordion/accordion-item/accordion-item-header/accordion-item-header.component.d.ts +1 -1
- package/lib/components/accordion/accordion-item/accordion-item.component.d.ts +6 -5
- package/lib/components/accordion/accordion.component.d.ts +2 -2
- package/lib/components/breadcrumb/breadcrumb.component.d.ts +1 -1
- package/lib/components/buttons/button/button.component.d.ts +4 -4
- package/lib/components/buttons/link-button/link-button.component.d.ts +4 -4
- package/lib/components/chips/chip/chip.component.d.ts +2 -2
- package/lib/components/chips/chip-container/chip-container.component.d.ts +1 -1
- package/lib/components/components.module.d.ts +35 -68
- package/lib/components/loading-indicator/loading-indicator.component.d.ts +1 -1
- package/lib/components/mobile-flyout/mobile-flyout-item/mobile-flyout-item.component.d.ts +1 -1
- package/lib/components/mobile-flyout/mobile-flyout-page/mobile-flyout-page.component.d.ts +1 -1
- package/lib/components/mobile-flyout/mobile-flyout.component.d.ts +1 -1
- package/lib/components/pagination/pagination.component.d.ts +1 -1
- package/lib/components/popovers/legend/legend.component.d.ts +2 -2
- package/lib/components/popovers/legend/legend.directive.d.ts +2 -2
- package/lib/components/popovers/popover/popover.component.d.ts +4 -4
- package/lib/components/popovers/popover-content/popover-content.component.d.ts +2 -2
- package/lib/components/popovers/popover-content/popover-content.directive.d.ts +2 -2
- package/lib/components/popovers/popover-menu/popover-menu.component.d.ts +6 -6
- package/lib/components/popovers/popover-ref.d.ts +2 -2
- package/lib/components/popovers/popover.defaults.d.ts +4 -4
- package/lib/components/popovers/popover.models.d.ts +8 -20
- package/lib/components/popovers/tooltip/tooltip.directive.d.ts +1 -1
- package/lib/components/progress/progress.component.d.ts +1 -1
- package/lib/components/scroll/scrollable.directive.d.ts +1 -1
- package/lib/components/search-input/search-input.component.d.ts +1 -1
- package/lib/components/snackbar/snackbar-container.component.d.ts +1 -1
- package/lib/components/snackbar/snackbar-container.directive.d.ts +4 -7
- package/lib/components/snackbar/snackbar.component.d.ts +1 -1
- package/lib/components/snackbar/snackbar.module.d.ts +5 -5
- package/lib/components/snackbar/snackbar.service.d.ts +1 -1
- package/lib/components/stepper-horizontal/step-horizontal/step-horizontal.component.d.ts +1 -1
- package/lib/components/stepper-horizontal/stepper-horizontal.component.d.ts +1 -1
- package/lib/components/stepper-vertical/step-vertical/step-vertical.component.d.ts +2 -2
- package/lib/components/stepper-vertical/stepper-vertical.component.d.ts +1 -1
- package/lib/components/table-header-cell/table-header-cell.directive.d.ts +8 -8
- package/lib/components/tabs/tab-pane/tab-pane.component.d.ts +7 -7
- package/lib/components/tabs/tabs.component.d.ts +11 -11
- package/lib/{components → directives}/click-outside.directive.d.ts +1 -1
- package/lib/festo-angular.module.d.ts +6 -11
- package/lib/forms/checkbox/checkbox.component.d.ts +1 -1
- package/lib/forms/color-indicator/color-indicator.component.d.ts +1 -1
- package/lib/forms/color-picker/color-helper.d.ts +4 -4
- package/lib/forms/color-picker/color-picker.component.d.ts +6 -6
- package/lib/forms/date-picker/date-picker.component.d.ts +11 -11
- package/lib/forms/date-range-picker/date-range-picker.component.d.ts +12 -12
- package/lib/{wrappers → forms}/flatpickr/flatpickr.component.d.ts +5 -5
- package/lib/forms/forms.module.d.ts +24 -39
- package/lib/forms/radio/radio.component.d.ts +12 -12
- package/lib/forms/segment/segment-control/segment-control.component.d.ts +11 -13
- package/lib/forms/segment/segment.component.d.ts +3 -3
- package/lib/forms/select/chip-text.pipe.d.ts +1 -1
- package/lib/forms/select/select-option/select-option.component.d.ts +3 -3
- package/lib/forms/select/select.component.d.ts +11 -11
- package/lib/forms/slider/slider.component.d.ts +6 -6
- package/lib/forms/switch/switch.component.d.ts +5 -5
- package/lib/forms/text-area/text-area.component.d.ts +12 -12
- package/lib/forms/text-editor/text-editor.component.d.ts +16 -16
- package/lib/forms/text-input/text-input.component.d.ts +4 -4
- package/lib/forms/time-picker/time-picker-dropdown/time-picker-dropdown.component.d.ts +6 -6
- package/lib/forms/time-picker/time-picker.component.d.ts +8 -8
- package/lib/forms/unique-selection-dispatcher.d.ts +2 -2
- package/lib/forms/value-accessor-base.d.ts +4 -4
- package/lib/{components/modals → modals}/alert/alert.component.d.ts +2 -2
- package/lib/{components/modals → modals}/confirm/confirm.component.d.ts +2 -2
- package/lib/{components/modals → modals}/custom-modal/custom-modal.component.d.ts +1 -1
- package/lib/{components → modals}/image-gallery/image-gallery.component.d.ts +2 -2
- package/lib/{components/modals → modals}/index.d.ts +1 -1
- package/lib/{components/modals → modals}/modal.service.d.ts +1 -1
- package/lib/modals/modals.module.d.ts +18 -0
- package/lib/{components/modals → modals}/prompt/prompt.component.d.ts +2 -2
- package/lib/pipes/safe-html.pipe.d.ts +1 -1
- 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/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/image-gallery/image-gallery.module.d.ts +0 -11
- package/lib/components/modals/modals.module.d.ts +0 -20
- 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/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
package/index.d.ts
CHANGED
|
@@ -1,13 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
export * from './
|
|
6
|
-
export * from './lib/forms/forms.module';
|
|
7
|
-
export * from './lib/forms/date-picker.module';
|
|
8
|
-
export * from './lib/forms/text-editor/text-editor.module';
|
|
9
|
-
export * from './lib/layout/layout.module';
|
|
10
|
-
export * from './lib/components/image-gallery/image-gallery.module';
|
|
11
|
-
export * from './lib/festo-angular.module';
|
|
12
|
-
export * from './lib/components/modals/modal.service';
|
|
13
|
-
export * from './lib/components/snackbar/snackbar.service';
|
|
1
|
+
/**
|
|
2
|
+
* Generated bundle index. Do not edit.
|
|
3
|
+
*/
|
|
4
|
+
/// <amd-module name="@festo-ui/angular" />
|
|
5
|
+
export * from './public-api';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
export declare class AccordionHeaderComponent {
|
|
3
3
|
static ɵfac: i0.ɵɵFactoryDeclaration<AccordionHeaderComponent, never>;
|
|
4
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AccordionHeaderComponent, "fng-accordion-header", never, {}, {}, never, ["*"],
|
|
4
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AccordionHeaderComponent, "fng-accordion-header", never, {}, {}, never, ["*"], true, never>;
|
|
5
5
|
}
|
|
@@ -2,5 +2,5 @@ import * as i0 from "@angular/core";
|
|
|
2
2
|
export declare class AccordionItemBodyComponent {
|
|
3
3
|
id: string;
|
|
4
4
|
static ɵfac: i0.ɵɵFactoryDeclaration<AccordionItemBodyComponent, never>;
|
|
5
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AccordionItemBodyComponent, "fng-accordion-item-body", never, {}, {}, never, ["*"],
|
|
5
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AccordionItemBodyComponent, "fng-accordion-item-body", never, {}, {}, never, ["*"], true, never>;
|
|
6
6
|
}
|
|
@@ -11,5 +11,5 @@ export declare class AccordionItemHeaderComponent implements OnDestroy {
|
|
|
11
11
|
ngOnDestroy(): void;
|
|
12
12
|
toggle(): void;
|
|
13
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<AccordionItemHeaderComponent, never>;
|
|
14
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AccordionItemHeaderComponent, "fng-accordion-item-header", never, {}, {}, never, ["*"],
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AccordionItemHeaderComponent, "fng-accordion-item-header", never, {}, {}, never, ["*"], true, never>;
|
|
15
15
|
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { OnChanges, SimpleChanges, ElementRef, Renderer2, AfterViewInit, ChangeDetectorRef } from '@angular/core';
|
|
1
|
+
import { OnChanges, SimpleChanges, ElementRef, Renderer2, AfterViewInit, ChangeDetectorRef, AfterContentInit } from '@angular/core';
|
|
2
2
|
import { AccordionItemBodyComponent } from './accordion-item-body/accordion-item-body.component';
|
|
3
3
|
import { AccordionItemHeaderComponent } from './accordion-item-header/accordion-item-header.component';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class AccordionItemComponent implements OnChanges, AfterViewInit {
|
|
5
|
+
export declare class AccordionItemComponent implements OnChanges, AfterViewInit, AfterContentInit {
|
|
6
6
|
private elementRef;
|
|
7
7
|
private renderer;
|
|
8
8
|
private cd;
|
|
@@ -11,8 +11,8 @@ export declare class AccordionItemComponent implements OnChanges, AfterViewInit
|
|
|
11
11
|
expanded: boolean;
|
|
12
12
|
_linkText: string;
|
|
13
13
|
get linkText(): string;
|
|
14
|
-
header: AccordionItemHeaderComponent;
|
|
15
|
-
body: AccordionItemBodyComponent;
|
|
14
|
+
header: AccordionItemHeaderComponent | undefined;
|
|
15
|
+
body: AccordionItemBodyComponent | undefined;
|
|
16
16
|
id: string;
|
|
17
17
|
parentId: string;
|
|
18
18
|
private accordion;
|
|
@@ -21,6 +21,7 @@ export declare class AccordionItemComponent implements OnChanges, AfterViewInit
|
|
|
21
21
|
private element;
|
|
22
22
|
private pristine;
|
|
23
23
|
constructor(elementRef: ElementRef, renderer: Renderer2, cd: ChangeDetectorRef);
|
|
24
|
+
ngAfterContentInit(): void;
|
|
24
25
|
ngAfterViewInit(): void;
|
|
25
26
|
ngOnChanges(changes: SimpleChanges): void;
|
|
26
27
|
toggle(): void;
|
|
@@ -30,5 +31,5 @@ export declare class AccordionItemComponent implements OnChanges, AfterViewInit
|
|
|
30
31
|
private subscribeToAccordionActions;
|
|
31
32
|
private subscribeToAccordionItemHeaderActions;
|
|
32
33
|
static ɵfac: i0.ɵɵFactoryDeclaration<AccordionItemComponent, never>;
|
|
33
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AccordionItemComponent, "fng-accordion-item", never, {}, {}, ["header", "body"], ["*"],
|
|
34
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AccordionItemComponent, "fng-accordion-item", never, {}, {}, ["header", "body"], ["*"], true, never>;
|
|
34
35
|
}
|
|
@@ -14,11 +14,11 @@ export declare class AccordionComponent implements AfterViewInit, OnDestroy {
|
|
|
14
14
|
multi: boolean;
|
|
15
15
|
showMore: string;
|
|
16
16
|
showLess: string;
|
|
17
|
-
items: QueryList<AccordionItemComponent
|
|
17
|
+
items: QueryList<AccordionItemComponent> | undefined;
|
|
18
18
|
ngAfterViewInit(): void;
|
|
19
19
|
ngOnDestroy(): void;
|
|
20
20
|
openAll(): void;
|
|
21
21
|
closeAll(): void;
|
|
22
22
|
static ɵfac: i0.ɵɵFactoryDeclaration<AccordionComponent, never>;
|
|
23
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AccordionComponent, "fng-accordion", never, { "multi": "fngAccordionKeepItemsOpen"; "showMore": "fngAccordionShowMoreText"; "showLess": "fngAccordionShowLessText"; }, {}, ["items"], ["*"],
|
|
23
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AccordionComponent, "fng-accordion", never, { "multi": "fngAccordionKeepItemsOpen"; "showMore": "fngAccordionShowMoreText"; "showLess": "fngAccordionShowLessText"; }, {}, ["items"], ["*"], true, never>;
|
|
24
24
|
}
|
|
@@ -8,5 +8,5 @@ export declare class BreadcrumbComponent {
|
|
|
8
8
|
}[];
|
|
9
9
|
navigate: EventEmitter<string>;
|
|
10
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<BreadcrumbComponent, never>;
|
|
11
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BreadcrumbComponent, "fng-breadcrumb", never, { "useRouterLink": "useRouterLink"; "locations": "locations"; }, { "navigate": "navigate"; }, never, never,
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BreadcrumbComponent, "fng-breadcrumb", never, { "useRouterLink": "useRouterLink"; "locations": "locations"; }, { "navigate": "navigate"; }, never, never, true, never>;
|
|
12
12
|
}
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
import { EventEmitter, ElementRef } from '@angular/core';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export declare class ButtonComponent {
|
|
4
|
-
text: string;
|
|
5
|
-
icon: string;
|
|
4
|
+
text: string | undefined;
|
|
5
|
+
icon: string | undefined;
|
|
6
6
|
disabled: boolean;
|
|
7
7
|
primary: boolean;
|
|
8
8
|
iconOnly: boolean;
|
|
9
9
|
large: boolean;
|
|
10
10
|
fngClick: EventEmitter<any>;
|
|
11
|
-
content: ElementRef;
|
|
11
|
+
content: ElementRef | undefined;
|
|
12
12
|
onClick(event: any): void;
|
|
13
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<ButtonComponent, never>;
|
|
14
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ButtonComponent, "fng-button", never, { "text": "text"; "icon": "icon"; "disabled": "disabled"; "primary": "primary"; "iconOnly": "iconOnly"; "large": "large"; }, { "fngClick": "fngClick"; }, ["content"], ["*"],
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ButtonComponent, "fng-button", never, { "text": "text"; "icon": "icon"; "disabled": "disabled"; "primary": "primary"; "iconOnly": "iconOnly"; "large": "large"; }, { "fngClick": "fngClick"; }, ["content"], ["*"], true, never>;
|
|
15
15
|
}
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { EventEmitter, ElementRef } from '@angular/core';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export declare class LinkButtonComponent {
|
|
4
|
-
text: string;
|
|
5
|
-
icon: string;
|
|
4
|
+
text: string | undefined;
|
|
5
|
+
icon: string | undefined;
|
|
6
6
|
disabled: boolean;
|
|
7
7
|
iconOnly: boolean;
|
|
8
8
|
fngClick: EventEmitter<any>;
|
|
9
|
-
content: ElementRef;
|
|
9
|
+
content: ElementRef | undefined;
|
|
10
10
|
onClick(event: any): void;
|
|
11
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<LinkButtonComponent, never>;
|
|
12
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LinkButtonComponent, "fng-link-button", never, { "text": "text"; "icon": "icon"; "disabled": "disabled"; "iconOnly": "iconOnly"; }, { "fngClick": "fngClick"; }, ["content"], ["*"],
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LinkButtonComponent, "fng-link-button", never, { "text": "text"; "icon": "icon"; "disabled": "disabled"; "iconOnly": "iconOnly"; }, { "fngClick": "fngClick"; }, ["content"], ["*"], true, never>;
|
|
13
13
|
}
|
|
@@ -11,8 +11,8 @@ export declare class ChipComponent {
|
|
|
11
11
|
type: ChipType;
|
|
12
12
|
selected: boolean;
|
|
13
13
|
disabled: boolean;
|
|
14
|
-
icon: string;
|
|
14
|
+
icon: string | undefined;
|
|
15
15
|
large: boolean;
|
|
16
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<ChipComponent, never>;
|
|
17
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ChipComponent, "fng-chip", never, { "type": "type"; "selected": "selected"; "disabled": "disabled"; "icon": "icon"; "large": "large"; }, {}, never, ["*"],
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ChipComponent, "fng-chip", never, { "type": "type"; "selected": "selected"; "disabled": "disabled"; "icon": "icon"; "large": "large"; }, {}, never, ["*"], true, never>;
|
|
18
18
|
}
|
|
@@ -2,5 +2,5 @@ import * as i0 from "@angular/core";
|
|
|
2
2
|
export declare class ChipContainerComponent {
|
|
3
3
|
large: boolean;
|
|
4
4
|
static ɵfac: i0.ɵɵFactoryDeclaration<ChipContainerComponent, never>;
|
|
5
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ChipContainerComponent, "fng-chip-container", never, { "large": "large"; }, {}, never, ["*"],
|
|
5
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ChipContainerComponent, "fng-chip-container", never, { "large": "large"; }, {}, never, ["*"], true, never>;
|
|
6
6
|
}
|
|
@@ -1,74 +1,41 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./
|
|
3
|
-
import * as i2 from "./
|
|
4
|
-
import * as i3 from "./
|
|
5
|
-
import * as i4 from "./
|
|
6
|
-
import * as i5 from "./
|
|
2
|
+
import * as i1 from "./pagination/pagination.component";
|
|
3
|
+
import * as i2 from "./mobile-flyout/mobile-flyout-page/mobile-flyout-page.component";
|
|
4
|
+
import * as i3 from "./mobile-flyout/mobile-flyout-item/mobile-flyout-item.component";
|
|
5
|
+
import * as i4 from "./mobile-flyout/mobile-flyout.component";
|
|
6
|
+
import * as i5 from "./loading-indicator/loading-indicator.component";
|
|
7
7
|
import * as i6 from "./chips/chip/chip.component";
|
|
8
|
-
import * as i7 from "./
|
|
9
|
-
import * as i8 from "./
|
|
10
|
-
import * as i9 from "./
|
|
11
|
-
import * as i10 from "
|
|
12
|
-
import * as i11 from "
|
|
13
|
-
import * as i12 from "./
|
|
14
|
-
import * as i13 from "./
|
|
15
|
-
import * as i14 from "./
|
|
16
|
-
import * as i15 from "./
|
|
17
|
-
import * as i16 from "./
|
|
18
|
-
import * as i17 from "./
|
|
19
|
-
import * as i18 from "./
|
|
20
|
-
import * as i19 from "./
|
|
21
|
-
import * as i20 from "./
|
|
22
|
-
import * as i21 from "./
|
|
23
|
-
import * as i22 from "./
|
|
24
|
-
import * as i23 from "./
|
|
25
|
-
import * as i24 from "./
|
|
26
|
-
import * as i25 from "./
|
|
27
|
-
import * as i26 from "./
|
|
28
|
-
import * as i27 from "./
|
|
29
|
-
import * as i28 from "./
|
|
30
|
-
import * as i29 from "./
|
|
31
|
-
import * as i30 from "./
|
|
32
|
-
import * as i31 from "./
|
|
33
|
-
import * as i32 from "./
|
|
34
|
-
import * as i33 from "./
|
|
35
|
-
import * as i34 from "
|
|
36
|
-
import * as i35 from "
|
|
37
|
-
import * as i36 from "@angular/cdk/overlay";
|
|
38
|
-
import * as i37 from "@angular/cdk/portal";
|
|
39
|
-
import * as i38 from "../pipes/pipes.module";
|
|
40
|
-
export * from './buttons/button/button.component';
|
|
41
|
-
export * from './buttons/link-button/link-button.component';
|
|
42
|
-
export * from './breadcrumb/breadcrumb.component';
|
|
43
|
-
export * from './loading-indicator/loading-indicator.component';
|
|
44
|
-
export * from './chips/chip/chip.component';
|
|
45
|
-
export * from './chips/chip-container/chip-container.component';
|
|
46
|
-
export * from './table-header-cell/table-header-cell.directive';
|
|
47
|
-
export * from './stepper-vertical/stepper-vertical.component';
|
|
48
|
-
export * from './stepper-vertical/step-vertical/step-vertical.component';
|
|
49
|
-
export * from './stepper-horizontal/stepper-horizontal.component';
|
|
50
|
-
export * from './stepper-horizontal/step-horizontal/step-horizontal.component';
|
|
51
|
-
export * from './popovers/popover/popover.component';
|
|
52
|
-
export * from './popovers/popover-menu/popover-menu.component';
|
|
53
|
-
export * from './popovers/tooltip/tooltip.directive';
|
|
54
|
-
export * from './popovers/popover-content/popover-content.component';
|
|
55
|
-
export * from './popovers/popover-content/popover-content.directive';
|
|
56
|
-
export * from './popovers/legend/legend.component';
|
|
57
|
-
export * from './popovers/legend/legend.directive';
|
|
58
|
-
export * from './popovers/popover.models';
|
|
59
|
-
export * from './progress/progress.component';
|
|
60
|
-
export * from './tabs/tabs.component';
|
|
61
|
-
export * from './tabs/tab-pane/tab-pane.component';
|
|
62
|
-
export * from './pagination/pagination.component';
|
|
63
|
-
export * from './scroll';
|
|
64
|
-
export * from './search-input/search-input.component';
|
|
65
|
-
export * from './click-outside.directive';
|
|
66
|
-
export * from './mobile-flyout/mobile-flyout.component';
|
|
67
|
-
export * from './mobile-flyout/mobile-flyout-page/mobile-flyout-page.component';
|
|
68
|
-
export * from './mobile-flyout/mobile-flyout-item/mobile-flyout-item.component';
|
|
69
|
-
export * from './accordion';
|
|
8
|
+
import * as i7 from "./chips/chip-container/chip-container.component";
|
|
9
|
+
import * as i8 from "./tabs/tabs.component";
|
|
10
|
+
import * as i9 from "./tabs/tab-pane/tab-pane.component";
|
|
11
|
+
import * as i10 from "@angular/router";
|
|
12
|
+
import * as i11 from "@angular/common";
|
|
13
|
+
import * as i12 from "./breadcrumb/breadcrumb.component";
|
|
14
|
+
import * as i13 from "./accordion/accordion.component";
|
|
15
|
+
import * as i14 from "./accordion/accordion-header/accordion-header.component";
|
|
16
|
+
import * as i15 from "./accordion/accordion-item/accordion-item.component";
|
|
17
|
+
import * as i16 from "./accordion/accordion-item/accordion-item-body/accordion-item-body.component";
|
|
18
|
+
import * as i17 from "./accordion/accordion-item/accordion-item-header/accordion-item-header.component";
|
|
19
|
+
import * as i18 from "./buttons/button/button.component";
|
|
20
|
+
import * as i19 from "./buttons/link-button/link-button.component";
|
|
21
|
+
import * as i20 from "./search-input/search-input.component";
|
|
22
|
+
import * as i21 from "./snackbar/snackbar-container.component";
|
|
23
|
+
import * as i22 from "./stepper-horizontal/step-horizontal/step-horizontal.component";
|
|
24
|
+
import * as i23 from "./stepper-horizontal/stepper-horizontal.component";
|
|
25
|
+
import * as i24 from "./stepper-vertical/stepper-vertical.component";
|
|
26
|
+
import * as i25 from "./stepper-vertical/step-vertical/step-vertical.component";
|
|
27
|
+
import * as i26 from "./table-header-cell/table-header-cell.directive";
|
|
28
|
+
import * as i27 from "./scroll/scrollable.directive";
|
|
29
|
+
import * as i28 from "./progress/progress.component";
|
|
30
|
+
import * as i29 from "./popovers/legend/legend.directive";
|
|
31
|
+
import * as i30 from "./popovers/popover/popover.component";
|
|
32
|
+
import * as i31 from "./popovers/popover-content/popover-content.directive";
|
|
33
|
+
import * as i32 from "./popovers/popover-content/popover-content.component";
|
|
34
|
+
import * as i33 from "./popovers/popover-menu/popover-menu.component";
|
|
35
|
+
import * as i34 from "./popovers/tooltip/tooltip.directive";
|
|
36
|
+
import * as i35 from "./popovers/legend/legend.component";
|
|
70
37
|
export declare class FestoAngularComponentsModule {
|
|
71
38
|
static ɵfac: i0.ɵɵFactoryDeclaration<FestoAngularComponentsModule, never>;
|
|
72
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<FestoAngularComponentsModule, [typeof i1.
|
|
39
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<FestoAngularComponentsModule, never, [typeof i1.PaginationComponent, typeof i2.MobileFlyoutPageComponent, typeof i3.MobileFlyoutItemComponent, typeof i4.MobileFlyoutComponent, typeof i5.LoadingIndicatorComponent, typeof i6.ChipComponent, typeof i7.ChipContainerComponent, typeof i8.TabsComponent, typeof i9.TabPaneComponent, typeof i10.RouterModule, typeof i11.CommonModule, typeof i12.BreadcrumbComponent, typeof i13.AccordionComponent, typeof i14.AccordionHeaderComponent, typeof i15.AccordionItemComponent, typeof i16.AccordionItemBodyComponent, typeof i17.AccordionItemHeaderComponent, typeof i18.ButtonComponent, typeof i19.LinkButtonComponent, typeof i20.SearchInputComponent, typeof i21.SnackbarContainerComponent, typeof i22.StepHorizontalComponent, typeof i23.StepperHorizontalComponent, typeof i24.StepperVerticalComponent, typeof i25.StepVerticalComponent, typeof i26.TableHeaderCellDirective, typeof i27.ScrollableDirective, typeof i28.ProgressComponent, typeof i29.LegendDirective, typeof i30.PopoverComponent, typeof i31.PopoverContentDirective, typeof i32.PopoverContentComponent, typeof i33.PopoverMenuComponent, typeof i34.TooltipDirective, typeof i29.LegendDirective, typeof i35.LegendComponent], [typeof i12.BreadcrumbComponent, typeof i13.AccordionComponent, typeof i14.AccordionHeaderComponent, typeof i15.AccordionItemComponent, typeof i16.AccordionItemBodyComponent, typeof i17.AccordionItemHeaderComponent, typeof i18.ButtonComponent, typeof i19.LinkButtonComponent, typeof i7.ChipContainerComponent, typeof i6.ChipComponent, typeof i5.LoadingIndicatorComponent, typeof i4.MobileFlyoutComponent, typeof i3.MobileFlyoutItemComponent, typeof i2.MobileFlyoutPageComponent, typeof i1.PaginationComponent, typeof i20.SearchInputComponent, typeof i21.SnackbarContainerComponent, typeof i22.StepHorizontalComponent, typeof i23.StepperHorizontalComponent, typeof i24.StepperVerticalComponent, typeof i25.StepVerticalComponent, typeof i26.TableHeaderCellDirective, typeof i27.ScrollableDirective, typeof i28.ProgressComponent, typeof i8.TabsComponent, typeof i9.TabPaneComponent, typeof i29.LegendDirective, typeof i30.PopoverComponent, typeof i31.PopoverContentDirective, typeof i32.PopoverContentComponent, typeof i33.PopoverMenuComponent, typeof i34.TooltipDirective, typeof i29.LegendDirective, typeof i35.LegendComponent]>;
|
|
73
40
|
static ɵinj: i0.ɵɵInjectorDeclaration<FestoAngularComponentsModule>;
|
|
74
41
|
}
|
|
@@ -2,5 +2,5 @@ import * as i0 from "@angular/core";
|
|
|
2
2
|
export declare class LoadingIndicatorComponent {
|
|
3
3
|
size: 'large' | 'medium' | 'small';
|
|
4
4
|
static ɵfac: i0.ɵɵFactoryDeclaration<LoadingIndicatorComponent, never>;
|
|
5
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LoadingIndicatorComponent, "fng-loading-indicator", never, { "size": "size"; }, {}, never, ["*"],
|
|
5
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LoadingIndicatorComponent, "fng-loading-indicator", never, { "size": "size"; }, {}, never, ["*"], true, never>;
|
|
6
6
|
}
|
|
@@ -11,5 +11,5 @@ export declare class MobileFlyoutItemComponent implements OnChanges {
|
|
|
11
11
|
ngOnChanges(_: SimpleChanges): void;
|
|
12
12
|
onClick(): void;
|
|
13
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<MobileFlyoutItemComponent, [{ optional: true; }]>;
|
|
14
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MobileFlyoutItemComponent, "fng-mobile-flyout-item", never, { "icon": "icon"; "pageLink": "pageLink"; "lastElement": "lastElement"; }, {}, never, ["*"],
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MobileFlyoutItemComponent, "fng-mobile-flyout-item", never, { "icon": "icon"; "pageLink": "pageLink"; "lastElement": "lastElement"; }, {}, never, ["*"], true, never>;
|
|
15
15
|
}
|
|
@@ -15,5 +15,5 @@ export declare class MobileFlyoutPageComponent implements AfterContentInit, OnDe
|
|
|
15
15
|
onBack(): void;
|
|
16
16
|
private initItemComponents;
|
|
17
17
|
static ɵfac: i0.ɵɵFactoryDeclaration<MobileFlyoutPageComponent, never>;
|
|
18
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MobileFlyoutPageComponent, "fng-mobile-flyout-page", never, { "name": "name"; "back": "back"; }, {}, ["itemComponents"], ["*"],
|
|
18
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MobileFlyoutPageComponent, "fng-mobile-flyout-page", never, { "name": "name"; "back": "back"; }, {}, ["itemComponents"], ["*"], true, never>;
|
|
19
19
|
}
|
|
@@ -13,5 +13,5 @@ export declare class MobileFlyoutComponent implements AfterContentInit, OnDestro
|
|
|
13
13
|
onClickOutside(): void;
|
|
14
14
|
private initPageComponents;
|
|
15
15
|
static ɵfac: i0.ɵɵFactoryDeclaration<MobileFlyoutComponent, never>;
|
|
16
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MobileFlyoutComponent, "fng-mobile-flyout", never, {}, { "flyoutOpenChange": "flyoutOpenChange"; }, ["pageComponents"], ["*"],
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MobileFlyoutComponent, "fng-mobile-flyout", never, {}, { "flyoutOpenChange": "flyoutOpenChange"; }, ["pageComponents"], ["*"], true, never>;
|
|
17
17
|
}
|
|
@@ -17,5 +17,5 @@ export declare class PaginationComponent {
|
|
|
17
17
|
onBtnUp(): void;
|
|
18
18
|
onDotClick(index: number): void;
|
|
19
19
|
static ɵfac: i0.ɵɵFactoryDeclaration<PaginationComponent, never>;
|
|
20
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PaginationComponent, "fng-pagination", never, { "type": "type"; "pageCurrent": "pageCurrent"; "pageMax": "pageMax"; }, { "changePage": "changePage"; }, never, never,
|
|
20
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PaginationComponent, "fng-pagination", never, { "type": "type"; "pageCurrent": "pageCurrent"; "pageMax": "pageMax"; }, { "changePage": "changePage"; }, never, never, true, never>;
|
|
21
21
|
}
|
|
@@ -12,11 +12,11 @@ export declare class LegendComponent {
|
|
|
12
12
|
private popoverService;
|
|
13
13
|
items: LegendItem[];
|
|
14
14
|
options: PopoverLegendOptions;
|
|
15
|
-
templateRef: TemplateRef<any
|
|
15
|
+
templateRef: TemplateRef<any> | undefined;
|
|
16
16
|
private popoverRef;
|
|
17
17
|
constructor(popoverService: PopoverService);
|
|
18
18
|
show(origin: HTMLElement): void;
|
|
19
19
|
hide(): void;
|
|
20
20
|
static ɵfac: i0.ɵɵFactoryDeclaration<LegendComponent, never>;
|
|
21
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LegendComponent, "fng-legend", never, { "items": "items"; "options": "options"; }, {}, never, never,
|
|
21
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LegendComponent, "fng-legend", never, { "items": "items"; "options": "options"; }, {}, never, never, true, never>;
|
|
22
22
|
}
|
|
@@ -3,11 +3,11 @@ import { PopoverContentComponent } from '../popover-content/popover-content.comp
|
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class LegendDirective implements OnInit {
|
|
5
5
|
private elmenetRef;
|
|
6
|
-
ref: PopoverContentComponent;
|
|
6
|
+
ref: PopoverContentComponent | undefined;
|
|
7
7
|
private origin;
|
|
8
8
|
constructor(elmenetRef: ElementRef);
|
|
9
9
|
ngOnInit(): void;
|
|
10
10
|
show(): void;
|
|
11
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<LegendDirective, never>;
|
|
12
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<LegendDirective, "[fngLegend]", never, {}, {}, ["ref"], never,
|
|
12
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<LegendDirective, "[fngLegend]", never, {}, {}, ["ref"], never, true, never>;
|
|
13
13
|
}
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
2
|
import { PopoverRef } from '../popover-ref';
|
|
3
|
-
import {
|
|
3
|
+
import { PopoverContentTypes } from '../popover.models';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class PopoverComponent implements OnInit {
|
|
6
6
|
private popoverRef;
|
|
7
|
-
type: PopoverContentTypes;
|
|
8
|
-
content:
|
|
7
|
+
type: PopoverContentTypes | null;
|
|
8
|
+
content: any;
|
|
9
9
|
context: any;
|
|
10
10
|
constructor(popoverRef: PopoverRef);
|
|
11
11
|
ngOnInit(): void;
|
|
12
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<PopoverComponent, never>;
|
|
13
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PopoverComponent, "fng-popover", never, {}, {}, never, never,
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PopoverComponent, "fng-popover", never, {}, {}, never, never, true, never>;
|
|
14
14
|
}
|
|
@@ -16,7 +16,7 @@ export declare class PopoverContentComponent implements AfterViewInit, OnDestroy
|
|
|
16
16
|
close: EventEmitter<PopoverCloseEvent>;
|
|
17
17
|
actions: EventEmitter<PopoverContentActions>;
|
|
18
18
|
templateRef: TemplateRef<any>;
|
|
19
|
-
contentRef: ElementRef;
|
|
19
|
+
contentRef: ElementRef | undefined;
|
|
20
20
|
showDefault: boolean;
|
|
21
21
|
offScreen: boolean;
|
|
22
22
|
height: number;
|
|
@@ -29,5 +29,5 @@ export declare class PopoverContentComponent implements AfterViewInit, OnDestroy
|
|
|
29
29
|
show(origin: HTMLElement): void;
|
|
30
30
|
hide(): void;
|
|
31
31
|
static ɵfac: i0.ɵɵFactoryDeclaration<PopoverContentComponent, never>;
|
|
32
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PopoverContentComponent, "fng-popover-content", never, { "options": "options"; }, { "close": "close"; "actions": "actions"; }, never, ["*"],
|
|
32
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PopoverContentComponent, "fng-popover-content", never, { "options": "options"; }, { "close": "close"; "actions": "actions"; }, never, ["*"], true, never>;
|
|
33
33
|
}
|
|
@@ -3,12 +3,12 @@ import { PopoverContentComponent } from './popover-content.component';
|
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class PopoverContentDirective implements OnInit {
|
|
5
5
|
private elmenetRef;
|
|
6
|
-
component: PopoverContentComponent;
|
|
6
|
+
component: PopoverContentComponent | undefined;
|
|
7
7
|
private origin;
|
|
8
8
|
constructor(elmenetRef: ElementRef);
|
|
9
9
|
ngOnInit(): void;
|
|
10
10
|
show(): void;
|
|
11
11
|
hide(): void;
|
|
12
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<PopoverContentDirective, never>;
|
|
13
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<PopoverContentDirective, "[fngPopoverContent]", never, {}, {}, ["component"], never,
|
|
13
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<PopoverContentDirective, "[fngPopoverContent]", never, {}, {}, ["component"], never, true, never>;
|
|
14
14
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { PopoverService } from '../popover.service';
|
|
1
|
+
import { ElementRef, EventEmitter, TemplateRef } from '@angular/core';
|
|
3
2
|
import { PopoverMenu, PopoverMenuAction, PopoverPosition } from '../popover.models';
|
|
3
|
+
import { PopoverService } from '../popover.service';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export interface PopoverMenuOptions {
|
|
6
6
|
positions?: PopoverPosition[];
|
|
@@ -11,14 +11,14 @@ export declare class PopoverMenuComponent {
|
|
|
11
11
|
menu: PopoverMenu[];
|
|
12
12
|
options: PopoverMenuOptions;
|
|
13
13
|
menuAction: EventEmitter<PopoverMenuAction>;
|
|
14
|
-
menuTpl: TemplateRef<any
|
|
15
|
-
origin: ElementRef;
|
|
14
|
+
menuTpl: TemplateRef<any> | undefined;
|
|
15
|
+
origin: ElementRef | undefined;
|
|
16
16
|
private popoverRef;
|
|
17
17
|
private itemHeight;
|
|
18
18
|
constructor(popoverService: PopoverService);
|
|
19
|
-
show(event: Event, content: TemplateRef<any
|
|
19
|
+
show(event: Event, content: TemplateRef<any> | undefined, origin: HTMLElement): void;
|
|
20
20
|
action(action: string, payload: any): void;
|
|
21
21
|
hide(): void;
|
|
22
22
|
static ɵfac: i0.ɵɵFactoryDeclaration<PopoverMenuComponent, never>;
|
|
23
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PopoverMenuComponent, "fng-popover-menu", never, { "icon": "icon"; "menu": "menu"; "options": "options"; }, { "menuAction": "menuAction"; }, never, never,
|
|
23
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PopoverMenuComponent, "fng-popover-menu", never, { "icon": "icon"; "menu": "menu"; "options": "options"; }, { "menuAction": "menuAction"; }, never, never, true, never>;
|
|
24
24
|
}
|
|
@@ -2,11 +2,11 @@ import { OverlayRef } from '@angular/cdk/overlay';
|
|
|
2
2
|
import { PopoverContent, PopoverCloseEvent } from './popover.models';
|
|
3
3
|
export declare class PopoverRef<T = any> {
|
|
4
4
|
overlay: OverlayRef;
|
|
5
|
-
content: PopoverContent;
|
|
5
|
+
content: PopoverContent | undefined;
|
|
6
6
|
data: T;
|
|
7
7
|
private afterClosed;
|
|
8
8
|
afterClosed$: import("rxjs").Observable<PopoverCloseEvent<T>>;
|
|
9
|
-
constructor(overlay: OverlayRef, content: PopoverContent, data: T);
|
|
9
|
+
constructor(overlay: OverlayRef, content: PopoverContent | 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,24 +1,12 @@
|
|
|
1
1
|
import { TemplateRef, Type } from '@angular/core';
|
|
2
2
|
export interface PopoverParams<T> {
|
|
3
|
-
origin
|
|
4
|
-
content
|
|
3
|
+
origin?: HTMLElement;
|
|
4
|
+
content?: PopoverContent;
|
|
5
5
|
options?: PopoverOptions;
|
|
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"
|
|
6
|
+
data: T;
|
|
21
7
|
}
|
|
8
|
+
export type PopoverTypes = 'tooltip' | 'menu' | 'legend' | 'content';
|
|
9
|
+
export type PopoverPosition = 'top' | 'bottom' | 'right' | 'rightTop' | 'left' | 'leftTop';
|
|
22
10
|
export interface PopoverOptions {
|
|
23
11
|
type: PopoverTypes;
|
|
24
12
|
width?: string | number;
|
|
@@ -29,18 +17,18 @@ export interface PopoverOptions {
|
|
|
29
17
|
minHeight?: string | number;
|
|
30
18
|
hasBackdrop?: boolean;
|
|
31
19
|
backdropClass?: string;
|
|
32
|
-
positions?: PopoverPosition[];
|
|
20
|
+
positions?: PopoverPosition[] | undefined;
|
|
33
21
|
}
|
|
34
22
|
export interface PopoverCloseEvent<T = any> {
|
|
35
23
|
type: 'backdropClick' | 'close';
|
|
36
|
-
data: T;
|
|
24
|
+
data: T | undefined;
|
|
37
25
|
}
|
|
38
26
|
export declare enum PopoverContentTypes {
|
|
39
27
|
Template = "template",
|
|
40
28
|
Component = "component",
|
|
41
29
|
Text = "text"
|
|
42
30
|
}
|
|
43
|
-
export
|
|
31
|
+
export type PopoverContent = TemplateRef<any> | Type<any> | string;
|
|
44
32
|
export interface PopoverMenu<T = any> {
|
|
45
33
|
text: string;
|
|
46
34
|
icon: string;
|
|
@@ -25,5 +25,5 @@ export declare class TooltipDirective implements OnChanges, OnDestroy {
|
|
|
25
25
|
private open;
|
|
26
26
|
private close;
|
|
27
27
|
static ɵfac: i0.ɵɵFactoryDeclaration<TooltipDirective, never>;
|
|
28
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<TooltipDirective, "[fngTooltip]", never, { "text": "fngTooltip"; "isVisible": "fngTooltipVisible"; "positions": "fngTooltipPositions"; "options": "options"; }, {}, never, never,
|
|
28
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TooltipDirective, "[fngTooltip]", never, { "text": "fngTooltip"; "isVisible": "fngTooltipVisible"; "positions": "fngTooltipPositions"; "options": "options"; }, {}, never, never, true, never>;
|
|
29
29
|
}
|
|
@@ -4,5 +4,5 @@ export declare class ProgressComponent {
|
|
|
4
4
|
error: boolean;
|
|
5
5
|
background: 'white' | 'background' | 'black';
|
|
6
6
|
static ɵfac: i0.ɵɵFactoryDeclaration<ProgressComponent, never>;
|
|
7
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ProgressComponent, "fng-progress", never, { "progress": "progress"; "error": "error"; "background": "background"; }, {}, never, never,
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ProgressComponent, "fng-progress", never, { "progress": "progress"; "error": "error"; "background": "background"; }, {}, never, never, true, never>;
|
|
8
8
|
}
|
|
@@ -20,5 +20,5 @@ export declare class ScrollableDirective implements OnChanges, OnDestroy {
|
|
|
20
20
|
private updateMaxWidth;
|
|
21
21
|
private delay;
|
|
22
22
|
static ɵfac: i0.ɵɵFactoryDeclaration<ScrollableDirective, never>;
|
|
23
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<ScrollableDirective, "[fngScrollable]", never, { "scrollbarMinSize": "fngScrollableScrollbarMinSize"; "viewReady": "fngScrollableViewReady"; }, {}, never, never,
|
|
23
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ScrollableDirective, "[fngScrollable]", never, { "scrollbarMinSize": "fngScrollableScrollbarMinSize"; "viewReady": "fngScrollableViewReady"; }, {}, never, never, true, never>;
|
|
24
24
|
}
|
|
@@ -69,5 +69,5 @@ export declare class SearchInputComponent {
|
|
|
69
69
|
onSuggestionClick(suggestion: SearchSuggestion): void;
|
|
70
70
|
clearQuery(): void;
|
|
71
71
|
static ɵfac: i0.ɵɵFactoryDeclaration<SearchInputComponent, never>;
|
|
72
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SearchInputComponent, "fng-search-input", never, { "label": "label"; "disabled": "disabled"; "value": "value"; "suggestions": "suggestions"; }, { "fngChange": "fngChange"; "fngSearch": "fngSearch"; }, never, never,
|
|
72
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SearchInputComponent, "fng-search-input", never, { "label": "label"; "disabled": "disabled"; "value": "value"; "suggestions": "suggestions"; }, { "fngChange": "fngChange"; "fngSearch": "fngSearch"; }, never, never, true, never>;
|
|
73
73
|
}
|
|
@@ -3,5 +3,5 @@ import * as i0 from "@angular/core";
|
|
|
3
3
|
export declare class SnackbarContainerComponent {
|
|
4
4
|
config: SnackbarConfig;
|
|
5
5
|
static ɵfac: i0.ɵɵFactoryDeclaration<SnackbarContainerComponent, never>;
|
|
6
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SnackbarContainerComponent, "fng-snackbar-container", never, { "config": "config"; }, {}, never, never,
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SnackbarContainerComponent, "fng-snackbar-container", never, { "config": "config"; }, {}, never, never, true, never>;
|
|
7
7
|
}
|