@festo-ui/angular 4.0.3-pre-20221213.1 → 5.0.0-dev.102
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +13 -53
- package/css/bundle.css +1 -1
- package/css/image-gallery.css +1 -1
- package/css/popover.css +1 -1
- package/esm2020/festo-ui-angular.mjs +2 -2
- package/esm2020/lib/components/accordion/accordion-header/accordion-header.component.mjs +6 -6
- package/esm2020/lib/components/accordion/accordion-item/accordion-item-body/accordion-item-body.component.mjs +6 -6
- package/esm2020/lib/components/accordion/accordion-item/accordion-item-header/accordion-item-header.component.mjs +11 -11
- package/esm2020/lib/components/accordion/accordion-item/accordion-item.component.mjs +41 -36
- package/esm2020/lib/components/accordion/accordion.component.mjs +21 -21
- package/esm2020/lib/components/accordion/index.mjs +1 -1
- package/esm2020/lib/components/breadcrumb/breadcrumb.component.mjs +9 -6
- package/esm2020/lib/components/buttons/button/button.component.mjs +8 -7
- package/esm2020/lib/components/buttons/link-button/link-button.component.mjs +8 -7
- package/esm2020/lib/components/chips/chip/chip.component.mjs +7 -6
- package/esm2020/lib/components/chips/chip-container/chip-container.component.mjs +7 -6
- package/esm2020/lib/components/components.module.mjs +202 -208
- package/esm2020/lib/components/loading-indicator/loading-indicator.component.mjs +7 -6
- package/esm2020/lib/components/mobile-flyout/mobile-flyout-item/mobile-flyout-item.component.mjs +8 -7
- package/esm2020/lib/components/mobile-flyout/mobile-flyout-page/mobile-flyout-page.component.mjs +10 -9
- package/esm2020/lib/components/mobile-flyout/mobile-flyout.component.mjs +10 -10
- package/esm2020/lib/components/pagination/pagination.component.mjs +15 -13
- package/esm2020/lib/components/popovers/legend/legend.component.mjs +14 -14
- package/esm2020/lib/components/popovers/legend/legend.directive.mjs +8 -8
- package/esm2020/lib/components/popovers/popover/popover.component.mjs +11 -11
- package/esm2020/lib/components/popovers/popover-content/popover-content.component.mjs +16 -18
- package/esm2020/lib/components/popovers/popover-content/popover-content.directive.mjs +7 -7
- package/esm2020/lib/components/popovers/popover-menu/popover-menu.component.mjs +18 -19
- package/esm2020/lib/components/popovers/popover-ref.mjs +2 -2
- package/esm2020/lib/components/popovers/popover.defaults.mjs +17 -18
- package/esm2020/lib/components/popovers/popover.models.mjs +7 -23
- package/esm2020/lib/components/popovers/popover.service.mjs +31 -32
- package/esm2020/lib/components/popovers/tooltip/tooltip.directive.mjs +18 -18
- package/esm2020/lib/components/progress/progress.component.mjs +8 -6
- package/esm2020/lib/components/scroll/index.mjs +1 -1
- package/esm2020/lib/components/scroll/scrollable.directive.mjs +10 -7
- package/esm2020/lib/components/search-input/search-input.component.mjs +20 -10
- package/esm2020/lib/components/snackbar/snackbar-container.component.mjs +7 -7
- package/esm2020/lib/components/snackbar/snackbar-container.directive.mjs +12 -15
- package/esm2020/lib/components/snackbar/snackbar.component.mjs +9 -7
- package/esm2020/lib/components/snackbar/snackbar.models.mjs +1 -1
- package/esm2020/lib/components/snackbar/snackbar.module.mjs +12 -14
- package/esm2020/lib/components/snackbar/snackbar.service.mjs +5 -5
- package/esm2020/lib/components/stepper-horizontal/step-horizontal/step-horizontal.component.mjs +6 -6
- package/esm2020/lib/components/stepper-horizontal/stepper-horizontal.component.mjs +10 -9
- package/esm2020/lib/components/stepper-vertical/step-vertical/step-vertical.component.mjs +8 -7
- package/esm2020/lib/components/stepper-vertical/stepper-vertical.component.mjs +9 -9
- package/esm2020/lib/components/table-header-cell/table-header-cell.directive.mjs +9 -8
- package/esm2020/lib/components/tabs/tab-pane/tab-pane.component.mjs +8 -8
- package/esm2020/lib/components/tabs/tabs.component.mjs +113 -27
- package/esm2020/lib/directives/click-outside.directive.mjs +29 -0
- package/esm2020/lib/festo-angular.module.mjs +9 -72
- package/esm2020/lib/forms/checkbox/checkbox.component.mjs +29 -24
- package/esm2020/lib/forms/color-indicator/color-indicator.component.mjs +29 -9
- package/esm2020/lib/forms/color-picker/color-helper.mjs +16 -8
- package/esm2020/lib/forms/color-picker/color-picker.component.mjs +38 -19
- package/esm2020/lib/forms/date-picker/date-picker.component.mjs +29 -26
- package/esm2020/lib/forms/date-range-picker/date-range-picker.component.mjs +33 -29
- package/esm2020/lib/forms/flatpickr/flatpickr.component.mjs +55 -0
- package/esm2020/lib/forms/forms.module.mjs +117 -110
- package/esm2020/lib/forms/radio/radio.component.mjs +54 -50
- package/esm2020/lib/forms/segment/segment-control/segment-control.component.mjs +22 -14
- package/esm2020/lib/forms/segment/segment.component.mjs +60 -30
- package/esm2020/lib/forms/select/chip-text.pipe.mjs +16 -11
- package/esm2020/lib/forms/select/select-option/select-option.component.mjs +8 -7
- package/esm2020/lib/forms/select/select.component.mjs +55 -47
- package/esm2020/lib/forms/slider/slider.component.mjs +27 -24
- package/esm2020/lib/forms/switch/switch.component.mjs +21 -20
- package/esm2020/lib/forms/text-area/text-area.component.mjs +19 -12
- package/esm2020/lib/forms/text-editor/text-editor.component.mjs +73 -65
- package/esm2020/lib/forms/text-input/text-input.component.mjs +41 -14
- package/esm2020/lib/forms/time-picker/time-picker-dropdown/time-picker-dropdown.component.mjs +9 -7
- package/esm2020/lib/forms/time-picker/time-picker.component.mjs +23 -20
- package/esm2020/lib/forms/unique-selection-dispatcher.mjs +8 -6
- package/esm2020/lib/forms/value-accessor-base.mjs +6 -6
- package/esm2020/lib/modals/alert/alert.component.mjs +54 -0
- package/esm2020/lib/modals/confirm/confirm.component.mjs +55 -0
- package/esm2020/lib/modals/custom-modal/custom-modal.component.mjs +70 -0
- package/esm2020/lib/modals/image-gallery/image-gallery.component.mjs +62 -0
- package/esm2020/lib/modals/index.mjs +2 -0
- package/esm2020/lib/modals/modal.service.mjs +118 -0
- package/esm2020/lib/modals/modals.module.mjs +25 -0
- package/esm2020/lib/modals/prompt/prompt.component.mjs +106 -0
- package/esm2020/lib/pipes/safe-html.pipe.mjs +7 -7
- package/esm2020/public-api.mjs +66 -0
- package/fesm2015/festo-ui-angular.mjs +4757 -4590
- package/fesm2015/festo-ui-angular.mjs.map +1 -1
- package/fesm2020/festo-ui-angular.mjs +4936 -4809
- package/fesm2020/festo-ui-angular.mjs.map +1 -1
- package/index.d.ts +5 -13
- package/lib/components/accordion/accordion-header/accordion-header.component.d.ts +3 -3
- package/lib/components/accordion/accordion-item/accordion-item-body/accordion-item-body.component.d.ts +3 -3
- package/lib/components/accordion/accordion-item/accordion-item-header/accordion-item-header.component.d.ts +5 -5
- package/lib/components/accordion/accordion-item/accordion-item.component.d.ts +9 -8
- package/lib/components/accordion/accordion.component.d.ts +7 -7
- package/lib/components/breadcrumb/breadcrumb.component.d.ts +3 -3
- package/lib/components/buttons/button/button.component.d.ts +6 -6
- package/lib/components/buttons/link-button/link-button.component.d.ts +6 -6
- package/lib/components/chips/chip/chip.component.d.ts +4 -4
- package/lib/components/chips/chip-container/chip-container.component.d.ts +3 -3
- package/lib/components/components.module.d.ts +35 -69
- package/lib/components/loading-indicator/loading-indicator.component.d.ts +3 -3
- package/lib/components/mobile-flyout/mobile-flyout-item/mobile-flyout-item.component.d.ts +3 -3
- package/lib/components/mobile-flyout/mobile-flyout-page/mobile-flyout-page.component.d.ts +5 -5
- package/lib/components/mobile-flyout/mobile-flyout.component.d.ts +5 -5
- package/lib/components/pagination/pagination.component.d.ts +6 -6
- package/lib/components/popovers/legend/legend.component.d.ts +10 -10
- package/lib/components/popovers/legend/legend.directive.d.ts +5 -5
- package/lib/components/popovers/popover/popover.component.d.ts +6 -6
- package/lib/components/popovers/popover-content/popover-content.component.d.ts +13 -13
- package/lib/components/popovers/popover-content/popover-content.directive.d.ts +5 -5
- package/lib/components/popovers/popover-menu/popover-menu.component.d.ts +15 -15
- package/lib/components/popovers/popover-ref.d.ts +4 -4
- package/lib/components/popovers/popover.defaults.d.ts +4 -4
- package/lib/components/popovers/popover.models.d.ts +18 -30
- package/lib/components/popovers/popover.service.d.ts +7 -7
- package/lib/components/popovers/tooltip/tooltip.directive.d.ts +9 -9
- package/lib/components/progress/progress.component.d.ts +3 -3
- package/lib/components/scroll/scrollable.directive.d.ts +4 -4
- package/lib/components/search-input/search-input.component.d.ts +9 -9
- package/lib/components/snackbar/snackbar-container.component.d.ts +5 -5
- package/lib/components/snackbar/snackbar-container.directive.d.ts +8 -11
- package/lib/components/snackbar/snackbar.component.d.ts +5 -5
- package/lib/components/snackbar/snackbar.models.d.ts +2 -2
- package/lib/components/snackbar/snackbar.module.d.ts +1 -2
- package/lib/components/snackbar/snackbar.service.d.ts +8 -8
- package/lib/components/stepper-horizontal/step-horizontal/step-horizontal.component.d.ts +3 -3
- package/lib/components/stepper-horizontal/stepper-horizontal.component.d.ts +5 -5
- package/lib/components/stepper-vertical/step-vertical/step-vertical.component.d.ts +4 -4
- package/lib/components/stepper-vertical/stepper-vertical.component.d.ts +5 -5
- package/lib/components/table-header-cell/table-header-cell.directive.d.ts +11 -11
- package/lib/components/tabs/tab-pane/tab-pane.component.d.ts +9 -9
- package/lib/components/tabs/tabs.component.d.ts +24 -24
- package/lib/directives/click-outside.directive.d.ts +10 -0
- package/lib/festo-angular.module.d.ts +6 -11
- package/lib/forms/checkbox/checkbox.component.d.ts +3 -3
- package/lib/forms/color-indicator/color-indicator.component.d.ts +3 -3
- package/lib/forms/color-picker/color-helper.d.ts +4 -4
- package/lib/forms/color-picker/color-picker.component.d.ts +8 -8
- package/lib/forms/date-picker/date-picker.component.d.ts +15 -15
- package/lib/forms/date-range-picker/date-range-picker.component.d.ts +16 -16
- package/lib/forms/flatpickr/flatpickr.component.d.ts +19 -0
- package/lib/forms/forms.module.d.ts +17 -37
- package/lib/forms/radio/radio.component.d.ts +22 -22
- package/lib/forms/segment/segment-control/segment-control.component.d.ts +14 -15
- package/lib/forms/segment/segment.component.d.ts +20 -11
- package/lib/forms/select/chip-text.pipe.d.ts +3 -3
- package/lib/forms/select/select-option/select-option.component.d.ts +5 -5
- package/lib/forms/select/select.component.d.ts +15 -15
- package/lib/forms/slider/slider.component.d.ts +8 -8
- package/lib/forms/switch/switch.component.d.ts +7 -7
- package/lib/forms/text-area/text-area.component.d.ts +14 -14
- package/lib/forms/text-editor/text-editor.component.d.ts +22 -22
- package/lib/forms/text-input/text-input.component.d.ts +6 -6
- package/lib/forms/time-picker/time-picker-dropdown/time-picker-dropdown.component.d.ts +8 -8
- package/lib/forms/time-picker/time-picker.component.d.ts +11 -11
- package/lib/forms/unique-selection-dispatcher.d.ts +5 -5
- package/lib/forms/value-accessor-base.d.ts +6 -6
- package/lib/{components/modals → modals}/alert/alert.component.d.ts +6 -6
- package/lib/{components/modals → modals}/confirm/confirm.component.d.ts +6 -6
- package/lib/modals/custom-modal/custom-modal.component.d.ts +21 -0
- package/lib/{components → modals}/image-gallery/image-gallery.component.d.ts +8 -8
- package/lib/{components/modals → modals}/index.d.ts +1 -1
- package/lib/modals/modal.service.d.ts +22 -0
- package/lib/{components/modals → modals}/modals.module.d.ts +1 -6
- package/lib/{components/modals → modals}/prompt/prompt.component.d.ts +6 -6
- package/lib/pipes/safe-html.pipe.d.ts +3 -3
- package/package.json +13 -16
- package/public-api.d.ts +62 -0
- package/scss/base/image-gallery.scss +3 -0
- package/scss/base/popover.scss +9 -0
- package/scss/base/styles.scss +5 -0
- package/esm2020/index.mjs +0 -26
- package/esm2020/lib/components/click-outside.directive.mjs +0 -28
- package/esm2020/lib/components/image-gallery/image-gallery.component.mjs +0 -60
- package/esm2020/lib/components/image-gallery/image-gallery.module.mjs +0 -22
- package/esm2020/lib/components/modals/alert/alert.component.mjs +0 -52
- package/esm2020/lib/components/modals/confirm/confirm.component.mjs +0 -53
- package/esm2020/lib/components/modals/custom-modal/custom-modal.component.mjs +0 -70
- package/esm2020/lib/components/modals/index.mjs +0 -2
- package/esm2020/lib/components/modals/modal.service.mjs +0 -121
- package/esm2020/lib/components/modals/modals.module.mjs +0 -31
- package/esm2020/lib/components/modals/prompt/prompt.component.mjs +0 -102
- package/esm2020/lib/content/content.module.mjs +0 -20
- package/esm2020/lib/content/icon/icon.component.mjs +0 -17
- package/esm2020/lib/forms/container-host.mjs +0 -27
- package/esm2020/lib/forms/date-picker.module.mjs +0 -28
- package/esm2020/lib/forms/text-editor/text-editor.module.mjs +0 -25
- package/esm2020/lib/layout/layout.module.mjs +0 -18
- package/esm2020/lib/pipes/pipes.module.mjs +0 -20
- package/esm2020/lib/wrappers/flatpickr/flatpickr.component.mjs +0 -59
- package/lib/components/click-outside.directive.d.ts +0 -10
- package/lib/components/image-gallery/image-gallery.module.d.ts +0 -11
- package/lib/components/modals/custom-modal/custom-modal.component.d.ts +0 -21
- package/lib/components/modals/modal.service.d.ts +0 -22
- package/lib/content/content.module.d.ts +0 -9
- package/lib/content/icon/icon.component.d.ts +0 -45
- package/lib/forms/container-host.d.ts +0 -11
- package/lib/forms/date-picker.module.d.ts +0 -17
- package/lib/forms/text-editor/text-editor.module.d.ts +0 -14
- package/lib/layout/layout.module.d.ts +0 -7
- package/lib/pipes/pipes.module.d.ts +0 -9
- package/lib/wrappers/flatpickr/flatpickr.component.d.ts +0 -19
- package/scss/base/components/accordion/accordion-header/accordion-header.component.scss +0 -12
- package/scss/base/components/accordion/accordion-item/accordion-item-body/accordion-item-body.component.scss +0 -109
- package/scss/base/components/accordion/accordion-item/accordion-item-header/accordion-item-header.component.scss +0 -9
- package/scss/base/components/accordion/accordion-item/accordion-item.component.scss +0 -71
- package/scss/base/components/accordion/accordion.component.scss +0 -6
- package/scss/base/components/breadcrumb/breadcrumb.component.scss +0 -0
- package/scss/base/components/buttons/button/button.component.scss +0 -7
- package/scss/base/components/buttons/link-button/link-button.component.scss +0 -0
- package/scss/base/components/chips/chip/chip.component.scss +0 -0
- package/scss/base/components/chips/chip-container/chip-container.component.scss +0 -0
- package/scss/base/components/image-gallery/image-gallery.component.scss +0 -0
- package/scss/base/components/image-gallery/styles.scss +0 -5
- package/scss/base/components/loading-indicator/loading-indicator.component.scss +0 -0
- package/scss/base/components/modals/alert/alert.component.scss +0 -0
- package/scss/base/components/modals/confirm/confirm.component.scss +0 -0
- package/scss/base/components/modals/prompt/prompt.component.scss +0 -0
- package/scss/base/components/pagination/pagination.component.scss +0 -0
- package/scss/base/components/popovers/legend/legend.component.scss +0 -9
- package/scss/base/components/popovers/popover/popover.component.scss +0 -0
- package/scss/base/components/popovers/popover/styles.scss +0 -84
- package/scss/base/components/popovers/popover-content/popover-content.component.scss +0 -12
- package/scss/base/components/popovers/popover-menu/popover-menu.component.scss +0 -0
- package/scss/base/components/scroll/scroll-story-helper.scss +0 -12
- package/scss/base/components/search-input/search-input.component.scss +0 -7
- package/scss/base/components/snackbar/snackbar-container.component.scss +0 -3
- package/scss/base/components/snackbar/snackbar.component.scss +0 -3
- package/scss/base/components/stepper-horizontal/step-horizontal/step-horizontal.component.scss +0 -23
- package/scss/base/components/stepper-vertical/step-vertical/step-vertical.component.scss +0 -6
- package/scss/base/components/tabs/tab-pane/tab-pane.component.scss +0 -7
- package/scss/base/components/tabs/tabs.component.scss +0 -326
- package/scss/base/content/icon/icon.component.scss +0 -0
- package/scss/base/forms/checkbox/checkbox.component.scss +0 -160
- package/scss/base/forms/color-indicator/color-indicator.component.scss +0 -59
- package/scss/base/forms/color-picker/color-picker.component.scss +0 -207
- package/scss/base/forms/date-picker/date-picker.component.scss +0 -5
- package/scss/base/forms/date-range-picker/date-range-picker.component.scss +0 -34
- package/scss/base/forms/radio/radio.component.scss +0 -9
- package/scss/base/forms/segment/segment-control/segment-control.component.scss +0 -0
- package/scss/base/forms/segment/segment.component.scss +0 -0
- package/scss/base/forms/select/select-option/select-option.component.scss +0 -0
- package/scss/base/forms/select/select.component.scss +0 -251
- package/scss/base/forms/slider/slider.component.scss +0 -20
- package/scss/base/forms/switch/switch.component.scss +0 -145
- package/scss/base/forms/text-area/text-area.component.scss +0 -43
- package/scss/base/forms/text-editor/text-editor.component.scss +0 -294
- package/scss/base/forms/text-input/text-input.component.scss +0 -60
- package/scss/base/forms/time-picker/time-picker-dropdown/time-picker-dropdown.component.scss +0 -10
- package/scss/base/forms/time-picker/time-picker.component.scss +0 -5
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
import { NgModule } from '@angular/core';
|
|
2
|
-
import { CommonModule } from '@angular/common';
|
|
3
|
-
import { OverlayModule } from '@angular/cdk/overlay';
|
|
4
|
-
import { ScrollingModule } from '@angular/cdk/scrolling';
|
|
5
|
-
import { DragDropModule } from '@angular/cdk/drag-drop';
|
|
6
|
-
import { ObserversModule } from '@angular/cdk/observers';
|
|
7
|
-
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
|
|
8
|
-
import { TextEditorComponent } from './text-editor.component';
|
|
9
|
-
import * as i0 from "@angular/core";
|
|
10
|
-
export * from './text-editor.component';
|
|
11
|
-
export class FestoAngularTextEditorModule {
|
|
12
|
-
}
|
|
13
|
-
FestoAngularTextEditorModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.3", ngImport: i0, type: FestoAngularTextEditorModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
14
|
-
FestoAngularTextEditorModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.1.3", ngImport: i0, type: FestoAngularTextEditorModule, declarations: [TextEditorComponent], imports: [ReactiveFormsModule, FormsModule, CommonModule, OverlayModule, ScrollingModule, DragDropModule, ObserversModule], exports: [ReactiveFormsModule, FormsModule, TextEditorComponent] });
|
|
15
|
-
FestoAngularTextEditorModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.1.3", ngImport: i0, type: FestoAngularTextEditorModule, imports: [ReactiveFormsModule, FormsModule, CommonModule, OverlayModule, ScrollingModule, DragDropModule, ObserversModule, ReactiveFormsModule, FormsModule] });
|
|
16
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.3", ngImport: i0, type: FestoAngularTextEditorModule, decorators: [{
|
|
17
|
-
type: NgModule,
|
|
18
|
-
args: [{
|
|
19
|
-
declarations: [TextEditorComponent],
|
|
20
|
-
imports: [ReactiveFormsModule, FormsModule, CommonModule, OverlayModule, ScrollingModule, DragDropModule, ObserversModule],
|
|
21
|
-
exports: [ReactiveFormsModule, FormsModule, TextEditorComponent],
|
|
22
|
-
providers: []
|
|
23
|
-
}]
|
|
24
|
-
}] });
|
|
25
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGV4dC1lZGl0b3IubW9kdWxlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9hbmd1bGFyL3NyYy9saWIvZm9ybXMvdGV4dC1lZGl0b3IvdGV4dC1lZGl0b3IubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxRQUFRLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDekMsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBQy9DLE9BQU8sRUFBRSxhQUFhLEVBQUUsTUFBTSxzQkFBc0IsQ0FBQztBQUNyRCxPQUFPLEVBQUUsZUFBZSxFQUFFLE1BQU0sd0JBQXdCLENBQUM7QUFDekQsT0FBTyxFQUFFLGNBQWMsRUFBRSxNQUFNLHdCQUF3QixDQUFDO0FBQ3hELE9BQU8sRUFBRSxlQUFlLEVBQUUsTUFBTSx3QkFBd0IsQ0FBQztBQUN6RCxPQUFPLEVBQUUsV0FBVyxFQUFFLG1CQUFtQixFQUFFLE1BQU0sZ0JBQWdCLENBQUM7QUFFbEUsT0FBTyxFQUFFLG1CQUFtQixFQUFFLE1BQU0seUJBQXlCLENBQUM7O0FBRTlELGNBQWMseUJBQXlCLENBQUM7QUFReEMsTUFBTSxPQUFPLDRCQUE0Qjs7eUhBQTVCLDRCQUE0QjswSEFBNUIsNEJBQTRCLGlCQUx4QixtQkFBbUIsYUFDeEIsbUJBQW1CLEVBQUUsV0FBVyxFQUFFLFlBQVksRUFBRSxhQUFhLEVBQUUsZUFBZSxFQUFFLGNBQWMsRUFBRSxlQUFlLGFBQy9HLG1CQUFtQixFQUFFLFdBQVcsRUFBRSxtQkFBbUI7MEhBR3BELDRCQUE0QixZQUo3QixtQkFBbUIsRUFBRSxXQUFXLEVBQUUsWUFBWSxFQUFFLGFBQWEsRUFBRSxlQUFlLEVBQUUsY0FBYyxFQUFFLGVBQWUsRUFDL0csbUJBQW1CLEVBQUUsV0FBVzsyRkFHL0IsNEJBQTRCO2tCQU54QyxRQUFRO21CQUFDO29CQUNSLFlBQVksRUFBRSxDQUFDLG1CQUFtQixDQUFDO29CQUNuQyxPQUFPLEVBQUUsQ0FBQyxtQkFBbUIsRUFBRSxXQUFXLEVBQUUsWUFBWSxFQUFFLGFBQWEsRUFBRSxlQUFlLEVBQUUsY0FBYyxFQUFFLGVBQWUsQ0FBQztvQkFDMUgsT0FBTyxFQUFFLENBQUMsbUJBQW1CLEVBQUUsV0FBVyxFQUFFLG1CQUFtQixDQUFDO29CQUNoRSxTQUFTLEVBQUUsRUFBRTtpQkFDZCIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IE5nTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgT3ZlcmxheU1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2Nkay9vdmVybGF5JztcbmltcG9ydCB7IFNjcm9sbGluZ01vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2Nkay9zY3JvbGxpbmcnO1xuaW1wb3J0IHsgRHJhZ0Ryb3BNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jZGsvZHJhZy1kcm9wJztcbmltcG9ydCB7IE9ic2VydmVyc01vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2Nkay9vYnNlcnZlcnMnO1xuaW1wb3J0IHsgRm9ybXNNb2R1bGUsIFJlYWN0aXZlRm9ybXNNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9mb3Jtcyc7XG5cbmltcG9ydCB7IFRleHRFZGl0b3JDb21wb25lbnQgfSBmcm9tICcuL3RleHQtZWRpdG9yLmNvbXBvbmVudCc7XG5cbmV4cG9ydCAqIGZyb20gJy4vdGV4dC1lZGl0b3IuY29tcG9uZW50JztcblxuQE5nTW9kdWxlKHtcbiAgZGVjbGFyYXRpb25zOiBbVGV4dEVkaXRvckNvbXBvbmVudF0sXG4gIGltcG9ydHM6IFtSZWFjdGl2ZUZvcm1zTW9kdWxlLCBGb3Jtc01vZHVsZSwgQ29tbW9uTW9kdWxlLCBPdmVybGF5TW9kdWxlLCBTY3JvbGxpbmdNb2R1bGUsIERyYWdEcm9wTW9kdWxlLCBPYnNlcnZlcnNNb2R1bGVdLFxuICBleHBvcnRzOiBbUmVhY3RpdmVGb3Jtc01vZHVsZSwgRm9ybXNNb2R1bGUsIFRleHRFZGl0b3JDb21wb25lbnRdLFxuICBwcm92aWRlcnM6IFtdXG59KVxuZXhwb3J0IGNsYXNzIEZlc3RvQW5ndWxhclRleHRFZGl0b3JNb2R1bGUge31cbiJdfQ==
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
import { NgModule } from '@angular/core';
|
|
2
|
-
import { CommonModule } from '@angular/common';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export class FestoAngularLayoutModule {
|
|
5
|
-
}
|
|
6
|
-
FestoAngularLayoutModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.3", ngImport: i0, type: FestoAngularLayoutModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
7
|
-
FestoAngularLayoutModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.1.3", ngImport: i0, type: FestoAngularLayoutModule, imports: [CommonModule] });
|
|
8
|
-
FestoAngularLayoutModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.1.3", ngImport: i0, type: FestoAngularLayoutModule, imports: [CommonModule] });
|
|
9
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.3", ngImport: i0, type: FestoAngularLayoutModule, decorators: [{
|
|
10
|
-
type: NgModule,
|
|
11
|
-
args: [{
|
|
12
|
-
declarations: [],
|
|
13
|
-
imports: [CommonModule],
|
|
14
|
-
exports: [],
|
|
15
|
-
providers: []
|
|
16
|
-
}]
|
|
17
|
-
}] });
|
|
18
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibGF5b3V0Lm1vZHVsZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvYW5ndWxhci9zcmMvbGliL2xheW91dC9sYXlvdXQubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxRQUFRLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDekMsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLGlCQUFpQixDQUFDOztBQVEvQyxNQUFNLE9BQU8sd0JBQXdCOztxSEFBeEIsd0JBQXdCO3NIQUF4Qix3QkFBd0IsWUFKekIsWUFBWTtzSEFJWCx3QkFBd0IsWUFKekIsWUFBWTsyRkFJWCx3QkFBd0I7a0JBTnBDLFFBQVE7bUJBQUM7b0JBQ1IsWUFBWSxFQUFFLEVBQUU7b0JBQ2hCLE9BQU8sRUFBRSxDQUFDLFlBQVksQ0FBQztvQkFDdkIsT0FBTyxFQUFFLEVBQUU7b0JBQ1gsU0FBUyxFQUFFLEVBQUU7aUJBQ2QiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBOZ01vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgQ29tbW9uTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcblxuQE5nTW9kdWxlKHtcbiAgZGVjbGFyYXRpb25zOiBbXSxcbiAgaW1wb3J0czogW0NvbW1vbk1vZHVsZV0sXG4gIGV4cG9ydHM6IFtdLFxuICBwcm92aWRlcnM6IFtdXG59KVxuZXhwb3J0IGNsYXNzIEZlc3RvQW5ndWxhckxheW91dE1vZHVsZSB7fVxuIl19
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
import { NgModule } from '@angular/core';
|
|
2
|
-
import { CommonModule } from '@angular/common';
|
|
3
|
-
import { SafeHtmlPipe } from '../pipes/safe-html.pipe';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export * from '../pipes/safe-html.pipe';
|
|
6
|
-
export class FestoAngularPipesModule {
|
|
7
|
-
}
|
|
8
|
-
FestoAngularPipesModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.3", ngImport: i0, type: FestoAngularPipesModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
9
|
-
FestoAngularPipesModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.1.3", ngImport: i0, type: FestoAngularPipesModule, declarations: [SafeHtmlPipe], imports: [CommonModule], exports: [SafeHtmlPipe] });
|
|
10
|
-
FestoAngularPipesModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.1.3", ngImport: i0, type: FestoAngularPipesModule, imports: [CommonModule] });
|
|
11
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.3", ngImport: i0, type: FestoAngularPipesModule, decorators: [{
|
|
12
|
-
type: NgModule,
|
|
13
|
-
args: [{
|
|
14
|
-
declarations: [SafeHtmlPipe],
|
|
15
|
-
imports: [CommonModule],
|
|
16
|
-
exports: [SafeHtmlPipe],
|
|
17
|
-
providers: []
|
|
18
|
-
}]
|
|
19
|
-
}] });
|
|
20
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGlwZXMubW9kdWxlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9hbmd1bGFyL3NyYy9saWIvcGlwZXMvcGlwZXMubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxRQUFRLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDekMsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBQy9DLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSx5QkFBeUIsQ0FBQzs7QUFFdkQsY0FBYyx5QkFBeUIsQ0FBQztBQVF4QyxNQUFNLE9BQU8sdUJBQXVCOztvSEFBdkIsdUJBQXVCO3FIQUF2Qix1QkFBdUIsaUJBTG5CLFlBQVksYUFDakIsWUFBWSxhQUNaLFlBQVk7cUhBR1gsdUJBQXVCLFlBSnhCLFlBQVk7MkZBSVgsdUJBQXVCO2tCQU5uQyxRQUFRO21CQUFDO29CQUNSLFlBQVksRUFBRSxDQUFDLFlBQVksQ0FBQztvQkFDNUIsT0FBTyxFQUFFLENBQUMsWUFBWSxDQUFDO29CQUN2QixPQUFPLEVBQUUsQ0FBQyxZQUFZLENBQUM7b0JBQ3ZCLFNBQVMsRUFBRSxFQUFFO2lCQUNkIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgTmdNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IENvbW1vbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XG5pbXBvcnQgeyBTYWZlSHRtbFBpcGUgfSBmcm9tICcuLi9waXBlcy9zYWZlLWh0bWwucGlwZSc7XG5cbmV4cG9ydCAqIGZyb20gJy4uL3BpcGVzL3NhZmUtaHRtbC5waXBlJztcblxuQE5nTW9kdWxlKHtcbiAgZGVjbGFyYXRpb25zOiBbU2FmZUh0bWxQaXBlXSxcbiAgaW1wb3J0czogW0NvbW1vbk1vZHVsZV0sXG4gIGV4cG9ydHM6IFtTYWZlSHRtbFBpcGVdLFxuICBwcm92aWRlcnM6IFtdXG59KVxuZXhwb3J0IGNsYXNzIEZlc3RvQW5ndWxhclBpcGVzTW9kdWxlIHt9XG4iXX0=
|
|
@@ -1,59 +0,0 @@
|
|
|
1
|
-
import { ElementRef, Input, Output, EventEmitter, Component, ViewChild, ViewEncapsulation } from '@angular/core';
|
|
2
|
-
import flatpickr from 'flatpickr';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export class FlatpickrComponent {
|
|
5
|
-
constructor() {
|
|
6
|
-
this.dateChange = new EventEmitter();
|
|
7
|
-
}
|
|
8
|
-
ngOnInit() {
|
|
9
|
-
const options = this.options != null
|
|
10
|
-
? {
|
|
11
|
-
minDate: this.options.minDate || null,
|
|
12
|
-
maxDate: this.options.maxDate || null,
|
|
13
|
-
mode: this.options.mode || 'single'
|
|
14
|
-
}
|
|
15
|
-
: {
|
|
16
|
-
minDate: null,
|
|
17
|
-
maxDate: null,
|
|
18
|
-
mode: 'single'
|
|
19
|
-
};
|
|
20
|
-
this.datePicker = flatpickr(this.datePickerRef.nativeElement, {
|
|
21
|
-
inline: true,
|
|
22
|
-
defaultDate: this.date,
|
|
23
|
-
onChange: c => this.onDateChange(c),
|
|
24
|
-
maxDate: options.maxDate,
|
|
25
|
-
minDate: options.minDate,
|
|
26
|
-
mode: options.mode
|
|
27
|
-
});
|
|
28
|
-
}
|
|
29
|
-
ngOnDestroy() {
|
|
30
|
-
if (this.datePicker != null) {
|
|
31
|
-
this.datePicker.destroy();
|
|
32
|
-
}
|
|
33
|
-
}
|
|
34
|
-
onDateChange(dateOption) {
|
|
35
|
-
const mode = this.options != null && this.options.mode === 'range' ? 'range' : 'single';
|
|
36
|
-
if (mode === 'range' && Array.isArray(dateOption) && dateOption.length === 2) {
|
|
37
|
-
this.dateChange.emit(dateOption);
|
|
38
|
-
}
|
|
39
|
-
if (mode === 'single' && Array.isArray(dateOption) && dateOption.length === 1) {
|
|
40
|
-
this.dateChange.emit(dateOption[0]);
|
|
41
|
-
}
|
|
42
|
-
}
|
|
43
|
-
}
|
|
44
|
-
FlatpickrComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.3", ngImport: i0, type: FlatpickrComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
45
|
-
FlatpickrComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.3", type: FlatpickrComponent, selector: "fng-flatpickr", inputs: { date: "date", options: "options" }, outputs: { dateChange: "dateChange" }, viewQueries: [{ propertyName: "datePickerRef", first: true, predicate: ["datePicker"], descendants: true, static: true }], ngImport: i0, template: "<div class=\"fng-flatpickr\">\n <div #datePicker></div>\n</div>\n", encapsulation: i0.ViewEncapsulation.None });
|
|
46
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.3", ngImport: i0, type: FlatpickrComponent, decorators: [{
|
|
47
|
-
type: Component,
|
|
48
|
-
args: [{ selector: 'fng-flatpickr', encapsulation: ViewEncapsulation.None, template: "<div class=\"fng-flatpickr\">\n <div #datePicker></div>\n</div>\n" }]
|
|
49
|
-
}], propDecorators: { date: [{
|
|
50
|
-
type: Input
|
|
51
|
-
}], options: [{
|
|
52
|
-
type: Input
|
|
53
|
-
}], dateChange: [{
|
|
54
|
-
type: Output
|
|
55
|
-
}], datePickerRef: [{
|
|
56
|
-
type: ViewChild,
|
|
57
|
-
args: ['datePicker', { static: true }]
|
|
58
|
-
}] } });
|
|
59
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZmxhdHBpY2tyLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvYW5ndWxhci9zcmMvbGliL3dyYXBwZXJzL2ZsYXRwaWNrci9mbGF0cGlja3IuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9hbmd1bGFyL3NyYy9saWIvd3JhcHBlcnMvZmxhdHBpY2tyL2ZsYXRwaWNrci5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsVUFBVSxFQUFFLEtBQUssRUFBRSxNQUFNLEVBQUUsWUFBWSxFQUFFLFNBQVMsRUFBRSxTQUFTLEVBQUUsaUJBQWlCLEVBQXFCLE1BQU0sZUFBZSxDQUFDO0FBQ3BJLE9BQU8sU0FBUyxNQUFNLFdBQVcsQ0FBQzs7QUFhbEMsTUFBTSxPQUFPLGtCQUFrQjtJQUwvQjtRQVFZLGVBQVUsR0FBRyxJQUFJLFlBQVksRUFBaUIsQ0FBQztLQTRDMUQ7SUF0Q0MsUUFBUTtRQUNOLE1BQU0sT0FBTyxHQUNYLElBQUksQ0FBQyxPQUFPLElBQUksSUFBSTtZQUNsQixDQUFDLENBQUM7Z0JBQ0UsT0FBTyxFQUFFLElBQUksQ0FBQyxPQUFPLENBQUMsT0FBTyxJQUFJLElBQUk7Z0JBQ3JDLE9BQU8sRUFBRSxJQUFJLENBQUMsT0FBTyxDQUFDLE9BQU8sSUFBSSxJQUFJO2dCQUNyQyxJQUFJLEVBQUUsSUFBSSxDQUFDLE9BQU8sQ0FBQyxJQUFJLElBQUksUUFBUTthQUNwQztZQUNILENBQUMsQ0FBQztnQkFDRSxPQUFPLEVBQUUsSUFBSTtnQkFDYixPQUFPLEVBQUUsSUFBSTtnQkFDYixJQUFJLEVBQUUsUUFBUTthQUNmLENBQUM7UUFDUixJQUFJLENBQUMsVUFBVSxHQUFHLFNBQVMsQ0FBQyxJQUFJLENBQUMsYUFBYSxDQUFDLGFBQWEsRUFBRTtZQUM1RCxNQUFNLEVBQUUsSUFBSTtZQUNaLFdBQVcsRUFBRSxJQUFJLENBQUMsSUFBSTtZQUN0QixRQUFRLEVBQUUsQ0FBQyxDQUFDLEVBQUUsQ0FBQyxJQUFJLENBQUMsWUFBWSxDQUFDLENBQUMsQ0FBQztZQUNuQyxPQUFPLEVBQUUsT0FBTyxDQUFDLE9BQU87WUFDeEIsT0FBTyxFQUFFLE9BQU8sQ0FBQyxPQUFPO1lBQ3hCLElBQUksRUFBRSxPQUFPLENBQUMsSUFBSTtTQUNuQixDQUF1QixDQUFDO0lBQzNCLENBQUM7SUFFRCxXQUFXO1FBQ1QsSUFBSSxJQUFJLENBQUMsVUFBVSxJQUFJLElBQUksRUFBRTtZQUMzQixJQUFJLENBQUMsVUFBVSxDQUFDLE9BQU8sRUFBRSxDQUFDO1NBQzNCO0lBQ0gsQ0FBQztJQUVELFlBQVksQ0FBQyxVQUF5QjtRQUNwQyxNQUFNLElBQUksR0FBRyxJQUFJLENBQUMsT0FBTyxJQUFJLElBQUksSUFBSSxJQUFJLENBQUMsT0FBTyxDQUFDLElBQUksS0FBSyxPQUFPLENBQUMsQ0FBQyxDQUFDLE9BQU8sQ0FBQyxDQUFDLENBQUMsUUFBUSxDQUFDO1FBQ3hGLElBQUksSUFBSSxLQUFLLE9BQU8sSUFBSSxLQUFLLENBQUMsT0FBTyxDQUFDLFVBQVUsQ0FBQyxJQUFJLFVBQVUsQ0FBQyxNQUFNLEtBQUssQ0FBQyxFQUFFO1lBQzVFLElBQUksQ0FBQyxVQUFVLENBQUMsSUFBSSxDQUFDLFVBQVUsQ0FBQyxDQUFDO1NBQ2xDO1FBQ0QsSUFBSSxJQUFJLEtBQUssUUFBUSxJQUFJLEtBQUssQ0FBQyxPQUFPLENBQUMsVUFBVSxDQUFDLElBQUksVUFBVSxDQUFDLE1BQU0sS0FBSyxDQUFDLEVBQUU7WUFDN0UsSUFBSSxDQUFDLFVBQVUsQ0FBQyxJQUFJLENBQUMsVUFBVSxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUM7U0FDckM7SUFDSCxDQUFDOzsrR0E5Q1Usa0JBQWtCO21HQUFsQixrQkFBa0IscVFDZC9CLG9FQUdBOzJGRFdhLGtCQUFrQjtrQkFMOUIsU0FBUzsrQkFDRSxlQUFlLGlCQUVWLGlCQUFpQixDQUFDLElBQUk7OEJBRzVCLElBQUk7c0JBQVosS0FBSztnQkFDRyxPQUFPO3NCQUFmLEtBQUs7Z0JBQ0ksVUFBVTtzQkFBbkIsTUFBTTtnQkFFb0MsYUFBYTtzQkFBdkQsU0FBUzt1QkFBQyxZQUFZLEVBQUUsRUFBRSxNQUFNLEVBQUUsSUFBSSxFQUFFIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgRWxlbWVudFJlZiwgSW5wdXQsIE91dHB1dCwgRXZlbnRFbWl0dGVyLCBDb21wb25lbnQsIFZpZXdDaGlsZCwgVmlld0VuY2Fwc3VsYXRpb24sIE9uSW5pdCwgT25EZXN0cm95IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgZmxhdHBpY2tyIGZyb20gJ2ZsYXRwaWNrcic7XG5cbmV4cG9ydCBpbnRlcmZhY2UgRmxhdFBpY2tlck9wdGlvbnMge1xuICBtYXhEYXRlPzogRGF0ZTtcbiAgbWluRGF0ZT86IERhdGU7XG4gIG1vZGU/OiAnc2luZ2xlJyB8ICdyYW5nZSc7XG59XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2ZuZy1mbGF0cGlja3InLFxuICB0ZW1wbGF0ZVVybDogJy4vZmxhdHBpY2tyLmNvbXBvbmVudC5odG1sJyxcbiAgZW5jYXBzdWxhdGlvbjogVmlld0VuY2Fwc3VsYXRpb24uTm9uZVxufSlcbmV4cG9ydCBjbGFzcyBGbGF0cGlja3JDb21wb25lbnQgaW1wbGVtZW50cyBPbkluaXQsIE9uRGVzdHJveSB7XG4gIEBJbnB1dCgpIGRhdGU6IERhdGUgfCBEYXRlW107XG4gIEBJbnB1dCgpIG9wdGlvbnM6IEZsYXRQaWNrZXJPcHRpb25zO1xuICBAT3V0cHV0KCkgZGF0ZUNoYW5nZSA9IG5ldyBFdmVudEVtaXR0ZXI8RGF0ZSB8IERhdGVbXT4oKTtcblxuICBAVmlld0NoaWxkKCdkYXRlUGlja2VyJywgeyBzdGF0aWM6IHRydWUgfSkgZGF0ZVBpY2tlclJlZjogRWxlbWVudFJlZjtcblxuICBwcml2YXRlIGRhdGVQaWNrZXI6IGZsYXRwaWNrci5JbnN0YW5jZTtcblxuICBuZ09uSW5pdCgpIHtcbiAgICBjb25zdCBvcHRpb25zOiBGbGF0UGlja2VyT3B0aW9ucyA9XG4gICAgICB0aGlzLm9wdGlvbnMgIT0gbnVsbFxuICAgICAgICA/IHtcbiAgICAgICAgICAgIG1pbkRhdGU6IHRoaXMub3B0aW9ucy5taW5EYXRlIHx8IG51bGwsXG4gICAgICAgICAgICBtYXhEYXRlOiB0aGlzLm9wdGlvbnMubWF4RGF0ZSB8fCBudWxsLFxuICAgICAgICAgICAgbW9kZTogdGhpcy5vcHRpb25zLm1vZGUgfHwgJ3NpbmdsZSdcbiAgICAgICAgICB9XG4gICAgICAgIDoge1xuICAgICAgICAgICAgbWluRGF0ZTogbnVsbCxcbiAgICAgICAgICAgIG1heERhdGU6IG51bGwsXG4gICAgICAgICAgICBtb2RlOiAnc2luZ2xlJ1xuICAgICAgICAgIH07XG4gICAgdGhpcy5kYXRlUGlja2VyID0gZmxhdHBpY2tyKHRoaXMuZGF0ZVBpY2tlclJlZi5uYXRpdmVFbGVtZW50LCB7XG4gICAgICBpbmxpbmU6IHRydWUsXG4gICAgICBkZWZhdWx0RGF0ZTogdGhpcy5kYXRlLFxuICAgICAgb25DaGFuZ2U6IGMgPT4gdGhpcy5vbkRhdGVDaGFuZ2UoYyksXG4gICAgICBtYXhEYXRlOiBvcHRpb25zLm1heERhdGUsXG4gICAgICBtaW5EYXRlOiBvcHRpb25zLm1pbkRhdGUsXG4gICAgICBtb2RlOiBvcHRpb25zLm1vZGVcbiAgICB9KSBhcyBmbGF0cGlja3IuSW5zdGFuY2U7XG4gIH1cblxuICBuZ09uRGVzdHJveSgpIHtcbiAgICBpZiAodGhpcy5kYXRlUGlja2VyICE9IG51bGwpIHtcbiAgICAgIHRoaXMuZGF0ZVBpY2tlci5kZXN0cm95KCk7XG4gICAgfVxuICB9XG5cbiAgb25EYXRlQ2hhbmdlKGRhdGVPcHRpb246IERhdGUgfCBEYXRlW10pIHtcbiAgICBjb25zdCBtb2RlID0gdGhpcy5vcHRpb25zICE9IG51bGwgJiYgdGhpcy5vcHRpb25zLm1vZGUgPT09ICdyYW5nZScgPyAncmFuZ2UnIDogJ3NpbmdsZSc7XG4gICAgaWYgKG1vZGUgPT09ICdyYW5nZScgJiYgQXJyYXkuaXNBcnJheShkYXRlT3B0aW9uKSAmJiBkYXRlT3B0aW9uLmxlbmd0aCA9PT0gMikge1xuICAgICAgdGhpcy5kYXRlQ2hhbmdlLmVtaXQoZGF0ZU9wdGlvbik7XG4gICAgfVxuICAgIGlmIChtb2RlID09PSAnc2luZ2xlJyAmJiBBcnJheS5pc0FycmF5KGRhdGVPcHRpb24pICYmIGRhdGVPcHRpb24ubGVuZ3RoID09PSAxKSB7XG4gICAgICB0aGlzLmRhdGVDaGFuZ2UuZW1pdChkYXRlT3B0aW9uWzBdKTtcbiAgICB9XG4gIH1cbn1cbiIsIjxkaXYgY2xhc3M9XCJmbmctZmxhdHBpY2tyXCI+XG4gIDxkaXYgI2RhdGVQaWNrZXI+PC9kaXY+XG48L2Rpdj5cbiJdfQ==
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { ElementRef, EventEmitter } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class ClickOutsideDirective {
|
|
4
|
-
private elRef;
|
|
5
|
-
constructor(elRef: ElementRef);
|
|
6
|
-
clickOutside: EventEmitter<any>;
|
|
7
|
-
onClick(targetElement: HTMLElement): void;
|
|
8
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ClickOutsideDirective, never>;
|
|
9
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<ClickOutsideDirective, "[fngClickOutside]", never, {}, { "clickOutside": "clickOutside"; }, never, never, false>;
|
|
10
|
-
}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./image-gallery.component";
|
|
3
|
-
import * as i2 from "@angular/common";
|
|
4
|
-
import * as i3 from "../../pipes/pipes.module";
|
|
5
|
-
import * as i4 from "swiper/angular";
|
|
6
|
-
export * from './image-gallery.component';
|
|
7
|
-
export declare class FestoAngularImageGalleryModule {
|
|
8
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FestoAngularImageGalleryModule, never>;
|
|
9
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<FestoAngularImageGalleryModule, [typeof i1.ImageGalleryComponent], [typeof i2.CommonModule, typeof i3.FestoAngularPipesModule, typeof i4.SwiperModule], [typeof i1.ImageGalleryComponent]>;
|
|
10
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<FestoAngularImageGalleryModule>;
|
|
11
|
-
}
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import { EventEmitter } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class CustomModalComponent {
|
|
4
|
-
closeOnBackdrop: boolean;
|
|
5
|
-
large: boolean;
|
|
6
|
-
visible: boolean;
|
|
7
|
-
visibleChange: EventEmitter<boolean>;
|
|
8
|
-
header: string;
|
|
9
|
-
subheader: string;
|
|
10
|
-
acknowledgeLabel: string;
|
|
11
|
-
acknowledge: EventEmitter<void>;
|
|
12
|
-
cancelLabel: string;
|
|
13
|
-
cancel: EventEmitter<void>;
|
|
14
|
-
closeModal(): void;
|
|
15
|
-
onCancel(): void;
|
|
16
|
-
onAcknowledge(): void;
|
|
17
|
-
onClickOutside(): void;
|
|
18
|
-
onClickInside(event: MouseEvent): void;
|
|
19
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CustomModalComponent, never>;
|
|
20
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CustomModalComponent, "fng-custom-modal", never, { "closeOnBackdrop": "closeOnBackdrop"; "large": "large"; "visible": "visible"; "header": "header"; "subheader": "subheader"; "acknowledgeLabel": "acknowledgeLabel"; "cancelLabel": "cancelLabel"; }, { "visibleChange": "visibleChange"; "acknowledge": "acknowledge"; "cancel": "cancel"; }, never, ["*"], false>;
|
|
21
|
-
}
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import { Router } from '@angular/router';
|
|
2
|
-
import { Overlay } from '@angular/cdk/overlay';
|
|
3
|
-
import { ComponentType } from '@angular/cdk/portal';
|
|
4
|
-
import { Modal, ModalOptions, ModalResult } from './index';
|
|
5
|
-
import { AlertData } from './alert/alert.component';
|
|
6
|
-
import { ConfirmData } from './confirm/confirm.component';
|
|
7
|
-
import { PromptData } from './prompt/prompt.component';
|
|
8
|
-
import { ImageGalleryData } from '../image-gallery/image-gallery.component';
|
|
9
|
-
import * as i0 from "@angular/core";
|
|
10
|
-
export declare class ModalService {
|
|
11
|
-
protected overlay: Overlay;
|
|
12
|
-
private router;
|
|
13
|
-
constructor(overlay: Overlay, router: Router);
|
|
14
|
-
alert(data: AlertData, options?: ModalOptions): Promise<ModalResult<any>>;
|
|
15
|
-
confirm(data: ConfirmData, options?: ModalOptions): Promise<ModalResult<any>>;
|
|
16
|
-
prompt(data: PromptData, options?: ModalOptions): Promise<ModalResult<any>>;
|
|
17
|
-
openImageGallery(data: ImageGalleryData): Promise<ModalResult<any>>;
|
|
18
|
-
open<TData, TResult, TModal extends Modal<TData, TResult>>(data: TData, modal: ComponentType<TModal>, options: ModalOptions): Promise<ModalResult<TResult>>;
|
|
19
|
-
private dispose;
|
|
20
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ModalService, never>;
|
|
21
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<ModalService>;
|
|
22
|
-
}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./icon/icon.component";
|
|
3
|
-
import * as i2 from "@angular/common";
|
|
4
|
-
export * from './icon/icon.component';
|
|
5
|
-
export declare class FestoAngularContentModule {
|
|
6
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FestoAngularContentModule, never>;
|
|
7
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<FestoAngularContentModule, [typeof i1.IconComponent], [typeof i2.CommonModule], [typeof i1.IconComponent]>;
|
|
8
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<FestoAngularContentModule>;
|
|
9
|
-
}
|
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
export declare type IconType = 'font' | 'img' | 'svg';
|
|
3
|
-
/**
|
|
4
|
-
* Describes an icon.
|
|
5
|
-
*/
|
|
6
|
-
export interface Icon {
|
|
7
|
-
/**
|
|
8
|
-
* The icon type.
|
|
9
|
-
* - 'font' uses [name]{@link Icon#name} to resolve the icon from the icon font.
|
|
10
|
-
* - 'img' uses [url]{@link Icon#url}, [height]{@link Icon#height}, [width]{@link Icon#width}
|
|
11
|
-
* - 'svg' uses ng-content to display svg, [height]{@link Icon#height}, [width]{@link Icon#width}
|
|
12
|
-
*/
|
|
13
|
-
type: IconType;
|
|
14
|
-
/**
|
|
15
|
-
* The name used to resolve the icon.
|
|
16
|
-
*/
|
|
17
|
-
name?: string;
|
|
18
|
-
/**
|
|
19
|
-
* The url used to resolve the image.
|
|
20
|
-
*/
|
|
21
|
-
url?: string;
|
|
22
|
-
/**
|
|
23
|
-
* Height of the image in pixel (px).
|
|
24
|
-
*/
|
|
25
|
-
height?: number;
|
|
26
|
-
/**
|
|
27
|
-
* Width of the image in pixel (px).
|
|
28
|
-
*/
|
|
29
|
-
width?: number;
|
|
30
|
-
/**
|
|
31
|
-
* This string will be added as css class to the icon.
|
|
32
|
-
*/
|
|
33
|
-
class?: string;
|
|
34
|
-
}
|
|
35
|
-
/**
|
|
36
|
-
* An icon component.
|
|
37
|
-
*/
|
|
38
|
-
export declare class IconComponent {
|
|
39
|
-
/**
|
|
40
|
-
* The icon.
|
|
41
|
-
*/
|
|
42
|
-
icon: Icon;
|
|
43
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<IconComponent, never>;
|
|
44
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IconComponent, "fng-icon", never, { "icon": "icon"; }, {}, never, ["*"], false>;
|
|
45
|
-
}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { ElementRef } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare abstract class ContainerHostDirective {
|
|
4
|
-
elementRef: ElementRef;
|
|
5
|
-
constructor(elementRef: ElementRef);
|
|
6
|
-
onHostClick(target: Element): void;
|
|
7
|
-
abstract onOutsideClick(): void;
|
|
8
|
-
abstract onContainerClick(): void;
|
|
9
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ContainerHostDirective, never>;
|
|
10
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<ContainerHostDirective, never, never, {}, {}, never, never, false>;
|
|
11
|
-
}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./date-picker/date-picker.component";
|
|
3
|
-
import * as i2 from "./date-range-picker/date-range-picker.component";
|
|
4
|
-
import * as i3 from "../wrappers/flatpickr/flatpickr.component";
|
|
5
|
-
import * as i4 from "@angular/forms";
|
|
6
|
-
import * as i5 from "@angular/common";
|
|
7
|
-
import * as i6 from "@angular/cdk/overlay";
|
|
8
|
-
import * as i7 from "@angular/cdk/scrolling";
|
|
9
|
-
import * as i8 from "@angular/cdk/drag-drop";
|
|
10
|
-
import * as i9 from "@angular/cdk/observers";
|
|
11
|
-
export * from './date-picker/date-picker.component';
|
|
12
|
-
export * from './date-range-picker/date-range-picker.component';
|
|
13
|
-
export declare class FestoAngularDatePickerModule {
|
|
14
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FestoAngularDatePickerModule, never>;
|
|
15
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<FestoAngularDatePickerModule, [typeof i1.DatePickerComponent, typeof i2.DateRangePickerComponent, typeof i3.FlatpickrComponent], [typeof i4.ReactiveFormsModule, typeof i4.FormsModule, typeof i5.CommonModule, typeof i6.OverlayModule, typeof i7.ScrollingModule, typeof i8.DragDropModule, typeof i9.ObserversModule], [typeof i4.ReactiveFormsModule, typeof i4.FormsModule, typeof i1.DatePickerComponent, typeof i2.DateRangePickerComponent]>;
|
|
16
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<FestoAngularDatePickerModule>;
|
|
17
|
-
}
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./text-editor.component";
|
|
3
|
-
import * as i2 from "@angular/forms";
|
|
4
|
-
import * as i3 from "@angular/common";
|
|
5
|
-
import * as i4 from "@angular/cdk/overlay";
|
|
6
|
-
import * as i5 from "@angular/cdk/scrolling";
|
|
7
|
-
import * as i6 from "@angular/cdk/drag-drop";
|
|
8
|
-
import * as i7 from "@angular/cdk/observers";
|
|
9
|
-
export * from './text-editor.component';
|
|
10
|
-
export declare class FestoAngularTextEditorModule {
|
|
11
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FestoAngularTextEditorModule, never>;
|
|
12
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<FestoAngularTextEditorModule, [typeof i1.TextEditorComponent], [typeof i2.ReactiveFormsModule, typeof i2.FormsModule, typeof i3.CommonModule, typeof i4.OverlayModule, typeof i5.ScrollingModule, typeof i6.DragDropModule, typeof i7.ObserversModule], [typeof i2.ReactiveFormsModule, typeof i2.FormsModule, typeof i1.TextEditorComponent]>;
|
|
13
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<FestoAngularTextEditorModule>;
|
|
14
|
-
}
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "@angular/common";
|
|
3
|
-
export declare class FestoAngularLayoutModule {
|
|
4
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FestoAngularLayoutModule, never>;
|
|
5
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<FestoAngularLayoutModule, never, [typeof i1.CommonModule], never>;
|
|
6
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<FestoAngularLayoutModule>;
|
|
7
|
-
}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./safe-html.pipe";
|
|
3
|
-
import * as i2 from "@angular/common";
|
|
4
|
-
export * from '../pipes/safe-html.pipe';
|
|
5
|
-
export declare class FestoAngularPipesModule {
|
|
6
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FestoAngularPipesModule, never>;
|
|
7
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<FestoAngularPipesModule, [typeof i1.SafeHtmlPipe], [typeof i2.CommonModule], [typeof i1.SafeHtmlPipe]>;
|
|
8
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<FestoAngularPipesModule>;
|
|
9
|
-
}
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import { ElementRef, EventEmitter, OnInit, OnDestroy } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export interface FlatPickerOptions {
|
|
4
|
-
maxDate?: Date;
|
|
5
|
-
minDate?: Date;
|
|
6
|
-
mode?: 'single' | 'range';
|
|
7
|
-
}
|
|
8
|
-
export declare class FlatpickrComponent implements OnInit, OnDestroy {
|
|
9
|
-
date: Date | Date[];
|
|
10
|
-
options: FlatPickerOptions;
|
|
11
|
-
dateChange: EventEmitter<Date | Date[]>;
|
|
12
|
-
datePickerRef: ElementRef;
|
|
13
|
-
private datePicker;
|
|
14
|
-
ngOnInit(): void;
|
|
15
|
-
ngOnDestroy(): void;
|
|
16
|
-
onDateChange(dateOption: Date | Date[]): void;
|
|
17
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FlatpickrComponent, never>;
|
|
18
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FlatpickrComponent, "fng-flatpickr", never, { "date": "date"; "options": "options"; }, { "dateChange": "dateChange"; }, never, never, false>;
|
|
19
|
-
}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
@import "../../../../../../web-essentials/scss/variables";
|
|
2
|
-
|
|
3
|
-
.fng-accordion-header {
|
|
4
|
-
display: flex;
|
|
5
|
-
align-items: center;
|
|
6
|
-
height: $spacer-xl;
|
|
7
|
-
padding: 0 $spacer-s 0 $spacer-m;
|
|
8
|
-
font-size: $font-size-md;
|
|
9
|
-
font-weight: $font-weight-bold;
|
|
10
|
-
color: $text;
|
|
11
|
-
border-bottom: 1px solid $gray-100;
|
|
12
|
-
}
|
|
@@ -1,109 +0,0 @@
|
|
|
1
|
-
@import "../../../../../../../web-essentials/scss/variables";
|
|
2
|
-
|
|
3
|
-
.fng-accordion-item-body {
|
|
4
|
-
overflow: hidden;
|
|
5
|
-
transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
|
6
|
-
height: 0px;
|
|
7
|
-
|
|
8
|
-
// remove all padding/margin top of first element in item body to ensure that its always 24px distance to header (which is the headers padding)
|
|
9
|
-
> :first-child:not(.fng-accordion-item-body-spacer-bottom):not(.fng-accordion) {
|
|
10
|
-
margin-top: 0 !important;
|
|
11
|
-
padding-top: 0 !important;
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
// for mobile view we do not have an extra margin for elements in body
|
|
15
|
-
> :not(.fng-accordion) {
|
|
16
|
-
margin-right: 0px;
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
&-content {
|
|
20
|
-
margin-right: $spacer-xxl;
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
&-spacer {
|
|
24
|
-
// the spacer ensures that there is always at least 24px margin at the end of the body
|
|
25
|
-
// it also makes use of "margin collapsing" so that even if the last element in the body itself has a margin of 24px or more
|
|
26
|
-
// it will not add the 24px on top of it
|
|
27
|
-
&-bottom {
|
|
28
|
-
margin-top: $spacer-m;
|
|
29
|
-
height: 0;
|
|
30
|
-
width: 0;
|
|
31
|
-
}
|
|
32
|
-
}
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
// styles for an accordion inside an accordion (nested accordion)
|
|
36
|
-
.fng-accordion-item-body {
|
|
37
|
-
|
|
38
|
-
.fng-accordion {
|
|
39
|
-
margin-top: $spacer-xxl;
|
|
40
|
-
margin-bottom: $spacer-m;
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
.fng-accordion-item {
|
|
44
|
-
&-link {
|
|
45
|
-
display: block;
|
|
46
|
-
top: 8px;
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
&-header {
|
|
50
|
-
padding-top: $spacer-l;
|
|
51
|
-
padding-right: $spacer-l;
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
&::after {
|
|
55
|
-
top: 12px;
|
|
56
|
-
right: 4px;
|
|
57
|
-
color: $caerul;
|
|
58
|
-
font-family: $font-family-icons-16;
|
|
59
|
-
font-size: $font-size-base;
|
|
60
|
-
content: "\e900";
|
|
61
|
-
height: $spacer-s;
|
|
62
|
-
line-height: $spacer-s;
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
&--expanded {
|
|
66
|
-
&::before {
|
|
67
|
-
background-color: transparent;
|
|
68
|
-
}
|
|
69
|
-
}
|
|
70
|
-
}
|
|
71
|
-
}
|
|
72
|
-
|
|
73
|
-
// styles for different viewports below this line with mobile first approach
|
|
74
|
-
@media (min-width: $grid-breakpoint-xs) {
|
|
75
|
-
.fng-accordion-item {
|
|
76
|
-
&-body {
|
|
77
|
-
// give all elements inside the accordion body a margin right of 64px except if its another accordion inside the body
|
|
78
|
-
> :not(.fng-accordion) {
|
|
79
|
-
margin-right: $spacer-xxl;
|
|
80
|
-
}
|
|
81
|
-
}
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
// styles for an accordion inside an accordion (nested accordion)
|
|
85
|
-
.fng-accordion-item-body {
|
|
86
|
-
.fng-accordion-item {
|
|
87
|
-
&-header {
|
|
88
|
-
padding-top: $spacer-m;
|
|
89
|
-
// increase the padding right because instead of only arrow icon we have text and arrow icon here
|
|
90
|
-
// make a best guess to fit also langugages with more chars (if too long it will be truncated with ellipsis)
|
|
91
|
-
padding-right: 168px;
|
|
92
|
-
}
|
|
93
|
-
|
|
94
|
-
&-link {
|
|
95
|
-
font-size: $font-size-base;
|
|
96
|
-
top: $spacer-m;
|
|
97
|
-
max-width: $spacer-xxl * 2;
|
|
98
|
-
// if link gets to long we truncate it with ellipsis here
|
|
99
|
-
white-space: nowrap;
|
|
100
|
-
overflow: hidden;
|
|
101
|
-
text-overflow: ellipsis;
|
|
102
|
-
}
|
|
103
|
-
|
|
104
|
-
&::after {
|
|
105
|
-
top: 30px;
|
|
106
|
-
}
|
|
107
|
-
}
|
|
108
|
-
}
|
|
109
|
-
}
|
|
@@ -1,71 +0,0 @@
|
|
|
1
|
-
@import "../../../../../../web-essentials/scss/variables";
|
|
2
|
-
|
|
3
|
-
.fng-accordion-item {
|
|
4
|
-
position: relative;
|
|
5
|
-
padding: 0 $spacer-s 0 $spacer-m;
|
|
6
|
-
border-top: 1px solid $gray-100;
|
|
7
|
-
border-bottom: 1px solid $gray-100;
|
|
8
|
-
|
|
9
|
-
&-link {
|
|
10
|
-
position: absolute;
|
|
11
|
-
top: $spacer-m;
|
|
12
|
-
right: $spacer-m;
|
|
13
|
-
color: $caerul;
|
|
14
|
-
font-size: $font-size-md;
|
|
15
|
-
pointer-events: none;
|
|
16
|
-
display: none;
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
&::before {
|
|
20
|
-
position: absolute;
|
|
21
|
-
top: 0;
|
|
22
|
-
left: 0;
|
|
23
|
-
display: block;
|
|
24
|
-
content: "";
|
|
25
|
-
width: $spacer-xxxs;
|
|
26
|
-
height: 0px;
|
|
27
|
-
background-color: $caerul;
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
&::after {
|
|
31
|
-
position: absolute;
|
|
32
|
-
top: 21px;
|
|
33
|
-
right: $spacer-s;
|
|
34
|
-
display: block;
|
|
35
|
-
font-family: $font-family-icons-32;
|
|
36
|
-
font-size: $font-size-xxl;
|
|
37
|
-
content: "\e900";
|
|
38
|
-
height: $spacer-l;
|
|
39
|
-
line-height: $spacer-l;
|
|
40
|
-
transition: transform 0.2s ease;
|
|
41
|
-
pointer-events: none;
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
&--expanded {
|
|
45
|
-
.fng-accordion-item-header {
|
|
46
|
-
font-weight: $font-weight-bold;
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
.fng-accordion-item-body {
|
|
50
|
-
height: auto;
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
&::after {
|
|
54
|
-
transform: rotate(-180deg);
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
&::before {
|
|
58
|
-
height: 100%;
|
|
59
|
-
}
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
&--collapsed {
|
|
63
|
-
.fng-accordion-item-body {
|
|
64
|
-
height: 0px;
|
|
65
|
-
}
|
|
66
|
-
|
|
67
|
-
.fng-accordion-item-header {
|
|
68
|
-
font-weight: $font-weight-normal;
|
|
69
|
-
}
|
|
70
|
-
}
|
|
71
|
-
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|