@festo-ui/angular 4.0.3-pre-20221124.8 → 5.0.0-dev.70
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 +37 -12
- 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 +4701 -4552
- package/fesm2015/festo-ui-angular.mjs.map +1 -1
- package/fesm2020/festo-ui-angular.mjs +4588 -4479
- 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 -5
- 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,294 +0,0 @@
|
|
|
1
|
-
@import "../../../../../../node_modules/quill/dist/quill.core";
|
|
2
|
-
@import "../../../../../../node_modules/quill/dist/quill.snow";
|
|
3
|
-
@import "../../../../../web-essentials/scss/variables";
|
|
4
|
-
@import "../../../../../web-essentials/scss/mixins";
|
|
5
|
-
|
|
6
|
-
fng-text-editor {
|
|
7
|
-
.fng-divider-y {
|
|
8
|
-
display: inline-flex;
|
|
9
|
-
flex: 0 0 1px;
|
|
10
|
-
height: $spacer-m;
|
|
11
|
-
width: 1px;
|
|
12
|
-
background-color: $gray-400;
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
.fng-editor {
|
|
16
|
-
min-height: 100%;
|
|
17
|
-
|
|
18
|
-
&-container {
|
|
19
|
-
order: 2;
|
|
20
|
-
height: $spacer * 10;
|
|
21
|
-
min-height: 100%;
|
|
22
|
-
overflow-y: auto;
|
|
23
|
-
@include custom-scrollbar();
|
|
24
|
-
padding-top: $spacer-xxxs;
|
|
25
|
-
padding-bottom: $spacer-xxxs;
|
|
26
|
-
padding-left: $spacer-xxs;
|
|
27
|
-
border: $control-border solid 1px;
|
|
28
|
-
&:hover {
|
|
29
|
-
border-color: $hero;
|
|
30
|
-
}
|
|
31
|
-
&[contenteditable="true"] {
|
|
32
|
-
outline: none;
|
|
33
|
-
&:focus {
|
|
34
|
-
border-color: $hero;
|
|
35
|
-
}
|
|
36
|
-
}
|
|
37
|
-
}
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
label.fwe-input-text {
|
|
41
|
-
line-height: $spacer-m;
|
|
42
|
-
|
|
43
|
-
.fwe-input-text-count {
|
|
44
|
-
display: inline-block;
|
|
45
|
-
line-height: $line-height-base;
|
|
46
|
-
position: absolute;
|
|
47
|
-
right: 0;
|
|
48
|
-
bottom: 0;
|
|
49
|
-
z-index: 1;
|
|
50
|
-
color: $text-disabled;
|
|
51
|
-
font-size: $font-size-small;
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
.fwe-input-text-label {
|
|
55
|
-
order: -1;
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
.fng-text-editor-info {
|
|
59
|
-
white-space: nowrap;
|
|
60
|
-
overflow: hidden;
|
|
61
|
-
text-overflow: ellipsis;
|
|
62
|
-
display: inline-block;
|
|
63
|
-
line-height: $line-height-base;
|
|
64
|
-
position: absolute;
|
|
65
|
-
left: 0;
|
|
66
|
-
top: unset;
|
|
67
|
-
bottom: 0;
|
|
68
|
-
z-index: 2;
|
|
69
|
-
color: $text-disabled;
|
|
70
|
-
font-size: $font-size-small;
|
|
71
|
-
}
|
|
72
|
-
|
|
73
|
-
&.fwe-disabled {
|
|
74
|
-
color: $text-disabled;
|
|
75
|
-
|
|
76
|
-
.fwe-input-text-label {
|
|
77
|
-
color: $text-disabled;
|
|
78
|
-
}
|
|
79
|
-
|
|
80
|
-
.fng-editor-container {
|
|
81
|
-
border-color: $control-disabled !important;
|
|
82
|
-
&:hover {
|
|
83
|
-
border-color: $control-disabled !important;
|
|
84
|
-
}
|
|
85
|
-
}
|
|
86
|
-
.fng-divider-y {
|
|
87
|
-
background-color: $text-disabled;
|
|
88
|
-
}
|
|
89
|
-
}
|
|
90
|
-
}
|
|
91
|
-
|
|
92
|
-
.fng-text-editor-invalid {
|
|
93
|
-
display: none;
|
|
94
|
-
line-height: 1.5;
|
|
95
|
-
position: absolute;
|
|
96
|
-
left: 0;
|
|
97
|
-
bottom: 0;
|
|
98
|
-
z-index: 2;
|
|
99
|
-
color: $red;
|
|
100
|
-
font-size: $font-size-small;
|
|
101
|
-
}
|
|
102
|
-
|
|
103
|
-
&.ng-dirty.ng-invalid {
|
|
104
|
-
label.fwe-input-text {
|
|
105
|
-
.fng-editor {
|
|
106
|
-
box-shadow: none;
|
|
107
|
-
outline: none;
|
|
108
|
-
|
|
109
|
-
&:disabled {
|
|
110
|
-
border-bottom: 1px solid $control-disabled !important;
|
|
111
|
-
|
|
112
|
-
& ~ .fwe-input-text-label,
|
|
113
|
-
& ~ .fng-text-editor-invalid,
|
|
114
|
-
& ~ .fng-text-editor-info {
|
|
115
|
-
color: $text-disabled;
|
|
116
|
-
|
|
117
|
-
&::after {
|
|
118
|
-
color: $text-disabled;
|
|
119
|
-
}
|
|
120
|
-
}
|
|
121
|
-
}
|
|
122
|
-
|
|
123
|
-
&-container {
|
|
124
|
-
border-color: $red;
|
|
125
|
-
}
|
|
126
|
-
}
|
|
127
|
-
}
|
|
128
|
-
|
|
129
|
-
.fng-text-editor-info {
|
|
130
|
-
display: none !important;
|
|
131
|
-
}
|
|
132
|
-
|
|
133
|
-
.fng-text-editor-invalid {
|
|
134
|
-
display: block !important;
|
|
135
|
-
}
|
|
136
|
-
}
|
|
137
|
-
|
|
138
|
-
.fng-text-bold {
|
|
139
|
-
font-weight: $font-weight-bold;
|
|
140
|
-
}
|
|
141
|
-
|
|
142
|
-
.fng-text-italic {
|
|
143
|
-
font-style: italic;
|
|
144
|
-
}
|
|
145
|
-
|
|
146
|
-
.fng-text-underline {
|
|
147
|
-
text-decoration: underline;
|
|
148
|
-
}
|
|
149
|
-
|
|
150
|
-
.fng-icon-text-align-center {
|
|
151
|
-
width: 12px;
|
|
152
|
-
height: 10px;
|
|
153
|
-
background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="10" fill="rgb(51, 51, 51)" viewBox="0 0 12 10"><path d="M2,3H14V5H2Z" transform="translate(-2 -3)"/><path d="M5,7h6V9H5Z" transform="translate(-2 -3)"/><path d="M2,11H14v2H2Z" transform="translate(-2 -3)"/></svg>');
|
|
154
|
-
&.fng-gray {
|
|
155
|
-
background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="10" fill="rgb(185, 186, 187)" viewBox="0 0 12 10"><path d="M2,3H14V5H2Z" transform="translate(-2 -3)"/><path d="M5,7h6V9H5Z" transform="translate(-2 -3)"/><path d="M2,11H14v2H2Z" transform="translate(-2 -3)"/></svg>');
|
|
156
|
-
}
|
|
157
|
-
}
|
|
158
|
-
|
|
159
|
-
.fng-icon-text-align-right {
|
|
160
|
-
width: 12px;
|
|
161
|
-
height: 10px;
|
|
162
|
-
background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="10" fill="rgb(51, 51, 51)" viewBox="0 0 12 10"><path d="M2,3H14V5H2Z" transform="translate(-2 -3)"/><path d="M8,7h6V9H8Z" transform="translate(-2 -3)"/><path d="M2,11H14v2H2Z" transform="translate(-2 -3)"/></svg>');
|
|
163
|
-
&.fng-gray {
|
|
164
|
-
background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="10" fill="rgb(185, 186, 187)" viewBox="0 0 12 10"><path d="M2,3H14V5H2Z" transform="translate(-2 -3)"/><path d="M8,7h6V9H8Z" transform="translate(-2 -3)"/><path d="M2,11H14v2H2Z" transform="translate(-2 -3)"/></svg>');
|
|
165
|
-
}
|
|
166
|
-
}
|
|
167
|
-
|
|
168
|
-
// customize quill dependent styles below this line ...
|
|
169
|
-
.ql-tooltip {
|
|
170
|
-
z-index: $zindex-tooltip;
|
|
171
|
-
}
|
|
172
|
-
|
|
173
|
-
.ql-editor {
|
|
174
|
-
font-family: $font-family-base;
|
|
175
|
-
font-size: $font-size-base;
|
|
176
|
-
padding: 0;
|
|
177
|
-
min-height: $spacer-m * 3;
|
|
178
|
-
overflow-x: hidden;
|
|
179
|
-
p,
|
|
180
|
-
strong,
|
|
181
|
-
em,
|
|
182
|
-
u,
|
|
183
|
-
ul,
|
|
184
|
-
ol,
|
|
185
|
-
li,
|
|
186
|
-
a {
|
|
187
|
-
&::selection {
|
|
188
|
-
background: $icon-hero-light;
|
|
189
|
-
}
|
|
190
|
-
}
|
|
191
|
-
}
|
|
192
|
-
|
|
193
|
-
.ql-container {
|
|
194
|
-
&.ql-snow {
|
|
195
|
-
border: 0;
|
|
196
|
-
background-color: $white;
|
|
197
|
-
.ql-tooltip {
|
|
198
|
-
transform: translate($spacer * 10, $spacer-xs);
|
|
199
|
-
color: $black;
|
|
200
|
-
box-shadow: -1px 1px 4px -1px #33333333;
|
|
201
|
-
border: 1px solid $gray-200;
|
|
202
|
-
input {
|
|
203
|
-
border: 1px solid $gray-200;
|
|
204
|
-
&::selection {
|
|
205
|
-
background: $icon-hero-light;
|
|
206
|
-
}
|
|
207
|
-
}
|
|
208
|
-
}
|
|
209
|
-
|
|
210
|
-
a {
|
|
211
|
-
color: $caerul;
|
|
212
|
-
}
|
|
213
|
-
}
|
|
214
|
-
}
|
|
215
|
-
|
|
216
|
-
.ql-toolbar {
|
|
217
|
-
&.ql-snow {
|
|
218
|
-
border: 0;
|
|
219
|
-
padding: $spacer-xxxs 0;
|
|
220
|
-
|
|
221
|
-
.ql-formats {
|
|
222
|
-
&.fng-editor-toolbar-buttons-container {
|
|
223
|
-
display: flex;
|
|
224
|
-
align-items: center;
|
|
225
|
-
flex-wrap: wrap;
|
|
226
|
-
}
|
|
227
|
-
}
|
|
228
|
-
|
|
229
|
-
button {
|
|
230
|
-
line-height: normal;
|
|
231
|
-
box-sizing: border-box;
|
|
232
|
-
display: inline-flex;
|
|
233
|
-
align-items: center;
|
|
234
|
-
text-align: center;
|
|
235
|
-
padding: 0 $spacer-xxs;
|
|
236
|
-
height: $spacer-l;
|
|
237
|
-
min-height: unset;
|
|
238
|
-
color: $black;
|
|
239
|
-
background: none;
|
|
240
|
-
border-radius: $control-border-radius;
|
|
241
|
-
cursor: pointer;
|
|
242
|
-
border: none;
|
|
243
|
-
width: unset;
|
|
244
|
-
max-width: $spacer-m;
|
|
245
|
-
justify-content: center;
|
|
246
|
-
align-items: center;
|
|
247
|
-
float: unset;
|
|
248
|
-
|
|
249
|
-
@media (hover: hover) and (pointer: fine) {
|
|
250
|
-
&:hover {
|
|
251
|
-
background-color: $control-dark;
|
|
252
|
-
color: $black;
|
|
253
|
-
}
|
|
254
|
-
}
|
|
255
|
-
|
|
256
|
-
&:active {
|
|
257
|
-
background-color: $control-darker;
|
|
258
|
-
}
|
|
259
|
-
|
|
260
|
-
// ql-active is setted by quill to an invisible button. The next sibling ( + button ) is the visible representation.
|
|
261
|
-
&.ql-active + button {
|
|
262
|
-
background-color: $control;
|
|
263
|
-
}
|
|
264
|
-
|
|
265
|
-
&.fng-btn-toolbar-list {
|
|
266
|
-
padding: 0 6px;
|
|
267
|
-
}
|
|
268
|
-
|
|
269
|
-
&.fng-button {
|
|
270
|
-
i {
|
|
271
|
-
pointer-events: none;
|
|
272
|
-
}
|
|
273
|
-
div {
|
|
274
|
-
pointer-events: none;
|
|
275
|
-
}
|
|
276
|
-
}
|
|
277
|
-
}
|
|
278
|
-
}
|
|
279
|
-
|
|
280
|
-
.fng-button-text {
|
|
281
|
-
min-width: $spacer-xs;
|
|
282
|
-
line-height: $spacer-s;
|
|
283
|
-
}
|
|
284
|
-
}
|
|
285
|
-
|
|
286
|
-
label.fwe-input-text.fwe-disabled {
|
|
287
|
-
.ql-toolbar {
|
|
288
|
-
pointer-events: none;
|
|
289
|
-
button {
|
|
290
|
-
color: $text-disabled;
|
|
291
|
-
}
|
|
292
|
-
}
|
|
293
|
-
}
|
|
294
|
-
}
|
|
@@ -1,60 +0,0 @@
|
|
|
1
|
-
@import "../../../../../web-essentials/scss/variables";
|
|
2
|
-
|
|
3
|
-
fng-text-input:not(.ng-pristine).ng-invalid label.fwe-input-text {
|
|
4
|
-
input[type="text"],
|
|
5
|
-
input[type="password"],
|
|
6
|
-
input[type="date"],
|
|
7
|
-
input[type="datetime-local"],
|
|
8
|
-
input[type="number"] {
|
|
9
|
-
border-bottom: 1px solid $red !important;
|
|
10
|
-
box-shadow: none;
|
|
11
|
-
outline: none;
|
|
12
|
-
|
|
13
|
-
&:focus {
|
|
14
|
-
border-bottom: 1px solid $red !important;
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
&:disabled {
|
|
18
|
-
border-bottom: 1px solid $control-disabled !important;
|
|
19
|
-
|
|
20
|
-
& ~ .fwe-input-text-label,
|
|
21
|
-
& ~ .fwe-input-text-invalid,
|
|
22
|
-
& ~ .fwe-input-text-info {
|
|
23
|
-
color: $text-disabled;
|
|
24
|
-
}
|
|
25
|
-
}
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
.fwe-input-text-info {
|
|
29
|
-
display: none !important;
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
.fwe-input-text-invalid {
|
|
33
|
-
display: block !important;
|
|
34
|
-
}
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
fng-text-input.ng-valid label.fwe-input-text {
|
|
38
|
-
input[type="text"],
|
|
39
|
-
input[type="password"],
|
|
40
|
-
input[type="date"],
|
|
41
|
-
input[type="time"],
|
|
42
|
-
input[type="datetime-local"],
|
|
43
|
-
input[type="number"] {
|
|
44
|
-
&:hover:not(:disabled) {
|
|
45
|
-
border-bottom: 1px solid $hero !important;
|
|
46
|
-
}
|
|
47
|
-
}
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
fng-text-input label.fwe-input-text.fwe-no-pointer-events {
|
|
51
|
-
pointer-events: none !important;
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
.fwe-input-text-invalid.fng-projected:empty {
|
|
55
|
-
display: none;
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
.fwe-input-text-info.fng-projected:empty {
|
|
59
|
-
display: none;
|
|
60
|
-
}
|