@progress/kendo-vue-dropdowns 3.7.4-dev.202301131104 → 3.7.4-dev.202301151601
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/dist/cdn/js/kendo-vue-dropdowns.js +1 -1
- package/dist/es/ComboBox/ComboBox.js +6 -4
- package/dist/es/ComboBox/ComboBoxProps.d.ts +9 -0
- package/dist/es/DropDownList/DropDownList.js +8 -4
- package/dist/es/DropDownList/DropDownListProps.d.ts +9 -0
- package/dist/es/package-metadata.js +1 -1
- package/dist/esm/ComboBox/ComboBox.js +6 -4
- package/dist/esm/ComboBox/ComboBoxProps.d.ts +9 -0
- package/dist/esm/DropDownList/DropDownList.js +8 -4
- package/dist/esm/DropDownList/DropDownListProps.d.ts +9 -0
- package/dist/esm/package-metadata.js +1 -1
- package/dist/npm/ComboBox/ComboBox.js +6 -4
- package/dist/npm/ComboBox/ComboBoxProps.d.ts +9 -0
- package/dist/npm/DropDownList/DropDownList.js +8 -4
- package/dist/npm/DropDownList/DropDownListProps.d.ts +9 -0
- package/dist/npm/package-metadata.js +1 -1
- package/package.json +5 -5
|
@@ -685,6 +685,8 @@ var ComboBoxVue2 = {
|
|
|
685
685
|
className = _b.className,
|
|
686
686
|
style = _b.style,
|
|
687
687
|
loading = _b.loading,
|
|
688
|
+
icon = _b.icon,
|
|
689
|
+
svgIcon = _b.svgIcon,
|
|
688
690
|
iconClassName = _b.iconClassName,
|
|
689
691
|
virtual = _b.virtual,
|
|
690
692
|
size = _b.size,
|
|
@@ -949,8 +951,8 @@ var ComboBoxVue2 = {
|
|
|
949
951
|
size: size,
|
|
950
952
|
fillMode: fillMode,
|
|
951
953
|
rounded: null,
|
|
952
|
-
icon: 'caret-alt-down',
|
|
953
|
-
svgIcon: caretAltDownIcon,
|
|
954
|
+
icon: icon || 'caret-alt-down',
|
|
955
|
+
svgIcon: svgIcon || caretAltDownIcon,
|
|
954
956
|
iconClass: iconClassName
|
|
955
957
|
},
|
|
956
958
|
tabIndex: -1,
|
|
@@ -959,8 +961,8 @@ var ComboBoxVue2 = {
|
|
|
959
961
|
fillMode: fillMode,
|
|
960
962
|
rounded: null,
|
|
961
963
|
"class": 'k-input-button',
|
|
962
|
-
icon: 'caret-alt-down',
|
|
963
|
-
svgIcon: caretAltDownIcon,
|
|
964
|
+
icon: icon || 'caret-alt-down',
|
|
965
|
+
svgIcon: svgIcon || caretAltDownIcon,
|
|
964
966
|
iconClass: iconClassName,
|
|
965
967
|
onClick: this.toggleBtnClick,
|
|
966
968
|
on: this.v3 ? undefined : {
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { FilterChangeEvent, ChangeEvent, OpenEvent, CloseEvent, FocusEvent, BlurEvent, PageChangeEvent } from './../common/events';
|
|
2
2
|
import { FormComponentProps } from '@progress/kendo-vue-common';
|
|
3
3
|
import { VirtualizationSettings, DropDownsPopupSettings } from '../common/settings';
|
|
4
|
+
import { SVGIcon } from '@progress/kendo-svg-icons';
|
|
4
5
|
/**
|
|
5
6
|
* Represents the object of the `FilterChange` ComboBox event.
|
|
6
7
|
*/
|
|
@@ -56,6 +57,14 @@ export interface ComboBoxProps extends FormComponentProps {
|
|
|
56
57
|
* Sets the default value of the ComboBox. Similar to the native `select` HTML element.
|
|
57
58
|
*/
|
|
58
59
|
defaultValue?: any;
|
|
60
|
+
/**
|
|
61
|
+
* Defines the name for an existing arrow icon.
|
|
62
|
+
*/
|
|
63
|
+
icon?: string;
|
|
64
|
+
/**
|
|
65
|
+
* Defines the svg icon in a Kendo UI for Vue theme.
|
|
66
|
+
*/
|
|
67
|
+
svgIcon?: SVGIcon;
|
|
59
68
|
/**
|
|
60
69
|
* Sets CSS classes to the expand `icon` DOM element.
|
|
61
70
|
*/
|
|
@@ -91,6 +91,8 @@ var DropDownListVue2 = {
|
|
|
91
91
|
type: Boolean,
|
|
92
92
|
default: true
|
|
93
93
|
},
|
|
94
|
+
icon: String,
|
|
95
|
+
svgIcon: Object,
|
|
94
96
|
iconClassName: String,
|
|
95
97
|
defaultItem: [Object, String],
|
|
96
98
|
valueRender: [String, Function, Object],
|
|
@@ -716,6 +718,8 @@ var DropDownListVue2 = {
|
|
|
716
718
|
disabled = _d.disabled,
|
|
717
719
|
tabIndex = _d.tabIndex,
|
|
718
720
|
loading = _d.loading,
|
|
721
|
+
icon = _d.icon,
|
|
722
|
+
svgIcon = _d.svgIcon,
|
|
719
723
|
iconClassName = _d.iconClassName;
|
|
720
724
|
var valueRender = templateRendering.call(this, this.$props.valueRender, getListeners.call(this));
|
|
721
725
|
var focused = this.currentFocused;
|
|
@@ -1018,8 +1022,8 @@ var DropDownListVue2 = {
|
|
|
1018
1022
|
fillMode: fillMode,
|
|
1019
1023
|
rounded: null,
|
|
1020
1024
|
ariaLabel: ariaLabelSelectButton,
|
|
1021
|
-
icon: 'caret-alt-down',
|
|
1022
|
-
svgIcon: caretAltDownIcon,
|
|
1025
|
+
icon: icon || 'caret-alt-down',
|
|
1026
|
+
svgIcon: svgIcon || caretAltDownIcon,
|
|
1023
1027
|
iconClass: iconClassName,
|
|
1024
1028
|
"aria-hidden": true
|
|
1025
1029
|
},
|
|
@@ -1029,8 +1033,8 @@ var DropDownListVue2 = {
|
|
|
1029
1033
|
rounded: null,
|
|
1030
1034
|
ariaLabel: ariaLabelSelectButton,
|
|
1031
1035
|
"class": 'k-input-button',
|
|
1032
|
-
icon: 'caret-alt-down',
|
|
1033
|
-
svgIcon: caretAltDownIcon,
|
|
1036
|
+
icon: icon || 'caret-alt-down',
|
|
1037
|
+
svgIcon: svgIcon || caretAltDownIcon,
|
|
1034
1038
|
iconClass: iconClassName,
|
|
1035
1039
|
"aria-hidden": true
|
|
1036
1040
|
}), dummySelect.call(this, value), renderListContainer.call(this)]);
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { FilterChangeEvent, ChangeEvent, OpenEvent, CloseEvent, FocusEvent, BlurEvent, PageChangeEvent } from './../common/events';
|
|
2
2
|
import { VirtualizationSettings, DropDownsPopupSettings } from '../common/settings';
|
|
3
3
|
import { FormComponentProps } from '@progress/kendo-vue-common';
|
|
4
|
+
import { SVGIcon } from '@progress/kendo-svg-icons';
|
|
4
5
|
/**
|
|
5
6
|
* Represents the object of the `filterChange` DropDownList event.
|
|
6
7
|
*/
|
|
@@ -110,6 +111,14 @@ export interface DropDownListProps extends FormComponentProps {
|
|
|
110
111
|
* Sets additional classes to the DropDownList.
|
|
111
112
|
*/
|
|
112
113
|
className?: string;
|
|
114
|
+
/**
|
|
115
|
+
* Defines the name for an existing arrow icon.
|
|
116
|
+
*/
|
|
117
|
+
icon?: string;
|
|
118
|
+
/**
|
|
119
|
+
* Defines the svg icon in a Kendo UI for Vue theme.
|
|
120
|
+
*/
|
|
121
|
+
svgIcon?: SVGIcon;
|
|
113
122
|
/**
|
|
114
123
|
* Sets CSS classes to the expand `icon` DOM element.
|
|
115
124
|
*/
|
|
@@ -5,7 +5,7 @@ export var packageMetadata = {
|
|
|
5
5
|
name: '@progress/kendo-vue-dropdowns',
|
|
6
6
|
productName: 'Kendo UI for Vue',
|
|
7
7
|
productCodes: ['KENDOUIVUE', 'KENDOUICOMPLETE'],
|
|
8
|
-
publishDate:
|
|
8
|
+
publishDate: 1673797537,
|
|
9
9
|
version: '',
|
|
10
10
|
licensingDocsUrl: 'https://www.telerik.com/kendo-vue-ui/my-license/?utm_medium=product&utm_source=kendovue&utm_campaign=kendo-ui-vue-purchase-license-keys-warning'
|
|
11
11
|
};
|
|
@@ -685,6 +685,8 @@ var ComboBoxVue2 = {
|
|
|
685
685
|
className = _b.className,
|
|
686
686
|
style = _b.style,
|
|
687
687
|
loading = _b.loading,
|
|
688
|
+
icon = _b.icon,
|
|
689
|
+
svgIcon = _b.svgIcon,
|
|
688
690
|
iconClassName = _b.iconClassName,
|
|
689
691
|
virtual = _b.virtual,
|
|
690
692
|
size = _b.size,
|
|
@@ -949,8 +951,8 @@ var ComboBoxVue2 = {
|
|
|
949
951
|
size: size,
|
|
950
952
|
fillMode: fillMode,
|
|
951
953
|
rounded: null,
|
|
952
|
-
icon: 'caret-alt-down',
|
|
953
|
-
svgIcon: caretAltDownIcon,
|
|
954
|
+
icon: icon || 'caret-alt-down',
|
|
955
|
+
svgIcon: svgIcon || caretAltDownIcon,
|
|
954
956
|
iconClass: iconClassName
|
|
955
957
|
},
|
|
956
958
|
tabIndex: -1,
|
|
@@ -959,8 +961,8 @@ var ComboBoxVue2 = {
|
|
|
959
961
|
fillMode: fillMode,
|
|
960
962
|
rounded: null,
|
|
961
963
|
"class": 'k-input-button',
|
|
962
|
-
icon: 'caret-alt-down',
|
|
963
|
-
svgIcon: caretAltDownIcon,
|
|
964
|
+
icon: icon || 'caret-alt-down',
|
|
965
|
+
svgIcon: svgIcon || caretAltDownIcon,
|
|
964
966
|
iconClass: iconClassName,
|
|
965
967
|
onClick: this.toggleBtnClick,
|
|
966
968
|
on: this.v3 ? undefined : {
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { FilterChangeEvent, ChangeEvent, OpenEvent, CloseEvent, FocusEvent, BlurEvent, PageChangeEvent } from './../common/events';
|
|
2
2
|
import { FormComponentProps } from '@progress/kendo-vue-common';
|
|
3
3
|
import { VirtualizationSettings, DropDownsPopupSettings } from '../common/settings';
|
|
4
|
+
import { SVGIcon } from '@progress/kendo-svg-icons';
|
|
4
5
|
/**
|
|
5
6
|
* Represents the object of the `FilterChange` ComboBox event.
|
|
6
7
|
*/
|
|
@@ -56,6 +57,14 @@ export interface ComboBoxProps extends FormComponentProps {
|
|
|
56
57
|
* Sets the default value of the ComboBox. Similar to the native `select` HTML element.
|
|
57
58
|
*/
|
|
58
59
|
defaultValue?: any;
|
|
60
|
+
/**
|
|
61
|
+
* Defines the name for an existing arrow icon.
|
|
62
|
+
*/
|
|
63
|
+
icon?: string;
|
|
64
|
+
/**
|
|
65
|
+
* Defines the svg icon in a Kendo UI for Vue theme.
|
|
66
|
+
*/
|
|
67
|
+
svgIcon?: SVGIcon;
|
|
59
68
|
/**
|
|
60
69
|
* Sets CSS classes to the expand `icon` DOM element.
|
|
61
70
|
*/
|
|
@@ -91,6 +91,8 @@ var DropDownListVue2 = {
|
|
|
91
91
|
type: Boolean,
|
|
92
92
|
default: true
|
|
93
93
|
},
|
|
94
|
+
icon: String,
|
|
95
|
+
svgIcon: Object,
|
|
94
96
|
iconClassName: String,
|
|
95
97
|
defaultItem: [Object, String],
|
|
96
98
|
valueRender: [String, Function, Object],
|
|
@@ -716,6 +718,8 @@ var DropDownListVue2 = {
|
|
|
716
718
|
disabled = _d.disabled,
|
|
717
719
|
tabIndex = _d.tabIndex,
|
|
718
720
|
loading = _d.loading,
|
|
721
|
+
icon = _d.icon,
|
|
722
|
+
svgIcon = _d.svgIcon,
|
|
719
723
|
iconClassName = _d.iconClassName;
|
|
720
724
|
var valueRender = templateRendering.call(this, this.$props.valueRender, getListeners.call(this));
|
|
721
725
|
var focused = this.currentFocused;
|
|
@@ -1018,8 +1022,8 @@ var DropDownListVue2 = {
|
|
|
1018
1022
|
fillMode: fillMode,
|
|
1019
1023
|
rounded: null,
|
|
1020
1024
|
ariaLabel: ariaLabelSelectButton,
|
|
1021
|
-
icon: 'caret-alt-down',
|
|
1022
|
-
svgIcon: caretAltDownIcon,
|
|
1025
|
+
icon: icon || 'caret-alt-down',
|
|
1026
|
+
svgIcon: svgIcon || caretAltDownIcon,
|
|
1023
1027
|
iconClass: iconClassName,
|
|
1024
1028
|
"aria-hidden": true
|
|
1025
1029
|
},
|
|
@@ -1029,8 +1033,8 @@ var DropDownListVue2 = {
|
|
|
1029
1033
|
rounded: null,
|
|
1030
1034
|
ariaLabel: ariaLabelSelectButton,
|
|
1031
1035
|
"class": 'k-input-button',
|
|
1032
|
-
icon: 'caret-alt-down',
|
|
1033
|
-
svgIcon: caretAltDownIcon,
|
|
1036
|
+
icon: icon || 'caret-alt-down',
|
|
1037
|
+
svgIcon: svgIcon || caretAltDownIcon,
|
|
1034
1038
|
iconClass: iconClassName,
|
|
1035
1039
|
"aria-hidden": true
|
|
1036
1040
|
}), dummySelect.call(this, value), renderListContainer.call(this)]);
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { FilterChangeEvent, ChangeEvent, OpenEvent, CloseEvent, FocusEvent, BlurEvent, PageChangeEvent } from './../common/events';
|
|
2
2
|
import { VirtualizationSettings, DropDownsPopupSettings } from '../common/settings';
|
|
3
3
|
import { FormComponentProps } from '@progress/kendo-vue-common';
|
|
4
|
+
import { SVGIcon } from '@progress/kendo-svg-icons';
|
|
4
5
|
/**
|
|
5
6
|
* Represents the object of the `filterChange` DropDownList event.
|
|
6
7
|
*/
|
|
@@ -110,6 +111,14 @@ export interface DropDownListProps extends FormComponentProps {
|
|
|
110
111
|
* Sets additional classes to the DropDownList.
|
|
111
112
|
*/
|
|
112
113
|
className?: string;
|
|
114
|
+
/**
|
|
115
|
+
* Defines the name for an existing arrow icon.
|
|
116
|
+
*/
|
|
117
|
+
icon?: string;
|
|
118
|
+
/**
|
|
119
|
+
* Defines the svg icon in a Kendo UI for Vue theme.
|
|
120
|
+
*/
|
|
121
|
+
svgIcon?: SVGIcon;
|
|
113
122
|
/**
|
|
114
123
|
* Sets CSS classes to the expand `icon` DOM element.
|
|
115
124
|
*/
|
|
@@ -5,7 +5,7 @@ export var packageMetadata = {
|
|
|
5
5
|
name: '@progress/kendo-vue-dropdowns',
|
|
6
6
|
productName: 'Kendo UI for Vue',
|
|
7
7
|
productCodes: ['KENDOUIVUE', 'KENDOUICOMPLETE'],
|
|
8
|
-
publishDate:
|
|
8
|
+
publishDate: 1673797537,
|
|
9
9
|
version: '',
|
|
10
10
|
licensingDocsUrl: 'https://www.telerik.com/kendo-vue-ui/my-license/?utm_medium=product&utm_source=kendovue&utm_campaign=kendo-ui-vue-purchase-license-keys-warning'
|
|
11
11
|
};
|
|
@@ -691,6 +691,8 @@ var ComboBoxVue2 = {
|
|
|
691
691
|
className = _b.className,
|
|
692
692
|
style = _b.style,
|
|
693
693
|
loading = _b.loading,
|
|
694
|
+
icon = _b.icon,
|
|
695
|
+
svgIcon = _b.svgIcon,
|
|
694
696
|
iconClassName = _b.iconClassName,
|
|
695
697
|
virtual = _b.virtual,
|
|
696
698
|
size = _b.size,
|
|
@@ -955,8 +957,8 @@ var ComboBoxVue2 = {
|
|
|
955
957
|
size: size,
|
|
956
958
|
fillMode: fillMode,
|
|
957
959
|
rounded: null,
|
|
958
|
-
icon: 'caret-alt-down',
|
|
959
|
-
svgIcon: kendo_svg_icons_1.caretAltDownIcon,
|
|
960
|
+
icon: icon || 'caret-alt-down',
|
|
961
|
+
svgIcon: svgIcon || kendo_svg_icons_1.caretAltDownIcon,
|
|
960
962
|
iconClass: iconClassName
|
|
961
963
|
},
|
|
962
964
|
tabIndex: -1,
|
|
@@ -965,8 +967,8 @@ var ComboBoxVue2 = {
|
|
|
965
967
|
fillMode: fillMode,
|
|
966
968
|
rounded: null,
|
|
967
969
|
"class": 'k-input-button',
|
|
968
|
-
icon: 'caret-alt-down',
|
|
969
|
-
svgIcon: kendo_svg_icons_1.caretAltDownIcon,
|
|
970
|
+
icon: icon || 'caret-alt-down',
|
|
971
|
+
svgIcon: svgIcon || kendo_svg_icons_1.caretAltDownIcon,
|
|
970
972
|
iconClass: iconClassName,
|
|
971
973
|
onClick: this.toggleBtnClick,
|
|
972
974
|
on: this.v3 ? undefined : {
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { FilterChangeEvent, ChangeEvent, OpenEvent, CloseEvent, FocusEvent, BlurEvent, PageChangeEvent } from './../common/events';
|
|
2
2
|
import { FormComponentProps } from '@progress/kendo-vue-common';
|
|
3
3
|
import { VirtualizationSettings, DropDownsPopupSettings } from '../common/settings';
|
|
4
|
+
import { SVGIcon } from '@progress/kendo-svg-icons';
|
|
4
5
|
/**
|
|
5
6
|
* Represents the object of the `FilterChange` ComboBox event.
|
|
6
7
|
*/
|
|
@@ -56,6 +57,14 @@ export interface ComboBoxProps extends FormComponentProps {
|
|
|
56
57
|
* Sets the default value of the ComboBox. Similar to the native `select` HTML element.
|
|
57
58
|
*/
|
|
58
59
|
defaultValue?: any;
|
|
60
|
+
/**
|
|
61
|
+
* Defines the name for an existing arrow icon.
|
|
62
|
+
*/
|
|
63
|
+
icon?: string;
|
|
64
|
+
/**
|
|
65
|
+
* Defines the svg icon in a Kendo UI for Vue theme.
|
|
66
|
+
*/
|
|
67
|
+
svgIcon?: SVGIcon;
|
|
59
68
|
/**
|
|
60
69
|
* Sets CSS classes to the expand `icon` DOM element.
|
|
61
70
|
*/
|
|
@@ -97,6 +97,8 @@ var DropDownListVue2 = {
|
|
|
97
97
|
type: Boolean,
|
|
98
98
|
default: true
|
|
99
99
|
},
|
|
100
|
+
icon: String,
|
|
101
|
+
svgIcon: Object,
|
|
100
102
|
iconClassName: String,
|
|
101
103
|
defaultItem: [Object, String],
|
|
102
104
|
valueRender: [String, Function, Object],
|
|
@@ -722,6 +724,8 @@ var DropDownListVue2 = {
|
|
|
722
724
|
disabled = _d.disabled,
|
|
723
725
|
tabIndex = _d.tabIndex,
|
|
724
726
|
loading = _d.loading,
|
|
727
|
+
icon = _d.icon,
|
|
728
|
+
svgIcon = _d.svgIcon,
|
|
725
729
|
iconClassName = _d.iconClassName;
|
|
726
730
|
var valueRender = kendo_vue_common_1.templateRendering.call(this, this.$props.valueRender, kendo_vue_common_1.getListeners.call(this));
|
|
727
731
|
var focused = this.currentFocused;
|
|
@@ -1024,8 +1028,8 @@ var DropDownListVue2 = {
|
|
|
1024
1028
|
fillMode: fillMode,
|
|
1025
1029
|
rounded: null,
|
|
1026
1030
|
ariaLabel: ariaLabelSelectButton,
|
|
1027
|
-
icon: 'caret-alt-down',
|
|
1028
|
-
svgIcon: kendo_svg_icons_1.caretAltDownIcon,
|
|
1031
|
+
icon: icon || 'caret-alt-down',
|
|
1032
|
+
svgIcon: svgIcon || kendo_svg_icons_1.caretAltDownIcon,
|
|
1029
1033
|
iconClass: iconClassName,
|
|
1030
1034
|
"aria-hidden": true
|
|
1031
1035
|
},
|
|
@@ -1035,8 +1039,8 @@ var DropDownListVue2 = {
|
|
|
1035
1039
|
rounded: null,
|
|
1036
1040
|
ariaLabel: ariaLabelSelectButton,
|
|
1037
1041
|
"class": 'k-input-button',
|
|
1038
|
-
icon: 'caret-alt-down',
|
|
1039
|
-
svgIcon: kendo_svg_icons_1.caretAltDownIcon,
|
|
1042
|
+
icon: icon || 'caret-alt-down',
|
|
1043
|
+
svgIcon: svgIcon || kendo_svg_icons_1.caretAltDownIcon,
|
|
1040
1044
|
iconClass: iconClassName,
|
|
1041
1045
|
"aria-hidden": true
|
|
1042
1046
|
}), dummySelect.call(this, value), renderListContainer.call(this)]);
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { FilterChangeEvent, ChangeEvent, OpenEvent, CloseEvent, FocusEvent, BlurEvent, PageChangeEvent } from './../common/events';
|
|
2
2
|
import { VirtualizationSettings, DropDownsPopupSettings } from '../common/settings';
|
|
3
3
|
import { FormComponentProps } from '@progress/kendo-vue-common';
|
|
4
|
+
import { SVGIcon } from '@progress/kendo-svg-icons';
|
|
4
5
|
/**
|
|
5
6
|
* Represents the object of the `filterChange` DropDownList event.
|
|
6
7
|
*/
|
|
@@ -110,6 +111,14 @@ export interface DropDownListProps extends FormComponentProps {
|
|
|
110
111
|
* Sets additional classes to the DropDownList.
|
|
111
112
|
*/
|
|
112
113
|
className?: string;
|
|
114
|
+
/**
|
|
115
|
+
* Defines the name for an existing arrow icon.
|
|
116
|
+
*/
|
|
117
|
+
icon?: string;
|
|
118
|
+
/**
|
|
119
|
+
* Defines the svg icon in a Kendo UI for Vue theme.
|
|
120
|
+
*/
|
|
121
|
+
svgIcon?: SVGIcon;
|
|
113
122
|
/**
|
|
114
123
|
* Sets CSS classes to the expand `icon` DOM element.
|
|
115
124
|
*/
|
|
@@ -8,7 +8,7 @@ exports.packageMetadata = {
|
|
|
8
8
|
name: '@progress/kendo-vue-dropdowns',
|
|
9
9
|
productName: 'Kendo UI for Vue',
|
|
10
10
|
productCodes: ['KENDOUIVUE', 'KENDOUICOMPLETE'],
|
|
11
|
-
publishDate:
|
|
11
|
+
publishDate: 1673797537,
|
|
12
12
|
version: '',
|
|
13
13
|
licensingDocsUrl: 'https://www.telerik.com/kendo-vue-ui/my-license/?utm_medium=product&utm_source=kendovue&utm_campaign=kendo-ui-vue-purchase-license-keys-warning'
|
|
14
14
|
};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-vue-dropdowns",
|
|
3
3
|
"description": "Kendo UI for Vue Dropdowns package",
|
|
4
|
-
"version": "3.7.4-dev.
|
|
4
|
+
"version": "3.7.4-dev.202301151601",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "https://github.com/telerik/kendo-vue.git"
|
|
@@ -50,15 +50,15 @@
|
|
|
50
50
|
"vue": "^2.6.12 || ^3.0.2"
|
|
51
51
|
},
|
|
52
52
|
"dependencies": {
|
|
53
|
-
"@progress/kendo-vue-buttons": "3.7.4-dev.
|
|
54
|
-
"@progress/kendo-vue-common": "3.7.4-dev.
|
|
55
|
-
"@progress/kendo-vue-popup": "3.7.4-dev.
|
|
53
|
+
"@progress/kendo-vue-buttons": "3.7.4-dev.202301151601",
|
|
54
|
+
"@progress/kendo-vue-common": "3.7.4-dev.202301151601",
|
|
55
|
+
"@progress/kendo-vue-popup": "3.7.4-dev.202301151601"
|
|
56
56
|
},
|
|
57
57
|
"devDependencies": {
|
|
58
58
|
"@progress/kendo-data-query": "^1.5.4",
|
|
59
59
|
"@progress/kendo-licensing": "^1.3.0",
|
|
60
60
|
"@progress/kendo-svg-icons": "^1.0.0",
|
|
61
|
-
"@progress/kendo-vue-intl": "3.7.4-dev.
|
|
61
|
+
"@progress/kendo-vue-intl": "3.7.4-dev.202301151601"
|
|
62
62
|
},
|
|
63
63
|
"author": "Progress",
|
|
64
64
|
"license": "SEE LICENSE IN LICENSE.md",
|