@festo-ui/angular 4.0.3-pre-20221213.1 → 5.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +13 -53
- package/css/bundle.css +1 -1
- package/css/image-gallery.css +1 -1
- package/css/popover.css +1 -1
- package/esm2020/festo-ui-angular.mjs +2 -2
- package/esm2020/lib/components/accordion/accordion-header/accordion-header.component.mjs +5 -5
- package/esm2020/lib/components/accordion/accordion-item/accordion-item-body/accordion-item-body.component.mjs +5 -5
- package/esm2020/lib/components/accordion/accordion-item/accordion-item-header/accordion-item-header.component.mjs +5 -5
- package/esm2020/lib/components/accordion/accordion-item/accordion-item.component.mjs +30 -25
- package/esm2020/lib/components/accordion/accordion.component.mjs +9 -9
- package/esm2020/lib/components/accordion/index.mjs +1 -1
- package/esm2020/lib/components/breadcrumb/breadcrumb.component.mjs +8 -5
- package/esm2020/lib/components/buttons/button/button.component.mjs +7 -6
- package/esm2020/lib/components/buttons/link-button/link-button.component.mjs +7 -6
- package/esm2020/lib/components/chips/chip/chip.component.mjs +6 -5
- package/esm2020/lib/components/chips/chip-container/chip-container.component.mjs +6 -5
- package/esm2020/lib/components/components.module.mjs +148 -151
- package/esm2020/lib/components/loading-indicator/loading-indicator.component.mjs +6 -5
- package/esm2020/lib/components/mobile-flyout/mobile-flyout-item/mobile-flyout-item.component.mjs +7 -6
- package/esm2020/lib/components/mobile-flyout/mobile-flyout-page/mobile-flyout-page.component.mjs +7 -6
- package/esm2020/lib/components/mobile-flyout/mobile-flyout.component.mjs +7 -7
- package/esm2020/lib/components/pagination/pagination.component.mjs +7 -5
- package/esm2020/lib/components/popovers/legend/legend.component.mjs +12 -12
- package/esm2020/lib/components/popovers/legend/legend.directive.mjs +7 -7
- package/esm2020/lib/components/popovers/popover/popover.component.mjs +6 -6
- package/esm2020/lib/components/popovers/popover-content/popover-content.component.mjs +14 -16
- package/esm2020/lib/components/popovers/popover-content/popover-content.directive.mjs +6 -6
- package/esm2020/lib/components/popovers/popover-menu/popover-menu.component.mjs +16 -17
- package/esm2020/lib/components/popovers/popover-ref.mjs +2 -2
- package/esm2020/lib/components/popovers/popover.defaults.mjs +17 -18
- package/esm2020/lib/components/popovers/popover.models.mjs +1 -17
- package/esm2020/lib/components/popovers/popover.service.mjs +28 -29
- package/esm2020/lib/components/popovers/tooltip/tooltip.directive.mjs +14 -15
- package/esm2020/lib/components/progress/progress.component.mjs +7 -5
- package/esm2020/lib/components/scroll/index.mjs +1 -1
- package/esm2020/lib/components/scroll/scrollable.directive.mjs +9 -6
- package/esm2020/lib/components/search-input/search-input.component.mjs +18 -8
- package/esm2020/lib/components/snackbar/snackbar-container.component.mjs +6 -6
- package/esm2020/lib/components/snackbar/snackbar-container.directive.mjs +10 -13
- package/esm2020/lib/components/snackbar/snackbar.component.mjs +8 -6
- package/esm2020/lib/components/snackbar/snackbar.models.mjs +1 -1
- package/esm2020/lib/components/snackbar/snackbar.module.mjs +7 -8
- package/esm2020/lib/components/snackbar/snackbar.service.mjs +4 -4
- package/esm2020/lib/components/stepper-horizontal/step-horizontal/step-horizontal.component.mjs +5 -5
- package/esm2020/lib/components/stepper-horizontal/stepper-horizontal.component.mjs +7 -6
- package/esm2020/lib/components/stepper-vertical/step-vertical/step-vertical.component.mjs +7 -6
- package/esm2020/lib/components/stepper-vertical/stepper-vertical.component.mjs +6 -6
- package/esm2020/lib/components/table-header-cell/table-header-cell.directive.mjs +8 -7
- package/esm2020/lib/components/tabs/tab-pane/tab-pane.component.mjs +5 -5
- package/esm2020/lib/components/tabs/tabs.component.mjs +108 -22
- package/esm2020/lib/directives/click-outside.directive.mjs +29 -0
- package/esm2020/lib/festo-angular.module.mjs +9 -72
- package/esm2020/lib/forms/checkbox/checkbox.component.mjs +26 -21
- package/esm2020/lib/forms/color-indicator/color-indicator.component.mjs +28 -8
- package/esm2020/lib/forms/color-picker/color-helper.mjs +16 -8
- package/esm2020/lib/forms/color-picker/color-picker.component.mjs +35 -16
- package/esm2020/lib/forms/date-picker/date-picker.component.mjs +25 -22
- package/esm2020/lib/forms/date-range-picker/date-range-picker.component.mjs +29 -25
- package/esm2020/lib/forms/flatpickr/flatpickr.component.mjs +55 -0
- package/esm2020/lib/forms/forms.module.mjs +106 -79
- package/esm2020/lib/forms/radio/radio.component.mjs +43 -39
- package/esm2020/lib/forms/segment/segment-control/segment-control.component.mjs +15 -12
- package/esm2020/lib/forms/segment/segment.component.mjs +28 -23
- package/esm2020/lib/forms/select/chip-text.pipe.mjs +15 -10
- package/esm2020/lib/forms/select/select-option/select-option.component.mjs +7 -6
- package/esm2020/lib/forms/select/select.component.mjs +49 -41
- package/esm2020/lib/forms/slider/slider.component.mjs +24 -21
- package/esm2020/lib/forms/switch/switch.component.mjs +18 -17
- package/esm2020/lib/forms/text-area/text-area.component.mjs +16 -9
- package/esm2020/lib/forms/text-editor/text-editor.component.mjs +69 -61
- package/esm2020/lib/forms/text-input/text-input.component.mjs +38 -11
- package/esm2020/lib/forms/time-picker/time-picker-dropdown/time-picker-dropdown.component.mjs +8 -6
- package/esm2020/lib/forms/time-picker/time-picker.component.mjs +18 -15
- package/esm2020/lib/forms/unique-selection-dispatcher.mjs +7 -5
- package/esm2020/lib/forms/value-accessor-base.mjs +5 -5
- package/esm2020/lib/modals/alert/alert.component.mjs +54 -0
- package/esm2020/lib/modals/confirm/confirm.component.mjs +55 -0
- package/esm2020/lib/modals/custom-modal/custom-modal.component.mjs +70 -0
- package/esm2020/lib/modals/image-gallery/image-gallery.component.mjs +62 -0
- package/esm2020/lib/modals/index.mjs +2 -0
- package/esm2020/lib/{components/modals → modals}/modal.service.mjs +8 -11
- package/esm2020/lib/modals/modals.module.mjs +28 -0
- package/esm2020/lib/modals/prompt/prompt.component.mjs +106 -0
- package/esm2020/lib/pipes/safe-html.pipe.mjs +5 -5
- package/esm2020/public-api.mjs +66 -0
- package/fesm2015/festo-ui-angular.mjs +4659 -4507
- package/fesm2015/festo-ui-angular.mjs.map +1 -1
- package/fesm2020/festo-ui-angular.mjs +4590 -4478
- package/fesm2020/festo-ui-angular.mjs.map +1 -1
- package/index.d.ts +5 -13
- package/lib/components/accordion/accordion-header/accordion-header.component.d.ts +1 -1
- package/lib/components/accordion/accordion-item/accordion-item-body/accordion-item-body.component.d.ts +1 -1
- package/lib/components/accordion/accordion-item/accordion-item-header/accordion-item-header.component.d.ts +1 -1
- package/lib/components/accordion/accordion-item/accordion-item.component.d.ts +6 -5
- package/lib/components/accordion/accordion.component.d.ts +2 -2
- package/lib/components/breadcrumb/breadcrumb.component.d.ts +1 -1
- package/lib/components/buttons/button/button.component.d.ts +4 -4
- package/lib/components/buttons/link-button/link-button.component.d.ts +4 -4
- package/lib/components/chips/chip/chip.component.d.ts +2 -2
- package/lib/components/chips/chip-container/chip-container.component.d.ts +1 -1
- package/lib/components/components.module.d.ts +35 -68
- package/lib/components/loading-indicator/loading-indicator.component.d.ts +1 -1
- package/lib/components/mobile-flyout/mobile-flyout-item/mobile-flyout-item.component.d.ts +1 -1
- package/lib/components/mobile-flyout/mobile-flyout-page/mobile-flyout-page.component.d.ts +1 -1
- package/lib/components/mobile-flyout/mobile-flyout.component.d.ts +1 -1
- package/lib/components/pagination/pagination.component.d.ts +1 -1
- package/lib/components/popovers/legend/legend.component.d.ts +2 -2
- package/lib/components/popovers/legend/legend.directive.d.ts +2 -2
- package/lib/components/popovers/popover/popover.component.d.ts +4 -4
- package/lib/components/popovers/popover-content/popover-content.component.d.ts +2 -2
- package/lib/components/popovers/popover-content/popover-content.directive.d.ts +2 -2
- package/lib/components/popovers/popover-menu/popover-menu.component.d.ts +6 -6
- package/lib/components/popovers/popover-ref.d.ts +2 -2
- package/lib/components/popovers/popover.defaults.d.ts +4 -4
- package/lib/components/popovers/popover.models.d.ts +8 -20
- package/lib/components/popovers/tooltip/tooltip.directive.d.ts +1 -1
- package/lib/components/progress/progress.component.d.ts +1 -1
- package/lib/components/scroll/scrollable.directive.d.ts +1 -1
- package/lib/components/search-input/search-input.component.d.ts +1 -1
- package/lib/components/snackbar/snackbar-container.component.d.ts +1 -1
- package/lib/components/snackbar/snackbar-container.directive.d.ts +4 -7
- package/lib/components/snackbar/snackbar.component.d.ts +1 -1
- package/lib/components/snackbar/snackbar.module.d.ts +5 -5
- package/lib/components/snackbar/snackbar.service.d.ts +1 -1
- package/lib/components/stepper-horizontal/step-horizontal/step-horizontal.component.d.ts +1 -1
- package/lib/components/stepper-horizontal/stepper-horizontal.component.d.ts +1 -1
- package/lib/components/stepper-vertical/step-vertical/step-vertical.component.d.ts +2 -2
- package/lib/components/stepper-vertical/stepper-vertical.component.d.ts +1 -1
- package/lib/components/table-header-cell/table-header-cell.directive.d.ts +8 -8
- package/lib/components/tabs/tab-pane/tab-pane.component.d.ts +7 -7
- package/lib/components/tabs/tabs.component.d.ts +11 -11
- package/lib/{components → directives}/click-outside.directive.d.ts +1 -1
- package/lib/festo-angular.module.d.ts +6 -11
- package/lib/forms/checkbox/checkbox.component.d.ts +1 -1
- package/lib/forms/color-indicator/color-indicator.component.d.ts +1 -1
- package/lib/forms/color-picker/color-helper.d.ts +4 -4
- package/lib/forms/color-picker/color-picker.component.d.ts +6 -6
- package/lib/forms/date-picker/date-picker.component.d.ts +11 -11
- package/lib/forms/date-range-picker/date-range-picker.component.d.ts +12 -12
- package/lib/{wrappers → forms}/flatpickr/flatpickr.component.d.ts +5 -5
- package/lib/forms/forms.module.d.ts +24 -39
- package/lib/forms/radio/radio.component.d.ts +12 -12
- package/lib/forms/segment/segment-control/segment-control.component.d.ts +11 -13
- package/lib/forms/segment/segment.component.d.ts +3 -3
- package/lib/forms/select/chip-text.pipe.d.ts +1 -1
- package/lib/forms/select/select-option/select-option.component.d.ts +3 -3
- package/lib/forms/select/select.component.d.ts +11 -11
- package/lib/forms/slider/slider.component.d.ts +6 -6
- package/lib/forms/switch/switch.component.d.ts +5 -5
- package/lib/forms/text-area/text-area.component.d.ts +12 -12
- package/lib/forms/text-editor/text-editor.component.d.ts +16 -16
- package/lib/forms/text-input/text-input.component.d.ts +4 -4
- package/lib/forms/time-picker/time-picker-dropdown/time-picker-dropdown.component.d.ts +6 -6
- package/lib/forms/time-picker/time-picker.component.d.ts +8 -8
- package/lib/forms/unique-selection-dispatcher.d.ts +2 -2
- package/lib/forms/value-accessor-base.d.ts +4 -4
- package/lib/{components/modals → modals}/alert/alert.component.d.ts +2 -2
- package/lib/{components/modals → modals}/confirm/confirm.component.d.ts +2 -2
- package/lib/{components/modals → modals}/custom-modal/custom-modal.component.d.ts +1 -1
- package/lib/{components → modals}/image-gallery/image-gallery.component.d.ts +2 -2
- package/lib/{components/modals → modals}/index.d.ts +1 -1
- package/lib/{components/modals → modals}/modal.service.d.ts +1 -1
- package/lib/modals/modals.module.d.ts +18 -0
- package/lib/{components/modals → modals}/prompt/prompt.component.d.ts +2 -2
- package/lib/pipes/safe-html.pipe.d.ts +1 -1
- package/package.json +13 -16
- package/public-api.d.ts +62 -0
- package/scss/base/image-gallery.scss +3 -0
- package/scss/base/popover.scss +9 -0
- package/scss/base/styles.scss +5 -0
- package/esm2020/index.mjs +0 -26
- package/esm2020/lib/components/click-outside.directive.mjs +0 -28
- package/esm2020/lib/components/image-gallery/image-gallery.component.mjs +0 -60
- package/esm2020/lib/components/image-gallery/image-gallery.module.mjs +0 -22
- package/esm2020/lib/components/modals/alert/alert.component.mjs +0 -52
- package/esm2020/lib/components/modals/confirm/confirm.component.mjs +0 -53
- package/esm2020/lib/components/modals/custom-modal/custom-modal.component.mjs +0 -70
- package/esm2020/lib/components/modals/index.mjs +0 -2
- package/esm2020/lib/components/modals/modals.module.mjs +0 -31
- package/esm2020/lib/components/modals/prompt/prompt.component.mjs +0 -102
- package/esm2020/lib/content/content.module.mjs +0 -20
- package/esm2020/lib/content/icon/icon.component.mjs +0 -17
- package/esm2020/lib/forms/container-host.mjs +0 -27
- package/esm2020/lib/forms/date-picker.module.mjs +0 -28
- package/esm2020/lib/forms/text-editor/text-editor.module.mjs +0 -25
- package/esm2020/lib/layout/layout.module.mjs +0 -18
- package/esm2020/lib/pipes/pipes.module.mjs +0 -20
- package/esm2020/lib/wrappers/flatpickr/flatpickr.component.mjs +0 -59
- package/lib/components/image-gallery/image-gallery.module.d.ts +0 -11
- package/lib/components/modals/modals.module.d.ts +0 -20
- package/lib/content/content.module.d.ts +0 -9
- package/lib/content/icon/icon.component.d.ts +0 -45
- package/lib/forms/container-host.d.ts +0 -11
- package/lib/forms/date-picker.module.d.ts +0 -17
- package/lib/forms/text-editor/text-editor.module.d.ts +0 -14
- package/lib/layout/layout.module.d.ts +0 -7
- package/lib/pipes/pipes.module.d.ts +0 -9
- package/scss/base/components/accordion/accordion-header/accordion-header.component.scss +0 -12
- package/scss/base/components/accordion/accordion-item/accordion-item-body/accordion-item-body.component.scss +0 -109
- package/scss/base/components/accordion/accordion-item/accordion-item-header/accordion-item-header.component.scss +0 -9
- package/scss/base/components/accordion/accordion-item/accordion-item.component.scss +0 -71
- package/scss/base/components/accordion/accordion.component.scss +0 -6
- package/scss/base/components/breadcrumb/breadcrumb.component.scss +0 -0
- package/scss/base/components/buttons/button/button.component.scss +0 -7
- package/scss/base/components/buttons/link-button/link-button.component.scss +0 -0
- package/scss/base/components/chips/chip/chip.component.scss +0 -0
- package/scss/base/components/chips/chip-container/chip-container.component.scss +0 -0
- package/scss/base/components/image-gallery/image-gallery.component.scss +0 -0
- package/scss/base/components/image-gallery/styles.scss +0 -5
- package/scss/base/components/loading-indicator/loading-indicator.component.scss +0 -0
- package/scss/base/components/modals/alert/alert.component.scss +0 -0
- package/scss/base/components/modals/confirm/confirm.component.scss +0 -0
- package/scss/base/components/modals/prompt/prompt.component.scss +0 -0
- package/scss/base/components/pagination/pagination.component.scss +0 -0
- package/scss/base/components/popovers/legend/legend.component.scss +0 -9
- package/scss/base/components/popovers/popover/popover.component.scss +0 -0
- package/scss/base/components/popovers/popover/styles.scss +0 -84
- package/scss/base/components/popovers/popover-content/popover-content.component.scss +0 -12
- package/scss/base/components/popovers/popover-menu/popover-menu.component.scss +0 -0
- package/scss/base/components/scroll/scroll-story-helper.scss +0 -12
- package/scss/base/components/search-input/search-input.component.scss +0 -7
- package/scss/base/components/snackbar/snackbar-container.component.scss +0 -3
- package/scss/base/components/snackbar/snackbar.component.scss +0 -3
- package/scss/base/components/stepper-horizontal/step-horizontal/step-horizontal.component.scss +0 -23
- package/scss/base/components/stepper-vertical/step-vertical/step-vertical.component.scss +0 -6
- package/scss/base/components/tabs/tab-pane/tab-pane.component.scss +0 -7
- package/scss/base/components/tabs/tabs.component.scss +0 -326
- package/scss/base/content/icon/icon.component.scss +0 -0
- package/scss/base/forms/checkbox/checkbox.component.scss +0 -160
- package/scss/base/forms/color-indicator/color-indicator.component.scss +0 -59
- package/scss/base/forms/color-picker/color-picker.component.scss +0 -207
- package/scss/base/forms/date-picker/date-picker.component.scss +0 -5
- package/scss/base/forms/date-range-picker/date-range-picker.component.scss +0 -34
- package/scss/base/forms/radio/radio.component.scss +0 -9
- package/scss/base/forms/segment/segment-control/segment-control.component.scss +0 -0
- package/scss/base/forms/segment/segment.component.scss +0 -0
- package/scss/base/forms/select/select-option/select-option.component.scss +0 -0
- package/scss/base/forms/select/select.component.scss +0 -251
- package/scss/base/forms/slider/slider.component.scss +0 -20
- package/scss/base/forms/switch/switch.component.scss +0 -145
- package/scss/base/forms/text-area/text-area.component.scss +0 -43
- package/scss/base/forms/text-editor/text-editor.component.scss +0 -294
- package/scss/base/forms/text-input/text-input.component.scss +0 -60
- package/scss/base/forms/time-picker/time-picker-dropdown/time-picker-dropdown.component.scss +0 -10
- package/scss/base/forms/time-picker/time-picker.component.scss +0 -5
|
@@ -1,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
|
|
@@ -1,84 +0,0 @@
|
|
|
1
|
-
@import "../../../../../../web-essentials/scss/popover";
|
|
2
|
-
@import "@angular/cdk/overlay-prebuilt";
|
|
3
|
-
|
|
4
|
-
/* This file is imported into global ~src/styles.scss to overwrite cdk overlay styles */
|
|
5
|
-
|
|
6
|
-
/* Overwrite global styles for popovers based on cdk overlay below this line */
|
|
7
|
-
.cdk-overlay-pane {
|
|
8
|
-
&.fng-popover-top {
|
|
9
|
-
.fwe-triangle {
|
|
10
|
-
@include triangle-bottom();
|
|
11
|
-
}
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
&.fng-popover-bottom {
|
|
15
|
-
.fwe-triangle {
|
|
16
|
-
@include triangle-top();
|
|
17
|
-
}
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
&.fng-popover-right {
|
|
21
|
-
.fwe-triangle {
|
|
22
|
-
@include triangle-left();
|
|
23
|
-
}
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
&.fng-popover-right-top {
|
|
27
|
-
.fwe-triangle {
|
|
28
|
-
@include triangle-left-top();
|
|
29
|
-
}
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
&.fng-popover-left {
|
|
33
|
-
.fwe-triangle {
|
|
34
|
-
@include triangle-right();
|
|
35
|
-
}
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
&.fng-popover-left-top {
|
|
39
|
-
.fwe-triangle {
|
|
40
|
-
@include triangle-right-top();
|
|
41
|
-
}
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
&.fng-popover-menu {
|
|
45
|
-
.fwe-popover {
|
|
46
|
-
@include popover-menu();
|
|
47
|
-
}
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
&.fng-color-indicator-top {
|
|
51
|
-
.fwe-triangle {
|
|
52
|
-
@include triangle-bottom();
|
|
53
|
-
}
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
&.fng-color-indicator-bottom {
|
|
57
|
-
.fwe-triangle {
|
|
58
|
-
@include triangle-top();
|
|
59
|
-
}
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
&.fng-color-indicator-left {
|
|
63
|
-
.fwe-triangle {
|
|
64
|
-
@include triangle-right();
|
|
65
|
-
}
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
&.fng-color-indicator-right {
|
|
69
|
-
.fwe-triangle {
|
|
70
|
-
@include triangle-left();
|
|
71
|
-
}
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
&.fng-popover-content {
|
|
75
|
-
.fwe-popover-container {
|
|
76
|
-
min-height: 100%;
|
|
77
|
-
min-width: 100%;
|
|
78
|
-
.fwe-popover {
|
|
79
|
-
min-height: 100%;
|
|
80
|
-
min-width: 100%;
|
|
81
|
-
}
|
|
82
|
-
}
|
|
83
|
-
}
|
|
84
|
-
}
|
|
File without changes
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
@import "~simplebar/dist/simplebar.min.css";
|
|
2
|
-
@import "../../../../../web-essentials/scss/festo-web-essentials.scss";
|
|
3
|
-
|
|
4
|
-
.scroll-test {
|
|
5
|
-
display: block;
|
|
6
|
-
overflow-x: hidden;
|
|
7
|
-
overflow-y: auto;
|
|
8
|
-
width: 400px;
|
|
9
|
-
max-width: 400px;
|
|
10
|
-
height: 300px;
|
|
11
|
-
padding-right: 8px;
|
|
12
|
-
}
|
package/scss/base/components/stepper-horizontal/step-horizontal/step-horizontal.component.scss
DELETED
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
.overflow-hidden {
|
|
2
|
-
overflow: hidden;
|
|
3
|
-
}
|
|
4
|
-
|
|
5
|
-
@keyframes stepperAnimation {
|
|
6
|
-
from {
|
|
7
|
-
transform: translateX(100%);
|
|
8
|
-
}
|
|
9
|
-
to {
|
|
10
|
-
transform: translateX(0%);
|
|
11
|
-
}
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
.fng-moving-container {
|
|
15
|
-
animation-name: stepperAnimation;
|
|
16
|
-
animation-duration: 0.3s;
|
|
17
|
-
animation-timing-function: ease;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
.hidden {
|
|
21
|
-
display: none;
|
|
22
|
-
}
|
|
23
|
-
|