@koobiq/components 18.38.1 → 18.39.1
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/app-switcher/app-switcher.d.ts +4 -3
- package/checkbox/checkbox.scss +5 -21
- package/code-block/code-block.scss +2 -2
- package/core/option/option.d.ts +1 -0
- package/core/styles/visual/_layout.scss +10 -0
- package/dropdown/dropdown.scss +1 -0
- package/esm2022/app-switcher/app-switcher.mjs +20 -17
- package/esm2022/checkbox/checkbox.mjs +2 -2
- package/esm2022/code-block/code-block.mjs +3 -3
- package/esm2022/core/option/option.mjs +3 -1
- package/esm2022/core/version.mjs +2 -2
- package/esm2022/dropdown/dropdown-trigger.directive.mjs +2 -4
- package/esm2022/dropdown/dropdown.component.mjs +3 -3
- package/esm2022/filter-bar/filter-bar.mjs +5 -19
- package/esm2022/filter-bar/filter-search.mjs +39 -11
- package/esm2022/filter-bar/pipes/pipe-date.mjs +4 -1
- package/esm2022/filter-bar/pipes/pipe-datetime.mjs +5 -2
- package/esm2022/filter-bar/pipes/pipe-multi-select.mjs +35 -14
- package/esm2022/filter-bar/pipes/pipe-multi-tree-select.mjs +40 -11
- package/esm2022/input/input-number.mjs +3 -1
- package/esm2022/list/list-selection.component.mjs +10 -4
- package/esm2022/loader-overlay/loader-overlay.component.mjs +2 -2
- package/esm2022/popover/popover-confirm.component.mjs +3 -3
- package/esm2022/popover/popover.component.mjs +3 -3
- package/esm2022/select/select.component.mjs +4 -2
- package/esm2022/time-range/time-range-editor.mjs +2 -2
- package/esm2022/timepicker/timepicker.directive.mjs +59 -9
- package/esm2022/tooltip/tooltip.component.mjs +3 -3
- package/fesm2022/koobiq-components-app-switcher.mjs +19 -16
- package/fesm2022/koobiq-components-app-switcher.mjs.map +1 -1
- package/fesm2022/koobiq-components-checkbox.mjs +2 -2
- package/fesm2022/koobiq-components-checkbox.mjs.map +1 -1
- package/fesm2022/koobiq-components-code-block.mjs +2 -2
- package/fesm2022/koobiq-components-code-block.mjs.map +1 -1
- package/fesm2022/koobiq-components-core.mjs +3 -1
- package/fesm2022/koobiq-components-core.mjs.map +1 -1
- package/fesm2022/koobiq-components-dropdown.mjs +3 -5
- package/fesm2022/koobiq-components-dropdown.mjs.map +1 -1
- package/fesm2022/koobiq-components-filter-bar.mjs +122 -53
- package/fesm2022/koobiq-components-filter-bar.mjs.map +1 -1
- package/fesm2022/koobiq-components-input.mjs +2 -0
- package/fesm2022/koobiq-components-input.mjs.map +1 -1
- package/fesm2022/koobiq-components-list.mjs +9 -3
- package/fesm2022/koobiq-components-list.mjs.map +1 -1
- package/fesm2022/koobiq-components-loader-overlay.mjs +2 -2
- package/fesm2022/koobiq-components-loader-overlay.mjs.map +1 -1
- package/fesm2022/koobiq-components-popover.mjs +4 -4
- package/fesm2022/koobiq-components-popover.mjs.map +1 -1
- package/fesm2022/koobiq-components-select.mjs +4 -2
- package/fesm2022/koobiq-components-select.mjs.map +1 -1
- package/fesm2022/koobiq-components-time-range.mjs +1 -1
- package/fesm2022/koobiq-components-time-range.mjs.map +1 -1
- package/fesm2022/koobiq-components-timepicker.mjs +58 -8
- package/fesm2022/koobiq-components-timepicker.mjs.map +1 -1
- package/fesm2022/koobiq-components-tooltip.mjs +2 -2
- package/fesm2022/koobiq-components-tooltip.mjs.map +1 -1
- package/filter-bar/filter-bar.d.ts +1 -1
- package/filter-bar/filter-search.d.ts +17 -4
- package/filter-bar/pipes/pipe-multi-select.d.ts +4 -1
- package/filter-bar/pipes/pipe-multi-tree-select.d.ts +5 -0
- package/list/list-selection.component.d.ts +4 -2
- package/loader-overlay/loader-overlay.scss +22 -31
- package/package.json +4 -4
- package/popover/_popover-theme.scss +2 -2
- package/popover/popover.scss +3 -2
- package/schematics/ng-add/index.js +2 -2
- package/timepicker/timepicker.directive.d.ts +16 -6
- package/tooltip/_tooltip-theme.scss +5 -6
|
@@ -28,6 +28,7 @@ export declare class KbqPipeMultiSelectComponent extends KbqBasePipe<KbqSelectVa
|
|
|
28
28
|
get selectedAllEqualsSelectedNothing(): boolean;
|
|
29
29
|
private get visibleOptions();
|
|
30
30
|
private selectionAllInProgress;
|
|
31
|
+
private internalSelected;
|
|
31
32
|
/** @docs-private */
|
|
32
33
|
ngOnInit(): void;
|
|
33
34
|
ngAfterViewInit(): void;
|
|
@@ -39,14 +40,16 @@ export declare class KbqPipeMultiSelectComponent extends KbqBasePipe<KbqSelectVa
|
|
|
39
40
|
toggleSelectionAllByEnterKey(): void;
|
|
40
41
|
/** @docs-private */
|
|
41
42
|
toggleSelectionAll(emitEvent?: boolean): void;
|
|
42
|
-
private emitChangePipeEvent;
|
|
43
43
|
/** Comparator of selected options */
|
|
44
44
|
compareByValue: (o1: any, o2: any) => boolean;
|
|
45
45
|
/** handler for select all options in select */
|
|
46
46
|
selectAllHandler: (event: KeyboardEvent) => void;
|
|
47
|
+
/** @docs-private */
|
|
47
48
|
onClose(): void;
|
|
48
49
|
/** opens select */
|
|
49
50
|
open(): void;
|
|
51
|
+
private updateInternalSelected;
|
|
52
|
+
private emitChangePipeEvent;
|
|
50
53
|
private getFilteredOptions;
|
|
51
54
|
static ɵfac: i0.ɵɵFactoryDeclaration<KbqPipeMultiSelectComponent, never>;
|
|
52
55
|
static ɵcmp: i0.ɵɵComponentDeclaration<KbqPipeMultiSelectComponent, "kbq-pipe-multi-select", never, {}, {}, never, never, true, never>;
|
|
@@ -31,6 +31,7 @@ export declare class KbqPipeMultiTreeSelectComponent extends KbqBasePipe<KbqSele
|
|
|
31
31
|
get selectedAllEqualsSelectedNothing(): boolean;
|
|
32
32
|
/** true if all visible options selected */
|
|
33
33
|
get allVisibleOptionsSelected(): boolean;
|
|
34
|
+
private internalSelected;
|
|
34
35
|
constructor();
|
|
35
36
|
ngOnInit(): void;
|
|
36
37
|
ngAfterViewInit(): void;
|
|
@@ -45,10 +46,14 @@ export declare class KbqPipeMultiTreeSelectComponent extends KbqBasePipe<KbqSele
|
|
|
45
46
|
updateTemplates: (templates: KbqPipeTemplate[] | null) => void;
|
|
46
47
|
/** opens select */
|
|
47
48
|
open(): void;
|
|
49
|
+
onClear(): void;
|
|
50
|
+
/** @docs-private */
|
|
48
51
|
onOpen(): void;
|
|
52
|
+
/** @docs-private */
|
|
49
53
|
onClose(): void;
|
|
50
54
|
/** handler for select all options in select */
|
|
51
55
|
selectAllHandler: (event: KeyboardEvent) => void;
|
|
56
|
+
private updateInternalSelected;
|
|
52
57
|
private emitChangePipeEvent;
|
|
53
58
|
private toggleParents;
|
|
54
59
|
private transformer;
|
|
@@ -4,7 +4,7 @@ import { SelectionModel } from '@angular/cdk/collections';
|
|
|
4
4
|
import { AfterContentInit, AfterViewInit, ChangeDetectorRef, ElementRef, EventEmitter, NgZone, OnDestroy, OnInit, QueryList } from '@angular/core';
|
|
5
5
|
import { ControlValueAccessor } from '@angular/forms';
|
|
6
6
|
import { FocusKeyManager, IFocusableOption } from '@koobiq/cdk/a11y';
|
|
7
|
-
import { KbqOptgroup, KbqOptionActionComponent, KbqTitleTextRef, MultipleMode } from '@koobiq/components/core';
|
|
7
|
+
import { KbqOptgroup, KbqOptionActionComponent, KbqPseudoCheckbox, KbqTitleTextRef, MultipleMode } from '@koobiq/components/core';
|
|
8
8
|
import { KbqDropdownTrigger } from '@koobiq/components/dropdown';
|
|
9
9
|
import { KbqTooltipTrigger } from '@koobiq/components/tooltip';
|
|
10
10
|
import { Observable, Subject } from 'rxjs';
|
|
@@ -150,6 +150,7 @@ export declare class KbqListOption implements OnDestroy, OnInit, IFocusableOptio
|
|
|
150
150
|
actionButton: KbqOptionActionComponent;
|
|
151
151
|
tooltipTrigger: KbqTooltipTrigger;
|
|
152
152
|
dropdownTrigger: KbqDropdownTrigger;
|
|
153
|
+
pseudoCheckbox: KbqPseudoCheckbox;
|
|
153
154
|
text: ElementRef;
|
|
154
155
|
textElement: ElementRef;
|
|
155
156
|
checkboxPosition: 'before' | 'after';
|
|
@@ -172,6 +173,7 @@ export declare class KbqListOption implements OnDestroy, OnInit, IFocusableOptio
|
|
|
172
173
|
set selected(value: boolean);
|
|
173
174
|
private _selected;
|
|
174
175
|
get tabIndex(): any;
|
|
176
|
+
get externalPseudoCheckbox(): boolean;
|
|
175
177
|
constructor(elementRef: ElementRef<HTMLElement>, changeDetector: ChangeDetectorRef, ngZone: NgZone, listSelection: KbqListSelection, group: KbqOptgroup);
|
|
176
178
|
ngOnInit(): void;
|
|
177
179
|
ngOnDestroy(): void;
|
|
@@ -187,7 +189,7 @@ export declare class KbqListOption implements OnDestroy, OnInit, IFocusableOptio
|
|
|
187
189
|
blur(): void;
|
|
188
190
|
getHostElement(): HTMLElement;
|
|
189
191
|
static ɵfac: i0.ɵɵFactoryDeclaration<KbqListOption, [null, null, null, null, { optional: true; }]>;
|
|
190
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<KbqListOption, "kbq-list-option", ["kbqListOption"], { "checkboxPosition": { "alias": "checkboxPosition"; "required": false; }; "value": { "alias": "value"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "showCheckbox": { "alias": "showCheckbox"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; }, {}, ["actionButton", "tooltipTrigger", "dropdownTrigger"], ["[kbq-icon]", "*", "[kbq-list-option-caption]", "kbq-option-action"], false, never>;
|
|
192
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KbqListOption, "kbq-list-option", ["kbqListOption"], { "checkboxPosition": { "alias": "checkboxPosition"; "required": false; }; "value": { "alias": "value"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "showCheckbox": { "alias": "showCheckbox"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; }, {}, ["actionButton", "tooltipTrigger", "dropdownTrigger", "pseudoCheckbox"], ["kbq-pseudo-checkbox", "[kbq-icon]", "*", "[kbq-list-option-caption]", "kbq-option-action"], false, never>;
|
|
191
193
|
static ngAcceptInputType_disabled: unknown;
|
|
192
194
|
static ngAcceptInputType_selected: unknown;
|
|
193
195
|
}
|
|
@@ -14,6 +14,10 @@
|
|
|
14
14
|
}
|
|
15
15
|
|
|
16
16
|
.kbq-loader-overlay {
|
|
17
|
+
--padding-horizontal: var(--kbq-size-3xl);
|
|
18
|
+
--loader-margin-bottom: var(--kbq-size-xxl);
|
|
19
|
+
--content-gap-vertical: var(--kbq-size-l);
|
|
20
|
+
|
|
17
21
|
position: absolute;
|
|
18
22
|
|
|
19
23
|
display: flex;
|
|
@@ -41,46 +45,33 @@
|
|
|
41
45
|
max-width: 80%;
|
|
42
46
|
}
|
|
43
47
|
|
|
44
|
-
|
|
45
|
-
|
|
48
|
+
padding-left: var(--padding-horizontal);
|
|
49
|
+
padding-right: var(--padding-horizontal);
|
|
46
50
|
|
|
47
|
-
|
|
51
|
+
.kbq-progress-spinner:has(+ .kbq-loader-overlay-text, + .kbq-loader-overlay-caption) {
|
|
52
|
+
margin-bottom: var(--loader-margin-bottom);
|
|
53
|
+
}
|
|
48
54
|
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
55
|
+
.kbq-loader-overlay-text {
|
|
56
|
+
margin-bottom: var(--content-gap-vertical);
|
|
57
|
+
}
|
|
52
58
|
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
59
|
+
&.kbq-loader-overlay_big {
|
|
60
|
+
--padding-horizontal: var(--kbq-loader-overlay-size-big-overlay-padding-horizontal);
|
|
61
|
+
--loader-margin-bottom: var(--kbq-loader-overlay-size-big-loader-margin-bottom);
|
|
62
|
+
--content-gap-vertical: var(--kbq-loader-overlay-size-big-content-content-gap-vertical);
|
|
56
63
|
}
|
|
57
64
|
|
|
58
65
|
&.kbq-loader-overlay_normal {
|
|
59
|
-
padding-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
.kbq-progress-spinner {
|
|
64
|
-
margin-bottom: var(--kbq-loader-overlay-size-normal-loader-margin-bottom);
|
|
65
|
-
}
|
|
66
|
-
|
|
67
|
-
.kbq-loader-overlay-text {
|
|
68
|
-
margin-bottom: var(--kbq-loader-overlay-size-normal-content-content-gap-vertical);
|
|
69
|
-
}
|
|
66
|
+
--padding-horizontal: var(--kbq-loader-overlay-size-normal-overlay-padding-horizontal);
|
|
67
|
+
--loader-margin-bottom: var(--kbq-loader-overlay-size-normal-loader-margin-bottom);
|
|
68
|
+
--content-gap-vertical: var(--kbq-loader-overlay-size-normal-content-content-gap-vertical);
|
|
70
69
|
}
|
|
71
70
|
|
|
72
71
|
&.kbq-loader-overlay_compact {
|
|
73
|
-
padding-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
.kbq-progress-spinner {
|
|
78
|
-
margin-bottom: var(--kbq-loader-overlay-size-compact-loader-margin-bottom);
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
.kbq-loader-overlay-text {
|
|
82
|
-
margin-bottom: var(--kbq-loader-overlay-size-compact-content-content-gap-vertical);
|
|
83
|
-
}
|
|
72
|
+
--padding-horizontal: var(--kbq-loader-overlay-size-compact-overlay-padding-horizontal);
|
|
73
|
+
--loader-margin-bottom: var(--kbq-loader-overlay-size-compact-loader-margin-bottom);
|
|
74
|
+
--content-gap-vertical: var(--kbq-loader-overlay-size-compact-content-content-gap-vertical);
|
|
84
75
|
}
|
|
85
76
|
}
|
|
86
77
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@koobiq/components",
|
|
3
|
-
"version": "18.
|
|
3
|
+
"version": "18.39.1",
|
|
4
4
|
"description": "koobiq",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -24,9 +24,9 @@
|
|
|
24
24
|
"@angular/cdk": "^18.0.0",
|
|
25
25
|
"@angular/core": "^18.0.0",
|
|
26
26
|
"@angular/forms": "^18.0.0",
|
|
27
|
-
"@koobiq/cdk": "18.
|
|
28
|
-
"@koobiq/angular-moment-adapter": "18.
|
|
29
|
-
"@koobiq/angular-luxon-adapter": "18.
|
|
27
|
+
"@koobiq/cdk": "18.39.1",
|
|
28
|
+
"@koobiq/angular-moment-adapter": "18.39.1",
|
|
29
|
+
"@koobiq/angular-luxon-adapter": "18.39.1",
|
|
30
30
|
"@koobiq/date-formatter": "^3.2.3",
|
|
31
31
|
"@koobiq/icons": "^10.4.0",
|
|
32
32
|
"@koobiq/tokens-builder": "3.11.0",
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
@mixin kbq-popover-theme() {
|
|
4
4
|
.kbq-popover {
|
|
5
|
-
box-shadow: var(--kbq-popover-
|
|
5
|
+
box-shadow: var(--kbq-popover-container-shadow);
|
|
6
6
|
|
|
7
7
|
&.kbq-popover_arrowless {
|
|
8
8
|
box-shadow: var(--kbq-popover-container-shadow);
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
}
|
|
15
15
|
|
|
16
16
|
.kbq-popover__arrow {
|
|
17
|
-
box-shadow: var(--kbq-popover-
|
|
17
|
+
box-shadow: var(--kbq-popover-container-shadow);
|
|
18
18
|
background: var(--kbq-popover-container-background);
|
|
19
19
|
}
|
|
20
20
|
|
package/popover/popover.scss
CHANGED
|
@@ -25,7 +25,7 @@ $arrow-padding: 24px;
|
|
|
25
25
|
&.kbq-popover_small {
|
|
26
26
|
max-width: var(--kbq-popover-size-container-width-small);
|
|
27
27
|
|
|
28
|
-
& .kbq-popover__content {
|
|
28
|
+
& .kbq-popover__content_default-paddings.kbq-popover__content {
|
|
29
29
|
padding: var(--kbq-size-l);
|
|
30
30
|
}
|
|
31
31
|
}
|
|
@@ -61,7 +61,7 @@ $arrow-padding: 24px;
|
|
|
61
61
|
border-radius: var(--kbq-popover-size-container-border-radius);
|
|
62
62
|
|
|
63
63
|
&.kbq-popover__container_with-header {
|
|
64
|
-
.kbq-popover__content {
|
|
64
|
+
.kbq-popover__content_default-paddings.kbq-popover__content {
|
|
65
65
|
padding-top: var(--kbq-size-s);
|
|
66
66
|
}
|
|
67
67
|
}
|
|
@@ -87,6 +87,7 @@ $arrow-padding: 24px;
|
|
|
87
87
|
|
|
88
88
|
.kbq-popover__header {
|
|
89
89
|
display: flex;
|
|
90
|
+
flex-shrink: 0;
|
|
90
91
|
align-items: center;
|
|
91
92
|
|
|
92
93
|
overflow: hidden;
|
|
@@ -27,8 +27,8 @@ function ngAdd(options) {
|
|
|
27
27
|
}
|
|
28
28
|
// Installing dependencies
|
|
29
29
|
utils_packageConfig.addPackageToPackageJson(tree, '@angular/cdk', "^18.2.14");
|
|
30
|
-
utils_packageConfig.addPackageToPackageJson(tree, '@koobiq/cdk', "^18.
|
|
31
|
-
utils_packageConfig.addPackageToPackageJson(tree, '@koobiq/angular-luxon-adapter', "^18.
|
|
30
|
+
utils_packageConfig.addPackageToPackageJson(tree, '@koobiq/cdk', "^18.39.1");
|
|
31
|
+
utils_packageConfig.addPackageToPackageJson(tree, '@koobiq/angular-luxon-adapter', "^18.39.1");
|
|
32
32
|
utils_packageConfig.addPackageToPackageJson(tree, '@koobiq/date-formatter', "^3.4.0");
|
|
33
33
|
utils_packageConfig.addPackageToPackageJson(tree, '@koobiq/date-adapter', "^3.4.0");
|
|
34
34
|
utils_packageConfig.addPackageToPackageJson(tree, '@koobiq/icons', "^10.10.0");
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { ElementRef, EventEmitter, OnDestroy, Renderer2 } from '@angular/core';
|
|
1
|
+
import { AfterContentInit, DoCheck, ElementRef, EventEmitter, OnDestroy, Renderer2 } from '@angular/core';
|
|
2
2
|
import { AbstractControl, ControlValueAccessor, ValidationErrors, Validator } from '@angular/forms';
|
|
3
|
-
import { DateAdapter, KbqLocaleService } from '@koobiq/components/core';
|
|
3
|
+
import { DateAdapter, ErrorStateMatcher, KbqLocaleService } from '@koobiq/components/core';
|
|
4
4
|
import { KbqFormFieldControl } from '@koobiq/components/form-field';
|
|
5
5
|
import { KbqWarningTooltipTrigger } from '@koobiq/components/tooltip';
|
|
6
6
|
import { Subject } from 'rxjs';
|
|
@@ -10,7 +10,7 @@ import * as i0 from "@angular/core";
|
|
|
10
10
|
export declare const KBQ_TIMEPICKER_VALUE_ACCESSOR: any;
|
|
11
11
|
/** @docs-private */
|
|
12
12
|
export declare const KBQ_TIMEPICKER_VALIDATORS: any;
|
|
13
|
-
export declare class KbqTimepicker<D> implements KbqFormFieldControl<D>, ControlValueAccessor, Validator, OnDestroy {
|
|
13
|
+
export declare class KbqTimepicker<D> implements KbqFormFieldControl<D>, ControlValueAccessor, Validator, OnDestroy, DoCheck, AfterContentInit {
|
|
14
14
|
private elementRef;
|
|
15
15
|
private renderer;
|
|
16
16
|
private dateAdapter;
|
|
@@ -20,7 +20,6 @@ export declare class KbqTimepicker<D> implements KbqFormFieldControl<D>, Control
|
|
|
20
20
|
* @docs-private
|
|
21
21
|
*/
|
|
22
22
|
readonly stateChanges: Subject<void>;
|
|
23
|
-
errorState: boolean;
|
|
24
23
|
/**
|
|
25
24
|
* Implemented as part of KbqFormFieldControl.
|
|
26
25
|
* @docs-private
|
|
@@ -31,6 +30,9 @@ export declare class KbqTimepicker<D> implements KbqFormFieldControl<D>, Control
|
|
|
31
30
|
* @docs-private
|
|
32
31
|
*/
|
|
33
32
|
controlType: string;
|
|
33
|
+
/** Object used to control when error messages are shown. */
|
|
34
|
+
get errorStateMatcher(): ErrorStateMatcher;
|
|
35
|
+
set errorStateMatcher(value: ErrorStateMatcher);
|
|
34
36
|
/**
|
|
35
37
|
* Implemented as part of KbqFormFieldControl.
|
|
36
38
|
* @docs-private
|
|
@@ -81,16 +83,22 @@ export declare class KbqTimepicker<D> implements KbqFormFieldControl<D>, Control
|
|
|
81
83
|
set selectionEnd(value: number | null);
|
|
82
84
|
/** Localized placeholder */
|
|
83
85
|
get timeFormatPlaceholder(): string;
|
|
86
|
+
/** @docs-private */
|
|
87
|
+
get errorState(): boolean;
|
|
88
|
+
set errorState(value: boolean);
|
|
84
89
|
private readonly uid;
|
|
85
90
|
private readonly validator;
|
|
86
91
|
private lastValueValid;
|
|
87
|
-
private control
|
|
92
|
+
private control?;
|
|
88
93
|
private defaultPlaceholder;
|
|
89
94
|
private separator;
|
|
90
95
|
private onChange;
|
|
91
96
|
private onTouched;
|
|
92
97
|
private localeSubscription;
|
|
98
|
+
private errorStateTracker;
|
|
93
99
|
constructor(elementRef: ElementRef<HTMLInputElement>, renderer: Renderer2, dateAdapter: DateAdapter<any>, localeService?: KbqLocaleService | undefined);
|
|
100
|
+
ngDoCheck(): void;
|
|
101
|
+
ngAfterContentInit(): void;
|
|
94
102
|
ngOnDestroy(): void;
|
|
95
103
|
getSize(): number;
|
|
96
104
|
focus(): void;
|
|
@@ -140,9 +148,11 @@ export declare class KbqTimepicker<D> implements KbqFormFieldControl<D>, Control
|
|
|
140
148
|
private getValidDateOrNull;
|
|
141
149
|
private setViewValue;
|
|
142
150
|
private updateView;
|
|
151
|
+
/** @docs-private */
|
|
152
|
+
updateErrorState(): void;
|
|
143
153
|
private setControl;
|
|
144
154
|
private validatorOnChange;
|
|
145
155
|
private updateLocaleParams;
|
|
146
156
|
static ɵfac: i0.ɵɵFactoryDeclaration<KbqTimepicker<any>, [null, null, { optional: true; }, { optional: true; }]>;
|
|
147
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<KbqTimepicker<any>, "input[kbqTimepicker]", ["kbqTimepicker"], { "placeholder": { "alias": "placeholder"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "id": { "alias": "id"; "required": false; }; "required": { "alias": "required"; "required": false; }; "format": { "alias": "format"; "required": false; }; "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "required": false; }; "value": { "alias": "value"; "required": false; }; "kbqValidationTooltip": { "alias": "kbqValidationTooltip"; "required": false; }; }, { "incorrectInput": "incorrectInput"; }, never, never, false, never>;
|
|
157
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<KbqTimepicker<any>, "input[kbqTimepicker]", ["kbqTimepicker"], { "errorStateMatcher": { "alias": "errorStateMatcher"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "id": { "alias": "id"; "required": false; }; "required": { "alias": "required"; "required": false; }; "format": { "alias": "format"; "required": false; }; "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "required": false; }; "value": { "alias": "value"; "required": false; }; "kbqValidationTooltip": { "alias": "kbqValidationTooltip"; "required": false; }; }, { "incorrectInput": "incorrectInput"; }, never, never, false, never>;
|
|
148
158
|
}
|
|
@@ -9,7 +9,6 @@
|
|
|
9
9
|
|
|
10
10
|
& .kbq-tooltip__arrow {
|
|
11
11
|
background-color: var(--kbq-tooltip-#{$style-name}-background);
|
|
12
|
-
box-shadow: var(--kbq-tooltip-borderless-shadow);
|
|
13
12
|
}
|
|
14
13
|
|
|
15
14
|
&.kbq-tooltip_arrowless {
|
|
@@ -18,11 +17,6 @@
|
|
|
18
17
|
}
|
|
19
18
|
|
|
20
19
|
@mixin kbq-tooltip-theme() {
|
|
21
|
-
.kbq-tooltip,
|
|
22
|
-
.kbq-tooltip__arrow {
|
|
23
|
-
box-shadow: var(--kbq-tooltip-borderless-shadow);
|
|
24
|
-
}
|
|
25
|
-
|
|
26
20
|
.kbq-tooltip.kbq-theme {
|
|
27
21
|
@include kbq-tooltip-color(theme-fade-off);
|
|
28
22
|
}
|
|
@@ -33,6 +27,11 @@
|
|
|
33
27
|
|
|
34
28
|
.kbq-tooltip.kbq-contrast-fade {
|
|
35
29
|
@include kbq-tooltip-color(contrast-fade-on);
|
|
30
|
+
|
|
31
|
+
&.kbq-tooltip,
|
|
32
|
+
& .kbq-tooltip__arrow {
|
|
33
|
+
box-shadow: var(--kbq-shadow-popup);
|
|
34
|
+
}
|
|
36
35
|
}
|
|
37
36
|
|
|
38
37
|
.kbq-tooltip.kbq-warning {
|