@progress/kendo-angular-dropdowns 25.0.0-develop.7 → 25.0.0-develop.8

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/index.d.ts CHANGED
@@ -41,8 +41,8 @@ declare class SearchBarComponent implements OnChanges, OnInit, OnDestroy {
41
41
  get isRequired(): boolean;
42
42
  set isSuggestable(isSuggestable: boolean);
43
43
  get isSuggestable(): boolean;
44
- set isFilterable(isFilterable: boolean);
45
- get isFilterable(): boolean;
44
+ set hasListAutocomplete(hasListAutocomplete: boolean);
45
+ get hasListAutocomplete(): boolean;
46
46
  get userInput(): string;
47
47
  set userInput(userInput: string);
48
48
  /**
@@ -83,7 +83,7 @@ declare class SearchBarComponent implements OnChanges, OnInit, OnDestroy {
83
83
  private _previousValue;
84
84
  private _placeholder;
85
85
  private _isSuggestable;
86
- private _isFilterable;
86
+ private _hasListAutocomplete;
87
87
  private renderer;
88
88
  private subs;
89
89
  private _inputAttributes;
@@ -107,7 +107,7 @@ declare class SearchBarComponent implements OnChanges, OnInit, OnDestroy {
107
107
  setInputSize(): void;
108
108
  private setInputAttributes;
109
109
  static ɵfac: i0.ɵɵFactoryDeclaration<SearchBarComponent, never>;
110
- static ɵcmp: i0.ɵɵComponentDeclaration<SearchBarComponent, "input[kendoSearchbar]", never, { "tagListId": { "alias": "tagListId"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "isRequired": { "alias": "isRequired"; "required": false; }; "isSuggestable": { "alias": "isSuggestable"; "required": false; }; "isFilterable": { "alias": "isFilterable"; "required": false; }; "userInput": { "alias": "userInput"; "required": false; }; "suggestedText": { "alias": "suggestedText"; "required": false; }; "inputAttributes": { "alias": "inputAttributes"; "required": false; }; "id": { "alias": "id"; "required": false; }; "activeDescendant": { "alias": "activeDescendant"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; "isLoading": { "alias": "isLoading"; "required": false; }; "ariaControls": { "alias": "ariaControls"; "required": false; }; "ariaExpanded": { "alias": "ariaExpanded"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; }, { "valueChange": "valueChange"; "onBlur": "onBlur"; "onFocus": "onFocus"; "onClick": "onClick"; "onNavigate": "onNavigate"; }, never, never, true, never>;
110
+ static ɵcmp: i0.ɵɵComponentDeclaration<SearchBarComponent, "input[kendoSearchbar]", never, { "tagListId": { "alias": "tagListId"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "isRequired": { "alias": "isRequired"; "required": false; }; "isSuggestable": { "alias": "isSuggestable"; "required": false; }; "hasListAutocomplete": { "alias": "hasListAutocomplete"; "required": false; }; "userInput": { "alias": "userInput"; "required": false; }; "suggestedText": { "alias": "suggestedText"; "required": false; }; "inputAttributes": { "alias": "inputAttributes"; "required": false; }; "id": { "alias": "id"; "required": false; }; "activeDescendant": { "alias": "activeDescendant"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; "isLoading": { "alias": "isLoading"; "required": false; }; "ariaControls": { "alias": "ariaControls"; "required": false; }; "ariaExpanded": { "alias": "ariaExpanded"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; }, { "valueChange": "valueChange"; "onBlur": "onBlur"; "onFocus": "onFocus"; "onClick": "onClick"; "onNavigate": "onNavigate"; }, never, never, true, never>;
111
111
  }
112
112
 
113
113
  /**
@@ -866,10 +866,12 @@ declare class ListComponent implements OnChanges, OnDestroy, AfterViewInit {
866
866
  type: ListType;
867
867
  checkboxes: MultiSelectCheckableSettings;
868
868
  ariaLive: string;
869
+ ariaLabel: string;
869
870
  isMultiselect: boolean;
870
871
  isActionSheetExpanded: boolean;
871
872
  showStickyHeader: boolean;
872
873
  rowWidth: number;
874
+ columnsWidths: number[];
873
875
  customItemTemplate: CustomItemTemplateDirective;
874
876
  text: string;
875
877
  allowCustom: boolean;
@@ -945,6 +947,7 @@ declare class ListComponent implements OnChanges, OnDestroy, AfterViewInit {
945
947
  */
946
948
  hasScrollbar(): boolean;
947
949
  isItemSelected(index: number): boolean;
950
+ itemAriaSelected(index: number): boolean | null;
948
951
  get isDisabledDefaultItem(): boolean;
949
952
  getDefaultItemText(): any;
950
953
  /**
@@ -958,7 +961,7 @@ declare class ListComponent implements OnChanges, OnDestroy, AfterViewInit {
958
961
  private positionItems;
959
962
  private setComponentClasses;
960
963
  static ɵfac: i0.ɵɵFactoryDeclaration<ListComponent, never>;
961
- static ɵcmp: i0.ɵɵComponentDeclaration<ListComponent, "kendo-list", never, { "selected": { "alias": "selected"; "required": false; }; "focused": { "alias": "focused"; "required": false; }; "textField": { "alias": "textField"; "required": false; }; "valueField": { "alias": "valueField"; "required": false; }; "height": { "alias": "height"; "required": false; }; "template": { "alias": "template"; "required": false; }; "groupTemplate": { "alias": "groupTemplate"; "required": false; }; "fixedGroupTemplate": { "alias": "fixedGroupTemplate"; "required": false; }; "show": { "alias": "show"; "required": false; }; "id": { "alias": "id"; "required": false; }; "optionPrefix": { "alias": "optionPrefix"; "required": false; }; "multipleSelection": { "alias": "multipleSelection"; "required": false; }; "virtual": { "alias": "virtual"; "required": false; }; "type": { "alias": "type"; "required": false; }; "checkboxes": { "alias": "checkboxes"; "required": false; }; "ariaLive": { "alias": "ariaLive"; "required": false; }; "isMultiselect": { "alias": "isMultiselect"; "required": false; }; "isActionSheetExpanded": { "alias": "isActionSheetExpanded"; "required": false; }; "showStickyHeader": { "alias": "showStickyHeader"; "required": false; }; "rowWidth": { "alias": "rowWidth"; "required": false; }; "customItemTemplate": { "alias": "customItemTemplate"; "required": false; }; "text": { "alias": "text"; "required": false; }; "allowCustom": { "alias": "allowCustom"; "required": false; }; "defaultItem": { "alias": "defaultItem"; "required": false; }; "data": { "alias": "data"; "required": false; }; "size": { "alias": "size"; "required": false; }; "rounded": { "alias": "rounded"; "required": false; }; }, { "onClick": "onClick"; "pageChange": "pageChange"; "listResize": "listResize"; "popupListScroll": "popupListScroll"; }, never, never, true, never>;
964
+ static ɵcmp: i0.ɵɵComponentDeclaration<ListComponent, "kendo-list", never, { "selected": { "alias": "selected"; "required": false; }; "focused": { "alias": "focused"; "required": false; }; "textField": { "alias": "textField"; "required": false; }; "valueField": { "alias": "valueField"; "required": false; }; "height": { "alias": "height"; "required": false; }; "template": { "alias": "template"; "required": false; }; "groupTemplate": { "alias": "groupTemplate"; "required": false; }; "fixedGroupTemplate": { "alias": "fixedGroupTemplate"; "required": false; }; "show": { "alias": "show"; "required": false; }; "id": { "alias": "id"; "required": false; }; "optionPrefix": { "alias": "optionPrefix"; "required": false; }; "multipleSelection": { "alias": "multipleSelection"; "required": false; }; "virtual": { "alias": "virtual"; "required": false; }; "type": { "alias": "type"; "required": false; }; "checkboxes": { "alias": "checkboxes"; "required": false; }; "ariaLive": { "alias": "ariaLive"; "required": false; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; "isMultiselect": { "alias": "isMultiselect"; "required": false; }; "isActionSheetExpanded": { "alias": "isActionSheetExpanded"; "required": false; }; "showStickyHeader": { "alias": "showStickyHeader"; "required": false; }; "rowWidth": { "alias": "rowWidth"; "required": false; }; "columnsWidths": { "alias": "columnsWidths"; "required": false; }; "customItemTemplate": { "alias": "customItemTemplate"; "required": false; }; "text": { "alias": "text"; "required": false; }; "allowCustom": { "alias": "allowCustom"; "required": false; }; "defaultItem": { "alias": "defaultItem"; "required": false; }; "data": { "alias": "data"; "required": false; }; "size": { "alias": "size"; "required": false; }; "rounded": { "alias": "rounded"; "required": false; }; }, { "onClick": "onClick"; "pageChange": "pageChange"; "listResize": "listResize"; "popupListScroll": "popupListScroll"; }, never, [".k-no-data"], true, never>;
962
965
  }
963
966
 
964
967
  /**
@@ -975,6 +978,7 @@ declare class AdaptiveRendererComponent {
975
978
  placeholder: string;
976
979
  searchBarValue: string;
977
980
  filterable: boolean;
981
+ showListContainer: boolean;
978
982
  closePopup: EventEmitter<any>;
979
983
  textInputChange: EventEmitter<any>;
980
984
  navigate: EventEmitter<any>;
@@ -984,6 +988,7 @@ declare class AdaptiveRendererComponent {
984
988
  constructor(localization: LocalizationService, adaptiveService: AdaptiveService);
985
989
  animationDuration: number;
986
990
  checkIcon: SVGIcon;
991
+ searchIcon: SVGIcon;
987
992
  private expanded;
988
993
  messageFor(key: string): string;
989
994
  onValueChange(value: string): void;
@@ -992,7 +997,7 @@ declare class AdaptiveRendererComponent {
992
997
  handleClose(): void;
993
998
  get windowSize(): AdaptiveSize;
994
999
  static ɵfac: i0.ɵɵFactoryDeclaration<AdaptiveRendererComponent, never>;
995
- static ɵcmp: i0.ɵɵComponentDeclaration<AdaptiveRendererComponent, "kendo-adaptive-renderer", never, { "title": { "alias": "title"; "required": false; }; "subtitle": { "alias": "subtitle"; "required": false; }; "showTextInput": { "alias": "showTextInput"; "required": false; }; "sharedPopupActionSheetTemplate": { "alias": "sharedPopupActionSheetTemplate"; "required": false; }; "text": { "alias": "text"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "searchBarValue": { "alias": "searchBarValue"; "required": false; }; "filterable": { "alias": "filterable"; "required": false; }; }, { "closePopup": "closePopup"; "textInputChange": "textInputChange"; "navigate": "navigate"; "onExpand": "onExpand"; }, never, never, true, never>;
1000
+ static ɵcmp: i0.ɵɵComponentDeclaration<AdaptiveRendererComponent, "kendo-adaptive-renderer", never, { "title": { "alias": "title"; "required": false; }; "subtitle": { "alias": "subtitle"; "required": false; }; "showTextInput": { "alias": "showTextInput"; "required": false; }; "sharedPopupActionSheetTemplate": { "alias": "sharedPopupActionSheetTemplate"; "required": false; }; "text": { "alias": "text"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "searchBarValue": { "alias": "searchBarValue"; "required": false; }; "filterable": { "alias": "filterable"; "required": false; }; "showListContainer": { "alias": "showListContainer"; "required": false; }; }, { "closePopup": "closePopup"; "textInputChange": "textInputChange"; "navigate": "navigate"; "onExpand": "onExpand"; }, never, never, true, never>;
996
1001
  }
997
1002
 
998
1003
  /**
@@ -2050,6 +2055,7 @@ declare class ComboBoxComponent extends MultiTabStop implements ControlValueAcce
2050
2055
  */
2051
2056
  preventEventDefault(event: Event): void;
2052
2057
  private get focusedItemText();
2058
+ private shouldResolveSuggestedItem;
2053
2059
  /**
2054
2060
  * Focuses the first match when there's text in the input field, but no focused item.
2055
2061
  */
@@ -2731,6 +2737,7 @@ declare class TagListComponent {
2731
2737
  disabled: boolean;
2732
2738
  tagPrefix: string;
2733
2739
  id: string;
2740
+ ariaLabel: string;
2734
2741
  set size(size: DropDownSize);
2735
2742
  get size(): DropDownSize;
2736
2743
  rounded: DropDownRounded;
@@ -2743,7 +2750,9 @@ declare class TagListComponent {
2743
2750
  hostClass: boolean;
2744
2751
  get hostId(): string;
2745
2752
  taglistRole: string;
2753
+ get hostAriaLabel(): string | null;
2746
2754
  multiselectable: boolean;
2755
+ ariaOrientation: string;
2747
2756
  private _size;
2748
2757
  constructor(renderer: Renderer2, hostElement: ElementRef<HTMLElement>);
2749
2758
  tagProp(tag: any, prop: string | string[], index: number): string;
@@ -2754,7 +2763,7 @@ declare class TagListComponent {
2754
2763
  tagAriaHidden(index: any): boolean;
2755
2764
  private getPropField;
2756
2765
  static ɵfac: i0.ɵɵFactoryDeclaration<TagListComponent, never>;
2757
- static ɵcmp: i0.ɵɵComponentDeclaration<TagListComponent, "kendo-taglist", never, { "tags": { "alias": "tags"; "required": false; }; "textField": { "alias": "textField"; "required": false; }; "valueField": { "alias": "valueField"; "required": false; }; "valueDepth": { "alias": "valueDepth"; "required": false; }; "focused": { "alias": "focused"; "required": false; }; "template": { "alias": "template"; "required": false; }; "groupTemplate": { "alias": "groupTemplate"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "tagPrefix": { "alias": "tagPrefix"; "required": false; }; "id": { "alias": "id"; "required": false; }; "size": { "alias": "size"; "required": false; }; "rounded": { "alias": "rounded"; "required": false; }; "fillMode": { "alias": "fillMode"; "required": false; }; "disabledIndices": { "alias": "disabledIndices"; "required": false; }; }, { "removeTag": "removeTag"; }, never, ["*"], true, never>;
2766
+ static ɵcmp: i0.ɵɵComponentDeclaration<TagListComponent, "kendo-taglist", never, { "tags": { "alias": "tags"; "required": false; }; "textField": { "alias": "textField"; "required": false; }; "valueField": { "alias": "valueField"; "required": false; }; "valueDepth": { "alias": "valueDepth"; "required": false; }; "focused": { "alias": "focused"; "required": false; }; "template": { "alias": "template"; "required": false; }; "groupTemplate": { "alias": "groupTemplate"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "tagPrefix": { "alias": "tagPrefix"; "required": false; }; "id": { "alias": "id"; "required": false; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; "size": { "alias": "size"; "required": false; }; "rounded": { "alias": "rounded"; "required": false; }; "fillMode": { "alias": "fillMode"; "required": false; }; "disabledIndices": { "alias": "disabledIndices"; "required": false; }; }, { "removeTag": "removeTag"; }, never, ["*"], true, never>;
2758
2767
  }
2759
2768
 
2760
2769
  /**
@@ -3558,6 +3567,10 @@ declare class MultiColumnComboBoxComponent extends ComboBoxComponent implements
3558
3567
  * @hidden
3559
3568
  */
3560
3569
  totalColumnsWidth: number;
3570
+ /**
3571
+ * @hidden
3572
+ */
3573
+ get visibleColumnsWidths(): number[];
3561
3574
  protected get popupWidth(): {
3562
3575
  min: string;
3563
3576
  max: string;
@@ -3690,7 +3703,7 @@ declare class DropDownTreeComponent implements OnInit, OnDestroy, OnChanges, Aft
3690
3703
  get hostTabIndex(): number;
3691
3704
  role: string;
3692
3705
  ariaHasPopup: string;
3693
- get isAriaExpanded(): boolean;
3706
+ get isAriaExpanded(): boolean | null;
3694
3707
  get hostAriaAutocomplete(): string;
3695
3708
  noDataTemplate: NoDataTemplateDirective;
3696
3709
  headerTemplate: HeaderTemplateDirective;
@@ -4354,17 +4367,13 @@ declare class MultiSelectTreeComponent implements OnInit, OnDestroy, OnChanges,
4354
4367
  xIcon: SVGIcon$1;
4355
4368
  get isDisabled(): boolean | null;
4356
4369
  treeViewId: string;
4357
- get hostAriaAutocomplete(): string;
4358
4370
  get isLoading(): boolean;
4359
4371
  get hostAriaInvalid(): boolean | null;
4360
4372
  get isBusy(): string;
4361
4373
  get id(): string;
4362
4374
  direction: Direction;
4363
4375
  get hostTabIndex(): number;
4364
- role: string;
4365
- ariaHasPopup: string;
4366
4376
  get isReadonly(): string;
4367
- get ariaDescribedBy(): string;
4368
4377
  get ariaActiveDescendant(): string;
4369
4378
  /**
4370
4379
  * @hidden
@@ -5130,15 +5139,15 @@ declare class Messages extends ComponentMessages {
5130
5139
  */
5131
5140
  clearTitle: string;
5132
5141
  /**
5133
- * The text displayed for the check-all checkbox.
5142
+ * The text displayed for the check-all checkbox. Available for MultiSelectTree.
5134
5143
  */
5135
5144
  checkAllText: string;
5136
5145
  /**
5137
- * The text set as aria-label on the select button.
5146
+ * The text set as aria-label on the select button. Available for DropDownList, ComboBox, MultiColumnComboBox, and DropDownTree.
5138
5147
  */
5139
5148
  selectButtonText: string;
5140
5149
  /**
5141
- * The text set as aria-label on the list filter input.
5150
+ * The text set as aria-label on the list filter input. Available for DropDownList, DropDownTree, and MultiSelectTree.
5142
5151
  */
5143
5152
  filterInputLabel: string;
5144
5153
  /**
@@ -5150,11 +5159,15 @@ declare class Messages extends ComponentMessages {
5150
5159
  */
5151
5160
  adaptiveCloseButtonTitle: string;
5152
5161
  /**
5153
- * The text for the input's placeholder when filtering is enabled.
5162
+ * The text for the input's placeholder when filtering is enabled. Available for DropDownTree and MultiSelectTree.
5154
5163
  */
5155
5164
  filterInputPlaceholder: string;
5156
5165
  /**
5157
- * The text displayed when the user types a custom value that is not in the list of options.
5166
+ * The accessible label of the tag list element that contains the selected items. Available for MultiSelect and MultiSelectTree.
5167
+ */
5168
+ chipListLabel: string;
5169
+ /**
5170
+ * The text displayed when the user types a custom value that is not in the list of options. Available for ComboBox and MultiSelect.
5158
5171
  *
5159
5172
  * The text includes a localizable string and the custom value.
5160
5173
  * For example, when adding a custom value **Test**, the default text is **Use "Test"**.
@@ -5163,8 +5176,16 @@ declare class Messages extends ComponentMessages {
5163
5176
  * Use `{customValue}` to insert the value, for example, **Add: {customValue}**.
5164
5177
  */
5165
5178
  useCustomValueText: string;
5179
+ /**
5180
+ * The accessible label of the listbox that contains the list of options. Available for DropDownList, ComboBox, MultiColumnComboBox, AutoComplete, and MultiSelect.
5181
+ */
5182
+ listboxLabel: string;
5183
+ /**
5184
+ * The accessible label of the input element. Available for MultiSelectTree.
5185
+ */
5186
+ inputLabel: string;
5166
5187
  static ɵfac: i0.ɵɵFactoryDeclaration<Messages, never>;
5167
- static ɵdir: i0.ɵɵDirectiveDeclaration<Messages, never, never, { "noDataText": { "alias": "noDataText"; "required": false; }; "clearTitle": { "alias": "clearTitle"; "required": false; }; "checkAllText": { "alias": "checkAllText"; "required": false; }; "selectButtonText": { "alias": "selectButtonText"; "required": false; }; "filterInputLabel": { "alias": "filterInputLabel"; "required": false; }; "popupLabel": { "alias": "popupLabel"; "required": false; }; "adaptiveCloseButtonTitle": { "alias": "adaptiveCloseButtonTitle"; "required": false; }; "filterInputPlaceholder": { "alias": "filterInputPlaceholder"; "required": false; }; "useCustomValueText": { "alias": "useCustomValueText"; "required": false; }; }, {}, never, never, true, never>;
5188
+ static ɵdir: i0.ɵɵDirectiveDeclaration<Messages, never, never, { "noDataText": { "alias": "noDataText"; "required": false; }; "clearTitle": { "alias": "clearTitle"; "required": false; }; "checkAllText": { "alias": "checkAllText"; "required": false; }; "selectButtonText": { "alias": "selectButtonText"; "required": false; }; "filterInputLabel": { "alias": "filterInputLabel"; "required": false; }; "popupLabel": { "alias": "popupLabel"; "required": false; }; "adaptiveCloseButtonTitle": { "alias": "adaptiveCloseButtonTitle"; "required": false; }; "filterInputPlaceholder": { "alias": "filterInputPlaceholder"; "required": false; }; "chipListLabel": { "alias": "chipListLabel"; "required": false; }; "useCustomValueText": { "alias": "useCustomValueText"; "required": false; }; "listboxLabel": { "alias": "listboxLabel"; "required": false; }; "inputLabel": { "alias": "inputLabel"; "required": false; }; }, {}, never, never, true, never>;
5168
5189
  }
5169
5190
 
5170
5191
  /**
@@ -5183,7 +5204,8 @@ declare class Messages extends ComponentMessages {
5183
5204
  * <kendo-combobox>
5184
5205
  * <kendo-combobox-messages
5185
5206
  * noDataText="No items found"
5186
- * filterInputPlaceholder="Search items">
5207
+ * filterInputPlaceholder="Search items"
5208
+ * clearTitle="Clear selection">
5187
5209
  * </kendo-combobox-messages>
5188
5210
  * </kendo-combobox>
5189
5211
  *
@@ -5197,7 +5219,8 @@ declare class Messages extends ComponentMessages {
5197
5219
  * <kendo-autocomplete>
5198
5220
  * <kendo-autocomplete-messages
5199
5221
  * noDataText="No items found"
5200
- * filterInputPlaceholder="Type to search">
5222
+ * filterInputPlaceholder="Type to search"
5223
+ * clearTitle="Clear input">
5201
5224
  * </kendo-autocomplete-messages>
5202
5225
  * </kendo-autocomplete>
5203
5226
  *
@@ -7,7 +7,7 @@ export const packageMetadata = {
7
7
  "productCodes": [
8
8
  "KENDOUIANGULAR"
9
9
  ],
10
- "publishDate": 1784618821,
11
- "version": "25.0.0-develop.7",
10
+ "publishDate": 1784795912,
11
+ "version": "25.0.0-develop.8",
12
12
  "licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
13
13
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-dropdowns",
3
- "version": "25.0.0-develop.7",
3
+ "version": "25.0.0-develop.8",
4
4
  "description": "A wide variety of native Angular dropdown components including AutoComplete, ComboBox, DropDownList, DropDownTree, MultiColumnComboBox, MultiSelect, and MultiSelectTree ",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "author": "Progress",
@@ -121,7 +121,7 @@
121
121
  "package": {
122
122
  "productName": "Kendo UI for Angular",
123
123
  "productCode": "KENDOUIANGULAR",
124
- "publishDate": 1784618821,
124
+ "publishDate": 1784795912,
125
125
  "licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
126
126
  }
127
127
  },
@@ -132,18 +132,18 @@
132
132
  "@angular/forms": "20 - 22",
133
133
  "@angular/platform-browser": "20 - 22",
134
134
  "@progress/kendo-licensing": "^1.11.0",
135
- "@progress/kendo-angular-common": "25.0.0-develop.7",
136
- "@progress/kendo-angular-utils": "25.0.0-develop.7",
137
- "@progress/kendo-angular-l10n": "25.0.0-develop.7",
138
- "@progress/kendo-angular-navigation": "25.0.0-develop.7",
139
- "@progress/kendo-angular-popup": "25.0.0-develop.7",
140
- "@progress/kendo-angular-icons": "25.0.0-develop.7",
141
- "@progress/kendo-angular-treeview": "25.0.0-develop.7",
135
+ "@progress/kendo-angular-common": "25.0.0-develop.8",
136
+ "@progress/kendo-angular-utils": "25.0.0-develop.8",
137
+ "@progress/kendo-angular-l10n": "25.0.0-develop.8",
138
+ "@progress/kendo-angular-navigation": "25.0.0-develop.8",
139
+ "@progress/kendo-angular-popup": "25.0.0-develop.8",
140
+ "@progress/kendo-angular-icons": "25.0.0-develop.8",
141
+ "@progress/kendo-angular-treeview": "25.0.0-develop.8",
142
142
  "rxjs": "^6.5.3 || ^7.0.0"
143
143
  },
144
144
  "dependencies": {
145
145
  "tslib": "^2.3.1",
146
- "@progress/kendo-angular-schematics": "25.0.0-develop.7",
146
+ "@progress/kendo-angular-schematics": "25.0.0-develop.8",
147
147
  "@progress/kendo-common": "^1.0.1"
148
148
  },
149
149
  "schematics": "./schematics/collection.json",
@@ -9,9 +9,9 @@ const schematics_1 = require("@angular-devkit/schematics");
9
9
  function default_1(options) {
10
10
  const finalOptions = Object.assign(Object.assign({}, options), { mainNgModule: 'DropDownsModule', package: 'dropdowns', peerDependencies: {
11
11
  // peers of the treeview
12
- '@progress/kendo-angular-inputs': '25.0.0-develop.7',
12
+ '@progress/kendo-angular-inputs': '25.0.0-develop.8',
13
13
  // peers of inputs
14
- '@progress/kendo-angular-intl': '25.0.0-develop.7',
14
+ '@progress/kendo-angular-intl': '25.0.0-develop.8',
15
15
  '@progress/kendo-drawing': '^1.17.2',
16
16
  // Peer dependency of icons
17
17
  '@progress/kendo-svg-icons': '^4.0.0'