@progress/kendo-angular-dropdowns 17.0.0-develop.20 → 17.0.0-develop.22

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.
Files changed (121) hide show
  1. package/autocomplete/autocomplete.component.d.ts +1 -1
  2. package/comboboxes/combobox-column/combobox-column.component.d.ts +1 -1
  3. package/comboboxes/combobox.component.d.ts +1 -1
  4. package/common/action-sheet.component.d.ts +1 -1
  5. package/common/disabled-items/item-disabled.d.ts +1 -1
  6. package/common/filter-input.directive.d.ts +1 -1
  7. package/common/filtering/filter.directive.d.ts +1 -1
  8. package/common/list.component.d.ts +1 -1
  9. package/common/localization/messages.d.ts +1 -1
  10. package/common/models/direction.d.ts +1 -1
  11. package/common/models/fillmode.d.ts +1 -1
  12. package/common/models/list-type.d.ts +1 -1
  13. package/common/models/rounded.d.ts +1 -1
  14. package/common/models/size.d.ts +1 -1
  15. package/common/searchbar.component.d.ts +1 -1
  16. package/common/selection/selectable.directive.d.ts +1 -1
  17. package/common/shared-events.directive.d.ts +1 -1
  18. package/common/taglist.component.d.ts +1 -1
  19. package/common/util.d.ts +2 -2
  20. package/dropdownlist/dropdownlist.component.d.ts +1 -1
  21. package/dropdowntrees/checked-state/base-check.directive.d.ts +1 -1
  22. package/dropdowntrees/checked-state/check-all.directive.d.ts +1 -1
  23. package/dropdowntrees/checked-state/check.directive.d.ts +1 -1
  24. package/dropdowntrees/data-binding/dropdowntree/flat-binding.directive.d.ts +1 -1
  25. package/dropdowntrees/data-binding/dropdowntree/hierarchy-binding.directive.d.ts +1 -1
  26. package/dropdowntrees/data-binding/multiselecttree/flat-binding.directive.d.ts +1 -1
  27. package/dropdowntrees/data-binding/multiselecttree/hierarchy-binding.directive.d.ts +1 -1
  28. package/dropdowntrees/dropdowntree.component.d.ts +1 -1
  29. package/dropdowntrees/expanded-state/expand.directive.d.ts +1 -1
  30. package/dropdowntrees/multiselecttree.component.d.ts +1 -1
  31. package/dropdowntrees/summary-tag/summary-tag.directive.d.ts +1 -1
  32. package/{esm2020 → esm2022}/autocomplete/autocomplete.component.mjs +235 -173
  33. package/{esm2020 → esm2022}/autocomplete/autocomplete.module.mjs +8 -8
  34. package/{esm2020 → esm2022}/comboboxes/combobox-column/column-cell-template.directive.mjs +4 -3
  35. package/{esm2020 → esm2022}/comboboxes/combobox-column/column-header-template.directive.mjs +4 -3
  36. package/esm2022/comboboxes/combobox-column/combobox-column.component.mjs +105 -0
  37. package/{esm2020 → esm2022}/comboboxes/combobox.component.mjs +326 -248
  38. package/{esm2020 → esm2022}/comboboxes/combobox.module.mjs +8 -8
  39. package/{esm2020 → esm2022}/comboboxes/multicolumncombobox.component.mjs +53 -48
  40. package/{esm2020 → esm2022}/common/action-sheet.component.mjs +26 -14
  41. package/{esm2020 → esm2022}/common/data.service.mjs +8 -7
  42. package/{esm2020 → esm2022}/common/disabled-items/disabled-items.service.mjs +6 -4
  43. package/{esm2020 → esm2022}/common/filter-input.directive.mjs +6 -3
  44. package/{esm2020 → esm2022}/common/filtering/filter.directive.mjs +20 -13
  45. package/{esm2020 → esm2022}/common/filtering/filterable-component.mjs +21 -0
  46. package/{esm2020 → esm2022}/common/list-item.directive.mjs +4 -3
  47. package/{esm2020 → esm2022}/common/list.component.mjs +72 -36
  48. package/{esm2020 → esm2022}/common/localization/custom-messages.component.mjs +9 -8
  49. package/{esm2020 → esm2022}/common/localization/localized-messages.directive.mjs +9 -8
  50. package/esm2022/common/localization/messages.mjs +65 -0
  51. package/{esm2020 → esm2022}/common/models/preventable-event.mjs +1 -3
  52. package/{esm2020 → esm2022}/common/models/remove-tag-event.mjs +4 -0
  53. package/{esm2020 → esm2022}/common/navigation/navigation.service.mjs +27 -23
  54. package/{esm2020 → esm2022}/common/searchbar.component.mjs +45 -28
  55. package/{esm2020 → esm2022}/common/selection/selectable.directive.mjs +9 -5
  56. package/{esm2020 → esm2022}/common/selection/selection.service.mjs +13 -10
  57. package/{esm2020 → esm2022}/common/shared-directives.module.mjs +28 -28
  58. package/{esm2020 → esm2022}/common/shared-events.directive.mjs +13 -7
  59. package/{esm2020 → esm2022}/common/shared.module.mjs +22 -23
  60. package/{esm2020 → esm2022}/common/taglist.component.mjs +35 -23
  61. package/{esm2020 → esm2022}/common/templates/custom-item-template.directive.mjs +4 -3
  62. package/{esm2020 → esm2022}/common/templates/fixed-group-template.directive.mjs +4 -3
  63. package/{esm2020 → esm2022}/common/templates/footer-template.directive.mjs +4 -3
  64. package/{esm2020 → esm2022}/common/templates/group-tag-template.directive.mjs +4 -3
  65. package/{esm2020 → esm2022}/common/templates/group-template.directive.mjs +4 -3
  66. package/{esm2020 → esm2022}/common/templates/header-template.directive.mjs +4 -3
  67. package/{esm2020 → esm2022}/common/templates/item-template.directive.mjs +4 -3
  68. package/{esm2020 → esm2022}/common/templates/no-data-template.directive.mjs +4 -3
  69. package/{esm2020 → esm2022}/common/templates/tag-template.directive.mjs +4 -3
  70. package/{esm2020 → esm2022}/common/templates/value-template.directive.mjs +4 -3
  71. package/{esm2020 → esm2022}/dropdownlist/dropdownlist.component.mjs +259 -184
  72. package/{esm2020 → esm2022}/dropdownlist/dropdownlist.module.mjs +8 -8
  73. package/esm2022/dropdowns.module.mjs +87 -0
  74. package/{esm2020 → esm2022}/dropdowntrees/checked-state/base-check.directive.mjs +10 -3
  75. package/{esm2020 → esm2022}/dropdowntrees/checked-state/check-all.directive.mjs +38 -21
  76. package/{esm2020 → esm2022}/dropdowntrees/checked-state/check.directive.mjs +31 -15
  77. package/{esm2020 → esm2022}/dropdowntrees/data-binding/dropdowntree/flat-binding.directive.mjs +12 -7
  78. package/{esm2020 → esm2022}/dropdowntrees/data-binding/dropdowntree/hierarchy-binding.directive.mjs +8 -7
  79. package/{esm2020 → esm2022}/dropdowntrees/data-binding/multiselecttree/flat-binding.directive.mjs +12 -7
  80. package/{esm2020 → esm2022}/dropdowntrees/data-binding/multiselecttree/hierarchy-binding.directive.mjs +8 -7
  81. package/{esm2020 → esm2022}/dropdowntrees/dropdowntree.component.mjs +307 -230
  82. package/{esm2020 → esm2022}/dropdowntrees/dropdowntrees.module.mjs +12 -12
  83. package/{esm2020 → esm2022}/dropdowntrees/expanded-state/expand.directive.mjs +8 -7
  84. package/{esm2020 → esm2022}/dropdowntrees/lookup/lookup.service.mjs +4 -6
  85. package/{esm2020 → esm2022}/dropdowntrees/multiselecttree.component.mjs +322 -252
  86. package/{esm2020 → esm2022}/dropdowntrees/summary-tag/summary-tag.directive.mjs +8 -7
  87. package/{esm2020 → esm2022}/dropdowntrees/templates/node-template.directive.mjs +4 -3
  88. package/{esm2020 → esm2022}/multiselect/multiselect.component.mjs +328 -254
  89. package/{esm2020 → esm2022}/multiselect/multiselect.module.mjs +8 -8
  90. package/{esm2020 → esm2022}/multiselect/summary-tag.directive.mjs +8 -7
  91. package/{esm2020 → esm2022}/package-metadata.mjs +2 -2
  92. package/{fesm2020 → fesm2022}/progress-kendo-angular-dropdowns.mjs +2553 -1837
  93. package/multiselect/multiselect.component.d.ts +1 -1
  94. package/multiselect/summary-tag.directive.d.ts +1 -1
  95. package/package.json +17 -23
  96. package/schematics/ngAdd/index.js +2 -2
  97. package/esm2020/comboboxes/combobox-column/combobox-column.component.mjs +0 -60
  98. package/esm2020/common/localization/messages.mjs +0 -33
  99. package/esm2020/dropdowns.module.mjs +0 -87
  100. package/fesm2015/progress-kendo-angular-dropdowns.mjs +0 -17609
  101. /package/{esm2020 → esm2022}/comboboxes/combobox-column/util.mjs +0 -0
  102. /package/{esm2020 → esm2022}/common/constants/error-messages.mjs +0 -0
  103. /package/{esm2020 → esm2022}/common/disabled-items/item-disabled.mjs +0 -0
  104. /package/{esm2020 → esm2022}/common/filtering/filter-settings.mjs +0 -0
  105. /package/{esm2020 → esm2022}/common/models/checkboxes-settings.mjs +0 -0
  106. /package/{esm2020 → esm2022}/common/models/direction.mjs +0 -0
  107. /package/{esm2020 → esm2022}/common/models/fillmode.mjs +0 -0
  108. /package/{esm2020 → esm2022}/common/models/list-type.mjs +0 -0
  109. /package/{esm2020 → esm2022}/common/models/page-change-event.mjs +0 -0
  110. /package/{esm2020 → esm2022}/common/models/popup-settings.mjs +0 -0
  111. /package/{esm2020 → esm2022}/common/models/rounded.mjs +0 -0
  112. /package/{esm2020 → esm2022}/common/models/size.mjs +0 -0
  113. /package/{esm2020 → esm2022}/common/models/virtualization-settings.mjs +0 -0
  114. /package/{esm2020 → esm2022}/common/navigation/navigation-action.mjs +0 -0
  115. /package/{esm2020 → esm2022}/common/util.mjs +0 -0
  116. /package/{esm2020 → esm2022}/directives.mjs +0 -0
  117. /package/{esm2020 → esm2022}/dropdowntrees/checked-state/checkable-settings.mjs +0 -0
  118. /package/{esm2020 → esm2022}/dropdowntrees/checked-state/checked-item.mjs +0 -0
  119. /package/{esm2020 → esm2022}/dropdowntrees/lookup/lookup.mjs +0 -0
  120. /package/{esm2020 → esm2022}/index.mjs +0 -0
  121. /package/{esm2020 → esm2022}/progress-kendo-angular-dropdowns.mjs +0 -0
@@ -0,0 +1,105 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the project root for more information
4
+ *-------------------------------------------------------------------------------------------*/
5
+ import { Component, ContentChild, Input } from '@angular/core';
6
+ import { ColumnCellTemplateDirective } from './column-cell-template.directive';
7
+ import { ColumnHeaderTemplateDirective } from './column-header-template.directive';
8
+ import * as i0 from "@angular/core";
9
+ /**
10
+ * Represents the column definition of the [MultiColumnComboBox]({% slug overview_multicolumncombobox %})
11
+ * ([see example]({% slug columns_multicolumncombobox %})).
12
+ */
13
+ export class ComboBoxColumnComponent {
14
+ /**
15
+ * @hidden
16
+ */
17
+ cellTemplate;
18
+ /**
19
+ * @hidden
20
+ */
21
+ headerTemplate;
22
+ /**
23
+ * The field to which the column is bound.
24
+ *
25
+ * > The `field` property can be set to point to a nested property value - e.g. `category.name`.
26
+ */
27
+ field;
28
+ /**
29
+ * The title of the column.
30
+ */
31
+ title;
32
+ /**
33
+ * The width of the column (in pixels).
34
+ */
35
+ width;
36
+ /**
37
+ * Sets the visibility of the column.
38
+ *
39
+ * @default false
40
+ */
41
+ hidden = false;
42
+ /**
43
+ * Sets the custom styles for the table cells (excluding the header ones) of the column.
44
+ * Under the hood, to apply the property, the style option uses the NgStyle directive.
45
+ */
46
+ style;
47
+ /**
48
+ * Sets the custom styles for the header cell of the column.
49
+ * Under the hood, to apply the property, the headerStyle option uses the NgStyle directive.
50
+ */
51
+ headerStyle;
52
+ /**
53
+ * Sets the custom CSS classes to the column cells.
54
+ * Under the hood, to apply the property, the class option uses the NgClass directive.
55
+ */
56
+ class;
57
+ /**
58
+ * Sets the custom CSS classes to the column header cell.
59
+ * Under the hood, to apply the property, the headerClass option uses the NgClass directive.
60
+ */
61
+ headerClass;
62
+ /**
63
+ * Sets the condition that needs to be satisfied for a column to remain visible.
64
+ * If you set the [`hidden`]({% slug api_dropdowns_comboboxcolumncomponent %}#toc-hidden) property, the behavior of `media` is overridden.
65
+ */
66
+ media;
67
+ /**
68
+ * @hidden
69
+ */
70
+ matchesMedia = true;
71
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ComboBoxColumnComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
72
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: ComboBoxColumnComponent, isStandalone: true, selector: "kendo-combobox-column", inputs: { field: "field", title: "title", width: "width", hidden: "hidden", style: "style", headerStyle: "headerStyle", class: "class", headerClass: "headerClass", media: "media" }, queries: [{ propertyName: "cellTemplate", first: true, predicate: ColumnCellTemplateDirective, descendants: true }, { propertyName: "headerTemplate", first: true, predicate: ColumnHeaderTemplateDirective, descendants: true }], ngImport: i0, template: '', isInline: true });
73
+ }
74
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ComboBoxColumnComponent, decorators: [{
75
+ type: Component,
76
+ args: [{
77
+ selector: 'kendo-combobox-column',
78
+ template: '',
79
+ standalone: true
80
+ }]
81
+ }], propDecorators: { cellTemplate: [{
82
+ type: ContentChild,
83
+ args: [ColumnCellTemplateDirective, { static: false }]
84
+ }], headerTemplate: [{
85
+ type: ContentChild,
86
+ args: [ColumnHeaderTemplateDirective, { static: false }]
87
+ }], field: [{
88
+ type: Input
89
+ }], title: [{
90
+ type: Input
91
+ }], width: [{
92
+ type: Input
93
+ }], hidden: [{
94
+ type: Input
95
+ }], style: [{
96
+ type: Input
97
+ }], headerStyle: [{
98
+ type: Input
99
+ }], class: [{
100
+ type: Input
101
+ }], headerClass: [{
102
+ type: Input
103
+ }], media: [{
104
+ type: Input
105
+ }] } });