@progress/kendo-vue-dropdowns 6.0.2-develop.1 → 6.1.0-develop.2

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.
Files changed (59) hide show
  1. package/AutoComplete/AutoComplete.js +2 -2
  2. package/AutoComplete/AutoComplete.mjs +76 -73
  3. package/ComboBox/ComboBox.js +2 -2
  4. package/ComboBox/ComboBox.mjs +72 -69
  5. package/DropDownList/DropDownList.js +2 -2
  6. package/DropDownList/DropDownList.mjs +4 -2
  7. package/DropDownTree/DropDownTree.js +1 -1
  8. package/DropDownTree/DropDownTree.mjs +1 -1
  9. package/DropDownTree/ListNoData.js +1 -1
  10. package/DropDownTree/ListNoData.mjs +1 -1
  11. package/MultiSelect/MultiSelect.js +2 -2
  12. package/MultiSelect/MultiSelect.mjs +83 -80
  13. package/MultiSelect/TagList.js +1 -1
  14. package/MultiSelect/TagList.mjs +1 -1
  15. package/MultiSelectTree/MultiSelectTree.js +1 -1
  16. package/MultiSelectTree/MultiSelectTree.mjs +1 -1
  17. package/MultiSelectTree/utils.js +1 -1
  18. package/MultiSelectTree/utils.mjs +1 -1
  19. package/README.md +1 -1
  20. package/common/ClearButton.js +1 -1
  21. package/common/ClearButton.mjs +1 -1
  22. package/common/DropDownBase.js +1 -1
  23. package/common/DropDownBase.mjs +1 -1
  24. package/common/GroupStickyHeader.js +1 -1
  25. package/common/GroupStickyHeader.mjs +1 -1
  26. package/common/List.js +1 -1
  27. package/common/List.mjs +1 -1
  28. package/common/ListContainer.js +1 -1
  29. package/common/ListContainer.mjs +1 -1
  30. package/common/ListDefaultItem.js +1 -1
  31. package/common/ListDefaultItem.mjs +1 -1
  32. package/common/ListFilter.js +1 -1
  33. package/common/ListFilter.mjs +1 -1
  34. package/common/ListGroupItem.js +1 -1
  35. package/common/ListGroupItem.mjs +1 -1
  36. package/common/ListItem.js +1 -1
  37. package/common/ListItem.mjs +1 -1
  38. package/common/Navigation.js +1 -1
  39. package/common/Navigation.mjs +1 -1
  40. package/common/SearchBar.js +2 -2
  41. package/common/SearchBar.mjs +13 -12
  42. package/common/VirtualScroll.js +1 -1
  43. package/common/VirtualScroll.mjs +1 -1
  44. package/common/constants.js +1 -1
  45. package/common/constants.mjs +1 -1
  46. package/common/settings.js +1 -1
  47. package/common/settings.mjs +1 -1
  48. package/common/utils.js +1 -1
  49. package/common/utils.mjs +1 -1
  50. package/dist/cdn/js/kendo-vue-dropdowns.js +2 -2
  51. package/index.d.mts +22 -1
  52. package/index.d.ts +22 -1
  53. package/index.js +1 -1
  54. package/index.mjs +1 -1
  55. package/messages/main.js +1 -1
  56. package/messages/main.mjs +1 -1
  57. package/package-metadata.js +1 -1
  58. package/package-metadata.mjs +2 -2
  59. package/package.json +9 -9
package/index.d.mts CHANGED
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * @license
3
3
  *-------------------------------------------------------------------------------------------
4
- * Copyright © 2024 Progress Software Corporation. All rights reserved.
4
+ * Copyright © 2025 Progress Software Corporation. All rights reserved.
5
5
  * Licensed under commercial license. See LICENSE.md in the package root for more information
6
6
  *-------------------------------------------------------------------------------------------
7
7
  */
@@ -128,6 +128,7 @@ validator: (value: string) => any;
128
128
  groupField: {
129
129
  type: PropType<string>;
130
130
  };
131
+ inputAttributes: PropType<Object>;
131
132
  }>, {
132
133
  inputRef: Ref<any, any>;
133
134
  kendoAnchorRef: Ref<any, any>;
@@ -278,6 +279,7 @@ validator: (value: string) => any;
278
279
  groupField: {
279
280
  type: PropType<string>;
280
281
  };
282
+ inputAttributes: PropType<Object>;
281
283
  }>> & Readonly<{}>, {
282
284
  required: boolean;
283
285
  value: string;
@@ -540,6 +542,11 @@ export declare interface AutoCompleteProps extends FormComponentProps {
540
542
  * Fires when a AutoComplete sticky group header item is about to be rendered. Used to override the default appearance of the sticky group header of the component.
541
543
  */
542
544
  groupStickyHeaderItemRender?: any;
545
+ /**
546
+ * Sets the built-in HTML attributes of the inner focusable input element.
547
+ * Attributes which are essential for certain component functionalities cannot be changed.
548
+ */
549
+ inputAttributes?: Object;
543
550
  }
544
551
 
545
552
  /**
@@ -727,6 +734,7 @@ type: PropType<string>;
727
734
  default: any;
728
735
  };
729
736
  onFilterchange: PropType<(event: ComboBoxFilterChangeEvent) => void>;
737
+ inputAttributes: PropType<Object>;
730
738
  }>, {
731
739
  inputRef: Ref<any, any>;
732
740
  elementRef: Ref<any, any>;
@@ -924,6 +932,7 @@ type: PropType<string>;
924
932
  default: any;
925
933
  };
926
934
  onFilterchange: PropType<(event: ComboBoxFilterChangeEvent) => void>;
935
+ inputAttributes: PropType<Object>;
927
936
  }>> & Readonly<{
928
937
  onBlur?: (...args: any[] | unknown[]) => any;
929
938
  onChange?: (...args: any[] | unknown[]) => any;
@@ -1239,6 +1248,11 @@ export declare interface ComboBoxProps extends FormComponentProps {
1239
1248
  * Specifies the text that is rendered as title in the adaptive popup ([see example]({% slug adaptive_rendering_combobox %})).
1240
1249
  */
1241
1250
  adaptiveTitle?: string;
1251
+ /**
1252
+ * Sets the built-in HTML attributes of the inner focusable input element.
1253
+ * Attributes which are essential for certain component functionalities cannot be changed.
1254
+ */
1255
+ inputAttributes?: Object;
1242
1256
  }
1243
1257
 
1244
1258
  /**
@@ -2819,6 +2833,7 @@ adaptiveTitle: {
2819
2833
  type: PropType<string>;
2820
2834
  default: any;
2821
2835
  };
2836
+ inputAttributes: PropType<Object>;
2822
2837
  }>, {
2823
2838
  inputRef: Ref<any, any>;
2824
2839
  kendoAnchorRef: Ref<any, any>;
@@ -3007,6 +3022,7 @@ adaptiveTitle: {
3007
3022
  type: PropType<string>;
3008
3023
  default: any;
3009
3024
  };
3025
+ inputAttributes: PropType<Object>;
3010
3026
  }>> & Readonly<{
3011
3027
  onBlur?: (...args: any[] | unknown[]) => any;
3012
3028
  onChange?: (...args: any[] | unknown[]) => any;
@@ -3354,6 +3370,11 @@ export declare interface MultiSelectProps extends FormComponentProps {
3354
3370
  * Specifies the text that is rendered as title in the adaptive popup.
3355
3371
  */
3356
3372
  adaptiveTitle?: string;
3373
+ /**
3374
+ * Sets the built-in HTML attributes of the inner focusable input element.
3375
+ * Attributes which are essential for certain component functionalities cannot be changed.
3376
+ */
3377
+ inputAttributes?: Object;
3357
3378
  }
3358
3379
 
3359
3380
  /**
package/index.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * @license
3
3
  *-------------------------------------------------------------------------------------------
4
- * Copyright © 2024 Progress Software Corporation. All rights reserved.
4
+ * Copyright © 2025 Progress Software Corporation. All rights reserved.
5
5
  * Licensed under commercial license. See LICENSE.md in the package root for more information
6
6
  *-------------------------------------------------------------------------------------------
7
7
  */
@@ -128,6 +128,7 @@ validator: (value: string) => any;
128
128
  groupField: {
129
129
  type: PropType<string>;
130
130
  };
131
+ inputAttributes: PropType<Object>;
131
132
  }>, {
132
133
  inputRef: Ref<any, any>;
133
134
  kendoAnchorRef: Ref<any, any>;
@@ -278,6 +279,7 @@ validator: (value: string) => any;
278
279
  groupField: {
279
280
  type: PropType<string>;
280
281
  };
282
+ inputAttributes: PropType<Object>;
281
283
  }>> & Readonly<{}>, {
282
284
  required: boolean;
283
285
  value: string;
@@ -540,6 +542,11 @@ export declare interface AutoCompleteProps extends FormComponentProps {
540
542
  * Fires when a AutoComplete sticky group header item is about to be rendered. Used to override the default appearance of the sticky group header of the component.
541
543
  */
542
544
  groupStickyHeaderItemRender?: any;
545
+ /**
546
+ * Sets the built-in HTML attributes of the inner focusable input element.
547
+ * Attributes which are essential for certain component functionalities cannot be changed.
548
+ */
549
+ inputAttributes?: Object;
543
550
  }
544
551
 
545
552
  /**
@@ -727,6 +734,7 @@ type: PropType<string>;
727
734
  default: any;
728
735
  };
729
736
  onFilterchange: PropType<(event: ComboBoxFilterChangeEvent) => void>;
737
+ inputAttributes: PropType<Object>;
730
738
  }>, {
731
739
  inputRef: Ref<any, any>;
732
740
  elementRef: Ref<any, any>;
@@ -924,6 +932,7 @@ type: PropType<string>;
924
932
  default: any;
925
933
  };
926
934
  onFilterchange: PropType<(event: ComboBoxFilterChangeEvent) => void>;
935
+ inputAttributes: PropType<Object>;
927
936
  }>> & Readonly<{
928
937
  onBlur?: (...args: any[] | unknown[]) => any;
929
938
  onChange?: (...args: any[] | unknown[]) => any;
@@ -1239,6 +1248,11 @@ export declare interface ComboBoxProps extends FormComponentProps {
1239
1248
  * Specifies the text that is rendered as title in the adaptive popup ([see example]({% slug adaptive_rendering_combobox %})).
1240
1249
  */
1241
1250
  adaptiveTitle?: string;
1251
+ /**
1252
+ * Sets the built-in HTML attributes of the inner focusable input element.
1253
+ * Attributes which are essential for certain component functionalities cannot be changed.
1254
+ */
1255
+ inputAttributes?: Object;
1242
1256
  }
1243
1257
 
1244
1258
  /**
@@ -2819,6 +2833,7 @@ adaptiveTitle: {
2819
2833
  type: PropType<string>;
2820
2834
  default: any;
2821
2835
  };
2836
+ inputAttributes: PropType<Object>;
2822
2837
  }>, {
2823
2838
  inputRef: Ref<any, any>;
2824
2839
  kendoAnchorRef: Ref<any, any>;
@@ -3007,6 +3022,7 @@ adaptiveTitle: {
3007
3022
  type: PropType<string>;
3008
3023
  default: any;
3009
3024
  };
3025
+ inputAttributes: PropType<Object>;
3010
3026
  }>> & Readonly<{
3011
3027
  onBlur?: (...args: any[] | unknown[]) => any;
3012
3028
  onChange?: (...args: any[] | unknown[]) => any;
@@ -3354,6 +3370,11 @@ export declare interface MultiSelectProps extends FormComponentProps {
3354
3370
  * Specifies the text that is rendered as title in the adaptive popup.
3355
3371
  */
3356
3372
  adaptiveTitle?: string;
3373
+ /**
3374
+ * Sets the built-in HTML attributes of the inner focusable input element.
3375
+ * Attributes which are essential for certain component functionalities cannot be changed.
3376
+ */
3377
+ inputAttributes?: Object;
3357
3378
  }
3358
3379
 
3359
3380
  /**
package/index.js CHANGED
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * @license
3
3
  *-------------------------------------------------------------------------------------------
4
- * Copyright © 2024 Progress Software Corporation. All rights reserved.
4
+ * Copyright © 2025 Progress Software Corporation. All rights reserved.
5
5
  * Licensed under commercial license. See LICENSE.md in the package root for more information
6
6
  *-------------------------------------------------------------------------------------------
7
7
  */
package/index.mjs CHANGED
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * @license
3
3
  *-------------------------------------------------------------------------------------------
4
- * Copyright © 2024 Progress Software Corporation. All rights reserved.
4
+ * Copyright © 2025 Progress Software Corporation. All rights reserved.
5
5
  * Licensed under commercial license. See LICENSE.md in the package root for more information
6
6
  *-------------------------------------------------------------------------------------------
7
7
  */
package/messages/main.js CHANGED
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * @license
3
3
  *-------------------------------------------------------------------------------------------
4
- * Copyright © 2024 Progress Software Corporation. All rights reserved.
4
+ * Copyright © 2025 Progress Software Corporation. All rights reserved.
5
5
  * Licensed under commercial license. See LICENSE.md in the package root for more information
6
6
  *-------------------------------------------------------------------------------------------
7
7
  */
package/messages/main.mjs CHANGED
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * @license
3
3
  *-------------------------------------------------------------------------------------------
4
- * Copyright © 2024 Progress Software Corporation. All rights reserved.
4
+ * Copyright © 2025 Progress Software Corporation. All rights reserved.
5
5
  * Licensed under commercial license. See LICENSE.md in the package root for more information
6
6
  *-------------------------------------------------------------------------------------------
7
7
  */
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * @license
3
3
  *-------------------------------------------------------------------------------------------
4
- * Copyright © 2024 Progress Software Corporation. All rights reserved.
4
+ * Copyright © 2025 Progress Software Corporation. All rights reserved.
5
5
  * Licensed under commercial license. See LICENSE.md in the package root for more information
6
6
  *-------------------------------------------------------------------------------------------
7
7
  */
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * @license
3
3
  *-------------------------------------------------------------------------------------------
4
- * Copyright © 2024 Progress Software Corporation. All rights reserved.
4
+ * Copyright © 2025 Progress Software Corporation. All rights reserved.
5
5
  * Licensed under commercial license. See LICENSE.md in the package root for more information
6
6
  *-------------------------------------------------------------------------------------------
7
7
  */
@@ -9,7 +9,7 @@ const e = {
9
9
  name: "@progress/kendo-vue-dropdowns",
10
10
  productName: "Kendo UI for Vue",
11
11
  productCodes: ["KENDOUIVUE", "KENDOUICOMPLETE"],
12
- publishDate: 1735306906,
12
+ publishDate: 1737372931,
13
13
  version: "",
14
14
  licensingDocsUrl: "https://www.telerik.com/kendo-vue-ui/my-license/"
15
15
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-vue-dropdowns",
3
- "version": "6.0.2-develop.1",
3
+ "version": "6.1.0-develop.2",
4
4
  "description": "TODO",
5
5
  "author": "Progress",
6
6
  "license": "SEE LICENSE IN LICENSE.md",
@@ -16,14 +16,14 @@
16
16
  "sideEffects": false,
17
17
  "peerDependencies": {
18
18
  "@progress/kendo-licensing": "^1.3.4",
19
- "@progress/kendo-vue-buttons": "6.0.2-develop.1",
20
- "@progress/kendo-vue-common": "6.0.2-develop.1",
21
- "@progress/kendo-vue-inputs": "6.0.2-develop.1",
22
- "@progress/kendo-vue-intl": "6.0.2-develop.1",
23
- "@progress/kendo-vue-labels": "6.0.2-develop.1",
24
- "@progress/kendo-vue-layout": "6.0.2-develop.1",
25
- "@progress/kendo-vue-popup": "6.0.2-develop.1",
26
- "@progress/kendo-vue-treeview": "6.0.2-develop.1",
19
+ "@progress/kendo-vue-buttons": "6.1.0-develop.2",
20
+ "@progress/kendo-vue-common": "6.1.0-develop.2",
21
+ "@progress/kendo-vue-inputs": "6.1.0-develop.2",
22
+ "@progress/kendo-vue-intl": "6.1.0-develop.2",
23
+ "@progress/kendo-vue-labels": "6.1.0-develop.2",
24
+ "@progress/kendo-vue-layout": "6.1.0-develop.2",
25
+ "@progress/kendo-vue-popup": "6.1.0-develop.2",
26
+ "@progress/kendo-vue-treeview": "6.1.0-develop.2",
27
27
  "@progress/kendo-svg-icons": "^4.0.0",
28
28
  "vue": "^3.0.2"
29
29
  },