@festo-ui/angular 3.1.0-pre-20220203.2 → 3.1.0-pre-20220203.4
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/esm2020/festo-ui-angular.mjs +5 -0
- package/esm2020/index.mjs +18 -0
- package/esm2020/lib/components/breadcrumb/breadcrumb.component.mjs +23 -0
- package/esm2020/lib/components/buttons/button/button.component.mjs +41 -0
- package/esm2020/lib/components/buttons/link-button/link-button.component.mjs +33 -0
- package/esm2020/lib/components/chips/chip/chip.component.mjs +37 -0
- package/esm2020/lib/components/chips/chip-container/chip-container.component.mjs +16 -0
- package/esm2020/lib/components/click-outside.directive.mjs +28 -0
- package/esm2020/lib/components/components.module.mjs +155 -0
- package/esm2020/lib/components/loading-indicator/loading-indicator.component.mjs +16 -0
- package/esm2020/lib/components/modals/alert/alert.component.mjs +52 -0
- package/esm2020/lib/components/modals/confirm/confirm.component.mjs +67 -0
- package/esm2020/lib/components/modals/index.mjs +2 -0
- package/esm2020/lib/components/modals/modal.service.mjs +112 -0
- package/esm2020/lib/components/modals/modals.module.mjs +28 -0
- package/esm2020/lib/components/modals/prompt/prompt.component.mjs +102 -0
- package/esm2020/lib/components/pagination/pagination.component.mjs +55 -0
- package/esm2020/lib/components/popovers/legend/legend.component.mjs +42 -0
- package/esm2020/lib/components/popovers/legend/legend.directive.mjs +31 -0
- package/esm2020/lib/components/popovers/popover/popover.component.mjs +31 -0
- package/esm2020/lib/components/popovers/popover-content/popover-content.component.mjs +82 -0
- package/esm2020/lib/components/popovers/popover-content/popover-content.directive.mjs +39 -0
- package/esm2020/lib/components/popovers/popover-menu/popover-menu.component.mjs +68 -0
- package/esm2020/lib/components/popovers/popover-ref.mjs +25 -0
- package/esm2020/lib/components/popovers/popover.defaults.mjs +60 -0
- package/esm2020/lib/components/popovers/popover.models.mjs +23 -0
- package/esm2020/lib/components/popovers/popover.service.mjs +123 -0
- package/esm2020/lib/components/popovers/tooltip/tooltip.directive.mjs +94 -0
- package/esm2020/lib/components/progress/progress.component.mjs +20 -0
- package/esm2020/lib/components/scroll/index.mjs +2 -0
- package/esm2020/lib/components/scroll/scrollable.directive.mjs +72 -0
- package/esm2020/lib/components/search-input/search-input.component.mjs +150 -0
- package/esm2020/lib/components/snackbar/snackbar-container.component.mjs +21 -0
- package/esm2020/lib/components/snackbar/snackbar-container.directive.mjs +83 -0
- package/esm2020/lib/components/snackbar/snackbar.component.mjs +79 -0
- package/esm2020/lib/components/snackbar/snackbar.models.mjs +2 -0
- package/esm2020/lib/components/snackbar/snackbar.module.mjs +26 -0
- package/esm2020/lib/components/snackbar/snackbar.service.mjs +23 -0
- package/esm2020/lib/components/stepper/stepper.component.mjs +22 -0
- package/esm2020/lib/components/table-header-cell/table-header-cell.directive.mjs +58 -0
- package/esm2020/lib/components/tabs/tab-pane/tab-pane.component.mjs +31 -0
- package/esm2020/lib/components/tabs/tabs.component.mjs +355 -0
- package/esm2020/lib/content/content.module.mjs +20 -0
- package/esm2020/lib/content/icon/icon.component.mjs +17 -0
- package/esm2020/lib/festo-angular.module.mjs +58 -0
- package/esm2020/lib/forms/checkbox/checkbox.component.mjs +149 -0
- package/esm2020/lib/forms/color-indicator/color-indicator.component.mjs +68 -0
- package/esm2020/lib/forms/color-picker/color-helper.mjs +121 -0
- package/esm2020/lib/forms/color-picker/color-picker.component.mjs +273 -0
- package/esm2020/lib/forms/container-host.mjs +27 -0
- package/esm2020/lib/forms/date-picker/date-picker.component.mjs +199 -0
- package/esm2020/lib/forms/date-range-picker/date-range-picker.component.mjs +224 -0
- package/esm2020/lib/forms/forms.module.mjs +146 -0
- package/esm2020/lib/forms/radio/radio.component.mjs +346 -0
- package/esm2020/lib/forms/segment/segment-control/segment-control.component.mjs +52 -0
- package/esm2020/lib/forms/segment/segment.component.mjs +109 -0
- package/esm2020/lib/forms/select/chip-text.pipe.mjs +34 -0
- package/esm2020/lib/forms/select/select-option/select-option.component.mjs +22 -0
- package/esm2020/lib/forms/select/select.component.mjs +257 -0
- package/esm2020/lib/forms/slider/slider.component.mjs +110 -0
- package/esm2020/lib/forms/switch/switch.component.mjs +120 -0
- package/esm2020/lib/forms/text-area/text-area.component.mjs +180 -0
- package/esm2020/lib/forms/text-editor/text-editor.component.mjs +286 -0
- package/esm2020/lib/forms/text-input/text-input.component.mjs +183 -0
- package/esm2020/lib/forms/time-picker/time-picker-dropdown/time-picker-dropdown.component.mjs +89 -0
- package/esm2020/lib/forms/time-picker/time-picker.component.mjs +188 -0
- package/esm2020/lib/forms/unique-selection-dispatcher.mjs +39 -0
- package/esm2020/lib/forms/value-accessor-base.mjs +41 -0
- package/esm2020/lib/layout/layout.module.mjs +18 -0
- package/esm2020/lib/wrappers/flatpickr/flatpickr.component.mjs +59 -0
- package/fesm2015/{festo-ui-angular.js → festo-ui-angular.mjs} +317 -521
- package/fesm2015/festo-ui-angular.mjs.map +1 -0
- package/fesm2020/festo-ui-angular.mjs +5383 -0
- package/fesm2020/festo-ui-angular.mjs.map +1 -0
- package/package.json +31 -16
- package/scss/base/components/breadcrumb/breadcrumb.component.scss +0 -1
- package/scss/base/components/modals/prompt/prompt.component.scss +0 -1
- package/scss/base/components/popovers/legend/legend.component.scss +2 -2
- package/scss/base/components/popovers/popover/styles.scss +3 -3
- package/scss/base/components/popovers/popover-content/popover-content.component.scss +1 -1
- package/scss/base/components/scroll/scroll-story-helper.scss +1 -3
- package/scss/base/components/snackbar/snackbar.component.scss +1 -1
- package/scss/base/components/stepper/stepper.component.scss +16 -15
- package/scss/base/forms/color-picker/color-picker.component.scss +12 -12
- package/scss/base/forms/date-picker/date-picker.component.scss +1 -1
- package/scss/base/forms/date-range-picker/date-range-picker.component.scss +1 -1
- package/scss/base/forms/time-picker/time-picker-dropdown/time-picker-dropdown.component.scss +1 -1
- package/scss/styles.scss +2 -2
- package/bundles/festo-ui-angular.umd.js +0 -6429
- package/bundles/festo-ui-angular.umd.js.map +0 -1
- package/esm2015/festo-ui-angular.js +0 -5
- package/esm2015/festo-ui-angular.js.map +0 -1
- package/esm2015/index.js +0 -18
- package/esm2015/index.js.map +0 -1
- package/esm2015/lib/components/breadcrumb/breadcrumb.component.js +0 -27
- package/esm2015/lib/components/breadcrumb/breadcrumb.component.js.map +0 -1
- package/esm2015/lib/components/buttons/button/button.component.js +0 -46
- package/esm2015/lib/components/buttons/button/button.component.js.map +0 -1
- package/esm2015/lib/components/buttons/link-button/link-button.component.js +0 -38
- package/esm2015/lib/components/buttons/link-button/link-button.component.js.map +0 -1
- package/esm2015/lib/components/chips/chip/chip.component.js +0 -42
- package/esm2015/lib/components/chips/chip/chip.component.js.map +0 -1
- package/esm2015/lib/components/chips/chip-container/chip-container.component.js +0 -21
- package/esm2015/lib/components/chips/chip-container/chip-container.component.js.map +0 -1
- package/esm2015/lib/components/click-outside.directive.js +0 -28
- package/esm2015/lib/components/click-outside.directive.js.map +0 -1
- package/esm2015/lib/components/components.module.js +0 -155
- package/esm2015/lib/components/components.module.js.map +0 -1
- package/esm2015/lib/components/loading-indicator/loading-indicator.component.js +0 -21
- package/esm2015/lib/components/loading-indicator/loading-indicator.component.js.map +0 -1
- package/esm2015/lib/components/modals/alert/alert.component.js +0 -57
- package/esm2015/lib/components/modals/alert/alert.component.js.map +0 -1
- package/esm2015/lib/components/modals/confirm/confirm.component.js +0 -73
- package/esm2015/lib/components/modals/confirm/confirm.component.js.map +0 -1
- package/esm2015/lib/components/modals/index.js +0 -2
- package/esm2015/lib/components/modals/index.js.map +0 -1
- package/esm2015/lib/components/modals/modal.service.js +0 -91
- package/esm2015/lib/components/modals/modal.service.js.map +0 -1
- package/esm2015/lib/components/modals/modals.module.js +0 -28
- package/esm2015/lib/components/modals/modals.module.js.map +0 -1
- package/esm2015/lib/components/modals/prompt/prompt.component.js +0 -110
- package/esm2015/lib/components/modals/prompt/prompt.component.js.map +0 -1
- package/esm2015/lib/components/pagination/pagination.component.js +0 -60
- package/esm2015/lib/components/pagination/pagination.component.js.map +0 -1
- package/esm2015/lib/components/popovers/legend/legend.component.js +0 -46
- package/esm2015/lib/components/popovers/legend/legend.component.js.map +0 -1
- package/esm2015/lib/components/popovers/legend/legend.directive.js +0 -31
- package/esm2015/lib/components/popovers/legend/legend.directive.js.map +0 -1
- package/esm2015/lib/components/popovers/popover/popover.component.js +0 -35
- package/esm2015/lib/components/popovers/popover/popover.component.js.map +0 -1
- package/esm2015/lib/components/popovers/popover-content/popover-content.component.js +0 -86
- package/esm2015/lib/components/popovers/popover-content/popover-content.component.js.map +0 -1
- package/esm2015/lib/components/popovers/popover-content/popover-content.directive.js +0 -39
- package/esm2015/lib/components/popovers/popover-content/popover-content.directive.js.map +0 -1
- package/esm2015/lib/components/popovers/popover-menu/popover-menu.component.js +0 -72
- package/esm2015/lib/components/popovers/popover-menu/popover-menu.component.js.map +0 -1
- package/esm2015/lib/components/popovers/popover-ref.js +0 -25
- package/esm2015/lib/components/popovers/popover-ref.js.map +0 -1
- package/esm2015/lib/components/popovers/popover.defaults.js +0 -60
- package/esm2015/lib/components/popovers/popover.defaults.js.map +0 -1
- package/esm2015/lib/components/popovers/popover.models.js +0 -23
- package/esm2015/lib/components/popovers/popover.models.js.map +0 -1
- package/esm2015/lib/components/popovers/popover.service.js +0 -117
- package/esm2015/lib/components/popovers/popover.service.js.map +0 -1
- package/esm2015/lib/components/popovers/tooltip/tooltip.directive.js +0 -96
- package/esm2015/lib/components/popovers/tooltip/tooltip.directive.js.map +0 -1
- package/esm2015/lib/components/progress/progress.component.js +0 -23
- package/esm2015/lib/components/progress/progress.component.js.map +0 -1
- package/esm2015/lib/components/scroll/index.js +0 -2
- package/esm2015/lib/components/scroll/index.js.map +0 -1
- package/esm2015/lib/components/scroll/scrollable.directive.js +0 -73
- package/esm2015/lib/components/scroll/scrollable.directive.js.map +0 -1
- package/esm2015/lib/components/search-input/search-input.component.js +0 -155
- package/esm2015/lib/components/search-input/search-input.component.js.map +0 -1
- package/esm2015/lib/components/snackbar/snackbar-container.component.js +0 -26
- package/esm2015/lib/components/snackbar/snackbar-container.component.js.map +0 -1
- package/esm2015/lib/components/snackbar/snackbar-container.directive.js +0 -83
- package/esm2015/lib/components/snackbar/snackbar-container.directive.js.map +0 -1
- package/esm2015/lib/components/snackbar/snackbar.component.js +0 -85
- package/esm2015/lib/components/snackbar/snackbar.component.js.map +0 -1
- package/esm2015/lib/components/snackbar/snackbar.models.js +0 -2
- package/esm2015/lib/components/snackbar/snackbar.models.js.map +0 -1
- package/esm2015/lib/components/snackbar/snackbar.module.js +0 -26
- package/esm2015/lib/components/snackbar/snackbar.module.js.map +0 -1
- package/esm2015/lib/components/snackbar/snackbar.service.js +0 -23
- package/esm2015/lib/components/snackbar/snackbar.service.js.map +0 -1
- package/esm2015/lib/components/stepper/stepper.component.js +0 -28
- package/esm2015/lib/components/stepper/stepper.component.js.map +0 -1
- package/esm2015/lib/components/table-header-cell/table-header-cell.directive.js +0 -58
- package/esm2015/lib/components/table-header-cell/table-header-cell.directive.js.map +0 -1
- package/esm2015/lib/components/tabs/tab-pane/tab-pane.component.js +0 -35
- package/esm2015/lib/components/tabs/tab-pane/tab-pane.component.js.map +0 -1
- package/esm2015/lib/components/tabs/tabs.component.js +0 -362
- package/esm2015/lib/components/tabs/tabs.component.js.map +0 -1
- package/esm2015/lib/content/content.module.js +0 -24
- package/esm2015/lib/content/content.module.js.map +0 -1
- package/esm2015/lib/content/icon/icon.component.js +0 -23
- package/esm2015/lib/content/icon/icon.component.js.map +0 -1
- package/esm2015/lib/festo-angular.module.js +0 -58
- package/esm2015/lib/festo-angular.module.js.map +0 -1
- package/esm2015/lib/forms/checkbox/checkbox.component.js +0 -156
- package/esm2015/lib/forms/checkbox/checkbox.component.js.map +0 -1
- package/esm2015/lib/forms/color-indicator/color-indicator.component.js +0 -72
- package/esm2015/lib/forms/color-indicator/color-indicator.component.js.map +0 -1
- package/esm2015/lib/forms/color-picker/color-helper.js +0 -121
- package/esm2015/lib/forms/color-picker/color-helper.js.map +0 -1
- package/esm2015/lib/forms/color-picker/color-picker.component.js +0 -280
- package/esm2015/lib/forms/color-picker/color-picker.component.js.map +0 -1
- package/esm2015/lib/forms/container-host.js +0 -27
- package/esm2015/lib/forms/container-host.js.map +0 -1
- package/esm2015/lib/forms/date-picker/date-picker.component.js +0 -205
- package/esm2015/lib/forms/date-picker/date-picker.component.js.map +0 -1
- package/esm2015/lib/forms/date-range-picker/date-range-picker.component.js +0 -230
- package/esm2015/lib/forms/date-range-picker/date-range-picker.component.js.map +0 -1
- package/esm2015/lib/forms/forms.module.js +0 -146
- package/esm2015/lib/forms/forms.module.js.map +0 -1
- package/esm2015/lib/forms/radio/radio.component.js +0 -353
- package/esm2015/lib/forms/radio/radio.component.js.map +0 -1
- package/esm2015/lib/forms/segment/segment-control/segment-control.component.js +0 -58
- package/esm2015/lib/forms/segment/segment-control/segment-control.component.js.map +0 -1
- package/esm2015/lib/forms/segment/segment.component.js +0 -116
- package/esm2015/lib/forms/segment/segment.component.js.map +0 -1
- package/esm2015/lib/forms/select/chip-text.pipe.js +0 -34
- package/esm2015/lib/forms/select/chip-text.pipe.js.map +0 -1
- package/esm2015/lib/forms/select/select-option/select-option.component.js +0 -29
- package/esm2015/lib/forms/select/select-option/select-option.component.js.map +0 -1
- package/esm2015/lib/forms/select/select.component.js +0 -265
- package/esm2015/lib/forms/select/select.component.js.map +0 -1
- package/esm2015/lib/forms/slider/slider.component.js +0 -116
- package/esm2015/lib/forms/slider/slider.component.js.map +0 -1
- package/esm2015/lib/forms/switch/switch.component.js +0 -127
- package/esm2015/lib/forms/switch/switch.component.js.map +0 -1
- package/esm2015/lib/forms/text-area/text-area.component.js +0 -186
- package/esm2015/lib/forms/text-area/text-area.component.js.map +0 -1
- package/esm2015/lib/forms/text-editor/text-editor.component.js +0 -294
- package/esm2015/lib/forms/text-editor/text-editor.component.js.map +0 -1
- package/esm2015/lib/forms/text-input/text-input.component.js +0 -189
- package/esm2015/lib/forms/text-input/text-input.component.js.map +0 -1
- package/esm2015/lib/forms/time-picker/time-picker-dropdown/time-picker-dropdown.component.js +0 -103
- package/esm2015/lib/forms/time-picker/time-picker-dropdown/time-picker-dropdown.component.js.map +0 -1
- package/esm2015/lib/forms/time-picker/time-picker.component.js +0 -194
- package/esm2015/lib/forms/time-picker/time-picker.component.js.map +0 -1
- package/esm2015/lib/forms/unique-selection-dispatcher.js +0 -39
- package/esm2015/lib/forms/unique-selection-dispatcher.js.map +0 -1
- package/esm2015/lib/forms/value-accessor-base.js +0 -41
- package/esm2015/lib/forms/value-accessor-base.js.map +0 -1
- package/esm2015/lib/layout/layout.module.js +0 -18
- package/esm2015/lib/layout/layout.module.js.map +0 -1
- package/esm2015/lib/wrappers/flatpickr/flatpickr.component.js +0 -63
- package/esm2015/lib/wrappers/flatpickr/flatpickr.component.js.map +0 -1
- package/fesm2015/festo-ui-angular.js.map +0 -1
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"festo-ui-angular.js","sourceRoot":"","sources":["../../../../libs/angular/src/festo-ui-angular.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,cAAc,SAAS,CAAC","sourcesContent":["/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"]}
|
package/esm2015/index.js
DELETED
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
// COMPONENTS
|
|
2
|
-
export * from './lib/components/components.module';
|
|
3
|
-
// MODALS
|
|
4
|
-
export * from './lib/components/modals/modals.module';
|
|
5
|
-
// SNACKBAR
|
|
6
|
-
export * from './lib/components/snackbar/snackbar.module';
|
|
7
|
-
// CONTENT
|
|
8
|
-
export * from './lib/content/content.module';
|
|
9
|
-
// FORMS
|
|
10
|
-
export * from './lib/forms/forms.module';
|
|
11
|
-
// LAYOUT
|
|
12
|
-
export * from './lib/layout/layout.module';
|
|
13
|
-
// MAIN
|
|
14
|
-
export * from './lib/festo-angular.module';
|
|
15
|
-
// SERVICES
|
|
16
|
-
export * from './lib/components/modals/modal.service';
|
|
17
|
-
export * from './lib/components/snackbar/snackbar.service';
|
|
18
|
-
//# sourceMappingURL=index.js.map
|
package/esm2015/index.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../libs/angular/src/index.ts"],"names":[],"mappings":"AAAA,aAAa;AACb,cAAc,oCAAoC,CAAC;AAEnD,SAAS;AACT,cAAc,uCAAuC,CAAC;AAEtD,WAAW;AACX,cAAc,2CAA2C,CAAC;AAE1D,UAAU;AACV,cAAc,8BAA8B,CAAC;AAE7C,QAAQ;AACR,cAAc,0BAA0B,CAAC;AAEzC,SAAS;AACT,cAAc,4BAA4B,CAAC;AAE3C,OAAO;AACP,cAAc,4BAA4B,CAAC;AAE3C,WAAW;AACX,cAAc,uCAAuC,CAAC;AACtD,cAAc,4CAA4C,CAAC","sourcesContent":["// COMPONENTS\nexport * from './lib/components/components.module';\n\n// MODALS\nexport * from './lib/components/modals/modals.module';\n\n// SNACKBAR\nexport * from './lib/components/snackbar/snackbar.module';\n\n// CONTENT\nexport * from './lib/content/content.module';\n\n// FORMS\nexport * from './lib/forms/forms.module';\n\n// LAYOUT\nexport * from './lib/layout/layout.module';\n\n// MAIN\nexport * from './lib/festo-angular.module';\n\n// SERVICES\nexport * from './lib/components/modals/modal.service';\nexport * from './lib/components/snackbar/snackbar.service';"]}
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
import { Component, Input, EventEmitter, Output, ViewEncapsulation } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
import * as i1 from "@angular/common";
|
|
4
|
-
import * as i2 from "@angular/router";
|
|
5
|
-
export class BreadcrumbComponent {
|
|
6
|
-
constructor() {
|
|
7
|
-
this.useRouterLink = false;
|
|
8
|
-
this.navigate = new EventEmitter();
|
|
9
|
-
}
|
|
10
|
-
}
|
|
11
|
-
BreadcrumbComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.0", ngImport: i0, type: BreadcrumbComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
12
|
-
BreadcrumbComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.0", type: BreadcrumbComponent, selector: "fng-breadcrumb", inputs: { useRouterLink: "useRouterLink", locations: "locations" }, outputs: { navigate: "navigate" }, ngImport: i0, template: "<div class=\"fwe-breadcrumb\">\n <ng-container *ngFor=\"let location of locations; let i = index\">\n <a *ngIf=\"useRouterLink\" class=\"fng-breadcrumb-location\" [routerLink]=\"location.url\">{{ location.label }}</a>\n <a *ngIf=\"!useRouterLink\" class=\"fng-breadcrumb-location\" (click)=\"navigate.emit(location.url)\">{{ location.label }}</a>\n <i class=\"fwe-icon fwe-icon-arrows-right-2\" *ngIf=\"i + 1 < locations.length\"></i>\n </ng-container>\n</div>\n", directives: [{ type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i2.RouterLinkWithHref, selector: "a[routerLink],area[routerLink]", inputs: ["routerLink", "target", "queryParams", "fragment", "queryParamsHandling", "preserveFragment", "skipLocationChange", "replaceUrl", "state", "relativeTo"] }], encapsulation: i0.ViewEncapsulation.None });
|
|
13
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.0", ngImport: i0, type: BreadcrumbComponent, decorators: [{
|
|
14
|
-
type: Component,
|
|
15
|
-
args: [{
|
|
16
|
-
selector: 'fng-breadcrumb',
|
|
17
|
-
templateUrl: './breadcrumb.component.html',
|
|
18
|
-
encapsulation: ViewEncapsulation.None
|
|
19
|
-
}]
|
|
20
|
-
}], propDecorators: { useRouterLink: [{
|
|
21
|
-
type: Input
|
|
22
|
-
}], locations: [{
|
|
23
|
-
type: Input
|
|
24
|
-
}], navigate: [{
|
|
25
|
-
type: Output
|
|
26
|
-
}] } });
|
|
27
|
-
//# sourceMappingURL=breadcrumb.component.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"breadcrumb.component.js","sourceRoot":"","sources":["../../../../../../../libs/angular/src/lib/components/breadcrumb/breadcrumb.component.ts","../../../../../../../libs/angular/src/lib/components/breadcrumb/breadcrumb.component.html"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,KAAK,EAAE,YAAY,EAAE,MAAM,EAAE,iBAAiB,EAAE,MAAM,eAAe,CAAC;;;;AAO1F,MAAM,OAAO,mBAAmB;IALhC;QAMW,kBAAa,GAAG,KAAK,CAAC;QAErB,aAAQ,GAAG,IAAI,YAAY,EAAU,CAAC;KACjD;;gHAJY,mBAAmB;oGAAnB,mBAAmB,6JCPhC,2dAOA;2FDAa,mBAAmB;kBAL/B,SAAS;mBAAC;oBACT,QAAQ,EAAE,gBAAgB;oBAC1B,WAAW,EAAE,6BAA6B;oBAC1C,aAAa,EAAE,iBAAiB,CAAC,IAAI;iBACtC;8BAEU,aAAa;sBAArB,KAAK;gBACG,SAAS;sBAAjB,KAAK;gBACI,QAAQ;sBAAjB,MAAM","sourcesContent":["import { Component, Input, EventEmitter, Output, ViewEncapsulation } from '@angular/core';\n\n@Component({\n selector: 'fng-breadcrumb',\n templateUrl: './breadcrumb.component.html',\n encapsulation: ViewEncapsulation.None\n})\nexport class BreadcrumbComponent {\n @Input() useRouterLink = false;\n @Input() locations: { label: string, url: string }[];\n @Output() navigate = new EventEmitter<string>();\n}\n","<div class=\"fwe-breadcrumb\">\n <ng-container *ngFor=\"let location of locations; let i = index\">\n <a *ngIf=\"useRouterLink\" class=\"fng-breadcrumb-location\" [routerLink]=\"location.url\">{{ location.label }}</a>\n <a *ngIf=\"!useRouterLink\" class=\"fng-breadcrumb-location\" (click)=\"navigate.emit(location.url)\">{{ location.label }}</a>\n <i class=\"fwe-icon fwe-icon-arrows-right-2\" *ngIf=\"i + 1 < locations.length\"></i>\n </ng-container>\n</div>\n"]}
|
|
@@ -1,46 +0,0 @@
|
|
|
1
|
-
import { Component, Input, Output, EventEmitter, ViewEncapsulation, ContentChild, ElementRef } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
import * as i1 from "@angular/common";
|
|
4
|
-
export class ButtonComponent {
|
|
5
|
-
constructor() {
|
|
6
|
-
this.disabled = false;
|
|
7
|
-
this.primary = false;
|
|
8
|
-
this.iconOnly = false;
|
|
9
|
-
this.large = false;
|
|
10
|
-
this.fngClick = new EventEmitter();
|
|
11
|
-
}
|
|
12
|
-
onClick(event) {
|
|
13
|
-
if (!this.disabled) {
|
|
14
|
-
this.fngClick.emit(event);
|
|
15
|
-
}
|
|
16
|
-
}
|
|
17
|
-
}
|
|
18
|
-
ButtonComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.0", ngImport: i0, type: ButtonComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
19
|
-
ButtonComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.0", type: ButtonComponent, selector: "fng-button", inputs: { text: "text", icon: "icon", disabled: "disabled", primary: "primary", iconOnly: "iconOnly", large: "large" }, outputs: { fngClick: "fngClick" }, queries: [{ propertyName: "content", first: true, predicate: ["content"], descendants: true }], ngImport: i0, template: "<button (click)=\"onClick($event)\"\n [ngClass]=\"{\n 'fwe-btn': true,\n 'fng-button': true,\n 'fwe-btn-icon': iconOnly,\n 'fwe-disabled': disabled,\n 'fwe-btn-hero': primary,\n 'fwe-btn-lg': large\n }\"\n [disabled]=\"disabled\">\n <i *ngIf=\"icon\" [class]=\"'fwe-icon fwe-icon-' + icon\"></i>\n <div *ngIf=\"!iconOnly\" class=\"fng-button-text\">\n <ng-content></ng-content>\n <span *ngIf=\"!content\">{{text}}</span>\n </div>\n</button>", styles: [".fng-button .fng-button-text{margin:-1px 0 1px}\n"], directives: [{ type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], encapsulation: i0.ViewEncapsulation.None });
|
|
20
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.0", ngImport: i0, type: ButtonComponent, decorators: [{
|
|
21
|
-
type: Component,
|
|
22
|
-
args: [{
|
|
23
|
-
selector: 'fng-button',
|
|
24
|
-
templateUrl: './button.component.html',
|
|
25
|
-
styleUrls: ['./button.component.scss'],
|
|
26
|
-
encapsulation: ViewEncapsulation.None
|
|
27
|
-
}]
|
|
28
|
-
}], propDecorators: { text: [{
|
|
29
|
-
type: Input
|
|
30
|
-
}], icon: [{
|
|
31
|
-
type: Input
|
|
32
|
-
}], disabled: [{
|
|
33
|
-
type: Input
|
|
34
|
-
}], primary: [{
|
|
35
|
-
type: Input
|
|
36
|
-
}], iconOnly: [{
|
|
37
|
-
type: Input
|
|
38
|
-
}], large: [{
|
|
39
|
-
type: Input
|
|
40
|
-
}], fngClick: [{
|
|
41
|
-
type: Output
|
|
42
|
-
}], content: [{
|
|
43
|
-
type: ContentChild,
|
|
44
|
-
args: ['content']
|
|
45
|
-
}] } });
|
|
46
|
-
//# sourceMappingURL=button.component.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"button.component.js","sourceRoot":"","sources":["../../../../../../../../libs/angular/src/lib/components/buttons/button/button.component.ts","../../../../../../../../libs/angular/src/lib/components/buttons/button/button.component.html"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,KAAK,EAAE,MAAM,EAAE,YAAY,EAAE,iBAAiB,EAAE,YAAY,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;;;AAQpH,MAAM,OAAO,eAAe;IAN5B;QASW,aAAQ,GAAG,KAAK,CAAC;QACjB,YAAO,GAAG,KAAK,CAAC;QAChB,aAAQ,GAAG,KAAK,CAAC;QACjB,UAAK,GAAG,KAAK,CAAC;QACb,aAAQ,GAAG,IAAI,YAAY,EAAO,CAAC;KAQ9C;IALC,OAAO,CAAC,KAAU;QAChB,IAAI,CAAC,IAAI,CAAC,QAAQ,EAAE;YAClB,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;SAC3B;IACH,CAAC;;4GAdU,eAAe;gGAAf,eAAe,6SCR5B,wdAeS;2FDPI,eAAe;kBAN3B,SAAS;mBAAC;oBACT,QAAQ,EAAE,YAAY;oBACtB,WAAW,EAAE,yBAAyB;oBACtC,SAAS,EAAE,CAAC,yBAAyB,CAAC;oBACtC,aAAa,EAAE,iBAAiB,CAAC,IAAI;iBACtC;8BAEU,IAAI;sBAAZ,KAAK;gBACG,IAAI;sBAAZ,KAAK;gBACG,QAAQ;sBAAhB,KAAK;gBACG,OAAO;sBAAf,KAAK;gBACG,QAAQ;sBAAhB,KAAK;gBACG,KAAK;sBAAb,KAAK;gBACI,QAAQ;sBAAjB,MAAM;gBACkB,OAAO;sBAA/B,YAAY;uBAAC,SAAS","sourcesContent":["import { Component, Input, Output, EventEmitter, ViewEncapsulation, ContentChild, ElementRef } from '@angular/core';\n\n@Component({\n selector: 'fng-button',\n templateUrl: './button.component.html',\n styleUrls: ['./button.component.scss'],\n encapsulation: ViewEncapsulation.None\n})\nexport class ButtonComponent {\n @Input() text: string;\n @Input() icon: string;\n @Input() disabled = false;\n @Input() primary = false;\n @Input() iconOnly = false;\n @Input() large = false;\n @Output() fngClick = new EventEmitter<any>();\n @ContentChild('content') content: ElementRef;\n\n onClick(event: any) {\n if (!this.disabled) {\n this.fngClick.emit(event);\n }\n }\n}\n","<button (click)=\"onClick($event)\"\n [ngClass]=\"{\n 'fwe-btn': true,\n 'fng-button': true,\n 'fwe-btn-icon': iconOnly,\n 'fwe-disabled': disabled,\n 'fwe-btn-hero': primary,\n 'fwe-btn-lg': large\n }\"\n [disabled]=\"disabled\">\n <i *ngIf=\"icon\" [class]=\"'fwe-icon fwe-icon-' + icon\"></i>\n <div *ngIf=\"!iconOnly\" class=\"fng-button-text\">\n <ng-content></ng-content>\n <span *ngIf=\"!content\">{{text}}</span>\n </div>\n</button>"]}
|
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
import { Component, Input, Output, EventEmitter, ViewEncapsulation, ContentChild, ElementRef } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
import * as i1 from "@angular/common";
|
|
4
|
-
export class LinkButtonComponent {
|
|
5
|
-
constructor() {
|
|
6
|
-
this.disabled = false;
|
|
7
|
-
this.iconOnly = false;
|
|
8
|
-
this.fngClick = new EventEmitter();
|
|
9
|
-
}
|
|
10
|
-
onClick(event) {
|
|
11
|
-
this.fngClick.emit(event);
|
|
12
|
-
}
|
|
13
|
-
}
|
|
14
|
-
LinkButtonComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.0", ngImport: i0, type: LinkButtonComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
15
|
-
LinkButtonComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.0", type: LinkButtonComponent, selector: "fng-link-button", inputs: { text: "text", icon: "icon", disabled: "disabled", iconOnly: "iconOnly" }, outputs: { fngClick: "fngClick" }, queries: [{ propertyName: "content", first: true, predicate: ["content"], descendants: true }], ngImport: i0, template: "<button (click)=\"onClick($event)\"\n [ngClass]=\"{\n 'fwe-btn': true,\n 'fwe-btn-link': true,\n 'fwe-disabled': disabled\n }\" [disabled]=\"disabled\">\n <i *ngIf=\"icon\" [class]=\"'fwe-icon fwe-icon-' + icon\"></i>\n <ng-content *ngIf=\"!iconOnly\"></ng-content>\n <span *ngIf=\"!content\">{{text}}</span>\n</button>", styles: [""], directives: [{ type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], encapsulation: i0.ViewEncapsulation.None });
|
|
16
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.0", ngImport: i0, type: LinkButtonComponent, decorators: [{
|
|
17
|
-
type: Component,
|
|
18
|
-
args: [{
|
|
19
|
-
selector: 'fng-link-button',
|
|
20
|
-
templateUrl: './link-button.component.html',
|
|
21
|
-
styleUrls: ['./link-button.component.scss'],
|
|
22
|
-
encapsulation: ViewEncapsulation.None
|
|
23
|
-
}]
|
|
24
|
-
}], propDecorators: { text: [{
|
|
25
|
-
type: Input
|
|
26
|
-
}], icon: [{
|
|
27
|
-
type: Input
|
|
28
|
-
}], disabled: [{
|
|
29
|
-
type: Input
|
|
30
|
-
}], iconOnly: [{
|
|
31
|
-
type: Input
|
|
32
|
-
}], fngClick: [{
|
|
33
|
-
type: Output
|
|
34
|
-
}], content: [{
|
|
35
|
-
type: ContentChild,
|
|
36
|
-
args: ['content']
|
|
37
|
-
}] } });
|
|
38
|
-
//# sourceMappingURL=link-button.component.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"link-button.component.js","sourceRoot":"","sources":["../../../../../../../../libs/angular/src/lib/components/buttons/link-button/link-button.component.ts","../../../../../../../../libs/angular/src/lib/components/buttons/link-button/link-button.component.html"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,KAAK,EAAE,MAAM,EAAE,YAAY,EAAE,iBAAiB,EAAE,YAAY,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;;;AAQpH,MAAM,OAAO,mBAAmB;IANhC;QASW,aAAQ,GAAG,KAAK,CAAC;QACjB,aAAQ,GAAG,KAAK,CAAC;QAChB,aAAQ,GAAG,IAAI,YAAY,EAAO,CAAC;KAM9C;IAHC,OAAO,CAAC,KAAU;QAChB,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;IAC5B,CAAC;;gHAVU,mBAAmB;oGAAnB,mBAAmB,8QCRhC,+UASS;2FDDI,mBAAmB;kBAN/B,SAAS;mBAAC;oBACT,QAAQ,EAAE,iBAAiB;oBAC3B,WAAW,EAAE,8BAA8B;oBAC3C,SAAS,EAAE,CAAC,8BAA8B,CAAC;oBAC3C,aAAa,EAAE,iBAAiB,CAAC,IAAI;iBACtC;8BAEU,IAAI;sBAAZ,KAAK;gBACG,IAAI;sBAAZ,KAAK;gBACG,QAAQ;sBAAhB,KAAK;gBACG,QAAQ;sBAAhB,KAAK;gBACI,QAAQ;sBAAjB,MAAM;gBACkB,OAAO;sBAA/B,YAAY;uBAAC,SAAS","sourcesContent":["import { Component, Input, Output, EventEmitter, ViewEncapsulation, ContentChild, ElementRef } from '@angular/core';\n\n@Component({\n selector: 'fng-link-button',\n templateUrl: './link-button.component.html',\n styleUrls: ['./link-button.component.scss'],\n encapsulation: ViewEncapsulation.None\n})\nexport class LinkButtonComponent {\n @Input() text: string;\n @Input() icon: string;\n @Input() disabled = false;\n @Input() iconOnly = false;\n @Output() fngClick = new EventEmitter<any>();\n @ContentChild('content') content: ElementRef;\n\n onClick(event: any) {\n this.fngClick.emit(event);\n }\n}\n","<button (click)=\"onClick($event)\"\n [ngClass]=\"{\n 'fwe-btn': true,\n 'fwe-btn-link': true,\n 'fwe-disabled': disabled\n }\" [disabled]=\"disabled\">\n <i *ngIf=\"icon\" [class]=\"'fwe-icon fwe-icon-' + icon\"></i>\n <ng-content *ngIf=\"!iconOnly\"></ng-content>\n <span *ngIf=\"!content\">{{text}}</span>\n</button>"]}
|
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
import { Component, Input, ViewEncapsulation } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
import * as i1 from "@angular/common";
|
|
4
|
-
export var ChipType;
|
|
5
|
-
(function (ChipType) {
|
|
6
|
-
ChipType["Choise"] = "CHOISE";
|
|
7
|
-
ChipType["Category"] = "CATEGORY";
|
|
8
|
-
ChipType["Filter"] = "FILTER";
|
|
9
|
-
ChipType["Action"] = "ACTION";
|
|
10
|
-
ChipType["Readonly"] = "READONLY";
|
|
11
|
-
})(ChipType || (ChipType = {}));
|
|
12
|
-
export class ChipComponent {
|
|
13
|
-
constructor() {
|
|
14
|
-
this.ChipType = ChipType;
|
|
15
|
-
this.type = ChipType.Choise;
|
|
16
|
-
this.selected = false;
|
|
17
|
-
this.disabled = false;
|
|
18
|
-
this.large = false;
|
|
19
|
-
}
|
|
20
|
-
}
|
|
21
|
-
ChipComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.0", ngImport: i0, type: ChipComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
22
|
-
ChipComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.0", type: ChipComponent, selector: "fng-chip", inputs: { type: "type", selected: "selected", disabled: "disabled", icon: "icon", large: "large" }, ngImport: i0, template: "<div [ngClass]=\"{\n 'fwe-chip': true,\n 'fwe-selected': selected,\n 'fwe-disabled': disabled,\n 'fwe-chip-lg': large,\n 'fwe-category': type === ChipType.Category,\n 'fwe-filter': type === ChipType.Filter,\n 'fwe-readonly': type === ChipType.Readonly \n}\">\n <i *ngIf=\"icon\" [class]=\"'fwe-icon fwe-icon-' + icon\"></i>\n <ng-content></ng-content>\n</div>", styles: [""], directives: [{ type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], encapsulation: i0.ViewEncapsulation.None });
|
|
23
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.0", ngImport: i0, type: ChipComponent, decorators: [{
|
|
24
|
-
type: Component,
|
|
25
|
-
args: [{
|
|
26
|
-
selector: 'fng-chip',
|
|
27
|
-
templateUrl: './chip.component.html',
|
|
28
|
-
styleUrls: ['./chip.component.scss'],
|
|
29
|
-
encapsulation: ViewEncapsulation.None
|
|
30
|
-
}]
|
|
31
|
-
}], propDecorators: { type: [{
|
|
32
|
-
type: Input
|
|
33
|
-
}], selected: [{
|
|
34
|
-
type: Input
|
|
35
|
-
}], disabled: [{
|
|
36
|
-
type: Input
|
|
37
|
-
}], icon: [{
|
|
38
|
-
type: Input
|
|
39
|
-
}], large: [{
|
|
40
|
-
type: Input
|
|
41
|
-
}] } });
|
|
42
|
-
//# sourceMappingURL=chip.component.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"chip.component.js","sourceRoot":"","sources":["../../../../../../../../libs/angular/src/lib/components/chips/chip/chip.component.ts","../../../../../../../../libs/angular/src/lib/components/chips/chip/chip.component.html"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,KAAK,EAAE,iBAAiB,EAAE,MAAM,eAAe,CAAC;;;AAEpE,MAAM,CAAN,IAAY,QAMX;AAND,WAAY,QAAQ;IAClB,6BAAiB,CAAA;IACjB,iCAAqB,CAAA;IACrB,6BAAiB,CAAA;IACjB,6BAAiB,CAAA;IACjB,iCAAqB,CAAA;AACvB,CAAC,EANW,QAAQ,KAAR,QAAQ,QAMnB;AAQD,MAAM,OAAO,aAAa;IAN1B;QAOE,aAAQ,GAAG,QAAQ,CAAC;QAEX,SAAI,GAAa,QAAQ,CAAC,MAAM,CAAC;QACjC,aAAQ,GAAG,KAAK,CAAC;QACjB,aAAQ,GAAG,KAAK,CAAC;QAEjB,UAAK,GAAG,KAAK,CAAC;KACxB;;0GARY,aAAa;8FAAb,aAAa,oJChB1B,mXAWM;2FDKO,aAAa;kBANzB,SAAS;mBAAC;oBACT,QAAQ,EAAE,UAAU;oBACpB,WAAW,EAAE,uBAAuB;oBACpC,SAAS,EAAE,CAAC,uBAAuB,CAAC;oBACpC,aAAa,EAAE,iBAAiB,CAAC,IAAI;iBACtC;8BAIU,IAAI;sBAAZ,KAAK;gBACG,QAAQ;sBAAhB,KAAK;gBACG,QAAQ;sBAAhB,KAAK;gBACG,IAAI;sBAAZ,KAAK;gBACG,KAAK;sBAAb,KAAK","sourcesContent":["import { Component, Input, ViewEncapsulation } from '@angular/core';\n\nexport enum ChipType {\n Choise = 'CHOISE',\n Category = 'CATEGORY',\n Filter = 'FILTER',\n Action = 'ACTION',\n Readonly = 'READONLY'\n}\n\n@Component({\n selector: 'fng-chip',\n templateUrl: './chip.component.html',\n styleUrls: ['./chip.component.scss'],\n encapsulation: ViewEncapsulation.None\n})\nexport class ChipComponent {\n ChipType = ChipType;\n\n @Input() type: ChipType = ChipType.Choise;\n @Input() selected = false;\n @Input() disabled = false;\n @Input() icon: string;\n @Input() large = false;\n}\n","<div [ngClass]=\"{\n 'fwe-chip': true,\n 'fwe-selected': selected,\n 'fwe-disabled': disabled,\n 'fwe-chip-lg': large,\n 'fwe-category': type === ChipType.Category,\n 'fwe-filter': type === ChipType.Filter,\n 'fwe-readonly': type === ChipType.Readonly \n}\">\n <i *ngIf=\"icon\" [class]=\"'fwe-icon fwe-icon-' + icon\"></i>\n <ng-content></ng-content>\n</div>"]}
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import { Component, Input, ViewEncapsulation } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export class ChipContainerComponent {
|
|
4
|
-
constructor() {
|
|
5
|
-
this.large = false;
|
|
6
|
-
}
|
|
7
|
-
}
|
|
8
|
-
ChipContainerComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.0", ngImport: i0, type: ChipContainerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
9
|
-
ChipContainerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.0", type: ChipContainerComponent, selector: "fng-chip-container", inputs: { large: "large" }, ngImport: i0, template: "<div class=\"fwe-chip-container\" [class.fwe-chip-container-lg]=large>\n <ng-content></ng-content>\n</div>", styles: [""], encapsulation: i0.ViewEncapsulation.None });
|
|
10
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.0", ngImport: i0, type: ChipContainerComponent, decorators: [{
|
|
11
|
-
type: Component,
|
|
12
|
-
args: [{
|
|
13
|
-
selector: 'fng-chip-container',
|
|
14
|
-
templateUrl: './chip-container.component.html',
|
|
15
|
-
styleUrls: ['./chip-container.component.scss'],
|
|
16
|
-
encapsulation: ViewEncapsulation.None
|
|
17
|
-
}]
|
|
18
|
-
}], propDecorators: { large: [{
|
|
19
|
-
type: Input
|
|
20
|
-
}] } });
|
|
21
|
-
//# sourceMappingURL=chip-container.component.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"chip-container.component.js","sourceRoot":"","sources":["../../../../../../../../libs/angular/src/lib/components/chips/chip-container/chip-container.component.ts","../../../../../../../../libs/angular/src/lib/components/chips/chip-container/chip-container.component.html"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,KAAK,EAAE,iBAAiB,EAAE,MAAM,eAAe,CAAC;;AAQpE,MAAM,OAAO,sBAAsB;IANnC;QAOW,UAAK,GAAG,KAAK,CAAC;KACxB;;mHAFY,sBAAsB;uGAAtB,sBAAsB,sFCRnC,6GAEM;2FDMO,sBAAsB;kBANlC,SAAS;mBAAC;oBACT,QAAQ,EAAE,oBAAoB;oBAC9B,WAAW,EAAE,iCAAiC;oBAC9C,SAAS,EAAE,CAAC,iCAAiC,CAAC;oBAC9C,aAAa,EAAE,iBAAiB,CAAC,IAAI;iBACtC;8BAEU,KAAK;sBAAb,KAAK","sourcesContent":["import { Component, Input, ViewEncapsulation } from '@angular/core';\n\n@Component({\n selector: 'fng-chip-container',\n templateUrl: './chip-container.component.html',\n styleUrls: ['./chip-container.component.scss'],\n encapsulation: ViewEncapsulation.None\n})\nexport class ChipContainerComponent {\n @Input() large = false;\n}\n","<div class=\"fwe-chip-container\" [class.fwe-chip-container-lg]=large>\n <ng-content></ng-content>\n</div>"]}
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
import { Directive, ElementRef, Output, EventEmitter, HostListener } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export class ClickOutsideDirective {
|
|
4
|
-
constructor(elRef) {
|
|
5
|
-
this.elRef = elRef;
|
|
6
|
-
this.clickOutside = new EventEmitter();
|
|
7
|
-
}
|
|
8
|
-
onClick(targetElement) {
|
|
9
|
-
const inside = this.elRef.nativeElement.contains(targetElement);
|
|
10
|
-
if (!inside) {
|
|
11
|
-
this.clickOutside.emit(null);
|
|
12
|
-
}
|
|
13
|
-
}
|
|
14
|
-
}
|
|
15
|
-
ClickOutsideDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.0", ngImport: i0, type: ClickOutsideDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
16
|
-
ClickOutsideDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "12.2.0", type: ClickOutsideDirective, selector: "[fngClickOutside]", outputs: { clickOutside: "clickOutside" }, host: { listeners: { "document:click": "onClick($event.target)" } }, ngImport: i0 });
|
|
17
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.0", ngImport: i0, type: ClickOutsideDirective, decorators: [{
|
|
18
|
-
type: Directive,
|
|
19
|
-
args: [{
|
|
20
|
-
selector: '[fngClickOutside]'
|
|
21
|
-
}]
|
|
22
|
-
}], ctorParameters: function () { return [{ type: i0.ElementRef }]; }, propDecorators: { clickOutside: [{
|
|
23
|
-
type: Output
|
|
24
|
-
}], onClick: [{
|
|
25
|
-
type: HostListener,
|
|
26
|
-
args: ['document:click', ['$event.target']]
|
|
27
|
-
}] } });
|
|
28
|
-
//# sourceMappingURL=click-outside.directive.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"click-outside.directive.js","sourceRoot":"","sources":["../../../../../../libs/angular/src/lib/components/click-outside.directive.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,UAAU,EAAE,MAAM,EAAE,YAAY,EAAE,YAAY,EAAE,MAAM,eAAe,CAAC;;AAK1F,MAAM,OAAO,qBAAqB;IAChC,YAAoB,KAAiB;QAAjB,UAAK,GAAL,KAAK,CAAY;QAG9B,iBAAY,GAAG,IAAI,YAAY,EAAE,CAAC;IAHD,CAAC;IAMlC,OAAO,CAAC,aAA0B;QACvC,MAAM,MAAM,GAAG,IAAI,CAAC,KAAK,CAAC,aAAa,CAAC,QAAQ,CAAC,aAAa,CAAC,CAAC;QAChE,IAAI,CAAC,MAAM,EAAE;YACX,IAAI,CAAC,YAAY,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;SAC9B;IACH,CAAC;;kHAZU,qBAAqB;sGAArB,qBAAqB;2FAArB,qBAAqB;kBAHjC,SAAS;mBAAC;oBACT,QAAQ,EAAE,mBAAmB;iBAC9B;iGAKQ,YAAY;sBADlB,MAAM;gBAIA,OAAO;sBADb,YAAY;uBAAC,gBAAgB,EAAE,CAAC,eAAe,CAAC","sourcesContent":["import { Directive, ElementRef, Output, EventEmitter, HostListener } from '@angular/core';\n\n@Directive({\n selector: '[fngClickOutside]'\n})\nexport class ClickOutsideDirective {\n constructor(private elRef: ElementRef) {}\n\n @Output()\n public clickOutside = new EventEmitter();\n\n @HostListener('document:click', ['$event.target'])\n public onClick(targetElement: HTMLElement) {\n const inside = this.elRef.nativeElement.contains(targetElement);\n if (!inside) {\n this.clickOutside.emit(null);\n }\n }\n}\n"]}
|
|
@@ -1,155 +0,0 @@
|
|
|
1
|
-
import { NgModule } from '@angular/core';
|
|
2
|
-
import { CommonModule } from '@angular/common';
|
|
3
|
-
import { RouterModule } from '@angular/router';
|
|
4
|
-
import { OverlayModule } from '@angular/cdk/overlay';
|
|
5
|
-
import { PortalModule } from '@angular/cdk/portal';
|
|
6
|
-
import { ButtonComponent } from './buttons/button/button.component';
|
|
7
|
-
import { LinkButtonComponent } from './buttons/link-button/link-button.component';
|
|
8
|
-
import { BreadcrumbComponent } from './breadcrumb/breadcrumb.component';
|
|
9
|
-
import { LoadingIndicatorComponent } from './loading-indicator/loading-indicator.component';
|
|
10
|
-
import { ChipContainerComponent } from './chips/chip-container/chip-container.component';
|
|
11
|
-
import { ChipComponent } from './chips/chip/chip.component';
|
|
12
|
-
import { TableHeaderCellDirective } from './table-header-cell/table-header-cell.directive';
|
|
13
|
-
import { StepperComponent } from './stepper/stepper.component';
|
|
14
|
-
import { PopoverComponent } from './popovers/popover/popover.component';
|
|
15
|
-
import { PopoverMenuComponent } from './popovers/popover-menu/popover-menu.component';
|
|
16
|
-
import { TooltipDirective } from './popovers/tooltip/tooltip.directive';
|
|
17
|
-
import { PopoverContentComponent } from './popovers/popover-content/popover-content.component';
|
|
18
|
-
import { PopoverContentDirective } from './popovers/popover-content/popover-content.directive';
|
|
19
|
-
import { LegendComponent } from './popovers/legend/legend.component';
|
|
20
|
-
import { LegendDirective } from './popovers/legend/legend.directive';
|
|
21
|
-
import { ProgressComponent } from './progress/progress.component';
|
|
22
|
-
import { TabsComponent } from './tabs/tabs.component';
|
|
23
|
-
import { TabPaneComponent } from './tabs/tab-pane/tab-pane.component';
|
|
24
|
-
import { PaginationComponent } from './pagination/pagination.component';
|
|
25
|
-
import { ScrollableDirective } from './scroll/scrollable.directive';
|
|
26
|
-
import { SearchInputComponent } from './search-input/search-input.component';
|
|
27
|
-
import { ClickOutsideDirective } from './click-outside.directive';
|
|
28
|
-
import * as i0 from "@angular/core";
|
|
29
|
-
export * from './buttons/button/button.component';
|
|
30
|
-
export * from './buttons/link-button/link-button.component';
|
|
31
|
-
export * from './breadcrumb/breadcrumb.component';
|
|
32
|
-
export * from './loading-indicator/loading-indicator.component';
|
|
33
|
-
export * from './chips/chip/chip.component';
|
|
34
|
-
export * from './chips/chip-container/chip-container.component';
|
|
35
|
-
export * from './table-header-cell/table-header-cell.directive';
|
|
36
|
-
export * from './stepper/stepper.component';
|
|
37
|
-
export * from './popovers/popover/popover.component';
|
|
38
|
-
export * from './popovers/popover-menu/popover-menu.component';
|
|
39
|
-
export * from './popovers/tooltip/tooltip.directive';
|
|
40
|
-
export * from './popovers/popover-content/popover-content.component';
|
|
41
|
-
export * from './popovers/popover-content/popover-content.directive';
|
|
42
|
-
export * from './popovers/legend/legend.component';
|
|
43
|
-
export * from './popovers/legend/legend.directive';
|
|
44
|
-
export * from './popovers/popover.models';
|
|
45
|
-
export * from './progress/progress.component';
|
|
46
|
-
export * from './tabs/tabs.component';
|
|
47
|
-
export * from './tabs/tab-pane/tab-pane.component';
|
|
48
|
-
export * from './pagination/pagination.component';
|
|
49
|
-
export * from './scroll';
|
|
50
|
-
export * from './search-input/search-input.component';
|
|
51
|
-
export * from './click-outside.directive';
|
|
52
|
-
export class FestoAngularComponentsModule {
|
|
53
|
-
}
|
|
54
|
-
FestoAngularComponentsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.0", ngImport: i0, type: FestoAngularComponentsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
55
|
-
FestoAngularComponentsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.0", ngImport: i0, type: FestoAngularComponentsModule, bootstrap: [PopoverComponent], declarations: [ButtonComponent,
|
|
56
|
-
LinkButtonComponent,
|
|
57
|
-
BreadcrumbComponent,
|
|
58
|
-
LoadingIndicatorComponent,
|
|
59
|
-
ChipContainerComponent,
|
|
60
|
-
ChipComponent,
|
|
61
|
-
PaginationComponent,
|
|
62
|
-
TableHeaderCellDirective,
|
|
63
|
-
StepperComponent,
|
|
64
|
-
PopoverComponent,
|
|
65
|
-
PopoverMenuComponent,
|
|
66
|
-
TooltipDirective,
|
|
67
|
-
PopoverContentComponent,
|
|
68
|
-
PopoverContentDirective,
|
|
69
|
-
LegendComponent,
|
|
70
|
-
LegendDirective,
|
|
71
|
-
ProgressComponent,
|
|
72
|
-
TabsComponent,
|
|
73
|
-
TabPaneComponent,
|
|
74
|
-
ScrollableDirective,
|
|
75
|
-
SearchInputComponent,
|
|
76
|
-
ClickOutsideDirective], imports: [RouterModule, CommonModule, OverlayModule, PortalModule], exports: [ButtonComponent,
|
|
77
|
-
LinkButtonComponent,
|
|
78
|
-
BreadcrumbComponent,
|
|
79
|
-
LoadingIndicatorComponent,
|
|
80
|
-
ChipContainerComponent,
|
|
81
|
-
ChipComponent,
|
|
82
|
-
PaginationComponent,
|
|
83
|
-
TableHeaderCellDirective,
|
|
84
|
-
StepperComponent,
|
|
85
|
-
PopoverComponent,
|
|
86
|
-
PopoverMenuComponent,
|
|
87
|
-
TooltipDirective,
|
|
88
|
-
PopoverContentComponent,
|
|
89
|
-
PopoverContentDirective,
|
|
90
|
-
LegendComponent,
|
|
91
|
-
LegendDirective,
|
|
92
|
-
ProgressComponent,
|
|
93
|
-
TabsComponent,
|
|
94
|
-
TabPaneComponent,
|
|
95
|
-
ScrollableDirective,
|
|
96
|
-
SearchInputComponent,
|
|
97
|
-
ClickOutsideDirective] });
|
|
98
|
-
FestoAngularComponentsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.0", ngImport: i0, type: FestoAngularComponentsModule, providers: [], imports: [[RouterModule, CommonModule, OverlayModule, PortalModule]] });
|
|
99
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.0", ngImport: i0, type: FestoAngularComponentsModule, decorators: [{
|
|
100
|
-
type: NgModule,
|
|
101
|
-
args: [{
|
|
102
|
-
declarations: [
|
|
103
|
-
ButtonComponent,
|
|
104
|
-
LinkButtonComponent,
|
|
105
|
-
BreadcrumbComponent,
|
|
106
|
-
LoadingIndicatorComponent,
|
|
107
|
-
ChipContainerComponent,
|
|
108
|
-
ChipComponent,
|
|
109
|
-
PaginationComponent,
|
|
110
|
-
TableHeaderCellDirective,
|
|
111
|
-
StepperComponent,
|
|
112
|
-
PopoverComponent,
|
|
113
|
-
PopoverMenuComponent,
|
|
114
|
-
TooltipDirective,
|
|
115
|
-
PopoverContentComponent,
|
|
116
|
-
PopoverContentDirective,
|
|
117
|
-
LegendComponent,
|
|
118
|
-
LegendDirective,
|
|
119
|
-
ProgressComponent,
|
|
120
|
-
TabsComponent,
|
|
121
|
-
TabPaneComponent,
|
|
122
|
-
ScrollableDirective,
|
|
123
|
-
SearchInputComponent,
|
|
124
|
-
ClickOutsideDirective
|
|
125
|
-
],
|
|
126
|
-
imports: [RouterModule, CommonModule, OverlayModule, PortalModule],
|
|
127
|
-
exports: [
|
|
128
|
-
ButtonComponent,
|
|
129
|
-
LinkButtonComponent,
|
|
130
|
-
BreadcrumbComponent,
|
|
131
|
-
LoadingIndicatorComponent,
|
|
132
|
-
ChipContainerComponent,
|
|
133
|
-
ChipComponent,
|
|
134
|
-
PaginationComponent,
|
|
135
|
-
TableHeaderCellDirective,
|
|
136
|
-
StepperComponent,
|
|
137
|
-
PopoverComponent,
|
|
138
|
-
PopoverMenuComponent,
|
|
139
|
-
TooltipDirective,
|
|
140
|
-
PopoverContentComponent,
|
|
141
|
-
PopoverContentDirective,
|
|
142
|
-
LegendComponent,
|
|
143
|
-
LegendDirective,
|
|
144
|
-
ProgressComponent,
|
|
145
|
-
TabsComponent,
|
|
146
|
-
TabPaneComponent,
|
|
147
|
-
ScrollableDirective,
|
|
148
|
-
SearchInputComponent,
|
|
149
|
-
ClickOutsideDirective
|
|
150
|
-
],
|
|
151
|
-
providers: [],
|
|
152
|
-
bootstrap: [PopoverComponent]
|
|
153
|
-
}]
|
|
154
|
-
}] });
|
|
155
|
-
//# sourceMappingURL=components.module.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"components.module.js","sourceRoot":"","sources":["../../../../../../libs/angular/src/lib/components/components.module.ts"],"names":[],"mappings":"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","sourcesContent":["import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { RouterModule } from '@angular/router';\nimport { OverlayModule } from '@angular/cdk/overlay';\nimport { PortalModule } from '@angular/cdk/portal';\n\nimport { ButtonComponent } from './buttons/button/button.component';\nimport { LinkButtonComponent } from './buttons/link-button/link-button.component';\nimport { BreadcrumbComponent } from './breadcrumb/breadcrumb.component';\nimport { LoadingIndicatorComponent } from './loading-indicator/loading-indicator.component';\nimport { ChipContainerComponent } from './chips/chip-container/chip-container.component';\nimport { ChipComponent } from './chips/chip/chip.component';\nimport { TableHeaderCellDirective } from './table-header-cell/table-header-cell.directive';\nimport { StepperComponent } from './stepper/stepper.component';\nimport { PopoverComponent } from './popovers/popover/popover.component';\nimport { PopoverMenuComponent } from './popovers/popover-menu/popover-menu.component';\nimport { TooltipDirective } from './popovers/tooltip/tooltip.directive';\nimport { PopoverContentComponent } from './popovers/popover-content/popover-content.component';\nimport { PopoverContentDirective } from './popovers/popover-content/popover-content.directive';\nimport { LegendComponent } from './popovers/legend/legend.component';\nimport { LegendDirective } from './popovers/legend/legend.directive';\nimport { ProgressComponent } from './progress/progress.component';\nimport { TabsComponent } from './tabs/tabs.component';\nimport { TabPaneComponent } from './tabs/tab-pane/tab-pane.component';\nimport { PaginationComponent } from './pagination/pagination.component';\nimport { ScrollableDirective } from './scroll/scrollable.directive';\nimport { SearchInputComponent } from './search-input/search-input.component';\nimport { ClickOutsideDirective } from './click-outside.directive';\n\nexport * from './buttons/button/button.component';\nexport * from './buttons/link-button/link-button.component';\nexport * from './breadcrumb/breadcrumb.component';\nexport * from './loading-indicator/loading-indicator.component';\nexport * from './chips/chip/chip.component';\nexport * from './chips/chip-container/chip-container.component';\nexport * from './table-header-cell/table-header-cell.directive';\nexport * from './stepper/stepper.component';\nexport * from './popovers/popover/popover.component';\nexport * from './popovers/popover-menu/popover-menu.component';\nexport * from './popovers/tooltip/tooltip.directive';\nexport * from './popovers/popover-content/popover-content.component';\nexport * from './popovers/popover-content/popover-content.directive';\nexport * from './popovers/legend/legend.component';\nexport * from './popovers/legend/legend.directive';\nexport * from './popovers/popover.models';\nexport * from './progress/progress.component';\nexport * from './tabs/tabs.component';\nexport * from './tabs/tab-pane/tab-pane.component';\nexport * from './pagination/pagination.component';\nexport * from './scroll';\nexport * from './search-input/search-input.component';\nexport * from './click-outside.directive';\n\n@NgModule({\n declarations: [\n ButtonComponent,\n LinkButtonComponent,\n BreadcrumbComponent,\n LoadingIndicatorComponent,\n ChipContainerComponent,\n ChipComponent,\n PaginationComponent,\n TableHeaderCellDirective,\n StepperComponent,\n PopoverComponent,\n PopoverMenuComponent,\n TooltipDirective,\n PopoverContentComponent,\n PopoverContentDirective,\n LegendComponent,\n LegendDirective,\n ProgressComponent,\n TabsComponent,\n TabPaneComponent,\n ScrollableDirective,\n SearchInputComponent,\n ClickOutsideDirective\n ],\n imports: [RouterModule, CommonModule, OverlayModule, PortalModule],\n exports: [\n ButtonComponent,\n LinkButtonComponent,\n BreadcrumbComponent,\n LoadingIndicatorComponent,\n ChipContainerComponent,\n ChipComponent,\n PaginationComponent,\n TableHeaderCellDirective,\n StepperComponent,\n PopoverComponent,\n PopoverMenuComponent,\n TooltipDirective,\n PopoverContentComponent,\n PopoverContentDirective,\n LegendComponent,\n LegendDirective,\n ProgressComponent,\n TabsComponent,\n TabPaneComponent,\n ScrollableDirective,\n SearchInputComponent,\n ClickOutsideDirective\n ],\n providers: [],\n bootstrap: [PopoverComponent]\n})\nexport class FestoAngularComponentsModule {}\n"]}
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import { Component, Input, ViewEncapsulation } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export class LoadingIndicatorComponent {
|
|
4
|
-
constructor() {
|
|
5
|
-
this.size = 'large';
|
|
6
|
-
}
|
|
7
|
-
}
|
|
8
|
-
LoadingIndicatorComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.0", ngImport: i0, type: LoadingIndicatorComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
9
|
-
LoadingIndicatorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.0", type: LoadingIndicatorComponent, selector: "fng-loading-indicator", inputs: { size: "size" }, ngImport: i0, template: "<div class=\"fng-waiting-container\">\n <div class=\"fwe-waiting-indicator\"\n [class.fwe-waiting-indicator-md]=\"size === 'medium'\"\n [class.fwe-waiting-indicator-sm]=\"size === 'small'\">\n <div class=\"fwe-waiting-circle-1\"></div>\n <div class=\"fwe-waiting-circle-2\"></div>\n <div class=\"fwe-waiting-circle-3\"></div>\n </div>\n <ng-content></ng-content>\n</div>\n", styles: [".fng-waiting-container{width:100%;height:100%;display:flex;flex-direction:column;justify-content:center;align-items:center}.fng-waiting-indicator{margin-bottom:16px}\n"], encapsulation: i0.ViewEncapsulation.None });
|
|
10
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.0", ngImport: i0, type: LoadingIndicatorComponent, decorators: [{
|
|
11
|
-
type: Component,
|
|
12
|
-
args: [{
|
|
13
|
-
selector: 'fng-loading-indicator',
|
|
14
|
-
templateUrl: './loading-indicator.component.html',
|
|
15
|
-
styleUrls: ['./loading-indicator.component.scss'],
|
|
16
|
-
encapsulation: ViewEncapsulation.None
|
|
17
|
-
}]
|
|
18
|
-
}], propDecorators: { size: [{
|
|
19
|
-
type: Input
|
|
20
|
-
}] } });
|
|
21
|
-
//# sourceMappingURL=loading-indicator.component.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"loading-indicator.component.js","sourceRoot":"","sources":["../../../../../../../libs/angular/src/lib/components/loading-indicator/loading-indicator.component.ts","../../../../../../../libs/angular/src/lib/components/loading-indicator/loading-indicator.component.html"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,KAAK,EAAE,iBAAiB,EAAE,MAAM,eAAe,CAAC;;AAQpE,MAAM,OAAO,yBAAyB;IANtC;QAOW,SAAI,GAAiC,OAAO,CAAC;KACvD;;sHAFY,yBAAyB;0GAAzB,yBAAyB,uFCRtC,8YAUA;2FDFa,yBAAyB;kBANrC,SAAS;mBAAC;oBACT,QAAQ,EAAE,uBAAuB;oBACjC,WAAW,EAAE,oCAAoC;oBACjD,SAAS,EAAE,CAAC,oCAAoC,CAAC;oBACjD,aAAa,EAAE,iBAAiB,CAAC,IAAI;iBACtC;8BAEU,IAAI;sBAAZ,KAAK","sourcesContent":["import { Component, Input, ViewEncapsulation } from '@angular/core';\n\n@Component({\n selector: 'fng-loading-indicator',\n templateUrl: './loading-indicator.component.html',\n styleUrls: ['./loading-indicator.component.scss'],\n encapsulation: ViewEncapsulation.None\n})\nexport class LoadingIndicatorComponent {\n @Input() size: 'large' | 'medium' | 'small' = 'large';\n}\n","<div class=\"fng-waiting-container\">\n <div class=\"fwe-waiting-indicator\"\n [class.fwe-waiting-indicator-md]=\"size === 'medium'\"\n [class.fwe-waiting-indicator-sm]=\"size === 'small'\">\n <div class=\"fwe-waiting-circle-1\"></div>\n <div class=\"fwe-waiting-circle-2\"></div>\n <div class=\"fwe-waiting-circle-3\"></div>\n </div>\n <ng-content></ng-content>\n</div>\n"]}
|
|
@@ -1,57 +0,0 @@
|
|
|
1
|
-
import { Component, ElementRef, EventEmitter, HostListener, Input, Output, ViewChild, ViewEncapsulation } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
import * as i1 from "@angular/common";
|
|
4
|
-
export class AlertComponent {
|
|
5
|
-
constructor() {
|
|
6
|
-
this.close = new EventEmitter();
|
|
7
|
-
this.cancel = new EventEmitter();
|
|
8
|
-
this.ok = new EventEmitter();
|
|
9
|
-
}
|
|
10
|
-
onKeyUp(event) {
|
|
11
|
-
event.preventDefault();
|
|
12
|
-
event.stopPropagation();
|
|
13
|
-
if (event.key === 'Esc' || event.key === 'Escape') {
|
|
14
|
-
this.onClose();
|
|
15
|
-
}
|
|
16
|
-
}
|
|
17
|
-
ngAfterViewInit() {
|
|
18
|
-
if (this.closeBtn) {
|
|
19
|
-
this.closeBtn.nativeElement.focus();
|
|
20
|
-
}
|
|
21
|
-
}
|
|
22
|
-
onClose() {
|
|
23
|
-
this.close.emit();
|
|
24
|
-
}
|
|
25
|
-
onOk() {
|
|
26
|
-
this.ok.emit();
|
|
27
|
-
}
|
|
28
|
-
onCancel() {
|
|
29
|
-
this.cancel.emit();
|
|
30
|
-
}
|
|
31
|
-
}
|
|
32
|
-
AlertComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.0", ngImport: i0, type: AlertComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
33
|
-
AlertComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.0", type: AlertComponent, selector: "fng-alert", inputs: { data: "data" }, outputs: { close: "close", cancel: "cancel", ok: "ok" }, host: { listeners: { "window:keyup": "onKeyUp($event)" } }, viewQueries: [{ propertyName: "closeBtn", first: true, predicate: ["closeBtn"], descendants: true }], ngImport: i0, template: "<div\n class=\"fwe-modal\"\n [ngClass]=\"{\n 'fwe-modal--with-indicator-bar': data?.strong === true,\n 'fwe-modal--warning': data?.alertType === 'warning',\n 'fwe-modal--error': data?.alertType === 'error',\n 'fwe-modal--info': data?.alertType === 'info'\n }\"\n>\n <div class=\"fwe-modal-close\">\n <button type=\"button\" aria-label=\"Close\" #closeBtn class=\"fwe-btn fwe-btn-link fwe-dark\" (click)=\"onClose()\">\n <i aria-hidden=\"true\" class=\"fwe-icon fwe-icon-close-small\"></i>\n <span class=\"fwe-sr-only\">Close</span>\n </button>\n </div>\n <div class=\"fwe-modal-header\">\n <h2 *ngIf=\"data?.subtitle\" class=\"fwe-modal-h2\">\n <i\n [ngClass]=\"{\n 'fwe-icon': true,\n 'fwe-icon-status-warning': data?.alertType === 'warning',\n 'fwe-icon-status-failure': data?.alertType === 'error',\n 'fwe-icon-status-check-status': data?.alertType === 'info'\n }\"\n ></i\n >{{ data?.subtitle }}\n </h2>\n <h1 class=\"fwe-modal-h1\">\n <i\n [ngClass]=\"{\n 'fwe-icon': true,\n 'fwe-icon-status-warning': data?.alertType === 'warning',\n 'fwe-icon-status-failure': data?.alertType === 'error',\n 'fwe-icon-status-check-status': data?.alertType === 'info'\n }\"\n ></i\n >{{ data?.title }}\n </h1>\n </div>\n <div class=\"fwe-modal-body\">\n <p>{{ data?.body }}</p>\n </div>\n <div class=\"fwe-modal-footer\" *ngIf=\"data?.cancel || data?.ok\">\n <div class=\"fwe-modal-buttons fwe-modal-buttons--full-width\">\n <button\n *ngIf=\"data?.cancel\"\n type=\"button\"\n aria-label=\"Cancel\"\n class=\"fwe-btn fwe-btn-lg\"\n [ngClass]=\"{ 'fwe-btn-link': data?.strong === true && (data?.alertType === 'warning' || data?.alertType === 'error') }\"\n (click)=\"onCancel()\"\n >\n {{ data?.cancel }}\n </button>\n <button *ngIf=\"data?.ok\" type=\"button\" aria-label=\"Ok\" class=\"fwe-btn fwe-btn-lg fwe-btn-hero\" (click)=\"onOk()\">\n {{ data?.ok }}\n </button>\n </div>\n </div>\n</div>\n", styles: [""], directives: [{ type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], encapsulation: i0.ViewEncapsulation.None });
|
|
34
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.0", ngImport: i0, type: AlertComponent, decorators: [{
|
|
35
|
-
type: Component,
|
|
36
|
-
args: [{
|
|
37
|
-
selector: 'fng-alert',
|
|
38
|
-
templateUrl: './alert.component.html',
|
|
39
|
-
styleUrls: ['./alert.component.scss'],
|
|
40
|
-
encapsulation: ViewEncapsulation.None
|
|
41
|
-
}]
|
|
42
|
-
}], propDecorators: { data: [{
|
|
43
|
-
type: Input
|
|
44
|
-
}], close: [{
|
|
45
|
-
type: Output
|
|
46
|
-
}], cancel: [{
|
|
47
|
-
type: Output
|
|
48
|
-
}], ok: [{
|
|
49
|
-
type: Output
|
|
50
|
-
}], closeBtn: [{
|
|
51
|
-
type: ViewChild,
|
|
52
|
-
args: ['closeBtn']
|
|
53
|
-
}], onKeyUp: [{
|
|
54
|
-
type: HostListener,
|
|
55
|
-
args: ['window:keyup', ['$event']]
|
|
56
|
-
}] } });
|
|
57
|
-
//# sourceMappingURL=alert.component.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"alert.component.js","sourceRoot":"","sources":["../../../../../../../../libs/angular/src/lib/components/modals/alert/alert.component.ts","../../../../../../../../libs/angular/src/lib/components/modals/alert/alert.component.html"],"names":[],"mappings":"AAAA,OAAO,EAEL,SAAS,EACT,UAAU,EACV,YAAY,EACZ,YAAY,EACZ,KAAK,EACL,MAAM,EACN,SAAS,EACT,iBAAiB,EAClB,MAAM,eAAe,CAAC;;;AAmBvB,MAAM,OAAO,cAAc;IAN3B;QAQY,UAAK,GAAG,IAAI,YAAY,EAAO,CAAC;QAChC,WAAM,GAAG,IAAI,YAAY,EAAO,CAAC;QACjC,OAAE,GAAG,IAAI,YAAY,EAAO,CAAC;KA+BxC;IA1BC,OAAO,CAAC,KAAoB;QAC1B,KAAK,CAAC,cAAc,EAAE,CAAC;QACvB,KAAK,CAAC,eAAe,EAAE,CAAC;QAExB,IAAI,KAAK,CAAC,GAAG,KAAK,KAAK,IAAI,KAAK,CAAC,GAAG,KAAK,QAAQ,EAAE;YACjD,IAAI,CAAC,OAAO,EAAE,CAAC;SAChB;IACH,CAAC;IAED,eAAe;QACb,IAAI,IAAI,CAAC,QAAQ,EAAE;YAChB,IAAI,CAAC,QAAQ,CAAC,aAA6B,CAAC,KAAK,EAAE,CAAC;SACtD;IACH,CAAC;IAED,OAAO;QACL,IAAI,CAAC,KAAK,CAAC,IAAI,EAAE,CAAC;IACpB,CAAC;IAED,IAAI;QACF,IAAI,CAAC,EAAE,CAAC,IAAI,EAAE,CAAC;IACjB,CAAC;IAED,QAAQ;QACN,IAAI,CAAC,MAAM,CAAC,IAAI,EAAE,CAAC;IACrB,CAAC;;2GAlCU,cAAc;+FAAd,cAAc,sSC7B3B,inEA4DA;2FD/Ba,cAAc;kBAN1B,SAAS;mBAAC;oBACT,QAAQ,EAAE,WAAW;oBACrB,WAAW,EAAE,wBAAwB;oBACrC,SAAS,EAAE,CAAC,wBAAwB,CAAC;oBACrC,aAAa,EAAE,iBAAiB,CAAC,IAAI;iBACtC;8BAEU,IAAI;sBAAZ,KAAK;gBACI,KAAK;sBAAd,MAAM;gBACG,MAAM;sBAAf,MAAM;gBACG,EAAE;sBAAX,MAAM;gBAEgB,QAAQ;sBAA9B,SAAS;uBAAC,UAAU;gBAGrB,OAAO;sBADN,YAAY;uBAAC,cAAc,EAAE,CAAC,QAAQ,CAAC","sourcesContent":["import {\n AfterViewInit,\n Component,\n ElementRef,\n EventEmitter,\n HostListener,\n Input,\n Output,\n ViewChild,\n ViewEncapsulation\n} from '@angular/core';\nimport { Modal } from '../index';\n\nexport interface AlertData {\n title: string;\n subtitle?: string;\n body: string;\n alertType: 'info' | 'warning' | 'error';\n cancel?: string;\n ok?: string;\n strong?: boolean;\n}\n\n@Component({\n selector: 'fng-alert',\n templateUrl: './alert.component.html',\n styleUrls: ['./alert.component.scss'],\n encapsulation: ViewEncapsulation.None\n})\nexport class AlertComponent implements AfterViewInit, Modal<AlertData, any> {\n @Input() data: AlertData;\n @Output() close = new EventEmitter<any>();\n @Output() cancel = new EventEmitter<any>();\n @Output() ok = new EventEmitter<any>();\n\n @ViewChild('closeBtn') closeBtn: ElementRef;\n\n @HostListener('window:keyup', ['$event'])\n onKeyUp(event: KeyboardEvent) {\n event.preventDefault();\n event.stopPropagation();\n\n if (event.key === 'Esc' || event.key === 'Escape') {\n this.onClose();\n }\n }\n\n ngAfterViewInit() {\n if (this.closeBtn) {\n (this.closeBtn.nativeElement as HTMLElement).focus();\n }\n }\n\n onClose() {\n this.close.emit();\n }\n\n onOk() {\n this.ok.emit();\n }\n\n onCancel() {\n this.cancel.emit();\n }\n}\n","<div\n class=\"fwe-modal\"\n [ngClass]=\"{\n 'fwe-modal--with-indicator-bar': data?.strong === true,\n 'fwe-modal--warning': data?.alertType === 'warning',\n 'fwe-modal--error': data?.alertType === 'error',\n 'fwe-modal--info': data?.alertType === 'info'\n }\"\n>\n <div class=\"fwe-modal-close\">\n <button type=\"button\" aria-label=\"Close\" #closeBtn class=\"fwe-btn fwe-btn-link fwe-dark\" (click)=\"onClose()\">\n <i aria-hidden=\"true\" class=\"fwe-icon fwe-icon-close-small\"></i>\n <span class=\"fwe-sr-only\">Close</span>\n </button>\n </div>\n <div class=\"fwe-modal-header\">\n <h2 *ngIf=\"data?.subtitle\" class=\"fwe-modal-h2\">\n <i\n [ngClass]=\"{\n 'fwe-icon': true,\n 'fwe-icon-status-warning': data?.alertType === 'warning',\n 'fwe-icon-status-failure': data?.alertType === 'error',\n 'fwe-icon-status-check-status': data?.alertType === 'info'\n }\"\n ></i\n >{{ data?.subtitle }}\n </h2>\n <h1 class=\"fwe-modal-h1\">\n <i\n [ngClass]=\"{\n 'fwe-icon': true,\n 'fwe-icon-status-warning': data?.alertType === 'warning',\n 'fwe-icon-status-failure': data?.alertType === 'error',\n 'fwe-icon-status-check-status': data?.alertType === 'info'\n }\"\n ></i\n >{{ data?.title }}\n </h1>\n </div>\n <div class=\"fwe-modal-body\">\n <p>{{ data?.body }}</p>\n </div>\n <div class=\"fwe-modal-footer\" *ngIf=\"data?.cancel || data?.ok\">\n <div class=\"fwe-modal-buttons fwe-modal-buttons--full-width\">\n <button\n *ngIf=\"data?.cancel\"\n type=\"button\"\n aria-label=\"Cancel\"\n class=\"fwe-btn fwe-btn-lg\"\n [ngClass]=\"{ 'fwe-btn-link': data?.strong === true && (data?.alertType === 'warning' || data?.alertType === 'error') }\"\n (click)=\"onCancel()\"\n >\n {{ data?.cancel }}\n </button>\n <button *ngIf=\"data?.ok\" type=\"button\" aria-label=\"Ok\" class=\"fwe-btn fwe-btn-lg fwe-btn-hero\" (click)=\"onOk()\">\n {{ data?.ok }}\n </button>\n </div>\n </div>\n</div>\n"]}
|