@progress/kendo-dropdowns-vue-wrapper
Advanced tools
Comparing version 2017.3.1116 to 2018.1.117-dev.2051112
@@ -6,3 +6,3 @@ 'use strict'; | ||
}); | ||
exports.KendoDropdownsInstaller = exports.KendoMultiSelect = exports.KendoComboBox = exports.KendoDropDownList = exports.KendoAutoComplete = undefined; | ||
exports.DropdownsInstaller = exports.KendoDropdownsInstaller = exports.MultiSelect = exports.KendoMultiSelect = exports.ComboBox = exports.KendoComboBox = exports.DropDownList = exports.KendoDropDownList = exports.AutoComplete = exports.KendoAutoComplete = undefined; | ||
@@ -32,5 +32,10 @@ var _KendoAutoComplete = require('./KendoAutoComplete'); | ||
exports.KendoAutoComplete = _KendoAutoComplete2.default; | ||
exports.AutoComplete = _KendoAutoComplete2.default; | ||
exports.KendoDropDownList = _KendoDropDownList2.default; | ||
exports.DropDownList = _KendoDropDownList2.default; | ||
exports.KendoComboBox = _KendoComboBox2.default; | ||
exports.ComboBox = _KendoComboBox2.default; | ||
exports.KendoMultiSelect = _KendoMultiSelect2.default; | ||
exports.KendoDropdownsInstaller = _kendoDropdownsInstaller2.default; | ||
exports.MultiSelect = _KendoMultiSelect2.default; | ||
exports.KendoDropdownsInstaller = _kendoDropdownsInstaller2.default; | ||
exports.DropdownsInstaller = _kendoDropdownsInstaller2.default; |
@@ -30,3 +30,3 @@ "use strict"; | ||
template: String | Function, | ||
value: String, | ||
value: String | Number, | ||
valuePrimitive: Boolean, | ||
@@ -33,0 +33,0 @@ virtual: Boolean | Object, |
@@ -25,3 +25,6 @@ 'use strict'; | ||
props: _AutoCompleteProps2.default, | ||
template: '<div><input ref="kendoautocomplete"/><slot name="kendo-datasource"></slot></div>', | ||
render: function render(createElement) { | ||
return createElement('input', [this.$slots['kendo-datasource']]); | ||
}, | ||
mixins: [_kendoBaseComponentsVueWrapper.KendoBaseComponent, _kendoBaseComponentsVueWrapper.KendoBaseDatasourceComponent, _Animation2.default, _Virtual2.default], | ||
@@ -33,3 +36,3 @@ model: { | ||
var that = this; | ||
var widgetElement = that.$refs.kendoautocomplete || that.$el; | ||
var widgetElement = that.$el; | ||
kendo.jQuery(widgetElement).kendoAutoComplete(that.widgetOptions); | ||
@@ -45,3 +48,3 @@ that.$emit('kendowidgetready', that.kendoWidget()); | ||
kendoWidget: function kendoWidget() { | ||
var widgetElement = this.$refs.kendoautocomplete || this.$el; | ||
var widgetElement = this.$el; | ||
@@ -48,0 +51,0 @@ return kendo.jQuery(widgetElement).getKendoAutoComplete(); |
@@ -36,3 +36,3 @@ "use strict"; | ||
text: String, | ||
value: String, | ||
value: String | Number, | ||
valuePrimitive: Boolean, | ||
@@ -39,0 +39,0 @@ virtual: Boolean | Object, |
@@ -28,3 +28,6 @@ 'use strict'; | ||
exports.default = { | ||
template: '<div><input ref="kendocombobox"/><slot name="kendo-datasource"></slot></div>', | ||
render: function render(createElement) { | ||
return createElement('input', [this.$slots['kendo-datasource']]); | ||
}, | ||
props: _ComboBoxProps2.default, | ||
@@ -37,3 +40,3 @@ mixins: [_kendoBaseComponentsVueWrapper.KendoBaseComponent, _kendoBaseComponentsVueWrapper.KendoBaseDatasourceComponent, _Animation2.default, _Popup2.default, _Virtual2.default], | ||
var that = this; | ||
var widgetElement = that.$el || that.$refs.kendocombobox; | ||
var widgetElement = that.$el; | ||
@@ -51,3 +54,3 @@ kendo.jQuery(widgetElement).kendoComboBox(that.widgetOptions); | ||
kendoWidget: function kendoWidget() { | ||
var widgetElement = this.$el || this.$refs.kendocombobox; | ||
var widgetElement = this.$el; | ||
@@ -54,0 +57,0 @@ return kendo.jQuery(widgetElement).getKendoComboBox(); |
@@ -34,3 +34,3 @@ "use strict"; | ||
text: String, | ||
value: String, | ||
value: String | Number, | ||
valuePrimitive: Boolean, | ||
@@ -37,0 +37,0 @@ virtual: Boolean | Object, |
@@ -29,3 +29,6 @@ 'use strict'; | ||
props: _DropDownListProps2.default, | ||
template: '<div><input ref="kendodropdownlist"/><slot name="kendo-datasource"></slot></div>', | ||
render: function render(createElement) { | ||
return createElement('input', [this.$slots['kendo-datasource']]); | ||
}, | ||
mixins: [_kendoBaseComponentsVueWrapper.KendoBaseComponent, _kendoBaseComponentsVueWrapper.KendoBaseDatasourceComponent, _Animation2.default, _Popup2.default, _Virtual2.default], | ||
@@ -37,3 +40,3 @@ model: { | ||
var that = this; | ||
var widgetElement = that.$el || that.$refs.kendodropdownlist; | ||
var widgetElement = that.$el; | ||
@@ -51,3 +54,3 @@ kendo.jQuery(widgetElement).kendoDropDownList(that.widgetOptions); | ||
kendoWidget: function kendoWidget() { | ||
var widgetElement = this.$el || this.$refs.kendodropdownlist; | ||
var widgetElement = this.$el; | ||
@@ -54,0 +57,0 @@ return kendo.jQuery(widgetElement).getKendoDropDownList(); |
@@ -29,7 +29,10 @@ 'use strict'; | ||
props: _MultiSelectProps2.default, | ||
template: '<div><select ref="kendomultiselect"/><slot name="kendo-datasource"></slot></div>', | ||
render: function render(createElement) { | ||
return createElement('select', [this.$slots['kendo-datasource']]); | ||
}, | ||
mixins: [_kendoBaseComponentsVueWrapper.KendoBaseComponent, _kendoBaseComponentsVueWrapper.KendoBaseDatasourceComponent, _Animation2.default, _Popup2.default, _Virtual2.default], | ||
mounted: function mounted() { | ||
var that = this; | ||
var widgetElement = that.$refs.kendomultiselect || that.$el; | ||
var widgetElement = that.$el; | ||
@@ -47,3 +50,3 @@ kendo.jQuery(widgetElement).kendoMultiSelect(that.widgetOptions); | ||
kendoWidget: function kendoWidget() { | ||
var widgetElement = this.$refs.kendomultiselect || this.$el; | ||
var widgetElement = this.$el; | ||
@@ -50,0 +53,0 @@ return kendo.jQuery(widgetElement).getKendoMultiSelect(); |
@@ -34,3 +34,3 @@ "use strict"; | ||
tagMode: String, | ||
value: Array, | ||
value: Array | Number, | ||
valuePrimitive: Boolean, | ||
@@ -37,0 +37,0 @@ virtual: Boolean | Object, |
@@ -6,3 +6,3 @@ 'use strict'; | ||
}); | ||
exports.KendoDropdownsInstaller = exports.KendoMultiSelect = exports.KendoComboBox = exports.KendoDropDownList = exports.KendoAutoComplete = undefined; | ||
exports.DropdownsInstaller = exports.KendoDropdownsInstaller = exports.MultiSelect = exports.KendoMultiSelect = exports.ComboBox = exports.KendoComboBox = exports.DropDownList = exports.KendoDropDownList = exports.AutoComplete = exports.KendoAutoComplete = undefined; | ||
@@ -32,5 +32,10 @@ var _KendoAutoComplete = require('./KendoAutoComplete'); | ||
exports.KendoAutoComplete = _KendoAutoComplete2.default; | ||
exports.AutoComplete = _KendoAutoComplete2.default; | ||
exports.KendoDropDownList = _KendoDropDownList2.default; | ||
exports.DropDownList = _KendoDropDownList2.default; | ||
exports.KendoComboBox = _KendoComboBox2.default; | ||
exports.ComboBox = _KendoComboBox2.default; | ||
exports.KendoMultiSelect = _KendoMultiSelect2.default; | ||
exports.KendoDropdownsInstaller = _kendoDropdownsInstaller2.default; | ||
exports.MultiSelect = _KendoMultiSelect2.default; | ||
exports.KendoDropdownsInstaller = _kendoDropdownsInstaller2.default; | ||
exports.DropdownsInstaller = _kendoDropdownsInstaller2.default; |
@@ -30,3 +30,3 @@ "use strict"; | ||
template: String | Function, | ||
value: String, | ||
value: String | Number, | ||
valuePrimitive: Boolean, | ||
@@ -33,0 +33,0 @@ virtual: Boolean | Object, |
@@ -25,3 +25,5 @@ 'use strict'; | ||
props: _AutoCompleteProps2.default, | ||
template: '<div><input ref="kendoautocomplete"/><slot name="kendo-datasource"></slot></div>', | ||
render(createElement) { | ||
return createElement('input', [this.$slots['kendo-datasource']]); | ||
}, | ||
mixins: [_kendoBaseComponentsVueWrapper.KendoBaseComponent, _kendoBaseComponentsVueWrapper.KendoBaseDatasourceComponent, _Animation2.default, _Virtual2.default], | ||
@@ -33,3 +35,3 @@ model: { | ||
var that = this; | ||
var widgetElement = that.$refs.kendoautocomplete || that.$el; | ||
var widgetElement = that.$el; | ||
kendo.jQuery(widgetElement).kendoAutoComplete(that.widgetOptions); | ||
@@ -44,3 +46,3 @@ that.$emit('kendowidgetready', that.kendoWidget()); | ||
kendoWidget() { | ||
var widgetElement = this.$refs.kendoautocomplete || this.$el; | ||
var widgetElement = this.$el; | ||
@@ -47,0 +49,0 @@ return kendo.jQuery(widgetElement).getKendoAutoComplete(); |
@@ -36,3 +36,3 @@ "use strict"; | ||
text: String, | ||
value: String, | ||
value: String | Number, | ||
valuePrimitive: Boolean, | ||
@@ -39,0 +39,0 @@ virtual: Boolean | Object, |
@@ -28,3 +28,5 @@ 'use strict'; | ||
exports.default = { | ||
template: '<div><input ref="kendocombobox"/><slot name="kendo-datasource"></slot></div>', | ||
render(createElement) { | ||
return createElement('input', [this.$slots['kendo-datasource']]); | ||
}, | ||
props: _ComboBoxProps2.default, | ||
@@ -37,3 +39,3 @@ mixins: [_kendoBaseComponentsVueWrapper.KendoBaseComponent, _kendoBaseComponentsVueWrapper.KendoBaseDatasourceComponent, _Animation2.default, _Popup2.default, _Virtual2.default], | ||
var that = this; | ||
var widgetElement = that.$el || that.$refs.kendocombobox; | ||
var widgetElement = that.$el; | ||
@@ -50,3 +52,3 @@ kendo.jQuery(widgetElement).kendoComboBox(that.widgetOptions); | ||
kendoWidget() { | ||
var widgetElement = this.$el || this.$refs.kendocombobox; | ||
var widgetElement = this.$el; | ||
@@ -53,0 +55,0 @@ return kendo.jQuery(widgetElement).getKendoComboBox(); |
@@ -34,3 +34,3 @@ "use strict"; | ||
text: String, | ||
value: String, | ||
value: String | Number, | ||
valuePrimitive: Boolean, | ||
@@ -37,0 +37,0 @@ virtual: Boolean | Object, |
@@ -29,3 +29,5 @@ 'use strict'; | ||
props: _DropDownListProps2.default, | ||
template: '<div><input ref="kendodropdownlist"/><slot name="kendo-datasource"></slot></div>', | ||
render(createElement) { | ||
return createElement('input', [this.$slots['kendo-datasource']]); | ||
}, | ||
mixins: [_kendoBaseComponentsVueWrapper.KendoBaseComponent, _kendoBaseComponentsVueWrapper.KendoBaseDatasourceComponent, _Animation2.default, _Popup2.default, _Virtual2.default], | ||
@@ -37,3 +39,3 @@ model: { | ||
var that = this; | ||
var widgetElement = that.$el || that.$refs.kendodropdownlist; | ||
var widgetElement = that.$el; | ||
@@ -50,3 +52,3 @@ kendo.jQuery(widgetElement).kendoDropDownList(that.widgetOptions); | ||
kendoWidget() { | ||
var widgetElement = this.$el || this.$refs.kendodropdownlist; | ||
var widgetElement = this.$el; | ||
@@ -53,0 +55,0 @@ return kendo.jQuery(widgetElement).getKendoDropDownList(); |
@@ -29,7 +29,9 @@ 'use strict'; | ||
props: _MultiSelectProps2.default, | ||
template: '<div><select ref="kendomultiselect"/><slot name="kendo-datasource"></slot></div>', | ||
render(createElement) { | ||
return createElement('select', [this.$slots['kendo-datasource']]); | ||
}, | ||
mixins: [_kendoBaseComponentsVueWrapper.KendoBaseComponent, _kendoBaseComponentsVueWrapper.KendoBaseDatasourceComponent, _Animation2.default, _Popup2.default, _Virtual2.default], | ||
mounted() { | ||
var that = this; | ||
var widgetElement = that.$refs.kendomultiselect || that.$el; | ||
var widgetElement = that.$el; | ||
@@ -46,3 +48,3 @@ kendo.jQuery(widgetElement).kendoMultiSelect(that.widgetOptions); | ||
kendoWidget() { | ||
var widgetElement = this.$refs.kendomultiselect || this.$el; | ||
var widgetElement = this.$el; | ||
@@ -49,0 +51,0 @@ return kendo.jQuery(widgetElement).getKendoMultiSelect(); |
@@ -34,3 +34,3 @@ "use strict"; | ||
tagMode: String, | ||
value: Array, | ||
value: Array | Number, | ||
valuePrimitive: Boolean, | ||
@@ -37,0 +37,0 @@ virtual: Boolean | Object, |
@@ -1,7 +0,11 @@ | ||
[Kendo UI](http://www.telerik.com/kendo-ui) | ||
# Kendo UI for Vue | ||
Copyright © 2017 Telerik AD. All rights reserved. | ||
This package is part of the [Kendo UI for Vue](https://www.telerik.com/kendo-react-ui/) suite of wrapper components. | ||
## License | ||
This is commercial software. To use it, you need to agree to the [**Telerik End User License Agreement for Kendo UI Complete**](http://www.telerik.com/purchase/license-agreement/kendo-ui-complete). If you do not own a commercial license, this file shall be governed by the trial license terms. | ||
All available Kendo UI commercial licenses may be obtained at http://www.telerik.com/purchase/kendo-ui. | ||
*Copyright © 2018 Telerik AD. All rights reserved.* |
{ | ||
"name": "@progress/kendo-dropdowns-vue-wrapper", | ||
"version": "2017.3.1116", | ||
"version": "2018.1.117-dev.02051112", | ||
"description": "Kendo UI DropDowns wrapper for Vue.js", | ||
@@ -30,9 +30,10 @@ "main": "./dist/npm/index.js", | ||
"dependencies": { | ||
"@progress/kendo-base-components-vue-wrapper": "2017.3.1116" | ||
"@progress/kendo-base-components-vue-wrapper": "2018.1.117-dev.02051112" | ||
}, | ||
"peerDependencies": { | ||
"@progress/kendo-ui": "~2017.3.1116", | ||
"@progress/kendo-ui": "~2017.3.1026", | ||
"vue": "^2.3.3" | ||
}, | ||
"devDependencies": { | ||
"@progress/kendo-theme-default": "latest", | ||
"vue": "^2.3.3" | ||
@@ -39,0 +40,0 @@ }, |
@@ -1,4 +0,4 @@ | ||
# Kendo UI | ||
## Professional Grade Kendo UI Wrapper Components for Vue | ||
This package is part of the [Kendo UI](http://www.telerik.com/kendo-ui/) suite. | ||
This package is part of the [Kendo UI for Vue](https://www.telerik.com/kendo-react-ui/) suite of wrapper components. | ||
@@ -9,2 +9,10 @@ ## License | ||
All available Kendo UI commercial licenses may be obtained at http://www.telerik.com/purchase/kendo-ui. | ||
All available Kendo UI commercial licenses may be obtained at http://www.telerik.com/purchase/kendo-ui. | ||
## Resources | ||
[Browse the Wrapper Components](https://www.telerik.com/kendo-vue-ui/components/) | ||
*Copyright © 2018 Progress Software Corporation and/or its subsidiaries or affiliates. All Rights Reserved.* | ||
*Progress, Telerik, and certain product names used herein are trademarks or registered trademarks of Progress Software Corporation and/or one of its subsidiaries or affiliates in the U.S. and/or other countries.* |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
Manifest confusion
Supply chain riskThis package has inconsistent metadata. This could be malicious or caused by an error when publishing the package.
Found 1 instance in 1 package
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
1475611
72
9914
18
2
3
2