@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
|
@@ -1,20 +1,17 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { OnDestroy, ViewContainerRef } from '@angular/core';
|
|
2
2
|
import { SnackbarConfig } from './snackbar.models';
|
|
3
3
|
import { SnackbarService } from './snackbar.service';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class SnackbarContainerDirective implements OnDestroy
|
|
5
|
+
export declare class SnackbarContainerDirective implements OnDestroy {
|
|
6
6
|
private viewContainerRef;
|
|
7
|
-
private componentFactoryResolver;
|
|
8
7
|
private snackbarService;
|
|
9
8
|
fngSnackbarContainer: SnackbarConfig;
|
|
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: SnackbarService);
|
|
15
12
|
ngOnDestroy(): void;
|
|
16
13
|
private push;
|
|
17
14
|
private remove;
|
|
18
15
|
static ɵfac: i0.ɵɵFactoryDeclaration<SnackbarContainerDirective, never>;
|
|
19
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<SnackbarContainerDirective, "[fngSnackbarContainer]", never, { "fngSnackbarContainer": "fngSnackbarContainer"; }, {}, never, never,
|
|
16
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<SnackbarContainerDirective, "[fngSnackbarContainer]", never, { "fngSnackbarContainer": "fngSnackbarContainer"; }, {}, never, never, true, never>;
|
|
20
17
|
}
|
|
@@ -13,5 +13,5 @@ export declare class SnackbarComponent implements AfterViewInit, OnDestroy {
|
|
|
13
13
|
onAction(): void;
|
|
14
14
|
onClose(): void;
|
|
15
15
|
static ɵfac: i0.ɵɵFactoryDeclaration<SnackbarComponent, never>;
|
|
16
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SnackbarComponent, "fng-snackbar", never, { "data": "data"; }, { "close": "close"; "action": "action"; }, never, never,
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SnackbarComponent, "fng-snackbar", never, { "data": "data"; }, { "close": "close"; "action": "action"; }, never, never, true, never>;
|
|
17
17
|
}
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "
|
|
3
|
-
import * as i2 from "./snackbar
|
|
4
|
-
import * as i3 from "./snackbar-container.
|
|
5
|
-
import * as i4 from "
|
|
2
|
+
import * as i1 from "@angular/common";
|
|
3
|
+
import * as i2 from "./snackbar.component";
|
|
4
|
+
import * as i3 from "./snackbar-container.directive";
|
|
5
|
+
import * as i4 from "./snackbar-container.component";
|
|
6
6
|
export * from './snackbar.models';
|
|
7
7
|
export * from './snackbar.component';
|
|
8
8
|
export * from './snackbar-container.component';
|
|
9
9
|
export * from './snackbar-container.directive';
|
|
10
10
|
export declare class FestoAngularSnackbarModule {
|
|
11
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<FestoAngularSnackbarModule, never>;
|
|
12
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<FestoAngularSnackbarModule, [typeof i1.
|
|
12
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<FestoAngularSnackbarModule, never, [typeof i1.CommonModule, typeof i2.SnackbarComponent, typeof i3.SnackbarContainerDirective, typeof i4.SnackbarContainerComponent], [typeof i4.SnackbarContainerComponent, typeof i3.SnackbarContainerDirective, typeof i4.SnackbarContainerComponent]>;
|
|
13
13
|
static ɵinj: i0.ɵɵInjectorDeclaration<FestoAngularSnackbarModule>;
|
|
14
14
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Observable } from 'rxjs';
|
|
2
2
|
import { SnackbarData } from './snackbar.models';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
|
-
export
|
|
4
|
+
export type SnackDescription = {
|
|
5
5
|
data: SnackbarData;
|
|
6
6
|
actionCallback?: () => void;
|
|
7
7
|
closeCallback?: () => void;
|
|
@@ -3,5 +3,5 @@ export declare class StepHorizontalComponent {
|
|
|
3
3
|
isActive: boolean;
|
|
4
4
|
title: string;
|
|
5
5
|
static ɵfac: i0.ɵɵFactoryDeclaration<StepHorizontalComponent, never>;
|
|
6
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<StepHorizontalComponent, "fng-step-horizontal", never, { "isActive": "isActive"; "title": "title"; }, {}, never, ["*"],
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<StepHorizontalComponent, "fng-step-horizontal", never, { "isActive": "isActive"; "title": "title"; }, {}, never, ["*"], true, never>;
|
|
7
7
|
}
|
|
@@ -10,5 +10,5 @@ export declare class StepperHorizontalComponent implements AfterContentInit, OnC
|
|
|
10
10
|
ngAfterContentInit(): void;
|
|
11
11
|
onStepClick(index: number): void;
|
|
12
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<StepperHorizontalComponent, never>;
|
|
13
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<StepperHorizontalComponent, "fng-stepper-horizontal", never, { "stepIndex": "stepIndex"; }, { "stepIndexChange": "stepIndexChange"; }, ["stepComponents"], ["*"],
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<StepperHorizontalComponent, "fng-stepper-horizontal", never, { "stepIndex": "stepIndex"; }, { "stepIndexChange": "stepIndexChange"; }, ["stepComponents"], ["*"], true, never>;
|
|
14
14
|
}
|
|
@@ -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
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<StepVerticalComponent, never>;
|
|
17
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<StepVerticalComponent, "fng-step-vertical", never, { "index": "index"; "title": "title"; "isDone": "isDone"; "isLastElement": "isLastElement"; "isActive": "isActive"; }, {}, never, ["*"],
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<StepVerticalComponent, "fng-step-vertical", never, { "index": "index"; "title": "title"; "isDone": "isDone"; "isLastElement": "isLastElement"; "isActive": "isActive"; }, {}, never, ["*"], true, never>;
|
|
18
18
|
}
|
|
@@ -10,5 +10,5 @@ export declare class StepperVerticalComponent implements AfterContentInit, OnCha
|
|
|
10
10
|
ngAfterContentInit(): void;
|
|
11
11
|
onStepClick(index: number): void;
|
|
12
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<StepperVerticalComponent, never>;
|
|
13
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<StepperVerticalComponent, "fng-stepper-vertical", never, { "stepIndex": "stepIndex"; }, { "stepIndexChange": "stepIndexChange"; }, ["stepComponents"], ["*"],
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<StepperVerticalComponent, "fng-stepper-vertical", never, { "stepIndex": "stepIndex"; }, { "stepIndexChange": "stepIndexChange"; }, ["stepComponents"], ["*"], true, never>;
|
|
14
14
|
}
|
|
@@ -5,17 +5,17 @@ export interface TableColumnOrder {
|
|
|
5
5
|
ascending: boolean;
|
|
6
6
|
}
|
|
7
7
|
export declare class TableHeaderCellDirective {
|
|
8
|
-
order: TableColumnOrder;
|
|
9
|
-
fngTh: string;
|
|
8
|
+
order: TableColumnOrder | 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
19
|
static ɵfac: i0.ɵɵFactoryDeclaration<TableHeaderCellDirective, never>;
|
|
20
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<TableHeaderCellDirective, "[fngTh]", never, { "order": "order"; "fngTh": "fngTh"; "abbr": "abbr"; "colspan": "colspan"; "headers": "headers"; "rowspan": "rowspan"; "scope": "scope"; }, { "changeOrder": "changeOrder"; }, never, never,
|
|
20
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TableHeaderCellDirective, "[fngTh]", never, { "order": "order"; "fngTh": "fngTh"; "abbr": "abbr"; "colspan": "colspan"; "headers": "headers"; "rowspan": "rowspan"; "scope": "scope"; }, { "changeOrder": "changeOrder"; }, never, never, true, never>;
|
|
21
21
|
}
|
|
@@ -2,17 +2,17 @@ import { OnChanges } from '@angular/core';
|
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export declare class TabPaneComponent 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
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<TabPaneComponent, never>;
|
|
17
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TabPaneComponent, "fng-tab-pane", never, { "id": "id"; "name": "name"; "icon": "icon"; "active": "active"; "isVisible": "isVisible"; "disabled": "disabled"; }, {}, never, ["*"],
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TabPaneComponent, "fng-tab-pane", never, { "id": "id"; "name": "name"; "icon": "icon"; "active": "active"; "isVisible": "isVisible"; "disabled": "disabled"; }, {}, never, ["*"], true, never>;
|
|
18
18
|
}
|
|
@@ -3,13 +3,13 @@ import { TabPaneComponent } from './tab-pane/tab-pane.component';
|
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export interface Tab {
|
|
5
5
|
name: string;
|
|
6
|
-
paneId: string;
|
|
6
|
+
paneId: string | null;
|
|
7
7
|
active?: boolean;
|
|
8
|
-
icon?: string;
|
|
8
|
+
icon?: string | null;
|
|
9
9
|
disabled?: boolean;
|
|
10
10
|
}
|
|
11
|
-
export
|
|
12
|
-
export
|
|
11
|
+
export type TabItemAppearance = 'fill' | 'equal' | 'default';
|
|
12
|
+
export type TabViewType = 'legacy' | 'responsive';
|
|
13
13
|
export interface TabsConfiguration {
|
|
14
14
|
tabBar?: {
|
|
15
15
|
fullWidth?: boolean;
|
|
@@ -44,16 +44,16 @@ export declare class TabsComponent implements AfterContentInit, AfterViewInit, O
|
|
|
44
44
|
static nextId: number;
|
|
45
45
|
viewType: TabViewType;
|
|
46
46
|
showDivider: boolean;
|
|
47
|
-
config: TabsConfiguration;
|
|
47
|
+
config: TabsConfiguration | null;
|
|
48
48
|
fngBeforeTabChange: EventEmitter<BeforeTabChangeEvent>;
|
|
49
49
|
fngTabChange: EventEmitter<{
|
|
50
50
|
previous: string;
|
|
51
51
|
current: string;
|
|
52
52
|
}>;
|
|
53
|
-
panes: QueryList<TabPaneComponent
|
|
54
|
-
scroller: ElementRef;
|
|
55
|
-
scrollAera: ElementRef;
|
|
56
|
-
scrollContent: ElementRef;
|
|
53
|
+
panes: QueryList<TabPaneComponent> | undefined;
|
|
54
|
+
scroller: ElementRef | undefined;
|
|
55
|
+
scrollAera: ElementRef | undefined;
|
|
56
|
+
scrollContent: ElementRef | undefined;
|
|
57
57
|
componentId: string;
|
|
58
58
|
tabs: Tab[];
|
|
59
59
|
useCompactDensity: boolean;
|
|
@@ -68,7 +68,7 @@ export declare class TabsComponent implements AfterContentInit, AfterViewInit, O
|
|
|
68
68
|
ngAfterContentInit(): void;
|
|
69
69
|
ngAfterViewInit(): void;
|
|
70
70
|
ngOnDestroy(): void;
|
|
71
|
-
showTabPane(id: string): void;
|
|
71
|
+
showTabPane(id: string | null): void;
|
|
72
72
|
handleTabScroll(event: any, index: number): void;
|
|
73
73
|
private initTabs;
|
|
74
74
|
private initActiveTab;
|
|
@@ -91,5 +91,5 @@ export declare class TabsComponent implements AfterContentInit, AfterViewInit, O
|
|
|
91
91
|
private setScrollContentStyleProperty;
|
|
92
92
|
private findAdjacentTabIndexClosestToEdge;
|
|
93
93
|
static ɵfac: i0.ɵɵFactoryDeclaration<TabsComponent, never>;
|
|
94
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TabsComponent, "fng-tabs", never, { "viewType": "fngTabsViewType"; "showDivider": "fngTabsUseBottomDivider"; "config": "config"; }, { "fngBeforeTabChange": "fngBeforeTabChange"; "fngTabChange": "fngTabChange"; }, ["panes"], ["*"],
|
|
94
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TabsComponent, "fng-tabs", never, { "viewType": "fngTabsViewType"; "showDivider": "fngTabsUseBottomDivider"; "config": "config"; }, { "fngBeforeTabChange": "fngBeforeTabChange"; "fngTabChange": "fngTabChange"; }, ["panes"], ["*"], true, never>;
|
|
95
95
|
}
|
|
@@ -6,5 +6,5 @@ export declare class ClickOutsideDirective {
|
|
|
6
6
|
clickOutside: EventEmitter<any>;
|
|
7
7
|
onClick(targetElement: HTMLElement): void;
|
|
8
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<ClickOutsideDirective, never>;
|
|
9
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<ClickOutsideDirective, "[fngClickOutside]", never, {}, { "clickOutside": "clickOutside"; }, never, never,
|
|
9
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ClickOutsideDirective, "[fngClickOutside]", never, {}, { "clickOutside": "clickOutside"; }, never, never, true, never>;
|
|
10
10
|
}
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./pipes/
|
|
3
|
-
import * as i2 from "./
|
|
4
|
-
import * as i3 from "./
|
|
5
|
-
import * as i4 from "./
|
|
6
|
-
import * as i5 from "./
|
|
7
|
-
import * as i6 from "./forms/date-picker.module";
|
|
8
|
-
import * as i7 from "./components/modals/modals.module";
|
|
9
|
-
import * as i8 from "./components/snackbar/snackbar.module";
|
|
10
|
-
import * as i9 from "./components/image-gallery/image-gallery.module";
|
|
11
|
-
import * as i10 from "./forms/text-editor/text-editor.module";
|
|
2
|
+
import * as i1 from "./pipes/safe-html.pipe";
|
|
3
|
+
import * as i2 from "./components/components.module";
|
|
4
|
+
import * as i3 from "./forms/forms.module";
|
|
5
|
+
import * as i4 from "./modals/modals.module";
|
|
6
|
+
import * as i5 from "./components/snackbar/snackbar.module";
|
|
12
7
|
export declare class FestoAngularModule {
|
|
13
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<FestoAngularModule, never>;
|
|
14
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<FestoAngularModule, never, [typeof i1.
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<FestoAngularModule, never, [typeof i1.SafeHtmlPipe, typeof i2.FestoAngularComponentsModule, typeof i3.FestoAngularFormsModule, typeof i4.FestoAngularModalsModule, typeof i5.FestoAngularSnackbarModule], [typeof i1.SafeHtmlPipe, typeof i2.FestoAngularComponentsModule, typeof i3.FestoAngularFormsModule, typeof i4.FestoAngularModalsModule, typeof i5.FestoAngularSnackbarModule]>;
|
|
15
10
|
static ɵinj: i0.ɵɵInjectorDeclaration<FestoAngularModule>;
|
|
16
11
|
}
|
|
@@ -36,5 +36,5 @@ export declare class CheckboxComponent implements ControlValueAccessor {
|
|
|
36
36
|
onInteractionEvent(event: Event): void;
|
|
37
37
|
onInputClick(event: Event): void;
|
|
38
38
|
static ɵfac: i0.ɵɵFactoryDeclaration<CheckboxComponent, never>;
|
|
39
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CheckboxComponent, "fng-checkbox", never, { "name": "name"; "large": "large"; "valid": "valid"; "labelPosition": "labelPosition"; "id": "id"; "checked": "checked"; "disabled": "disabled"; "indeterminate": "indeterminate"; "value": "value"; "required": "required"; }, { "indeterminateChange": "indeterminateChange"; "change": "change"; }, never, ["*"],
|
|
39
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CheckboxComponent, "fng-checkbox", never, { "name": "name"; "large": "large"; "valid": "valid"; "labelPosition": "labelPosition"; "id": "id"; "checked": "checked"; "disabled": "disabled"; "indeterminate": "indeterminate"; "value": "value"; "required": "required"; }, { "indeterminateChange": "indeterminateChange"; "change": "change"; }, never, ["*"], true, never>;
|
|
40
40
|
}
|
|
@@ -27,5 +27,5 @@ export declare class ColorIndicatorComponent {
|
|
|
27
27
|
positions: ConnectionPositionPair[];
|
|
28
28
|
getBorderColor(): string;
|
|
29
29
|
static ɵfac: i0.ɵɵFactoryDeclaration<ColorIndicatorComponent, never>;
|
|
30
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ColorIndicatorComponent, "fng-color-indicator", never, { "label": "label"; "text": "text"; "color": "color"; "showPopOver": "showPopOver"; "disabled": "disabled"; }, {}, never, ["*"],
|
|
30
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ColorIndicatorComponent, "fng-color-indicator", never, { "label": "label"; "text": "text"; "color": "color"; "showPopOver": "showPopOver"; "disabled": "disabled"; }, {}, never, ["*"], true, never>;
|
|
31
31
|
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
export declare abstract class ColorHelper {
|
|
2
|
-
static rgbToHsv(rgb: Record<'r' | 'g' | 'b', number>): Record<'h' | 's' | 'v', number>;
|
|
3
|
-
static hsvToRgb(hsv: Record<'h' | 's' | 'v', number>): Record<'r' | 'g' | 'b', number>;
|
|
2
|
+
static rgbToHsv(rgb: Record<'r' | 'g' | 'b', number> | undefined | null): Record<'h' | 's' | 'v', number>;
|
|
3
|
+
static hsvToRgb(hsv: Record<'h' | 's' | 'v', number> | undefined | null): Record<'r' | 'g' | 'b', number>;
|
|
4
4
|
private static limitToByte;
|
|
5
5
|
private static limitToOne;
|
|
6
6
|
private static numberToHex;
|
|
7
|
-
static rgbToHex(rgb: Record<'r' | 'g' | 'b', number>): string;
|
|
8
|
-
static hexToRgb(hexString: string): Record<'r' | 'g' | 'b', number>;
|
|
7
|
+
static rgbToHex(rgb: Record<'r' | 'g' | 'b', number> | undefined | null): string;
|
|
8
|
+
static hexToRgb(hexString: string | null): Record<'r' | 'g' | 'b', number>;
|
|
9
9
|
}
|
|
@@ -17,8 +17,8 @@ export declare class ColorPickerComponent implements OnChanges, ControlValueAcce
|
|
|
17
17
|
/**
|
|
18
18
|
* The current color
|
|
19
19
|
*/
|
|
20
|
-
get color(): string;
|
|
21
|
-
set color(value: string);
|
|
20
|
+
get color(): string | null;
|
|
21
|
+
set color(value: string | null);
|
|
22
22
|
get disabled(): boolean;
|
|
23
23
|
set disabled(value: boolean);
|
|
24
24
|
/**
|
|
@@ -34,7 +34,7 @@ export declare class ColorPickerComponent implements OnChanges, ControlValueAcce
|
|
|
34
34
|
private innerColor;
|
|
35
35
|
private innerDisabled;
|
|
36
36
|
private innerAlpha;
|
|
37
|
-
hexInputColor: string;
|
|
37
|
+
hexInputColor: string | null;
|
|
38
38
|
redInput: number;
|
|
39
39
|
greenInput: number;
|
|
40
40
|
blueInput: number;
|
|
@@ -47,7 +47,7 @@ export declare class ColorPickerComponent implements OnChanges, ControlValueAcce
|
|
|
47
47
|
saturationKnobOffset: number;
|
|
48
48
|
valueKnobOffset: number;
|
|
49
49
|
onTouched: () => any;
|
|
50
|
-
onChange: (color: string) => any;
|
|
50
|
+
onChange: (color: string | null) => any;
|
|
51
51
|
ngOnChanges(changes: SimpleChanges): void;
|
|
52
52
|
writeValue(color: string): void;
|
|
53
53
|
registerOnChange(fn: any): void;
|
|
@@ -69,9 +69,9 @@ export declare class ColorPickerComponent implements OnChanges, ControlValueAcce
|
|
|
69
69
|
onRemoveColor(): void;
|
|
70
70
|
isHexColor(value: string): boolean;
|
|
71
71
|
getSaturationGradient(): string;
|
|
72
|
-
updateInputs(hexColor: string): void;
|
|
72
|
+
updateInputs(hexColor: string | null): void;
|
|
73
73
|
updateKnobs(): void;
|
|
74
74
|
onChangeType(type: string): void;
|
|
75
75
|
static ɵfac: i0.ɵɵFactoryDeclaration<ColorPickerComponent, never>;
|
|
76
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ColorPickerComponent, "fng-color-picker", never, { "useAlpha": "useAlpha"; "alpha": "alpha"; "color": "color"; "disabled": "disabled"; "palette": "palette"; "paletteOnly": "paletteOnly"; }, { "alphaChange": "alphaChange"; }, never, never,
|
|
76
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ColorPickerComponent, "fng-color-picker", never, { "useAlpha": "useAlpha"; "alpha": "alpha"; "color": "color"; "disabled": "disabled"; "palette": "palette"; "paletteOnly": "paletteOnly"; }, { "alphaChange": "alphaChange"; }, never, never, true, never>;
|
|
77
77
|
}
|
|
@@ -15,28 +15,28 @@ export declare class DatePickerComponent implements ControlValueAccessor {
|
|
|
15
15
|
get disabled(): boolean;
|
|
16
16
|
set disabled(value: boolean);
|
|
17
17
|
protected innerDisabled: boolean;
|
|
18
|
-
hint: string;
|
|
19
|
-
error: string;
|
|
18
|
+
hint: string | undefined;
|
|
19
|
+
error: string | undefined;
|
|
20
20
|
options: DatePickerOptions;
|
|
21
21
|
/** A locale code for the locale format rules to use. */
|
|
22
|
-
locale: string;
|
|
23
|
-
format: string;
|
|
22
|
+
locale: string | undefined;
|
|
23
|
+
format: string | undefined;
|
|
24
24
|
/** The time zone. A time zone offset from GMT (such as `'+0430'`) */
|
|
25
|
-
timezone: string;
|
|
25
|
+
timezone: string | undefined;
|
|
26
26
|
get required(): boolean;
|
|
27
27
|
set required(value: boolean);
|
|
28
28
|
protected innerRequired: boolean;
|
|
29
|
-
connector: ElementRef;
|
|
30
|
-
width: string;
|
|
29
|
+
connector: ElementRef | undefined;
|
|
30
|
+
width: string | undefined;
|
|
31
31
|
display: string;
|
|
32
32
|
get displayValue(): string;
|
|
33
|
-
datePickerRef: OverlayRef;
|
|
33
|
+
datePickerRef: OverlayRef | undefined;
|
|
34
34
|
private innerValue;
|
|
35
35
|
private complete;
|
|
36
36
|
private datePicker;
|
|
37
37
|
constructor(overlay: Overlay, localeDefault: string);
|
|
38
|
-
onTouched: () => any;
|
|
39
|
-
onChange: (date: Date) => any;
|
|
38
|
+
onTouched: (() => any) | undefined;
|
|
39
|
+
onChange: ((date: Date) => any) | undefined;
|
|
40
40
|
hide(event: KeyboardEvent): void;
|
|
41
41
|
onDateChange(date: Date): void;
|
|
42
42
|
writeValue(date: Date): void;
|
|
@@ -46,5 +46,5 @@ export declare class DatePickerComponent implements ControlValueAccessor {
|
|
|
46
46
|
toggle(event: Event): void;
|
|
47
47
|
private dispose;
|
|
48
48
|
static ɵfac: i0.ɵɵFactoryDeclaration<DatePickerComponent, never>;
|
|
49
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DatePickerComponent, "fng-date-picker", never, { "value": "value"; "disabled": "disabled"; "hint": "hint"; "error": "error"; "options": "options"; "locale": "locale"; "format": "format"; "timezone": "timezone"; "required": "required"; "width": "width"; }, {}, never, ["*"],
|
|
49
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DatePickerComponent, "fng-date-picker", never, { "value": "value"; "disabled": "disabled"; "hint": "hint"; "error": "error"; "options": "options"; "locale": "locale"; "format": "format"; "timezone": "timezone"; "required": "required"; "width": "width"; }, {}, never, ["*"], true, never>;
|
|
50
50
|
}
|
|
@@ -15,13 +15,13 @@ export declare class DateRangePickerComponent implements ControlValueAccessor {
|
|
|
15
15
|
get disabled(): boolean;
|
|
16
16
|
set disabled(value: boolean);
|
|
17
17
|
protected innerDisabled: boolean;
|
|
18
|
-
hint: string;
|
|
19
|
-
error: string;
|
|
18
|
+
hint: string | undefined;
|
|
19
|
+
error: string | undefined;
|
|
20
20
|
/** A locale code for the locale format rules to use. */
|
|
21
|
-
locale: string;
|
|
22
|
-
format: string;
|
|
21
|
+
locale: string | undefined;
|
|
22
|
+
format: string | undefined;
|
|
23
23
|
/** The time zone. A time zone offset from GMT (such as `'+0430'`) */
|
|
24
|
-
timezone: string;
|
|
24
|
+
timezone: string | undefined;
|
|
25
25
|
options: DateRangePickerOptions;
|
|
26
26
|
get required(): boolean;
|
|
27
27
|
set required(value: boolean);
|
|
@@ -30,16 +30,16 @@ export declare class DateRangePickerComponent implements ControlValueAccessor {
|
|
|
30
30
|
display: string;
|
|
31
31
|
fngChange: EventEmitter<any>;
|
|
32
32
|
change: EventEmitter<any>;
|
|
33
|
-
connector: ElementRef;
|
|
34
|
-
get fromDateDisplayValue(): string;
|
|
35
|
-
get toDateDisplayValue(): string;
|
|
36
|
-
dateRangePickerRef: OverlayRef;
|
|
33
|
+
connector: ElementRef | undefined;
|
|
34
|
+
get fromDateDisplayValue(): string | null;
|
|
35
|
+
get toDateDisplayValue(): string | null;
|
|
36
|
+
dateRangePickerRef: OverlayRef | undefined;
|
|
37
37
|
private innerValue;
|
|
38
38
|
private complete;
|
|
39
39
|
private datePicker;
|
|
40
40
|
constructor(overlay: Overlay, localeDefault: string);
|
|
41
|
-
onTouched: () => any;
|
|
42
|
-
onChange: (dateRange: Date[]) => any;
|
|
41
|
+
onTouched: (() => any) | undefined;
|
|
42
|
+
onChange: ((dateRange: Date[]) => any) | undefined;
|
|
43
43
|
hide(event: KeyboardEvent): void;
|
|
44
44
|
onDateChange(dateRange: Date[]): void;
|
|
45
45
|
writeValue(dateRange: Date[]): void;
|
|
@@ -49,5 +49,5 @@ export declare class DateRangePickerComponent implements ControlValueAccessor {
|
|
|
49
49
|
toggle(event: Event): void;
|
|
50
50
|
private dispose;
|
|
51
51
|
static ɵfac: i0.ɵɵFactoryDeclaration<DateRangePickerComponent, never>;
|
|
52
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DateRangePickerComponent, "fng-date-range-picker", never, { "value": "value"; "disabled": "disabled"; "hint": "hint"; "error": "error"; "locale": "locale"; "format": "format"; "timezone": "timezone"; "options": "options"; "required": "required"; "width": "width"; }, { "fngChange": "fngChange"; "change": "change"; }, never, ["*"],
|
|
52
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DateRangePickerComponent, "fng-date-range-picker", never, { "value": "value"; "disabled": "disabled"; "hint": "hint"; "error": "error"; "locale": "locale"; "format": "format"; "timezone": "timezone"; "options": "options"; "required": "required"; "width": "width"; }, { "fngChange": "fngChange"; "change": "change"; }, never, ["*"], true, never>;
|
|
53
53
|
}
|
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
import { ElementRef, EventEmitter, OnInit, OnDestroy } from '@angular/core';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export interface FlatPickerOptions {
|
|
4
|
-
maxDate?: Date;
|
|
5
|
-
minDate?: Date;
|
|
4
|
+
maxDate?: Date | undefined;
|
|
5
|
+
minDate?: Date | undefined;
|
|
6
6
|
mode?: 'single' | 'range';
|
|
7
7
|
}
|
|
8
8
|
export declare class FlatpickrComponent implements OnInit, OnDestroy {
|
|
9
9
|
date: Date | Date[];
|
|
10
|
-
options: FlatPickerOptions;
|
|
10
|
+
options: FlatPickerOptions | undefined;
|
|
11
11
|
dateChange: EventEmitter<Date | Date[]>;
|
|
12
|
-
datePickerRef: ElementRef;
|
|
12
|
+
datePickerRef: ElementRef | undefined;
|
|
13
13
|
private datePicker;
|
|
14
14
|
ngOnInit(): void;
|
|
15
15
|
ngOnDestroy(): void;
|
|
16
16
|
onDateChange(dateOption: Date | Date[]): void;
|
|
17
17
|
static ɵfac: i0.ɵɵFactoryDeclaration<FlatpickrComponent, never>;
|
|
18
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FlatpickrComponent, "fng-flatpickr", never, { "date": "date"; "options": "options"; }, { "dateChange": "dateChange"; }, never, never,
|
|
18
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FlatpickrComponent, "fng-flatpickr", never, { "date": "date"; "options": "options"; }, { "dateChange": "dateChange"; }, never, never, true, never>;
|
|
19
19
|
}
|
|
@@ -1,44 +1,29 @@
|
|
|
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 "
|
|
7
|
-
import * as i6 from "
|
|
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
|
-
|
|
24
|
-
|
|
25
|
-
export * from './radio/radio.component';
|
|
26
|
-
export * from './select/select.component';
|
|
27
|
-
export * from './select/select-option/select-option.component';
|
|
28
|
-
export * from './select/chip-text.pipe';
|
|
29
|
-
export * from './text-input/text-input.component';
|
|
30
|
-
export * from './text-area/text-area.component';
|
|
31
|
-
export * from './color-picker/color-picker.component';
|
|
32
|
-
export * from './slider/slider.component';
|
|
33
|
-
export * from './color-indicator/color-indicator.component';
|
|
34
|
-
export * from './segment/segment.component';
|
|
35
|
-
export * from './segment/segment-control/segment-control.component';
|
|
36
|
-
export * from './time-picker/time-picker.component';
|
|
37
|
-
export * from './time-picker/time-picker-dropdown/time-picker-dropdown.component';
|
|
38
|
-
export { ValueAccessorBaseDirective as ValueAccessorBase } from './value-accessor-base';
|
|
39
|
-
export { ContainerHostDirective as ContainerHost } from './container-host';
|
|
2
|
+
import * as i1 from "@angular/forms";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "@angular/cdk/overlay";
|
|
5
|
+
import * as i4 from "@angular/cdk/scrolling";
|
|
6
|
+
import * as i5 from "@angular/cdk/drag-drop";
|
|
7
|
+
import * as i6 from "@angular/cdk/observers";
|
|
8
|
+
import * as i7 from "./checkbox/checkbox.component";
|
|
9
|
+
import * as i8 from "./color-indicator/color-indicator.component";
|
|
10
|
+
import * as i9 from "./color-picker/color-picker.component";
|
|
11
|
+
import * as i10 from "./text-input/text-input.component";
|
|
12
|
+
import * as i11 from "./time-picker/time-picker-dropdown/time-picker-dropdown.component";
|
|
13
|
+
import * as i12 from "./time-picker/time-picker.component";
|
|
14
|
+
import * as i13 from "./date-picker/date-picker.component";
|
|
15
|
+
import * as i14 from "./date-range-picker/date-range-picker.component";
|
|
16
|
+
import * as i15 from "./radio/radio.component";
|
|
17
|
+
import * as i16 from "./segment/segment.component";
|
|
18
|
+
import * as i17 from "./segment/segment-control/segment-control.component";
|
|
19
|
+
import * as i18 from "./select/select-option/select-option.component";
|
|
20
|
+
import * as i19 from "./select/select.component";
|
|
21
|
+
import * as i20 from "./slider/slider.component";
|
|
22
|
+
import * as i21 from "./switch/switch.component";
|
|
23
|
+
import * as i22 from "./text-area/text-area.component";
|
|
24
|
+
import * as i23 from "./text-editor/text-editor.component";
|
|
40
25
|
export declare class FestoAngularFormsModule {
|
|
41
26
|
static ɵfac: i0.ɵɵFactoryDeclaration<FestoAngularFormsModule, never>;
|
|
42
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<FestoAngularFormsModule, [typeof i1.
|
|
27
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<FestoAngularFormsModule, never, [typeof i1.ReactiveFormsModule, typeof i1.FormsModule, typeof i2.CommonModule, typeof i3.OverlayModule, typeof i4.ScrollingModule, typeof i5.DragDropModule, typeof i6.ObserversModule, typeof i7.CheckboxComponent, typeof i8.ColorIndicatorComponent, typeof i9.ColorPickerComponent, typeof i10.TextInputComponent, typeof i11.TimePickerDropdownComponent, typeof i12.TimePickerComponent, typeof i13.DatePickerComponent, typeof i14.DateRangePickerComponent, typeof i15.RadioGroupDirective, typeof i15.RadioComponent, typeof i16.SegmentComponent, typeof i17.SegmentControlComponent, typeof i18.SelectOptionComponent, typeof i19.SelectComponent, typeof i20.SliderComponent, typeof i21.SwitchComponent, typeof i22.TextAreaComponent, typeof i23.TextEditorComponent], [typeof i7.CheckboxComponent, typeof i1.ReactiveFormsModule, typeof i1.FormsModule, typeof i8.ColorIndicatorComponent, typeof i9.ColorPickerComponent, typeof i10.TextInputComponent, typeof i11.TimePickerDropdownComponent, typeof i12.TimePickerComponent, typeof i13.DatePickerComponent, typeof i14.DateRangePickerComponent, typeof i15.RadioGroupDirective, typeof i15.RadioComponent, typeof i16.SegmentComponent, typeof i17.SegmentControlComponent, typeof i18.SelectOptionComponent, typeof i19.SelectComponent, typeof i20.SliderComponent, typeof i21.SwitchComponent, typeof i22.TextAreaComponent, typeof i23.TextEditorComponent]>;
|
|
43
28
|
static ɵinj: i0.ɵɵInjectorDeclaration<FestoAngularFormsModule>;
|
|
44
29
|
}
|
|
@@ -4,22 +4,22 @@ import { UniqueSelectionDispatcher } from '../unique-selection-dispatcher';
|
|
|
4
4
|
import { ControlValueAccessor } from '@angular/forms';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class RadioChange {
|
|
7
|
-
source: RadioComponent;
|
|
7
|
+
source: RadioComponent | null;
|
|
8
8
|
value: any;
|
|
9
|
-
constructor(source: RadioComponent, value: any);
|
|
9
|
+
constructor(source: RadioComponent | null, value: any);
|
|
10
10
|
}
|
|
11
11
|
export declare class RadioGroupDirective implements AfterContentInit, ControlValueAccessor {
|
|
12
12
|
private changeDetector;
|
|
13
13
|
hostClass: boolean;
|
|
14
14
|
role: string;
|
|
15
15
|
readonly change: EventEmitter<RadioChange>;
|
|
16
|
-
radios: QueryList<RadioComponent
|
|
16
|
+
radios: QueryList<RadioComponent> | undefined;
|
|
17
17
|
get name(): string;
|
|
18
18
|
set name(value: string);
|
|
19
19
|
get large(): boolean;
|
|
20
20
|
set large(v: boolean);
|
|
21
|
-
get labelPosition(): "
|
|
22
|
-
set labelPosition(v: "
|
|
21
|
+
get labelPosition(): "after" | "before" | "below";
|
|
22
|
+
set labelPosition(v: "after" | "before" | "below");
|
|
23
23
|
get value(): any;
|
|
24
24
|
set value(newValue: any);
|
|
25
25
|
get selected(): any | null;
|
|
@@ -37,8 +37,8 @@ export declare class RadioGroupDirective implements AfterContentInit, ControlVal
|
|
|
37
37
|
private innerName;
|
|
38
38
|
private innerLabelPosition;
|
|
39
39
|
constructor(changeDetector: ChangeDetectorRef);
|
|
40
|
-
controlValueAccessorChangeFn: (value: any) => void;
|
|
41
|
-
onTouched: () => void;
|
|
40
|
+
controlValueAccessorChangeFn: ((value: any) => void) | undefined;
|
|
41
|
+
onTouched: (() => void) | undefined;
|
|
42
42
|
ngAfterContentInit(): void;
|
|
43
43
|
checkSelectedRadioButton(): void;
|
|
44
44
|
touch(): void;
|
|
@@ -52,12 +52,12 @@ export declare class RadioGroupDirective implements AfterContentInit, ControlVal
|
|
|
52
52
|
private updateRadioButtonNames;
|
|
53
53
|
private updateSelectedRadioFromValue;
|
|
54
54
|
static ɵfac: i0.ɵɵFactoryDeclaration<RadioGroupDirective, never>;
|
|
55
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<RadioGroupDirective, "[fngRadioGroup]", never, { "name": "name"; "large": "large"; "labelPosition": "labelPosition"; "value": "value"; "selected": "selected"; "disabled": "disabled"; "required": "required"; }, { "change": "change"; }, ["radios"], never,
|
|
55
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<RadioGroupDirective, "[fngRadioGroup]", never, { "name": "name"; "large": "large"; "labelPosition": "labelPosition"; "value": "value"; "selected": "selected"; "disabled": "disabled"; "required": "required"; }, { "change": "change"; }, ["radios"], never, true, never>;
|
|
56
56
|
}
|
|
57
57
|
export declare class RadioComponent implements OnInit, OnDestroy {
|
|
58
58
|
private changeDetector;
|
|
59
59
|
private radioDispatcher;
|
|
60
|
-
name: string;
|
|
60
|
+
name: string | undefined;
|
|
61
61
|
private innerId;
|
|
62
62
|
get id(): string;
|
|
63
63
|
set id(value: string);
|
|
@@ -68,8 +68,8 @@ export declare class RadioComponent implements OnInit, OnDestroy {
|
|
|
68
68
|
set value(value: any);
|
|
69
69
|
get large(): boolean;
|
|
70
70
|
set large(value: boolean);
|
|
71
|
-
get labelPosition(): "
|
|
72
|
-
set labelPosition(value: "
|
|
71
|
+
get labelPosition(): "after" | "before" | "below";
|
|
72
|
+
set labelPosition(value: "after" | "before" | "below");
|
|
73
73
|
get disabled(): boolean;
|
|
74
74
|
set disabled(value: boolean);
|
|
75
75
|
get required(): boolean;
|
|
@@ -91,5 +91,5 @@ export declare class RadioComponent implements OnInit, OnDestroy {
|
|
|
91
91
|
markForCheck(): void;
|
|
92
92
|
private emitChangeEvent;
|
|
93
93
|
static ɵfac: i0.ɵɵFactoryDeclaration<RadioComponent, [{ optional: true; }, null, null]>;
|
|
94
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<RadioComponent, "fng-radio", never, { "name": "name"; "id": "id"; "checked": "checked"; "value": "value"; "large": "large"; "labelPosition": "labelPosition"; "disabled": "disabled"; "required": "required"; }, { "change": "change"; }, never, ["*"],
|
|
94
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RadioComponent, "fng-radio", never, { "name": "name"; "id": "id"; "checked": "checked"; "value": "value"; "large": "large"; "labelPosition": "labelPosition"; "disabled": "disabled"; "required": "required"; }, { "change": "change"; }, never, ["*"], true, never>;
|
|
95
95
|
}
|