@progress/kendo-vue-dropdowns 3.7.4-dev.202301091431 → 3.7.4-dev.202301120847
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 +7 -2
- package/dist/es/DropDownList/DropDownList.js +7 -2
- package/dist/es/package-metadata.js +1 -1
- package/dist/esm/ComboBox/ComboBox.js +7 -2
- package/dist/esm/DropDownList/DropDownList.js +7 -2
- package/dist/esm/package-metadata.js +1 -1
- package/dist/npm/ComboBox/ComboBox.js +7 -2
- package/dist/npm/DropDownList/DropDownList.js +7 -2
- package/dist/npm/package-metadata.js +1 -1
- package/package.json +5 -5
|
@@ -29,6 +29,7 @@ import { List } from '../common/List';
|
|
|
29
29
|
import { ClearButton } from '../common/ClearButton';
|
|
30
30
|
import { provideLocalizationService } from '@progress/kendo-vue-intl';
|
|
31
31
|
import { expandButton, messages } from '../messages/main';
|
|
32
|
+
import { caretAltDownIcon } from '@progress/kendo-svg-icons';
|
|
32
33
|
var VALIDATION_MESSAGE = 'Please enter a valid value!';
|
|
33
34
|
/**
|
|
34
35
|
* @hidden
|
|
@@ -948,7 +949,9 @@ var ComboBoxVue2 = {
|
|
|
948
949
|
size: size,
|
|
949
950
|
fillMode: fillMode,
|
|
950
951
|
rounded: null,
|
|
951
|
-
|
|
952
|
+
icon: 'caret-alt-down',
|
|
953
|
+
svgIcon: caretAltDownIcon,
|
|
954
|
+
iconClass: iconClassName
|
|
952
955
|
},
|
|
953
956
|
tabIndex: -1,
|
|
954
957
|
"aria-label": ariaLabelExpandButton,
|
|
@@ -956,7 +959,9 @@ var ComboBoxVue2 = {
|
|
|
956
959
|
fillMode: fillMode,
|
|
957
960
|
rounded: null,
|
|
958
961
|
"class": 'k-input-button',
|
|
959
|
-
|
|
962
|
+
icon: 'caret-alt-down',
|
|
963
|
+
svgIcon: caretAltDownIcon,
|
|
964
|
+
iconClass: iconClassName,
|
|
960
965
|
onClick: this.toggleBtnClick,
|
|
961
966
|
on: this.v3 ? undefined : {
|
|
962
967
|
"click": this.toggleBtnClick,
|
|
@@ -28,6 +28,7 @@ import DropDownBase from '../common/DropDownBase';
|
|
|
28
28
|
import { selectButton, messages } from '../messages/main';
|
|
29
29
|
import { provideLocalizationService } from '@progress/kendo-vue-intl';
|
|
30
30
|
import { isPresent, getItemValue, sameCharsOnly, shuffleData, matchText, areSame, preventDefaultNonInputs, getFocusedItem } from '../common/utils';
|
|
31
|
+
import { caretAltDownIcon } from '@progress/kendo-svg-icons';
|
|
31
32
|
var VALIDATION_MESSAGE = 'Please select a value from the list!';
|
|
32
33
|
/**
|
|
33
34
|
* @hidden
|
|
@@ -1017,7 +1018,9 @@ var DropDownListVue2 = {
|
|
|
1017
1018
|
fillMode: fillMode,
|
|
1018
1019
|
rounded: null,
|
|
1019
1020
|
ariaLabel: ariaLabelSelectButton,
|
|
1020
|
-
|
|
1021
|
+
icon: 'caret-alt-down',
|
|
1022
|
+
svgIcon: caretAltDownIcon,
|
|
1023
|
+
iconClass: iconClassName,
|
|
1021
1024
|
"aria-hidden": true
|
|
1022
1025
|
},
|
|
1023
1026
|
tabIndex: -1,
|
|
@@ -1026,7 +1029,9 @@ var DropDownListVue2 = {
|
|
|
1026
1029
|
rounded: null,
|
|
1027
1030
|
ariaLabel: ariaLabelSelectButton,
|
|
1028
1031
|
"class": 'k-input-button',
|
|
1029
|
-
|
|
1032
|
+
icon: 'caret-alt-down',
|
|
1033
|
+
svgIcon: caretAltDownIcon,
|
|
1034
|
+
iconClass: iconClassName,
|
|
1030
1035
|
"aria-hidden": true
|
|
1031
1036
|
}), dummySelect.call(this, value), renderListContainer.call(this)]);
|
|
1032
1037
|
return label ? h("span", {
|
|
@@ -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: 1673512056,
|
|
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
|
};
|
|
@@ -29,6 +29,7 @@ import { List } from '../common/List.js';
|
|
|
29
29
|
import { ClearButton } from '../common/ClearButton.js';
|
|
30
30
|
import { provideLocalizationService } from '@progress/kendo-vue-intl';
|
|
31
31
|
import { expandButton, messages } from '../messages/main.js';
|
|
32
|
+
import { caretAltDownIcon } from '@progress/kendo-svg-icons';
|
|
32
33
|
var VALIDATION_MESSAGE = 'Please enter a valid value!';
|
|
33
34
|
/**
|
|
34
35
|
* @hidden
|
|
@@ -948,7 +949,9 @@ var ComboBoxVue2 = {
|
|
|
948
949
|
size: size,
|
|
949
950
|
fillMode: fillMode,
|
|
950
951
|
rounded: null,
|
|
951
|
-
|
|
952
|
+
icon: 'caret-alt-down',
|
|
953
|
+
svgIcon: caretAltDownIcon,
|
|
954
|
+
iconClass: iconClassName
|
|
952
955
|
},
|
|
953
956
|
tabIndex: -1,
|
|
954
957
|
"aria-label": ariaLabelExpandButton,
|
|
@@ -956,7 +959,9 @@ var ComboBoxVue2 = {
|
|
|
956
959
|
fillMode: fillMode,
|
|
957
960
|
rounded: null,
|
|
958
961
|
"class": 'k-input-button',
|
|
959
|
-
|
|
962
|
+
icon: 'caret-alt-down',
|
|
963
|
+
svgIcon: caretAltDownIcon,
|
|
964
|
+
iconClass: iconClassName,
|
|
960
965
|
onClick: this.toggleBtnClick,
|
|
961
966
|
on: this.v3 ? undefined : {
|
|
962
967
|
"click": this.toggleBtnClick,
|
|
@@ -28,6 +28,7 @@ import DropDownBase from '../common/DropDownBase.js';
|
|
|
28
28
|
import { selectButton, messages } from '../messages/main.js';
|
|
29
29
|
import { provideLocalizationService } from '@progress/kendo-vue-intl';
|
|
30
30
|
import { isPresent, getItemValue, sameCharsOnly, shuffleData, matchText, areSame, preventDefaultNonInputs, getFocusedItem } from '../common/utils.js';
|
|
31
|
+
import { caretAltDownIcon } from '@progress/kendo-svg-icons';
|
|
31
32
|
var VALIDATION_MESSAGE = 'Please select a value from the list!';
|
|
32
33
|
/**
|
|
33
34
|
* @hidden
|
|
@@ -1017,7 +1018,9 @@ var DropDownListVue2 = {
|
|
|
1017
1018
|
fillMode: fillMode,
|
|
1018
1019
|
rounded: null,
|
|
1019
1020
|
ariaLabel: ariaLabelSelectButton,
|
|
1020
|
-
|
|
1021
|
+
icon: 'caret-alt-down',
|
|
1022
|
+
svgIcon: caretAltDownIcon,
|
|
1023
|
+
iconClass: iconClassName,
|
|
1021
1024
|
"aria-hidden": true
|
|
1022
1025
|
},
|
|
1023
1026
|
tabIndex: -1,
|
|
@@ -1026,7 +1029,9 @@ var DropDownListVue2 = {
|
|
|
1026
1029
|
rounded: null,
|
|
1027
1030
|
ariaLabel: ariaLabelSelectButton,
|
|
1028
1031
|
"class": 'k-input-button',
|
|
1029
|
-
|
|
1032
|
+
icon: 'caret-alt-down',
|
|
1033
|
+
svgIcon: caretAltDownIcon,
|
|
1034
|
+
iconClass: iconClassName,
|
|
1030
1035
|
"aria-hidden": true
|
|
1031
1036
|
}), dummySelect.call(this, value), renderListContainer.call(this)]);
|
|
1032
1037
|
return label ? h("span", {
|
|
@@ -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: 1673512056,
|
|
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
|
};
|
|
@@ -35,6 +35,7 @@ var List_1 = require("../common/List");
|
|
|
35
35
|
var ClearButton_1 = require("../common/ClearButton");
|
|
36
36
|
var kendo_vue_intl_1 = require("@progress/kendo-vue-intl");
|
|
37
37
|
var main_1 = require("../messages/main");
|
|
38
|
+
var kendo_svg_icons_1 = require("@progress/kendo-svg-icons");
|
|
38
39
|
var VALIDATION_MESSAGE = 'Please enter a valid value!';
|
|
39
40
|
/**
|
|
40
41
|
* @hidden
|
|
@@ -954,7 +955,9 @@ var ComboBoxVue2 = {
|
|
|
954
955
|
size: size,
|
|
955
956
|
fillMode: fillMode,
|
|
956
957
|
rounded: null,
|
|
957
|
-
|
|
958
|
+
icon: 'caret-alt-down',
|
|
959
|
+
svgIcon: kendo_svg_icons_1.caretAltDownIcon,
|
|
960
|
+
iconClass: iconClassName
|
|
958
961
|
},
|
|
959
962
|
tabIndex: -1,
|
|
960
963
|
"aria-label": ariaLabelExpandButton,
|
|
@@ -962,7 +965,9 @@ var ComboBoxVue2 = {
|
|
|
962
965
|
fillMode: fillMode,
|
|
963
966
|
rounded: null,
|
|
964
967
|
"class": 'k-input-button',
|
|
965
|
-
|
|
968
|
+
icon: 'caret-alt-down',
|
|
969
|
+
svgIcon: kendo_svg_icons_1.caretAltDownIcon,
|
|
970
|
+
iconClass: iconClassName,
|
|
966
971
|
onClick: this.toggleBtnClick,
|
|
967
972
|
on: this.v3 ? undefined : {
|
|
968
973
|
"click": this.toggleBtnClick,
|
|
@@ -34,6 +34,7 @@ var DropDownBase_1 = require("../common/DropDownBase");
|
|
|
34
34
|
var main_1 = require("../messages/main");
|
|
35
35
|
var kendo_vue_intl_1 = require("@progress/kendo-vue-intl");
|
|
36
36
|
var utils_1 = require("../common/utils");
|
|
37
|
+
var kendo_svg_icons_1 = require("@progress/kendo-svg-icons");
|
|
37
38
|
var VALIDATION_MESSAGE = 'Please select a value from the list!';
|
|
38
39
|
/**
|
|
39
40
|
* @hidden
|
|
@@ -1023,7 +1024,9 @@ var DropDownListVue2 = {
|
|
|
1023
1024
|
fillMode: fillMode,
|
|
1024
1025
|
rounded: null,
|
|
1025
1026
|
ariaLabel: ariaLabelSelectButton,
|
|
1026
|
-
|
|
1027
|
+
icon: 'caret-alt-down',
|
|
1028
|
+
svgIcon: kendo_svg_icons_1.caretAltDownIcon,
|
|
1029
|
+
iconClass: iconClassName,
|
|
1027
1030
|
"aria-hidden": true
|
|
1028
1031
|
},
|
|
1029
1032
|
tabIndex: -1,
|
|
@@ -1032,7 +1035,9 @@ var DropDownListVue2 = {
|
|
|
1032
1035
|
rounded: null,
|
|
1033
1036
|
ariaLabel: ariaLabelSelectButton,
|
|
1034
1037
|
"class": 'k-input-button',
|
|
1035
|
-
|
|
1038
|
+
icon: 'caret-alt-down',
|
|
1039
|
+
svgIcon: kendo_svg_icons_1.caretAltDownIcon,
|
|
1040
|
+
iconClass: iconClassName,
|
|
1036
1041
|
"aria-hidden": true
|
|
1037
1042
|
}), dummySelect.call(this, value), renderListContainer.call(this)]);
|
|
1038
1043
|
return label ? h("span", {
|
|
@@ -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: 1673512056,
|
|
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.202301120847",
|
|
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.202301120847",
|
|
54
|
+
"@progress/kendo-vue-common": "3.7.4-dev.202301120847",
|
|
55
|
+
"@progress/kendo-vue-popup": "3.7.4-dev.202301120847"
|
|
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.202301120847"
|
|
62
62
|
},
|
|
63
63
|
"author": "Progress",
|
|
64
64
|
"license": "SEE LICENSE IN LICENSE.md",
|