@progress/kendo-angular-dropdowns 25.0.0-develop.2 → 25.0.0-develop.3
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.
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import * as i0 from '@angular/core';
|
|
6
|
-
import { EventEmitter, Output, HostBinding, Input, Component, Directive, Injectable, HostListener, ViewChild, ViewChildren, forwardRef, isDevMode, ViewContainerRef, ContentChild, ContentChildren, ChangeDetectionStrategy, NgModule } from '@angular/core';
|
|
6
|
+
import { EventEmitter, Output, HostBinding, Input, Component, Directive, Injectable, HostListener, ViewChild, ViewChildren, forwardRef, isDevMode, ViewContainerRef, ContentChild, ContentChildren, signal, ChangeDetectionStrategy, NgModule } from '@angular/core';
|
|
7
7
|
import * as i10 from '@progress/kendo-angular-common';
|
|
8
8
|
import { isDocumentAvailable, isObjectPresent, removeHTMLAttributes, parseAttributes, isSafari, normalizeKeys, Keys, setHTMLAttributes, replaceMessagePlaceholder, isChanged, TemplateContextDirective, ResizeSensorComponent, closest as closest$1, hasFocusableParent, parseCSSClassNames, isControlRequired, guid, hasObservers, SeparatorComponent, SuffixTemplateDirective, PrefixTemplateDirective, KendoInput, KENDO_WEBMCP_HOST, MultiTabStop, anyChanged, EventsOutsideAngularDirective, scrollbarWidth, ToggleButtonTabStopDirective, ResizeBatchService, KENDO_ADORNMENTS, KENDO_TOGGLEBUTTONTABSTOP } from '@progress/kendo-angular-common';
|
|
9
9
|
export { PrefixTemplateDirective, SeparatorComponent, SuffixTemplateDirective, ToggleButtonTabStopDirective } from '@progress/kendo-angular-common';
|
|
@@ -37,8 +37,8 @@ const packageMetadata = {
|
|
|
37
37
|
productName: 'Kendo UI for Angular',
|
|
38
38
|
productCode: 'KENDOUIANGULAR',
|
|
39
39
|
productCodes: ['KENDOUIANGULAR'],
|
|
40
|
-
publishDate:
|
|
41
|
-
version: '25.0.0-develop.
|
|
40
|
+
publishDate: 1783692542,
|
|
41
|
+
version: '25.0.0-develop.3',
|
|
42
42
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
43
43
|
};
|
|
44
44
|
|
|
@@ -702,7 +702,7 @@ class SearchBarComponent {
|
|
|
702
702
|
}
|
|
703
703
|
setInputAttributes() {
|
|
704
704
|
const attributesToRender = Object.assign({}, this.mutableAttributes, this.parsedAttributes);
|
|
705
|
-
setHTMLAttributes(attributesToRender, this.renderer, this.input.nativeElement, this.
|
|
705
|
+
setHTMLAttributes(attributesToRender, this.renderer, this.input.nativeElement, this.injector);
|
|
706
706
|
}
|
|
707
707
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.25", ngImport: i0, type: SearchBarComponent, deps: [{ token: i1.LocalizationService }, { token: i0.Renderer2 }, { token: i0.Injector }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
708
708
|
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.25", type: SearchBarComponent, isStandalone: true, selector: "input[kendoSearchbar]", inputs: { tagListId: "tagListId", readonly: "readonly", disabled: "disabled", isRequired: "isRequired", isSuggestable: "isSuggestable", isFilterable: "isFilterable", userInput: "userInput", suggestedText: "suggestedText", inputAttributes: "inputAttributes", id: "id", activeDescendant: "activeDescendant", tabIndex: "tabIndex", isLoading: "isLoading", ariaControls: "ariaControls", ariaExpanded: "ariaExpanded", placeholder: "placeholder" }, outputs: { valueChange: "valueChange", onBlur: "onBlur", onFocus: "onFocus", onClick: "onClick", onNavigate: "onNavigate" }, host: { properties: { "attr.id": "this.id", "attr.aria-activedescendant": "this.activeDescendant", "attr.tabindex": "this.tabIndex", "attr.aria-busy": "this.isLoading", "attr.aria-controls": "this.ariaControls", "attr.aria-expanded": "this.ariaExpanded", "attr.aria-invalid": "this.attrAriaInvalid", "attr.placeholder": "this.placeholder", "attr.role": "this.role", "attr.dir": "this.dir" } }, usesOnChanges: true, ngImport: i0, template: ``, isInline: true });
|
|
@@ -13337,7 +13337,12 @@ class DropDownTreeComponent {
|
|
|
13337
13337
|
get isFilterActive() {
|
|
13338
13338
|
return this.filterInput && document.activeElement === this.filterInput.nativeElement;
|
|
13339
13339
|
}
|
|
13340
|
-
popupRef
|
|
13340
|
+
set popupRef(value) {
|
|
13341
|
+
this._popupRef.set(value);
|
|
13342
|
+
}
|
|
13343
|
+
get popupRef() {
|
|
13344
|
+
return this._popupRef();
|
|
13345
|
+
}
|
|
13341
13346
|
/**
|
|
13342
13347
|
* @hidden
|
|
13343
13348
|
*/
|
|
@@ -13492,6 +13497,7 @@ class DropDownTreeComponent {
|
|
|
13492
13497
|
_size;
|
|
13493
13498
|
_rounded;
|
|
13494
13499
|
_fillMode;
|
|
13500
|
+
_popupRef = signal(null, ...(ngDevMode ? [{ debugName: "_popupRef" }] : []));
|
|
13495
13501
|
_searchableNodes = [];
|
|
13496
13502
|
_typedValue = '';
|
|
13497
13503
|
printableCharacters = new Subject();
|
package/index.d.ts
CHANGED
|
@@ -3919,7 +3919,8 @@ declare class DropDownTreeComponent implements OnInit, OnDestroy, OnChanges, Aft
|
|
|
3919
3919
|
get isOpen(): boolean;
|
|
3920
3920
|
get clearButtonVisibility(): string;
|
|
3921
3921
|
private get isFilterActive();
|
|
3922
|
-
popupRef: PopupRef;
|
|
3922
|
+
set popupRef(value: PopupRef);
|
|
3923
|
+
get popupRef(): PopupRef;
|
|
3923
3924
|
/**
|
|
3924
3925
|
* @hidden
|
|
3925
3926
|
*/
|
|
@@ -4041,6 +4042,7 @@ declare class DropDownTreeComponent implements OnInit, OnDestroy, OnChanges, Aft
|
|
|
4041
4042
|
private _size;
|
|
4042
4043
|
private _rounded;
|
|
4043
4044
|
private _fillMode;
|
|
4045
|
+
private _popupRef;
|
|
4044
4046
|
private _searchableNodes;
|
|
4045
4047
|
private _typedValue;
|
|
4046
4048
|
private printableCharacters;
|
package/package-metadata.mjs
CHANGED
|
@@ -7,7 +7,7 @@ export const packageMetadata = {
|
|
|
7
7
|
"productCodes": [
|
|
8
8
|
"KENDOUIANGULAR"
|
|
9
9
|
],
|
|
10
|
-
"publishDate":
|
|
11
|
-
"version": "25.0.0-develop.
|
|
10
|
+
"publishDate": 1783692542,
|
|
11
|
+
"version": "25.0.0-develop.3",
|
|
12
12
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
13
13
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-dropdowns",
|
|
3
|
-
"version": "25.0.0-develop.
|
|
3
|
+
"version": "25.0.0-develop.3",
|
|
4
4
|
"description": "A wide variety of native Angular dropdown components including AutoComplete, ComboBox, DropDownList, DropDownTree, MultiColumnComboBox, MultiSelect, and MultiSelectTree ",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -121,7 +121,7 @@
|
|
|
121
121
|
"package": {
|
|
122
122
|
"productName": "Kendo UI for Angular",
|
|
123
123
|
"productCode": "KENDOUIANGULAR",
|
|
124
|
-
"publishDate":
|
|
124
|
+
"publishDate": 1783692542,
|
|
125
125
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
126
126
|
}
|
|
127
127
|
},
|
|
@@ -132,18 +132,18 @@
|
|
|
132
132
|
"@angular/forms": "20 - 22",
|
|
133
133
|
"@angular/platform-browser": "20 - 22",
|
|
134
134
|
"@progress/kendo-licensing": "^1.11.0",
|
|
135
|
-
"@progress/kendo-angular-common": "25.0.0-develop.
|
|
136
|
-
"@progress/kendo-angular-utils": "25.0.0-develop.
|
|
137
|
-
"@progress/kendo-angular-l10n": "25.0.0-develop.
|
|
138
|
-
"@progress/kendo-angular-navigation": "25.0.0-develop.
|
|
139
|
-
"@progress/kendo-angular-popup": "25.0.0-develop.
|
|
140
|
-
"@progress/kendo-angular-icons": "25.0.0-develop.
|
|
141
|
-
"@progress/kendo-angular-treeview": "25.0.0-develop.
|
|
135
|
+
"@progress/kendo-angular-common": "25.0.0-develop.3",
|
|
136
|
+
"@progress/kendo-angular-utils": "25.0.0-develop.3",
|
|
137
|
+
"@progress/kendo-angular-l10n": "25.0.0-develop.3",
|
|
138
|
+
"@progress/kendo-angular-navigation": "25.0.0-develop.3",
|
|
139
|
+
"@progress/kendo-angular-popup": "25.0.0-develop.3",
|
|
140
|
+
"@progress/kendo-angular-icons": "25.0.0-develop.3",
|
|
141
|
+
"@progress/kendo-angular-treeview": "25.0.0-develop.3",
|
|
142
142
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
143
143
|
},
|
|
144
144
|
"dependencies": {
|
|
145
145
|
"tslib": "^2.3.1",
|
|
146
|
-
"@progress/kendo-angular-schematics": "25.0.0-develop.
|
|
146
|
+
"@progress/kendo-angular-schematics": "25.0.0-develop.3",
|
|
147
147
|
"@progress/kendo-common": "^1.0.1"
|
|
148
148
|
},
|
|
149
149
|
"schematics": "./schematics/collection.json",
|
|
@@ -9,9 +9,9 @@ const schematics_1 = require("@angular-devkit/schematics");
|
|
|
9
9
|
function default_1(options) {
|
|
10
10
|
const finalOptions = Object.assign(Object.assign({}, options), { mainNgModule: 'DropDownsModule', package: 'dropdowns', peerDependencies: {
|
|
11
11
|
// peers of the treeview
|
|
12
|
-
'@progress/kendo-angular-inputs': '25.0.0-develop.
|
|
12
|
+
'@progress/kendo-angular-inputs': '25.0.0-develop.3',
|
|
13
13
|
// peers of inputs
|
|
14
|
-
'@progress/kendo-angular-intl': '25.0.0-develop.
|
|
14
|
+
'@progress/kendo-angular-intl': '25.0.0-develop.3',
|
|
15
15
|
'@progress/kendo-drawing': '^1.17.2',
|
|
16
16
|
// Peer dependency of icons
|
|
17
17
|
'@progress/kendo-svg-icons': '^4.0.0'
|