@progress/kendo-vue-dropdowns 6.1.0-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.
- package/AutoComplete/AutoComplete.js +1 -1
- package/AutoComplete/AutoComplete.mjs +75 -72
- package/ComboBox/ComboBox.js +1 -1
- package/ComboBox/ComboBox.mjs +71 -68
- package/DropDownList/DropDownList.js +1 -1
- package/DropDownList/DropDownList.mjs +3 -1
- package/MultiSelect/MultiSelect.js +1 -1
- package/MultiSelect/MultiSelect.mjs +82 -79
- package/common/SearchBar.js +1 -1
- package/common/SearchBar.mjs +12 -11
- package/dist/cdn/js/kendo-vue-dropdowns.js +1 -1
- package/index.d.mts +21 -0
- package/index.d.ts +21 -0
- package/package-metadata.mjs +1 -1
- package/package.json +9 -9
package/index.d.mts
CHANGED
|
@@ -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
|
@@ -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/package-metadata.mjs
CHANGED
|
@@ -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:
|
|
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.1.0-develop.
|
|
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.1.0-develop.
|
|
20
|
-
"@progress/kendo-vue-common": "6.1.0-develop.
|
|
21
|
-
"@progress/kendo-vue-inputs": "6.1.0-develop.
|
|
22
|
-
"@progress/kendo-vue-intl": "6.1.0-develop.
|
|
23
|
-
"@progress/kendo-vue-labels": "6.1.0-develop.
|
|
24
|
-
"@progress/kendo-vue-layout": "6.1.0-develop.
|
|
25
|
-
"@progress/kendo-vue-popup": "6.1.0-develop.
|
|
26
|
-
"@progress/kendo-vue-treeview": "6.1.0-develop.
|
|
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
|
},
|