@progress/kendo-vue-dropdowns 4.3.0-dev.202401301055 → 4.3.0-dev.202401301426

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,6 +23,8 @@ export interface TagListProps {
23
23
  removeTagIcon: string;
24
24
  dataItems: Array<TagData>;
25
25
  guid: string;
26
+ id?: string;
27
+ className?: string;
26
28
  focused?: TagData;
27
29
  tagRender?: any;
28
30
  size?: null | 'small' | 'medium' | 'large' | string;
@@ -11,7 +11,7 @@ var __assign = this && this.__assign || function () {
11
11
  return __assign.apply(this, arguments);
12
12
  };
13
13
  // @ts-ignore
14
- import { getDefaultSlots, getTemplate, kendoThemeMaps } from '@progress/kendo-vue-common';
14
+ import { classNames, getDefaultSlots, getTemplate, kendoThemeMaps } from '@progress/kendo-vue-common';
15
15
  import * as Vue from 'vue';
16
16
  var allVue = Vue;
17
17
  var gh = allVue.h;
@@ -50,6 +50,8 @@ var TagListVue2 = {
50
50
  return ['solid', 'flat', 'outline'].includes(value);
51
51
  }
52
52
  },
53
+ id: String,
54
+ className: String,
53
55
  size: {
54
56
  type: String,
55
57
  default: 'medium',
@@ -90,9 +92,15 @@ var TagListVue2 = {
90
92
  size = _a.size,
91
93
  disabled = _a.disabled,
92
94
  tagsRounded = _a.tagsRounded,
93
- removeTagIcon = _a.removeTagIcon;
95
+ removeTagIcon = _a.removeTagIcon,
96
+ id = _a.id,
97
+ className = _a.className;
94
98
  return h("div", {
95
- "class": 'k-input-values',
99
+ "class": classNames('k-input-values', className),
100
+ id: id,
101
+ attrs: this.v3 ? undefined : {
102
+ id: id
103
+ },
96
104
  style: this.$attrs.style
97
105
  }, [h("div", {
98
106
  "class": this.wrapperClass,
@@ -590,15 +590,10 @@ var MultiSelectTreeVue2 = {
590
590
  "aria-describedby": this.$props.ariaLabelledBy ? this.$props.ariaLabelledBy : 'tagslist-' + id,
591
591
  "aria-required": this.$props.required,
592
592
  onClick: this.onWrapperClick
593
- }, [h("div", {
594
- id: 'tagslist-' + id,
595
- attrs: this.v3 ? undefined : {
596
- id: 'tagslist-' + id
597
- },
598
- "class": classNames('k-input-values k-chip-list k-selection-multiple', (_b = {}, _b["k-chip-list-".concat(sizeMap[size] || size)] = size, _b['k-readonly'] = this.hasValue, _b))
599
593
  }, [this.tagsToRenderRef.length > 0 && h(TagList, {
600
- tagRender: tagTemplate,
594
+ id: 'tagslist-' + id,
601
595
  attrs: this.v3 ? undefined : {
596
+ id: 'tagslist-' + id,
602
597
  tagRender: tagTemplate,
603
598
  dataItems: this.tagsToRenderRef,
604
599
  guid: id,
@@ -609,6 +604,8 @@ var MultiSelectTreeVue2 = {
609
604
  size: size,
610
605
  fillMode: fillMode
611
606
  },
607
+ "class": classNames('k-input-values k-chip-list k-selection-multiple', (_b = {}, _b["k-chip-list-".concat(sizeMap[size] || size)] = size, _b['k-readonly'] = this.hasValue, _b)),
608
+ tagRender: tagTemplate,
612
609
  onTagdelete: this.onTagDelete,
613
610
  on: this.v3 ? undefined : {
614
611
  "tagdelete": this.onTagDelete
@@ -637,7 +634,7 @@ var MultiSelectTreeVue2 = {
637
634
  "aria-label": this.$props.ariaLabelledBy
638
635
  }, [this.tagsToRenderRef.length === 0 && h("span", {
639
636
  "class": "k-input-value-text"
640
- }, [placeholder])])]), this.$props.loading && h(Icon, {
637
+ }, [placeholder])]), this.$props.loading && h(Icon, {
641
638
  "class": "k-input-loading-icon",
642
639
  name: "loading",
643
640
  attrs: this.v3 ? undefined : {
@@ -22,6 +22,7 @@ import { getTemplate } from '@progress/kendo-vue-common';
22
22
  */
23
23
  var GroupStickyHeaderVue2 = {
24
24
  name: 'KendoGroupStickyHeader',
25
+ inheritAttrs: false,
25
26
  props: {
26
27
  group: String,
27
28
  render: Object
@@ -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: 1706611548,
8
+ publishDate: 1706624233,
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,6 +23,8 @@ export interface TagListProps {
23
23
  removeTagIcon: string;
24
24
  dataItems: Array<TagData>;
25
25
  guid: string;
26
+ id?: string;
27
+ className?: string;
26
28
  focused?: TagData;
27
29
  tagRender?: any;
28
30
  size?: null | 'small' | 'medium' | 'large' | string;
@@ -11,7 +11,7 @@ var __assign = this && this.__assign || function () {
11
11
  return __assign.apply(this, arguments);
12
12
  };
13
13
  // @ts-ignore
14
- import { getDefaultSlots, getTemplate, kendoThemeMaps } from '@progress/kendo-vue-common';
14
+ import { classNames, getDefaultSlots, getTemplate, kendoThemeMaps } from '@progress/kendo-vue-common';
15
15
  import * as Vue from 'vue';
16
16
  var allVue = Vue;
17
17
  var gh = allVue.h;
@@ -50,6 +50,8 @@ var TagListVue2 = {
50
50
  return ['solid', 'flat', 'outline'].includes(value);
51
51
  }
52
52
  },
53
+ id: String,
54
+ className: String,
53
55
  size: {
54
56
  type: String,
55
57
  default: 'medium',
@@ -90,9 +92,15 @@ var TagListVue2 = {
90
92
  size = _a.size,
91
93
  disabled = _a.disabled,
92
94
  tagsRounded = _a.tagsRounded,
93
- removeTagIcon = _a.removeTagIcon;
95
+ removeTagIcon = _a.removeTagIcon,
96
+ id = _a.id,
97
+ className = _a.className;
94
98
  return h("div", {
95
- "class": 'k-input-values',
99
+ "class": classNames('k-input-values', className),
100
+ id: id,
101
+ attrs: this.v3 ? undefined : {
102
+ id: id
103
+ },
96
104
  style: this.$attrs.style
97
105
  }, [h("div", {
98
106
  "class": this.wrapperClass,
@@ -590,15 +590,10 @@ var MultiSelectTreeVue2 = {
590
590
  "aria-describedby": this.$props.ariaLabelledBy ? this.$props.ariaLabelledBy : 'tagslist-' + id,
591
591
  "aria-required": this.$props.required,
592
592
  onClick: this.onWrapperClick
593
- }, [h("div", {
594
- id: 'tagslist-' + id,
595
- attrs: this.v3 ? undefined : {
596
- id: 'tagslist-' + id
597
- },
598
- "class": classNames('k-input-values k-chip-list k-selection-multiple', (_b = {}, _b["k-chip-list-".concat(sizeMap[size] || size)] = size, _b['k-readonly'] = this.hasValue, _b))
599
593
  }, [this.tagsToRenderRef.length > 0 && h(TagList, {
600
- tagRender: tagTemplate,
594
+ id: 'tagslist-' + id,
601
595
  attrs: this.v3 ? undefined : {
596
+ id: 'tagslist-' + id,
602
597
  tagRender: tagTemplate,
603
598
  dataItems: this.tagsToRenderRef,
604
599
  guid: id,
@@ -609,6 +604,8 @@ var MultiSelectTreeVue2 = {
609
604
  size: size,
610
605
  fillMode: fillMode
611
606
  },
607
+ "class": classNames('k-input-values k-chip-list k-selection-multiple', (_b = {}, _b["k-chip-list-".concat(sizeMap[size] || size)] = size, _b['k-readonly'] = this.hasValue, _b)),
608
+ tagRender: tagTemplate,
612
609
  onTagdelete: this.onTagDelete,
613
610
  on: this.v3 ? undefined : {
614
611
  "tagdelete": this.onTagDelete
@@ -637,7 +634,7 @@ var MultiSelectTreeVue2 = {
637
634
  "aria-label": this.$props.ariaLabelledBy
638
635
  }, [this.tagsToRenderRef.length === 0 && h("span", {
639
636
  "class": "k-input-value-text"
640
- }, [placeholder])])]), this.$props.loading && h(Icon, {
637
+ }, [placeholder])]), this.$props.loading && h(Icon, {
641
638
  "class": "k-input-loading-icon",
642
639
  name: "loading",
643
640
  attrs: this.v3 ? undefined : {
@@ -22,6 +22,7 @@ import { getTemplate } from '@progress/kendo-vue-common';
22
22
  */
23
23
  var GroupStickyHeaderVue2 = {
24
24
  name: 'KendoGroupStickyHeader',
25
+ inheritAttrs: false,
25
26
  props: {
26
27
  group: String,
27
28
  render: Object
@@ -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: 1706611548,
8
+ publishDate: 1706624233,
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,6 +23,8 @@ export interface TagListProps {
23
23
  removeTagIcon: string;
24
24
  dataItems: Array<TagData>;
25
25
  guid: string;
26
+ id?: string;
27
+ className?: string;
26
28
  focused?: TagData;
27
29
  tagRender?: any;
28
30
  size?: null | 'small' | 'medium' | 'large' | string;
@@ -56,6 +56,8 @@ var TagListVue2 = {
56
56
  return ['solid', 'flat', 'outline'].includes(value);
57
57
  }
58
58
  },
59
+ id: String,
60
+ className: String,
59
61
  size: {
60
62
  type: String,
61
63
  default: 'medium',
@@ -96,9 +98,15 @@ var TagListVue2 = {
96
98
  size = _a.size,
97
99
  disabled = _a.disabled,
98
100
  tagsRounded = _a.tagsRounded,
99
- removeTagIcon = _a.removeTagIcon;
101
+ removeTagIcon = _a.removeTagIcon,
102
+ id = _a.id,
103
+ className = _a.className;
100
104
  return h("div", {
101
- "class": 'k-input-values',
105
+ "class": (0, kendo_vue_common_1.classNames)('k-input-values', className),
106
+ id: id,
107
+ attrs: this.v3 ? undefined : {
108
+ id: id
109
+ },
102
110
  style: this.$attrs.style
103
111
  }, [h("div", {
104
112
  "class": this.wrapperClass,
@@ -596,15 +596,10 @@ var MultiSelectTreeVue2 = {
596
596
  "aria-describedby": this.$props.ariaLabelledBy ? this.$props.ariaLabelledBy : 'tagslist-' + id,
597
597
  "aria-required": this.$props.required,
598
598
  onClick: this.onWrapperClick
599
- }, [h("div", {
600
- id: 'tagslist-' + id,
601
- attrs: this.v3 ? undefined : {
602
- id: 'tagslist-' + id
603
- },
604
- "class": (0, kendo_vue_common_1.classNames)('k-input-values k-chip-list k-selection-multiple', (_b = {}, _b["k-chip-list-".concat(sizeMap[size] || size)] = size, _b['k-readonly'] = this.hasValue, _b))
605
599
  }, [this.tagsToRenderRef.length > 0 && h(TagList_1.TagList, {
606
- tagRender: tagTemplate,
600
+ id: 'tagslist-' + id,
607
601
  attrs: this.v3 ? undefined : {
602
+ id: 'tagslist-' + id,
608
603
  tagRender: tagTemplate,
609
604
  dataItems: this.tagsToRenderRef,
610
605
  guid: id,
@@ -615,6 +610,8 @@ var MultiSelectTreeVue2 = {
615
610
  size: size,
616
611
  fillMode: fillMode
617
612
  },
613
+ "class": (0, kendo_vue_common_1.classNames)('k-input-values k-chip-list k-selection-multiple', (_b = {}, _b["k-chip-list-".concat(sizeMap[size] || size)] = size, _b['k-readonly'] = this.hasValue, _b)),
614
+ tagRender: tagTemplate,
618
615
  onTagdelete: this.onTagDelete,
619
616
  on: this.v3 ? undefined : {
620
617
  "tagdelete": this.onTagDelete
@@ -643,7 +640,7 @@ var MultiSelectTreeVue2 = {
643
640
  "aria-label": this.$props.ariaLabelledBy
644
641
  }, [this.tagsToRenderRef.length === 0 && h("span", {
645
642
  "class": "k-input-value-text"
646
- }, [placeholder])])]), this.$props.loading && h(kendo_vue_common_1.Icon, {
643
+ }, [placeholder])]), this.$props.loading && h(kendo_vue_common_1.Icon, {
647
644
  "class": "k-input-loading-icon",
648
645
  name: "loading",
649
646
  attrs: this.v3 ? undefined : {
@@ -28,6 +28,7 @@ var kendo_vue_common_1 = require("@progress/kendo-vue-common");
28
28
  */
29
29
  var GroupStickyHeaderVue2 = {
30
30
  name: 'KendoGroupStickyHeader',
31
+ inheritAttrs: false,
31
32
  props: {
32
33
  group: String,
33
34
  render: Object
@@ -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: 1706611548,
11
+ publishDate: 1706624233,
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": "4.3.0-dev.202401301055",
4
+ "version": "4.3.0-dev.202401301426",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/telerik/kendo-vue.git"
@@ -54,21 +54,21 @@
54
54
  "vue": "^2.6.12 || ^3.0.2"
55
55
  },
56
56
  "dependencies": {
57
- "@progress/kendo-vue-buttons": "4.3.0-dev.202401301055",
58
- "@progress/kendo-vue-common": "4.3.0-dev.202401301055",
59
- "@progress/kendo-vue-layout": "4.3.0-dev.202401301055",
60
- "@progress/kendo-vue-popup": "4.3.0-dev.202401301055"
57
+ "@progress/kendo-vue-buttons": "4.3.0-dev.202401301426",
58
+ "@progress/kendo-vue-common": "4.3.0-dev.202401301426",
59
+ "@progress/kendo-vue-layout": "4.3.0-dev.202401301426",
60
+ "@progress/kendo-vue-popup": "4.3.0-dev.202401301426"
61
61
  },
62
62
  "devDependencies": {
63
63
  "@progress/kendo-data-query": "^1.5.4",
64
64
  "@progress/kendo-licensing": "^1.3.0",
65
65
  "@progress/kendo-svg-icons": "^2.0.0",
66
- "@progress/kendo-vue-data-tools": "4.3.0-dev.202401301055",
67
- "@progress/kendo-vue-inputs": "4.3.0-dev.202401301055",
68
- "@progress/kendo-vue-intl": "4.3.0-dev.202401301055",
69
- "@progress/kendo-vue-labels": "4.3.0-dev.202401301055",
70
- "@progress/kendo-vue-layout": "4.3.0-dev.202401301055",
71
- "@progress/kendo-vue-treeview": "4.3.0-dev.202401301055"
66
+ "@progress/kendo-vue-data-tools": "4.3.0-dev.202401301426",
67
+ "@progress/kendo-vue-inputs": "4.3.0-dev.202401301426",
68
+ "@progress/kendo-vue-intl": "4.3.0-dev.202401301426",
69
+ "@progress/kendo-vue-labels": "4.3.0-dev.202401301426",
70
+ "@progress/kendo-vue-layout": "4.3.0-dev.202401301426",
71
+ "@progress/kendo-vue-treeview": "4.3.0-dev.202401301426"
72
72
  },
73
73
  "author": "Progress",
74
74
  "license": "SEE LICENSE IN LICENSE.md",