@progress/kendo-vue-dropdowns 3.11.0-dev.202305230751 → 3.11.0-dev.202306031715

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.
@@ -23,7 +23,7 @@ import DropDownBase from '../common/DropDownBase';
23
23
  import { GroupStickyHeader } from '../common/GroupStickyHeader';
24
24
  import { ClearButton } from '../common/ClearButton';
25
25
  import { itemIndexStartsWith, getItemValue, areSame, getFocusedItem } from '../common/utils';
26
- import { guid, Keys, classNames, templateRendering, getListeners, getTemplate, kendoThemeMaps, setRef, getRef, Icon } from '@progress/kendo-vue-common';
26
+ import { guid, Keys, classNames, templateRendering, getListeners, getTemplate, kendoThemeMaps, setRef, getRef } from '@progress/kendo-vue-common';
27
27
  var sizeMap = kendoThemeMaps.sizeMap,
28
28
  roundedMap = kendoThemeMaps.roundedMap;
29
29
  var VALIDATION_MESSAGE = 'Please enter a valid value!';
@@ -791,12 +791,8 @@ var AutoCompleteVue2 = {
791
791
  on: this.v3 ? undefined : {
792
792
  "clearclick": this.clearButtonClick
793
793
  }
794
- }), h(Icon, {
795
- name: loading ? 'loading' : '',
796
- attrs: this.v3 ? undefined : {
797
- name: loading ? 'loading' : ''
798
- },
799
- "class": 'k-input-loading-icon'
794
+ }), h("span", {
795
+ "class": loading ? 'k-input-loading-icon k-icon k-i-loading' : undefined
800
796
  }), renderListContainer.call(this)]);
801
797
  return label ? h("span", {
802
798
  "class": this.spanClassNames,
@@ -8,7 +8,7 @@ import { DropDownTreeProps } from './DropDownTreeProps';
8
8
  * @hidden
9
9
  */
10
10
  export interface DropDownTreeState {
11
- calculatedId: string;
11
+ componentGuid: string;
12
12
  anchor: string;
13
13
  }
14
14
  /**
@@ -187,7 +187,7 @@ var DropDownTreeVue2 = {
187
187
  },
188
188
  created: function created() {
189
189
  validatePackage(packageMetadata);
190
- this.calculatedId = guid();
190
+ this.componentGuid = guid();
191
191
  this.anchor = guid();
192
192
  },
193
193
  data: function data() {
@@ -264,7 +264,7 @@ var DropDownTreeVue2 = {
264
264
  render: function render(createElement) {
265
265
  var _this2 = this;
266
266
  var h = gh || createElement;
267
- var id = this.$props.id || this.calculatedId;
267
+ var id = this.$props.id || this.componentGuid;
268
268
  var _a = this.$props,
269
269
  dataItems = _a.dataItems,
270
270
  dataItemKey = _a.dataItemKey,
@@ -612,6 +612,7 @@ var DropDownTreeVue2 = {
612
612
  editorValid: isValid,
613
613
  editorDisabled: disabled,
614
614
  editorId: id,
615
+ focused: this.focused,
615
616
  dir: dir
616
617
  },
617
618
  editorValue: this.currentValueText,
@@ -619,6 +620,7 @@ var DropDownTreeVue2 = {
619
620
  editorValid: isValid,
620
621
  editorDisabled: disabled,
621
622
  editorId: id,
623
+ focused: this.focused,
622
624
  dir: dir
623
625
  }, this.v3 ? function () {
624
626
  return [dropdowntree];
@@ -1197,19 +1197,15 @@ var MultiSelectVue2 = {
1197
1197
  }) : undefined
1198
1198
  }, this.v3 ? function () {
1199
1199
  return [renderSearchBar.call(_this4, id)];
1200
- } : [renderSearchBar.call(_this4, id)]), clearButton && !loading &&
1200
+ } : [renderSearchBar.call(_this4, id)]), clearButton &&
1201
1201
  // @ts-ignore function children
1202
1202
  h(ClearButton, {
1203
1203
  onClearclick: this.clearButtonClick,
1204
1204
  on: this.v3 ? undefined : {
1205
1205
  "clearclick": this.clearButtonClick
1206
1206
  }
1207
- }), h(Icon, {
1208
- name: loading ? 'loading' : '',
1209
- attrs: this.v3 ? undefined : {
1210
- name: loading ? 'loading' : ''
1211
- },
1212
- "class": 'k-input-loading-icon'
1207
+ }), h("span", {
1208
+ "class": loading ? 'k-input-loading-icon k-icon k-i-loading' : undefined
1213
1209
  }), renderListContainer.call(this)]);
1214
1210
  return label ? h("span", {
1215
1211
  "class": this.spanClassNames,
@@ -16,6 +16,9 @@ export interface GroupStickyHeaderProps {
16
16
  */
17
17
  render?: any;
18
18
  }
19
+ /**
20
+ * @hidden
21
+ */
19
22
  export interface GroupStickyHeaderAll extends Vue2type {
20
23
  }
21
24
  /**
@@ -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: 1684827665,
8
+ publishDate: 1685811900,
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
  };
@@ -23,7 +23,7 @@ import DropDownBase from '../common/DropDownBase.js';
23
23
  import { GroupStickyHeader } from '../common/GroupStickyHeader.js';
24
24
  import { ClearButton } from '../common/ClearButton.js';
25
25
  import { itemIndexStartsWith, getItemValue, areSame, getFocusedItem } from '../common/utils.js';
26
- import { guid, Keys, classNames, templateRendering, getListeners, getTemplate, kendoThemeMaps, setRef, getRef, Icon } from '@progress/kendo-vue-common';
26
+ import { guid, Keys, classNames, templateRendering, getListeners, getTemplate, kendoThemeMaps, setRef, getRef } from '@progress/kendo-vue-common';
27
27
  var sizeMap = kendoThemeMaps.sizeMap,
28
28
  roundedMap = kendoThemeMaps.roundedMap;
29
29
  var VALIDATION_MESSAGE = 'Please enter a valid value!';
@@ -791,12 +791,8 @@ var AutoCompleteVue2 = {
791
791
  on: this.v3 ? undefined : {
792
792
  "clearclick": this.clearButtonClick
793
793
  }
794
- }), h(Icon, {
795
- name: loading ? 'loading' : '',
796
- attrs: this.v3 ? undefined : {
797
- name: loading ? 'loading' : ''
798
- },
799
- "class": 'k-input-loading-icon'
794
+ }), h("span", {
795
+ "class": loading ? 'k-input-loading-icon k-icon k-i-loading' : undefined
800
796
  }), renderListContainer.call(this)]);
801
797
  return label ? h("span", {
802
798
  "class": this.spanClassNames,
@@ -8,7 +8,7 @@ import { DropDownTreeProps } from './DropDownTreeProps';
8
8
  * @hidden
9
9
  */
10
10
  export interface DropDownTreeState {
11
- calculatedId: string;
11
+ componentGuid: string;
12
12
  anchor: string;
13
13
  }
14
14
  /**
@@ -187,7 +187,7 @@ var DropDownTreeVue2 = {
187
187
  },
188
188
  created: function created() {
189
189
  validatePackage(packageMetadata);
190
- this.calculatedId = guid();
190
+ this.componentGuid = guid();
191
191
  this.anchor = guid();
192
192
  },
193
193
  data: function data() {
@@ -264,7 +264,7 @@ var DropDownTreeVue2 = {
264
264
  render: function render(createElement) {
265
265
  var _this2 = this;
266
266
  var h = gh || createElement;
267
- var id = this.$props.id || this.calculatedId;
267
+ var id = this.$props.id || this.componentGuid;
268
268
  var _a = this.$props,
269
269
  dataItems = _a.dataItems,
270
270
  dataItemKey = _a.dataItemKey,
@@ -612,6 +612,7 @@ var DropDownTreeVue2 = {
612
612
  editorValid: isValid,
613
613
  editorDisabled: disabled,
614
614
  editorId: id,
615
+ focused: this.focused,
615
616
  dir: dir
616
617
  },
617
618
  editorValue: this.currentValueText,
@@ -619,6 +620,7 @@ var DropDownTreeVue2 = {
619
620
  editorValid: isValid,
620
621
  editorDisabled: disabled,
621
622
  editorId: id,
623
+ focused: this.focused,
622
624
  dir: dir
623
625
  }, this.v3 ? function () {
624
626
  return [dropdowntree];
@@ -1197,19 +1197,15 @@ var MultiSelectVue2 = {
1197
1197
  }) : undefined
1198
1198
  }, this.v3 ? function () {
1199
1199
  return [renderSearchBar.call(_this4, id)];
1200
- } : [renderSearchBar.call(_this4, id)]), clearButton && !loading &&
1200
+ } : [renderSearchBar.call(_this4, id)]), clearButton &&
1201
1201
  // @ts-ignore function children
1202
1202
  h(ClearButton, {
1203
1203
  onClearclick: this.clearButtonClick,
1204
1204
  on: this.v3 ? undefined : {
1205
1205
  "clearclick": this.clearButtonClick
1206
1206
  }
1207
- }), h(Icon, {
1208
- name: loading ? 'loading' : '',
1209
- attrs: this.v3 ? undefined : {
1210
- name: loading ? 'loading' : ''
1211
- },
1212
- "class": 'k-input-loading-icon'
1207
+ }), h("span", {
1208
+ "class": loading ? 'k-input-loading-icon k-icon k-i-loading' : undefined
1213
1209
  }), renderListContainer.call(this)]);
1214
1210
  return label ? h("span", {
1215
1211
  "class": this.spanClassNames,
@@ -16,6 +16,9 @@ export interface GroupStickyHeaderProps {
16
16
  */
17
17
  render?: any;
18
18
  }
19
+ /**
20
+ * @hidden
21
+ */
19
22
  export interface GroupStickyHeaderAll extends Vue2type {
20
23
  }
21
24
  /**
@@ -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: 1684827665,
8
+ publishDate: 1685811900,
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
  };
@@ -797,12 +797,8 @@ var AutoCompleteVue2 = {
797
797
  on: this.v3 ? undefined : {
798
798
  "clearclick": this.clearButtonClick
799
799
  }
800
- }), h(kendo_vue_common_1.Icon, {
801
- name: loading ? 'loading' : '',
802
- attrs: this.v3 ? undefined : {
803
- name: loading ? 'loading' : ''
804
- },
805
- "class": 'k-input-loading-icon'
800
+ }), h("span", {
801
+ "class": loading ? 'k-input-loading-icon k-icon k-i-loading' : undefined
806
802
  }), renderListContainer.call(this)]);
807
803
  return label ? h("span", {
808
804
  "class": this.spanClassNames,
@@ -8,7 +8,7 @@ import { DropDownTreeProps } from './DropDownTreeProps';
8
8
  * @hidden
9
9
  */
10
10
  export interface DropDownTreeState {
11
- calculatedId: string;
11
+ componentGuid: string;
12
12
  anchor: string;
13
13
  }
14
14
  /**
@@ -191,7 +191,7 @@ var DropDownTreeVue2 = {
191
191
  },
192
192
  created: function created() {
193
193
  (0, kendo_vue_common_2.validatePackage)(package_metadata_1.packageMetadata);
194
- this.calculatedId = (0, kendo_vue_common_1.guid)();
194
+ this.componentGuid = (0, kendo_vue_common_1.guid)();
195
195
  this.anchor = (0, kendo_vue_common_1.guid)();
196
196
  },
197
197
  data: function data() {
@@ -268,7 +268,7 @@ var DropDownTreeVue2 = {
268
268
  render: function render(createElement) {
269
269
  var _this2 = this;
270
270
  var h = gh || createElement;
271
- var id = this.$props.id || this.calculatedId;
271
+ var id = this.$props.id || this.componentGuid;
272
272
  var _a = this.$props,
273
273
  dataItems = _a.dataItems,
274
274
  dataItemKey = _a.dataItemKey,
@@ -616,6 +616,7 @@ var DropDownTreeVue2 = {
616
616
  editorValid: isValid,
617
617
  editorDisabled: disabled,
618
618
  editorId: id,
619
+ focused: this.focused,
619
620
  dir: dir
620
621
  },
621
622
  editorValue: this.currentValueText,
@@ -623,6 +624,7 @@ var DropDownTreeVue2 = {
623
624
  editorValid: isValid,
624
625
  editorDisabled: disabled,
625
626
  editorId: id,
627
+ focused: this.focused,
626
628
  dir: dir
627
629
  }, this.v3 ? function () {
628
630
  return [dropdowntree];
@@ -1203,19 +1203,15 @@ var MultiSelectVue2 = {
1203
1203
  }) : undefined
1204
1204
  }, this.v3 ? function () {
1205
1205
  return [renderSearchBar.call(_this4, id)];
1206
- } : [renderSearchBar.call(_this4, id)]), clearButton && !loading &&
1206
+ } : [renderSearchBar.call(_this4, id)]), clearButton &&
1207
1207
  // @ts-ignore function children
1208
1208
  h(ClearButton_1.ClearButton, {
1209
1209
  onClearclick: this.clearButtonClick,
1210
1210
  on: this.v3 ? undefined : {
1211
1211
  "clearclick": this.clearButtonClick
1212
1212
  }
1213
- }), h(kendo_vue_common_1.Icon, {
1214
- name: loading ? 'loading' : '',
1215
- attrs: this.v3 ? undefined : {
1216
- name: loading ? 'loading' : ''
1217
- },
1218
- "class": 'k-input-loading-icon'
1213
+ }), h("span", {
1214
+ "class": loading ? 'k-input-loading-icon k-icon k-i-loading' : undefined
1219
1215
  }), renderListContainer.call(this)]);
1220
1216
  return label ? h("span", {
1221
1217
  "class": this.spanClassNames,
@@ -16,6 +16,9 @@ export interface GroupStickyHeaderProps {
16
16
  */
17
17
  render?: any;
18
18
  }
19
+ /**
20
+ * @hidden
21
+ */
19
22
  export interface GroupStickyHeaderAll extends Vue2type {
20
23
  }
21
24
  /**
@@ -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: 1684827665,
11
+ publishDate: 1685811900,
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.11.0-dev.202305230751",
4
+ "version": "3.11.0-dev.202306031715",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/telerik/kendo-vue.git"
@@ -53,19 +53,19 @@
53
53
  "vue": "^2.6.12 || ^3.0.2"
54
54
  },
55
55
  "dependencies": {
56
- "@progress/kendo-vue-buttons": "3.11.0-dev.202305230751",
57
- "@progress/kendo-vue-common": "3.11.0-dev.202305230751",
58
- "@progress/kendo-vue-popup": "3.11.0-dev.202305230751"
56
+ "@progress/kendo-vue-buttons": "3.11.0-dev.202306031715",
57
+ "@progress/kendo-vue-common": "3.11.0-dev.202306031715",
58
+ "@progress/kendo-vue-popup": "3.11.0-dev.202306031715"
59
59
  },
60
60
  "devDependencies": {
61
61
  "@progress/kendo-data-query": "^1.5.4",
62
62
  "@progress/kendo-licensing": "^1.3.0",
63
63
  "@progress/kendo-svg-icons": "^1.0.0",
64
- "@progress/kendo-vue-data-tools": "3.11.0-dev.202305230751",
65
- "@progress/kendo-vue-inputs": "3.11.0-dev.202305230751",
66
- "@progress/kendo-vue-intl": "3.11.0-dev.202305230751",
67
- "@progress/kendo-vue-labels": "3.11.0-dev.202305230751",
68
- "@progress/kendo-vue-treeview": "3.11.0-dev.202305230751"
64
+ "@progress/kendo-vue-data-tools": "3.11.0-dev.202306031715",
65
+ "@progress/kendo-vue-inputs": "3.11.0-dev.202306031715",
66
+ "@progress/kendo-vue-intl": "3.11.0-dev.202306031715",
67
+ "@progress/kendo-vue-labels": "3.11.0-dev.202306031715",
68
+ "@progress/kendo-vue-treeview": "3.11.0-dev.202306031715"
69
69
  },
70
70
  "author": "Progress",
71
71
  "license": "SEE LICENSE IN LICENSE.md",