@colijnit/corecomponents_v12 256.1.7 → 256.1.9
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/bundles/colijnit-corecomponents_v12.umd.js +32 -4
- package/bundles/colijnit-corecomponents_v12.umd.js.map +1 -1
- package/colijnit-corecomponents_v12.metadata.json +1 -1
- package/esm2015/lib/components/hour-scheduling-expandable/hour-scheduling-expandable.component.js +17 -3
- package/esm2015/lib/components/tooltip/tooltip.component.js +22 -4
- package/esm2015/lib/directives/screen-configuration/screen-configuration.directive.js +1 -1
- package/esm2015/lib/service/base-module-screen-config.service.js +2 -2
- package/fesm2015/colijnit-corecomponents_v12.js +37 -5
- package/fesm2015/colijnit-corecomponents_v12.js.map +1 -1
- package/lib/components/hour-scheduling-expandable/hour-scheduling-expandable.component.d.ts +1 -0
- package/lib/components/hour-scheduling-expandable/style/_layout.scss +1 -1
- package/lib/components/tooltip/tooltip.component.d.ts +8 -3
- package/lib/service/base-module-screen-config.service.d.ts +1 -1
- package/lib/style/_input.mixins.scss +6 -0
- package/lib/style/_variables.scss +1 -0
- package/package.json +1 -1
|
@@ -61,6 +61,7 @@ export declare class HourSchedulingExpandableComponent implements OnInit {
|
|
|
61
61
|
onDragStartCustom(obj: SchedulingObject): void;
|
|
62
62
|
handleDrop(dragEvent: DragEvent, hour: string): void;
|
|
63
63
|
allowDrop(event: DragEvent, hour: string): boolean;
|
|
64
|
+
handleDragLeave(event: DragEvent): void;
|
|
64
65
|
onResizeStart(event: MouseEvent, obj: SchedulingObject, direction: 'top' | 'bottom'): void;
|
|
65
66
|
onResizing(event: MouseEvent): void;
|
|
66
67
|
onResizeEnd(event: MouseEvent): void;
|
|
@@ -1,18 +1,23 @@
|
|
|
1
|
-
import { AfterViewInit, ChangeDetectorRef, ElementRef } from '@angular/core';
|
|
1
|
+
import { AfterViewInit, ChangeDetectorRef, ElementRef, EventEmitter, OnDestroy, Renderer2 } from '@angular/core';
|
|
2
2
|
import { SafeHtml } from '@angular/platform-browser';
|
|
3
|
-
export declare class TooltipComponent implements AfterViewInit {
|
|
3
|
+
export declare class TooltipComponent implements AfterViewInit, OnDestroy {
|
|
4
4
|
private _elementRef;
|
|
5
5
|
private _changeDetector;
|
|
6
|
+
private _renderer;
|
|
6
7
|
set hostElement(value: HTMLElement);
|
|
7
8
|
get hostElement(): HTMLElement;
|
|
8
9
|
toolTip: SafeHtml | string;
|
|
10
|
+
tooltipClosed: EventEmitter<void>;
|
|
9
11
|
showClass(): boolean;
|
|
10
12
|
top: number;
|
|
11
13
|
left: number;
|
|
12
14
|
bottom: boolean;
|
|
13
15
|
animate: boolean;
|
|
14
16
|
private _hostElement;
|
|
15
|
-
|
|
17
|
+
private _documentClickListener;
|
|
18
|
+
constructor(_elementRef: ElementRef, _changeDetector: ChangeDetectorRef, _renderer: Renderer2);
|
|
16
19
|
ngAfterViewInit(): void;
|
|
20
|
+
ngOnDestroy(): void;
|
|
17
21
|
private _positionTooltip;
|
|
22
|
+
private closeTooltip;
|
|
18
23
|
}
|
|
@@ -6,7 +6,7 @@ import { ObjectConfigKind } from '@colijnit/ioneconnector/build/enum/object-conf
|
|
|
6
6
|
import { ObjectConfiguration } from '@colijnit/ioneconnector/build/model/object-configuration';
|
|
7
7
|
export declare abstract class BaseModuleScreenConfigService {
|
|
8
8
|
abstract screenModuleName: string;
|
|
9
|
-
readonly configSet: BehaviorSubject<
|
|
9
|
+
readonly configSet: BehaviorSubject<ObjectConfiguration[]>;
|
|
10
10
|
get configObjects(): ObjectConfiguration[];
|
|
11
11
|
controlValidityByBoMap: {
|
|
12
12
|
bo: BusinessObject;
|
|
@@ -119,6 +119,12 @@
|
|
|
119
119
|
}
|
|
120
120
|
}
|
|
121
121
|
|
|
122
|
+
.co-input-text.form-submitted.invalid.required:not(.hasvalue) {
|
|
123
|
+
.input-text-wrapper {
|
|
124
|
+
background-color: $cc-color-validation-error-background;
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
|
|
122
128
|
::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
|
|
123
129
|
color: $cc-color-input-placeholder-color;
|
|
124
130
|
font-style: $cc-input-placeholder-font-style;
|
|
@@ -20,6 +20,7 @@ $cc-color-action: #1A73E8 !default;
|
|
|
20
20
|
$accent: $cc-color-action !default;
|
|
21
21
|
$cc-color-input-background-color: white !default;
|
|
22
22
|
$cc-color-input-placeholder-color: #8083A3 !default;
|
|
23
|
+
$cc-color-validation-error-background: #ffe6e6 !default;
|
|
23
24
|
$cc-color-dark: #22313C !default;
|
|
24
25
|
$cc-color-background: #F8F8Fa !default;
|
|
25
26
|
$cc-color-main: #1060AD !default;
|