@koobiq/components 18.14.0 → 18.16.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/LICENSE +1 -1
- package/autocomplete/autocomplete.component.d.ts +5 -2
- package/button-toggle/_button-toggle-theme.scss +0 -4
- package/button-toggle/button-toggle-tokens.scss +1 -4
- package/button-toggle/button-toggle.scss +11 -0
- package/core/option/_option-theme.scss +7 -5
- package/core/pop-up/focus-trap-strategy.d.ts +5 -0
- package/core/pop-up/index.d.ts +1 -0
- package/core/pop-up/pop-up-trigger.d.ts +1 -0
- package/core/select/common.d.ts +17 -0
- package/core/select/constants.d.ts +0 -18
- package/datepicker/calendar-header.component.d.ts +2 -8
- package/esm2022/autocomplete/autocomplete.component.mjs +18 -6
- package/esm2022/button-toggle/button-toggle.component.mjs +2 -2
- package/esm2022/core/option/option.mjs +2 -2
- package/esm2022/core/pop-up/focus-trap-strategy.mjs +6 -0
- package/esm2022/core/pop-up/index.mjs +2 -1
- package/esm2022/core/pop-up/pop-up-trigger.mjs +5 -1
- package/esm2022/core/select/common.mjs +63 -1
- package/esm2022/core/select/constants.mjs +1 -19
- package/esm2022/core/version.mjs +2 -2
- package/esm2022/datepicker/calendar-header.component.mjs +5 -8
- package/esm2022/form-field/form-field.mjs +10 -4
- package/esm2022/form-field/validate.directive.mjs +3 -2
- package/esm2022/list/list-selection.component.mjs +17 -9
- package/esm2022/list/list.component.mjs +2 -2
- package/esm2022/markdown/markdown.service.mjs +12 -3
- package/esm2022/modal/modal.component.mjs +4 -3
- package/esm2022/popover/popover.component.mjs +13 -4
- package/esm2022/popover/popover.module.mjs +7 -4
- package/esm2022/radio/radio.component.mjs +2 -2
- package/esm2022/select/select.component.mjs +11 -82
- package/esm2022/select/select.module.mjs +8 -4
- package/esm2022/tabs/tab-header.component.mjs +2 -2
- package/esm2022/tabs/tab-nav-bar.mjs +3 -3
- package/esm2022/timezone/timezone-option.component.mjs +2 -2
- package/esm2022/timezone/timezone-select.component.mjs +4 -3
- package/esm2022/timezone/timezone.module.mjs +8 -4
- package/esm2022/tooltip/tooltip.component.mjs +2 -2
- package/esm2022/tree/toggle.mjs +2 -2
- package/esm2022/tree/tree-selection.component.mjs +13 -4
- package/esm2022/tree/tree.mjs +2 -2
- package/esm2022/tree-select/tree-select.component.mjs +27 -60
- package/esm2022/tree-select/tree-select.module.mjs +8 -4
- package/fesm2022/koobiq-components-autocomplete.mjs +20 -10
- package/fesm2022/koobiq-components-autocomplete.mjs.map +1 -1
- package/fesm2022/koobiq-components-button-toggle.mjs +2 -2
- package/fesm2022/koobiq-components-button-toggle.mjs.map +1 -1
- package/fesm2022/koobiq-components-core.mjs +90 -37
- package/fesm2022/koobiq-components-core.mjs.map +1 -1
- package/fesm2022/koobiq-components-datepicker.mjs +4 -7
- package/fesm2022/koobiq-components-datepicker.mjs.map +1 -1
- package/fesm2022/koobiq-components-form-field.mjs +11 -4
- package/fesm2022/koobiq-components-form-field.mjs.map +1 -1
- package/fesm2022/koobiq-components-list.mjs +19 -12
- package/fesm2022/koobiq-components-list.mjs.map +1 -1
- package/fesm2022/koobiq-components-markdown.mjs +11 -2
- package/fesm2022/koobiq-components-markdown.mjs.map +1 -1
- package/fesm2022/koobiq-components-modal.mjs +3 -2
- package/fesm2022/koobiq-components-modal.mjs.map +1 -1
- package/fesm2022/koobiq-components-popover.mjs +18 -8
- package/fesm2022/koobiq-components-popover.mjs.map +1 -1
- package/fesm2022/koobiq-components-radio.mjs +2 -2
- package/fesm2022/koobiq-components-radio.mjs.map +1 -1
- package/fesm2022/koobiq-components-select.mjs +17 -84
- package/fesm2022/koobiq-components-select.mjs.map +1 -1
- package/fesm2022/koobiq-components-tabs.mjs +4 -4
- package/fesm2022/koobiq-components-tabs.mjs.map +1 -1
- package/fesm2022/koobiq-components-timezone.mjs +12 -7
- package/fesm2022/koobiq-components-timezone.mjs.map +1 -1
- package/fesm2022/koobiq-components-tooltip.mjs +1 -1
- package/fesm2022/koobiq-components-tooltip.mjs.map +1 -1
- package/fesm2022/koobiq-components-tree-select.mjs +32 -61
- package/fesm2022/koobiq-components-tree-select.mjs.map +1 -1
- package/fesm2022/koobiq-components-tree.mjs +15 -6
- package/fesm2022/koobiq-components-tree.mjs.map +1 -1
- package/form-field/_form-field-theme.scss +23 -10
- package/form-field/form-field.d.ts +3 -1
- package/form-field/validate.directive.d.ts +1 -1
- package/link/_link-theme.scss +6 -4
- package/list/_list-theme.scss +6 -4
- package/list/list-selection.component.d.ts +12 -8
- package/markdown/markdown.service.d.ts +11 -2
- package/modal/_modal-theme.scss +1 -1
- package/modal/modal.scss +1 -1
- package/package.json +6 -6
- package/popover/popover.component.d.ts +4 -0
- package/prebuilt-themes/dark-theme.css +1 -1
- package/prebuilt-themes/light-theme.css +1 -1
- package/prebuilt-themes/theme.css +1 -1
- package/radio/_radio-theme.scss +12 -2
- package/schematics/ng-add/index.js +5 -18
- package/select/select.component.d.ts +3 -16
- package/select/select.module.d.ts +2 -1
- package/tabs/_tabs-common.scss +28 -0
- package/tabs/tab-header.scss +0 -28
- package/timezone/timezone.module.d.ts +2 -1
- package/tree/_tree-theme.scss +10 -7
- package/tree/tree-selection.component.d.ts +6 -2
- package/tree-select/tree-select.component.d.ts +5 -16
- package/tree-select/tree-select.module.d.ts +2 -1
package/tabs/_tabs-common.scss
CHANGED
|
@@ -111,4 +111,32 @@
|
|
|
111
111
|
display: flex;
|
|
112
112
|
}
|
|
113
113
|
}
|
|
114
|
+
|
|
115
|
+
.kbq-tab-header_underlined:not(.kbq-tab-header_vertical) .kbq-tab-list__content {
|
|
116
|
+
padding: 8px 0;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
.kbq-tab-header_underlined:not(.kbq-tab-header_vertical):after {
|
|
120
|
+
content: '';
|
|
121
|
+
position: absolute;
|
|
122
|
+
left: 0;
|
|
123
|
+
bottom: 0;
|
|
124
|
+
right: 0;
|
|
125
|
+
height: 1px;
|
|
126
|
+
background: var(--kbq-line-contrast-less);
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
.kbq-tab-list__active-tab-underline {
|
|
130
|
+
display: none;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
.kbq-tab-header_underlined:not(.kbq-tab-header_vertical) .kbq-tab-list__active-tab-underline {
|
|
134
|
+
display: block;
|
|
135
|
+
position: absolute;
|
|
136
|
+
bottom: 0;
|
|
137
|
+
height: 3px;
|
|
138
|
+
border-radius: 2px 2px 0 0;
|
|
139
|
+
background: var(--kbq-line-contrast);
|
|
140
|
+
transition: all 0.2s ease-in-out;
|
|
141
|
+
}
|
|
114
142
|
}
|
package/tabs/tab-header.scss
CHANGED
|
@@ -26,34 +26,6 @@
|
|
|
26
26
|
flex-direction: column;
|
|
27
27
|
}
|
|
28
28
|
|
|
29
|
-
.kbq-tab-header_underlined:not(.kbq-tab-header_vertical) .kbq-tab-list__content {
|
|
30
|
-
padding: 8px 0;
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
.kbq-tab-header_underlined:not(.kbq-tab-header_vertical):after {
|
|
34
|
-
content: '';
|
|
35
|
-
position: absolute;
|
|
36
|
-
left: 0;
|
|
37
|
-
bottom: 0;
|
|
38
|
-
right: 0;
|
|
39
|
-
height: 1px;
|
|
40
|
-
background: var(--kbq-line-contrast-less);
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
.kbq-tab-list__active-tab-underline {
|
|
44
|
-
display: none;
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
.kbq-tab-header_underlined:not(.kbq-tab-header_vertical) .kbq-tab-list__active-tab-underline {
|
|
48
|
-
display: block;
|
|
49
|
-
position: absolute;
|
|
50
|
-
bottom: 0;
|
|
51
|
-
height: 3px;
|
|
52
|
-
border-radius: 2px 2px 0 0;
|
|
53
|
-
background: var(--kbq-line-contrast);
|
|
54
|
-
transition: all 0.2s ease-in-out;
|
|
55
|
-
}
|
|
56
|
-
|
|
57
29
|
.kbq-tab-header__container {
|
|
58
30
|
display: flex;
|
|
59
31
|
flex-grow: 1;
|
|
@@ -12,8 +12,9 @@ import * as i10 from "@koobiq/components/icon";
|
|
|
12
12
|
import * as i11 from "@koobiq/components/tags";
|
|
13
13
|
import * as i12 from "@koobiq/components/tooltip";
|
|
14
14
|
import * as i13 from "@angular/common";
|
|
15
|
+
import * as i14 from "@angular/cdk/a11y";
|
|
15
16
|
export declare class KbqTimezoneModule {
|
|
16
17
|
static ɵfac: i0.ɵɵFactoryDeclaration<KbqTimezoneModule, never>;
|
|
17
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<KbqTimezoneModule, [typeof i1.UtcOffsetPipe, typeof i2.CitiesByFilterPipe, typeof i3.KbqTimezoneSelect, typeof i4.KbqTimezoneOption, typeof i5.KbqTimezoneOptionTooltip, typeof i3.KbqTimezoneSelectTrigger], [typeof i6.OverlayModule, typeof i7.KbqFormFieldModule, typeof i8.KbqOptionModule, typeof i9.KbqSelectModule, typeof i10.KbqIconModule, typeof i11.KbqTagsModule, typeof i12.KbqToolTipModule, typeof i8.KbqHighlightModule, typeof i13.NgClass, typeof i13.KeyValuePipe], [typeof i3.KbqTimezoneSelect, typeof i4.KbqTimezoneOption, typeof i5.KbqTimezoneOptionTooltip, typeof i3.KbqTimezoneSelectTrigger]>;
|
|
18
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<KbqTimezoneModule, [typeof i1.UtcOffsetPipe, typeof i2.CitiesByFilterPipe, typeof i3.KbqTimezoneSelect, typeof i4.KbqTimezoneOption, typeof i5.KbqTimezoneOptionTooltip, typeof i3.KbqTimezoneSelectTrigger], [typeof i6.OverlayModule, typeof i7.KbqFormFieldModule, typeof i8.KbqOptionModule, typeof i9.KbqSelectModule, typeof i10.KbqIconModule, typeof i11.KbqTagsModule, typeof i12.KbqToolTipModule, typeof i8.KbqHighlightModule, typeof i13.NgClass, typeof i13.KeyValuePipe, typeof i14.A11yModule], [typeof i3.KbqTimezoneSelect, typeof i4.KbqTimezoneOption, typeof i5.KbqTimezoneOptionTooltip, typeof i3.KbqTimezoneSelectTrigger]>;
|
|
18
19
|
static ɵinj: i0.ɵɵInjectorDeclaration<KbqTimezoneModule>;
|
|
19
20
|
}
|
package/tree/_tree-theme.scss
CHANGED
|
@@ -24,8 +24,10 @@
|
|
|
24
24
|
}
|
|
25
25
|
|
|
26
26
|
@mixin kbq-tree-theme() {
|
|
27
|
-
.kbq-tree-selection
|
|
28
|
-
|
|
27
|
+
.kbq-tree-selection {
|
|
28
|
+
&:focus {
|
|
29
|
+
outline: none;
|
|
30
|
+
}
|
|
29
31
|
}
|
|
30
32
|
|
|
31
33
|
.kbq-tree-option {
|
|
@@ -35,11 +37,6 @@
|
|
|
35
37
|
@include kbq-tree-option(states-hover);
|
|
36
38
|
}
|
|
37
39
|
|
|
38
|
-
&.kbq-focused,
|
|
39
|
-
&.kbq-active {
|
|
40
|
-
border-color: var(--kbq-tree-states-focused-focus-outline-color);
|
|
41
|
-
}
|
|
42
|
-
|
|
43
40
|
&.kbq-selected {
|
|
44
41
|
@include kbq-tree-option(states-selected);
|
|
45
42
|
|
|
@@ -56,6 +53,12 @@
|
|
|
56
53
|
}
|
|
57
54
|
}
|
|
58
55
|
}
|
|
56
|
+
|
|
57
|
+
.cdk-keyboard-focused {
|
|
58
|
+
& .kbq-tree-option.kbq-focused {
|
|
59
|
+
border-color: var(--kbq-tree-states-focused-focus-outline-color);
|
|
60
|
+
}
|
|
61
|
+
}
|
|
59
62
|
}
|
|
60
63
|
|
|
61
64
|
@mixin kbq-tree-typography() {
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
+
import { FocusMonitor } from '@angular/cdk/a11y';
|
|
1
2
|
import { Clipboard } from '@angular/cdk/clipboard';
|
|
2
3
|
import { SelectionModel } from '@angular/cdk/collections';
|
|
3
|
-
import { AfterContentInit, ChangeDetectorRef, ElementRef, EventEmitter, IterableDiffer, IterableDiffers, QueryList, ViewContainerRef } from '@angular/core';
|
|
4
|
+
import { AfterContentInit, AfterViewInit, ChangeDetectorRef, ElementRef, EventEmitter, IterableDiffer, IterableDiffers, OnDestroy, QueryList, ViewContainerRef } from '@angular/core';
|
|
4
5
|
import { ControlValueAccessor } from '@angular/forms';
|
|
5
6
|
import { FocusKeyManager } from '@koobiq/cdk/a11y';
|
|
6
7
|
import { CanDisable, HasTabIndex, MultipleMode } from '@koobiq/components/core';
|
|
@@ -36,10 +37,11 @@ interface SelectionModelOption {
|
|
|
36
37
|
id: number | string;
|
|
37
38
|
value: string;
|
|
38
39
|
}
|
|
39
|
-
export declare class KbqTreeSelection extends KbqTreeBase<any> implements ControlValueAccessor, AfterContentInit, CanDisable, HasTabIndex {
|
|
40
|
+
export declare class KbqTreeSelection extends KbqTreeBase<any> implements ControlValueAccessor, AfterContentInit, AfterViewInit, OnDestroy, CanDisable, HasTabIndex {
|
|
40
41
|
private elementRef;
|
|
41
42
|
private scheduler;
|
|
42
43
|
private clipboard;
|
|
44
|
+
protected readonly focusMonitor: FocusMonitor;
|
|
43
45
|
renderedOptions: QueryList<KbqTreeOption>;
|
|
44
46
|
keyManager: FocusKeyManager<KbqTreeOption>;
|
|
45
47
|
selectionModel: SelectionModel<SelectionModelOption>;
|
|
@@ -75,7 +77,9 @@ export declare class KbqTreeSelection extends KbqTreeBase<any> implements Contro
|
|
|
75
77
|
private optionFocusSubscription;
|
|
76
78
|
private optionBlurSubscription;
|
|
77
79
|
constructor(elementRef: ElementRef, scheduler: AsyncScheduler, differs: IterableDiffers, changeDetectorRef: ChangeDetectorRef, multiple: MultipleMode, clipboard: Clipboard);
|
|
80
|
+
ngAfterViewInit(): void;
|
|
78
81
|
ngAfterContentInit(): void;
|
|
82
|
+
ngOnDestroy(): void;
|
|
79
83
|
focus($event: any): void;
|
|
80
84
|
highlightSelectedOption(): void;
|
|
81
85
|
blur(): void;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { Directionality } from '@angular/cdk/bidi';
|
|
2
2
|
import { SelectionModel } from '@angular/cdk/collections';
|
|
3
|
-
import { CdkConnectedOverlay, CdkOverlayOrigin, ConnectedPosition
|
|
3
|
+
import { CdkConnectedOverlay, CdkOverlayOrigin, ConnectedPosition } from '@angular/cdk/overlay';
|
|
4
4
|
import { AfterContentInit, AfterViewInit, ChangeDetectorRef, DoCheck, ElementRef, EventEmitter, InjectionToken, NgZone, OnChanges, OnDestroy, OnInit, Provider, QueryList, Renderer2, SimpleChanges, TemplateRef } from '@angular/core';
|
|
5
5
|
import { ControlValueAccessor, FormGroupDirective, NgControl, NgForm } from '@angular/forms';
|
|
6
|
-
import { CanDisable, CanDisableCtor, CanUpdateErrorState, CanUpdateErrorStateCtor, ErrorStateMatcher, HasTabIndex, HasTabIndexCtor, KbqLocaleService, KbqSelectMatcher, KbqSelectSearch, KbqSelectTrigger } from '@koobiq/components/core';
|
|
6
|
+
import { CanDisable, CanDisableCtor, CanUpdateErrorState, CanUpdateErrorStateCtor, ErrorStateMatcher, HasTabIndex, HasTabIndexCtor, KbqAbstractSelect, KbqLocaleService, KbqSelectMatcher, KbqSelectSearch, KbqSelectTrigger } from '@koobiq/components/core';
|
|
7
7
|
import { KbqCleaner, KbqFormField, KbqFormFieldControl } from '@koobiq/components/form-field';
|
|
8
8
|
import { KbqTag } from '@koobiq/components/tags';
|
|
9
9
|
import { KbqTreeOption, KbqTreeSelection } from '@koobiq/components/tree';
|
|
@@ -46,7 +46,7 @@ export declare class KbqTreeSelectChange {
|
|
|
46
46
|
constructor(source: KbqTreeSelect, value: any, isUserInput?: boolean);
|
|
47
47
|
}
|
|
48
48
|
/** @docs-private */
|
|
49
|
-
declare class KbqTreeSelectBase {
|
|
49
|
+
declare class KbqTreeSelectBase extends KbqAbstractSelect {
|
|
50
50
|
elementRef: ElementRef;
|
|
51
51
|
defaultErrorStateMatcher: ErrorStateMatcher;
|
|
52
52
|
parentForm: NgForm;
|
|
@@ -64,7 +64,6 @@ declare class KbqTreeSelectBase {
|
|
|
64
64
|
declare const KbqTreeSelectMixinBase: CanDisableCtor & HasTabIndexCtor & CanUpdateErrorStateCtor & typeof KbqTreeSelectBase;
|
|
65
65
|
export declare class KbqTreeSelect extends KbqTreeSelectMixinBase implements AfterContentInit, AfterViewInit, OnChanges, OnDestroy, OnInit, DoCheck, ControlValueAccessor, CanDisable, HasTabIndex, KbqFormFieldControl<KbqTreeOption>, CanUpdateErrorState {
|
|
66
66
|
readonly changeDetectorRef: ChangeDetectorRef;
|
|
67
|
-
private readonly viewportRuler;
|
|
68
67
|
private readonly ngZone;
|
|
69
68
|
private readonly renderer;
|
|
70
69
|
private readonly scrollStrategyFactory;
|
|
@@ -177,8 +176,6 @@ export declare class KbqTreeSelect extends KbqTreeSelectMixinBase implements Aft
|
|
|
177
176
|
protected overlayWidth: string | number;
|
|
178
177
|
/** Min width of the overlay panel. */
|
|
179
178
|
protected overlayMinWidth: string | number;
|
|
180
|
-
/** Overlay panel class. */
|
|
181
|
-
protected readonly overlayPanelClass = "kbq-select-overlay";
|
|
182
179
|
/** Origin for the overlay panel. */
|
|
183
180
|
protected overlayOrigin?: CdkOverlayOrigin | ElementRef;
|
|
184
181
|
/**
|
|
@@ -199,7 +196,7 @@ export declare class KbqTreeSelect extends KbqTreeSelectMixinBase implements Aft
|
|
|
199
196
|
private readonly uid;
|
|
200
197
|
private tempValues;
|
|
201
198
|
private readonly destroyRef;
|
|
202
|
-
constructor(elementRef: ElementRef, changeDetectorRef: ChangeDetectorRef,
|
|
199
|
+
constructor(elementRef: ElementRef, changeDetectorRef: ChangeDetectorRef, ngZone: NgZone, renderer: Renderer2, defaultErrorStateMatcher: ErrorStateMatcher, scrollStrategyFactory: any, dir: Directionality, parentForm: NgForm, parentFormGroup: FormGroupDirective, parentFormField: KbqFormField, ngControl: NgControl, localeService?: KbqLocaleService | undefined);
|
|
203
200
|
ngOnInit(): void;
|
|
204
201
|
ngAfterContentInit(): void;
|
|
205
202
|
ngAfterViewInit(): void;
|
|
@@ -298,16 +295,8 @@ export declare class KbqTreeSelect extends KbqTreeSelectMixinBase implements Aft
|
|
|
298
295
|
private highlightCorrectOption;
|
|
299
296
|
/** Scrolls the active option into view. */
|
|
300
297
|
private scrollActiveOptionIntoView;
|
|
301
|
-
/**
|
|
302
|
-
* Sets the x-offset of the overlay panel in relation to the trigger's top start corner.
|
|
303
|
-
* This must be adjusted to align the selected option text over the trigger text when
|
|
304
|
-
* the panel opens. Will change based on LTR or RTL text direction. Note that the offset
|
|
305
|
-
* can't be calculated until the panel has been attached, because we need to know the
|
|
306
|
-
* content width in order to constrain the panel within the viewport.
|
|
307
|
-
*/
|
|
308
|
-
private calculateOverlayOffsetX;
|
|
309
298
|
private subscribeOnSearchChanges;
|
|
310
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<KbqTreeSelect, [null, null, null, null, null, null,
|
|
299
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<KbqTreeSelect, [null, null, null, null, null, null, { optional: true; }, { optional: true; }, { optional: true; }, { optional: true; host: true; }, { optional: true; self: true; }, { optional: true; }]>;
|
|
311
300
|
static ɵcmp: i0.ɵɵComponentDeclaration<KbqTreeSelect, "kbq-tree-select", ["kbqTreeSelect"], { "disabled": { "alias": "disabled"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; "hiddenItemsText": { "alias": "hiddenItemsText"; "required": false; }; "panelClass": { "alias": "panelClass"; "required": false; }; "backdropClass": { "alias": "backdropClass"; "required": false; }; "errorStateMatcher": { "alias": "errorStateMatcher"; "required": false; }; "sortComparator": { "alias": "sortComparator"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "required": { "alias": "required"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "autoSelect": { "alias": "autoSelect"; "required": false; }; "id": { "alias": "id"; "required": false; }; "hasBackdrop": { "alias": "hasBackdrop"; "required": false; }; "panelWidth": { "alias": "panelWidth"; "required": false; }; "hiddenItemsTextFormatter": { "alias": "hiddenItemsTextFormatter"; "required": false; }; }, { "openedChange": "openedChange"; "openedStream": "opened"; "closedStream": "closed"; "selectionChange": "selectionChange"; "valueChange": "valueChange"; }, ["cleaner", "customTrigger", "customMatcher", "customTagTemplateRef", "tree", "search"], ["kbq-select-matcher, [kbq-select-matcher]", "kbq-select-trigger", "kbq-cleaner", "[kbqSelectSearch]", "[kbq-select-search-empty-result]", "kbq-tree-selection", "kbq-select-footer,[kbq-tree-select-footer]"], false, never>;
|
|
312
301
|
}
|
|
313
302
|
export {};
|
|
@@ -6,8 +6,9 @@ import * as i4 from "@koobiq/components/icon";
|
|
|
6
6
|
import * as i5 from "@koobiq/components/tags";
|
|
7
7
|
import * as i6 from "@koobiq/components/core";
|
|
8
8
|
import * as i7 from "@angular/common";
|
|
9
|
+
import * as i8 from "@angular/cdk/a11y";
|
|
9
10
|
export declare class KbqTreeSelectModule {
|
|
10
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<KbqTreeSelectModule, never>;
|
|
11
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<KbqTreeSelectModule, [typeof i1.KbqTreeSelect], [typeof i2.OverlayModule, typeof i3.KbqTreeModule, typeof i4.KbqIconModule, typeof i5.KbqTagsModule, typeof i6.KbqPseudoCheckboxModule, typeof i6.KbqSelectSearch, typeof i6.KbqSelectFooter, typeof i6.KbqSelectMatcher, typeof i6.KbqSelectTrigger, typeof i6.KbqSelectSearchEmptyResult, typeof i7.NgClass, typeof i7.NgTemplateOutlet], [typeof i1.KbqTreeSelect, typeof i6.KbqSelectSearch, typeof i6.KbqSelectFooter, typeof i6.KbqSelectMatcher, typeof i6.KbqSelectTrigger, typeof i6.KbqSelectSearchEmptyResult]>;
|
|
12
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<KbqTreeSelectModule, [typeof i1.KbqTreeSelect], [typeof i2.OverlayModule, typeof i3.KbqTreeModule, typeof i4.KbqIconModule, typeof i5.KbqTagsModule, typeof i6.KbqPseudoCheckboxModule, typeof i6.KbqSelectSearch, typeof i6.KbqSelectFooter, typeof i6.KbqSelectMatcher, typeof i6.KbqSelectTrigger, typeof i6.KbqSelectSearchEmptyResult, typeof i7.NgClass, typeof i7.NgTemplateOutlet, typeof i8.A11yModule], [typeof i1.KbqTreeSelect, typeof i6.KbqSelectSearch, typeof i6.KbqSelectFooter, typeof i6.KbqSelectMatcher, typeof i6.KbqSelectTrigger, typeof i6.KbqSelectSearchEmptyResult]>;
|
|
12
13
|
static ɵinj: i0.ɵɵInjectorDeclaration<KbqTreeSelectModule>;
|
|
13
14
|
}
|