@progress/kendo-vue-dropdowns 3.7.4-dev.202211301436 → 3.7.4-dev.202212300853
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/README.md +1 -1
- package/dist/cdn/js/kendo-vue-dropdowns.js +1 -1
- package/dist/es/AutoComplete/AutoComplete.js +3 -3
- package/dist/es/ComboBox/ComboBox.js +7 -3
- package/dist/es/DropDownList/DropDownList.js +17 -3
- package/dist/es/MultiSelect/MultiSelect.js +14 -7
- package/dist/es/common/ClearButton.js +6 -2
- package/dist/es/common/ListFilter.js +7 -3
- package/dist/es/messages/main.d.ts +5 -0
- package/dist/es/messages/main.js +5 -0
- package/dist/es/package-metadata.js +1 -1
- package/dist/esm/AutoComplete/AutoComplete.js +3 -3
- package/dist/esm/ComboBox/ComboBox.js +7 -3
- package/dist/esm/DropDownList/DropDownList.js +17 -3
- package/dist/esm/MultiSelect/MultiSelect.js +14 -7
- package/dist/esm/common/ClearButton.js +6 -2
- package/dist/esm/common/ListFilter.js +7 -3
- package/dist/esm/messages/main.d.ts +5 -0
- package/dist/esm/messages/main.js +5 -0
- package/dist/esm/package-metadata.js +1 -1
- package/dist/npm/AutoComplete/AutoComplete.js +2 -2
- package/dist/npm/ComboBox/ComboBox.js +6 -2
- package/dist/npm/DropDownList/DropDownList.js +16 -2
- package/dist/npm/MultiSelect/MultiSelect.js +13 -6
- package/dist/npm/common/ClearButton.js +6 -2
- package/dist/npm/common/ListFilter.js +6 -2
- package/dist/npm/messages/main.d.ts +5 -0
- package/dist/npm/messages/main.js +6 -1
- package/dist/npm/package-metadata.js +1 -1
- package/package.json +6 -6
|
@@ -12,6 +12,7 @@ var isV3 = allVue.version && allVue.version[0] === '3';
|
|
|
12
12
|
var inject = allVue.inject;
|
|
13
13
|
var kendo_vue_intl_1 = require("@progress/kendo-vue-intl");
|
|
14
14
|
var main_1 = require("../messages/main");
|
|
15
|
+
var kendo_vue_common_1 = require("@progress/kendo-vue-common");
|
|
15
16
|
/**
|
|
16
17
|
* @hidden
|
|
17
18
|
*/
|
|
@@ -60,8 +61,11 @@ var ClearButtonVue2 = {
|
|
|
60
61
|
tabindex: -1,
|
|
61
62
|
title: title,
|
|
62
63
|
key: "clearbutton"
|
|
63
|
-
}, [h(
|
|
64
|
-
|
|
64
|
+
}, [h(kendo_vue_common_1.Icon, {
|
|
65
|
+
name: "x",
|
|
66
|
+
attrs: this.v3 ? undefined : {
|
|
67
|
+
name: "x"
|
|
68
|
+
}
|
|
65
69
|
})]);
|
|
66
70
|
}
|
|
67
71
|
};
|
|
@@ -86,8 +86,12 @@ var ListFilterVue2 = {
|
|
|
86
86
|
"class": "k-list-filter"
|
|
87
87
|
}, [h("span", {
|
|
88
88
|
"class": this.spanClass
|
|
89
|
-
}, [h(
|
|
90
|
-
|
|
89
|
+
}, [h(kendo_vue_common_1.Icon, {
|
|
90
|
+
name: "search",
|
|
91
|
+
attrs: this.v3 ? undefined : {
|
|
92
|
+
name: "search"
|
|
93
|
+
},
|
|
94
|
+
"class": "k-input-icon"
|
|
91
95
|
}), h("input", {
|
|
92
96
|
ref: (0, kendo_vue_common_1.setRef)(this, 'input'),
|
|
93
97
|
type: "text",
|
|
@@ -10,6 +10,10 @@ export declare const expandButton = "dropdowns.expandbutton";
|
|
|
10
10
|
* @hidden
|
|
11
11
|
*/
|
|
12
12
|
export declare const clear = "dropdowns.clear";
|
|
13
|
+
/**
|
|
14
|
+
* @hidden
|
|
15
|
+
*/
|
|
16
|
+
export declare const selectButton = "dropdowns.select";
|
|
13
17
|
/**
|
|
14
18
|
* @hidden
|
|
15
19
|
*/
|
|
@@ -17,4 +21,5 @@ export declare const messages: {
|
|
|
17
21
|
"dropdowns.clear": string;
|
|
18
22
|
"dropdowns.expandbutton": string;
|
|
19
23
|
"dropdowns.nodata": string;
|
|
24
|
+
"dropdowns.select": string;
|
|
20
25
|
};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
var _a;
|
|
3
3
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
-
exports.messages = exports.clear = exports.expandButton = exports.nodata = void 0;
|
|
4
|
+
exports.messages = exports.selectButton = exports.clear = exports.expandButton = exports.nodata = void 0;
|
|
5
5
|
/**
|
|
6
6
|
* @hidden
|
|
7
7
|
*/
|
|
@@ -14,6 +14,10 @@ exports.expandButton = 'dropdowns.expandbutton';
|
|
|
14
14
|
* @hidden
|
|
15
15
|
*/
|
|
16
16
|
exports.clear = 'dropdowns.clear';
|
|
17
|
+
/**
|
|
18
|
+
* @hidden
|
|
19
|
+
*/
|
|
20
|
+
exports.selectButton = 'dropdowns.select';
|
|
17
21
|
/**
|
|
18
22
|
* @hidden
|
|
19
23
|
*/
|
|
@@ -21,4 +25,5 @@ exports.messages = (_a = {},
|
|
|
21
25
|
_a[exports.clear] = 'clear',
|
|
22
26
|
_a[exports.expandButton] = 'expand button',
|
|
23
27
|
_a[exports.nodata] = 'NO DATA FOUND.',
|
|
28
|
+
_a[exports.selectButton] = 'Select',
|
|
24
29
|
_a);
|
|
@@ -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: 1672389577,
|
|
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.202212300853",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "https://github.com/telerik/kendo-vue.git"
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
},
|
|
19
19
|
"scripts": {
|
|
20
20
|
"test": "cd ../../ && npm run test -- --testPathPattern=/packages/dropdowns/.*",
|
|
21
|
-
"start": "gulp start",
|
|
21
|
+
"start": "gulp start --notsc",
|
|
22
22
|
"build-package": "gulp build-package"
|
|
23
23
|
},
|
|
24
24
|
"keywords": [
|
|
@@ -49,14 +49,14 @@
|
|
|
49
49
|
"vue": "^2.6.12 || ^3.0.2"
|
|
50
50
|
},
|
|
51
51
|
"dependencies": {
|
|
52
|
-
"@progress/kendo-vue-buttons": "3.7.4-dev.
|
|
53
|
-
"@progress/kendo-vue-common": "3.7.4-dev.
|
|
54
|
-
"@progress/kendo-vue-popup": "3.7.4-dev.
|
|
52
|
+
"@progress/kendo-vue-buttons": "3.7.4-dev.202212300853",
|
|
53
|
+
"@progress/kendo-vue-common": "3.7.4-dev.202212300853",
|
|
54
|
+
"@progress/kendo-vue-popup": "3.7.4-dev.202212300853"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
57
57
|
"@progress/kendo-data-query": "^1.5.4",
|
|
58
58
|
"@progress/kendo-licensing": "^1.1.0",
|
|
59
|
-
"@progress/kendo-vue-intl": "3.7.4-dev.
|
|
59
|
+
"@progress/kendo-vue-intl": "3.7.4-dev.202212300853"
|
|
60
60
|
},
|
|
61
61
|
"author": "Progress",
|
|
62
62
|
"license": "SEE LICENSE IN LICENSE.md",
|