@progress/kendo-angular-dropdowns 23.0.1 → 23.1.0-develop.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/autocomplete/autocomplete.component.d.ts +3 -0
- package/comboboxes/combobox.component.d.ts +5 -0
- package/dropdownlist/dropdownlist.component.d.ts +2 -0
- package/dropdowntrees/dropdowntree.component.d.ts +2 -0
- package/fesm2022/progress-kendo-angular-dropdowns.mjs +16 -1
- package/multiselect/multiselect.component.d.ts +3 -0
- package/package-metadata.mjs +2 -2
- package/package.json +10 -10
- package/schematics/ngAdd/index.js +2 -2
|
@@ -297,6 +297,9 @@ export declare class AutoCompleteComponent implements ControlValueAccessor, OnDe
|
|
|
297
297
|
get fillMode(): DropDownFillMode;
|
|
298
298
|
/**
|
|
299
299
|
* Sets the HTML attributes of the inner focusable input element. Attributes which are essential for certain component functionalities cannot be changed.
|
|
300
|
+
*
|
|
301
|
+
* @remarks
|
|
302
|
+
* This property is related to accessibility.
|
|
300
303
|
*/
|
|
301
304
|
inputAttributes: {
|
|
302
305
|
[key: string]: string;
|
|
@@ -73,6 +73,9 @@ export declare class ComboBoxComponent extends MultiTabStop implements ControlVa
|
|
|
73
73
|
svgIcon: SVGIcon;
|
|
74
74
|
/**
|
|
75
75
|
* Sets the HTML attributes of the inner focusable input element. Attributes essential for certain component functionalities cannot be changed.
|
|
76
|
+
*
|
|
77
|
+
* @remarks
|
|
78
|
+
* This property is related to accessibility.
|
|
76
79
|
*/
|
|
77
80
|
inputAttributes: {
|
|
78
81
|
[key: string]: string;
|
|
@@ -284,6 +287,8 @@ export declare class ComboBoxComponent extends MultiTabStop implements ControlVa
|
|
|
284
287
|
readonly: boolean;
|
|
285
288
|
/**
|
|
286
289
|
* Specifies the [`tabindex`](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/tabindex) of the component.
|
|
290
|
+
*
|
|
291
|
+
* @default 0
|
|
287
292
|
*/
|
|
288
293
|
tabindex: number;
|
|
289
294
|
/**
|
|
@@ -260,6 +260,8 @@ export declare class DropDownListComponent implements ControlValueAccessor, Afte
|
|
|
260
260
|
get valuePrimitive(): boolean;
|
|
261
261
|
/**
|
|
262
262
|
* Specifies the [`tabindex`](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/tabindex) of the component.
|
|
263
|
+
*
|
|
264
|
+
* @default 0
|
|
263
265
|
*/
|
|
264
266
|
tabindex: number;
|
|
265
267
|
/**
|
|
@@ -262,6 +262,8 @@ export declare class DropDownTreeComponent implements OnInit, OnDestroy, OnChang
|
|
|
262
262
|
valuePrimitive: boolean;
|
|
263
263
|
/**
|
|
264
264
|
* Specifies the [`tabindex`](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/tabindex) of the component.
|
|
265
|
+
*
|
|
266
|
+
* @default 0
|
|
265
267
|
*/
|
|
266
268
|
set tabindex(value: number);
|
|
267
269
|
get tabindex(): number;
|
|
@@ -38,7 +38,7 @@ const packageMetadata = {
|
|
|
38
38
|
productCode: 'KENDOUIANGULAR',
|
|
39
39
|
productCodes: ['KENDOUIANGULAR'],
|
|
40
40
|
publishDate: 0,
|
|
41
|
-
version: '23.0.1',
|
|
41
|
+
version: '23.1.0-develop.1',
|
|
42
42
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
43
43
|
};
|
|
44
44
|
|
|
@@ -3740,6 +3740,9 @@ class AutoCompleteComponent {
|
|
|
3740
3740
|
}
|
|
3741
3741
|
/**
|
|
3742
3742
|
* Sets the HTML attributes of the inner focusable input element. Attributes which are essential for certain component functionalities cannot be changed.
|
|
3743
|
+
*
|
|
3744
|
+
* @remarks
|
|
3745
|
+
* This property is related to accessibility.
|
|
3743
3746
|
*/
|
|
3744
3747
|
inputAttributes;
|
|
3745
3748
|
/**
|
|
@@ -5048,6 +5051,9 @@ class ComboBoxComponent extends MultiTabStop {
|
|
|
5048
5051
|
svgIcon;
|
|
5049
5052
|
/**
|
|
5050
5053
|
* Sets the HTML attributes of the inner focusable input element. Attributes essential for certain component functionalities cannot be changed.
|
|
5054
|
+
*
|
|
5055
|
+
* @remarks
|
|
5056
|
+
* This property is related to accessibility.
|
|
5051
5057
|
*/
|
|
5052
5058
|
inputAttributes;
|
|
5053
5059
|
/**
|
|
@@ -5345,6 +5351,8 @@ class ComboBoxComponent extends MultiTabStop {
|
|
|
5345
5351
|
readonly = false;
|
|
5346
5352
|
/**
|
|
5347
5353
|
* Specifies the [`tabindex`](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/tabindex) of the component.
|
|
5354
|
+
*
|
|
5355
|
+
* @default 0
|
|
5348
5356
|
*/
|
|
5349
5357
|
tabindex = 0;
|
|
5350
5358
|
/**
|
|
@@ -7484,6 +7492,8 @@ class DropDownListComponent {
|
|
|
7484
7492
|
}
|
|
7485
7493
|
/**
|
|
7486
7494
|
* Specifies the [`tabindex`](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/tabindex) of the component.
|
|
7495
|
+
*
|
|
7496
|
+
* @default 0
|
|
7487
7497
|
*/
|
|
7488
7498
|
tabindex = 0;
|
|
7489
7499
|
/**
|
|
@@ -10000,6 +10010,9 @@ class MultiSelectComponent {
|
|
|
10000
10010
|
/**
|
|
10001
10011
|
* Sets HTML attributes for the inner input element.
|
|
10002
10012
|
* You cannot change attributes essential for component functionality.
|
|
10013
|
+
*
|
|
10014
|
+
* @remarks
|
|
10015
|
+
* This property is related to accessibility.
|
|
10003
10016
|
*/
|
|
10004
10017
|
inputAttributes;
|
|
10005
10018
|
/**
|
|
@@ -13210,6 +13223,8 @@ class DropDownTreeComponent {
|
|
|
13210
13223
|
valuePrimitive = false;
|
|
13211
13224
|
/**
|
|
13212
13225
|
* Specifies the [`tabindex`](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/tabindex) of the component.
|
|
13226
|
+
*
|
|
13227
|
+
* @default 0
|
|
13213
13228
|
*/
|
|
13214
13229
|
set tabindex(value) {
|
|
13215
13230
|
const providedTabIndex = Number(value);
|
|
@@ -359,6 +359,9 @@ export declare class MultiSelectComponent implements OnDestroy, OnChanges, OnIni
|
|
|
359
359
|
/**
|
|
360
360
|
* Sets HTML attributes for the inner input element.
|
|
361
361
|
* You cannot change attributes essential for component functionality.
|
|
362
|
+
*
|
|
363
|
+
* @remarks
|
|
364
|
+
* This property is related to accessibility.
|
|
362
365
|
*/
|
|
363
366
|
inputAttributes: {
|
|
364
367
|
[key: string]: string;
|
package/package-metadata.mjs
CHANGED
|
@@ -7,7 +7,7 @@ export const packageMetadata = {
|
|
|
7
7
|
"productCodes": [
|
|
8
8
|
"KENDOUIANGULAR"
|
|
9
9
|
],
|
|
10
|
-
"publishDate":
|
|
11
|
-
"version": "23.0.1",
|
|
10
|
+
"publishDate": 1771342344,
|
|
11
|
+
"version": "23.1.0-develop.1",
|
|
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": "23.0.1",
|
|
3
|
+
"version": "23.1.0-develop.1",
|
|
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",
|
|
@@ -100,7 +100,7 @@
|
|
|
100
100
|
"package": {
|
|
101
101
|
"productName": "Kendo UI for Angular",
|
|
102
102
|
"productCode": "KENDOUIANGULAR",
|
|
103
|
-
"publishDate":
|
|
103
|
+
"publishDate": 1771342344,
|
|
104
104
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
105
105
|
}
|
|
106
106
|
},
|
|
@@ -111,18 +111,18 @@
|
|
|
111
111
|
"@angular/forms": "19 - 21",
|
|
112
112
|
"@angular/platform-browser": "19 - 21",
|
|
113
113
|
"@progress/kendo-licensing": "^1.10.0",
|
|
114
|
-
"@progress/kendo-angular-common": "23.0.1",
|
|
115
|
-
"@progress/kendo-angular-utils": "23.0.1",
|
|
116
|
-
"@progress/kendo-angular-l10n": "23.0.1",
|
|
117
|
-
"@progress/kendo-angular-navigation": "23.0.1",
|
|
118
|
-
"@progress/kendo-angular-popup": "23.0.1",
|
|
119
|
-
"@progress/kendo-angular-icons": "23.0.1",
|
|
120
|
-
"@progress/kendo-angular-treeview": "23.0.1",
|
|
114
|
+
"@progress/kendo-angular-common": "23.1.0-develop.1",
|
|
115
|
+
"@progress/kendo-angular-utils": "23.1.0-develop.1",
|
|
116
|
+
"@progress/kendo-angular-l10n": "23.1.0-develop.1",
|
|
117
|
+
"@progress/kendo-angular-navigation": "23.1.0-develop.1",
|
|
118
|
+
"@progress/kendo-angular-popup": "23.1.0-develop.1",
|
|
119
|
+
"@progress/kendo-angular-icons": "23.1.0-develop.1",
|
|
120
|
+
"@progress/kendo-angular-treeview": "23.1.0-develop.1",
|
|
121
121
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
122
122
|
},
|
|
123
123
|
"dependencies": {
|
|
124
124
|
"tslib": "^2.3.1",
|
|
125
|
-
"@progress/kendo-angular-schematics": "23.0.1",
|
|
125
|
+
"@progress/kendo-angular-schematics": "23.1.0-develop.1",
|
|
126
126
|
"@progress/kendo-common": "^1.0.1"
|
|
127
127
|
},
|
|
128
128
|
"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': '23.0.1',
|
|
12
|
+
'@progress/kendo-angular-inputs': '23.1.0-develop.1',
|
|
13
13
|
// peers of inputs
|
|
14
|
-
'@progress/kendo-angular-intl': '23.0.1',
|
|
14
|
+
'@progress/kendo-angular-intl': '23.1.0-develop.1',
|
|
15
15
|
'@progress/kendo-drawing': '^1.17.2',
|
|
16
16
|
// Peer dependency of icons
|
|
17
17
|
'@progress/kendo-svg-icons': '^4.0.0'
|