@progress/kendo-angular-dropdowns 22.1.0-develop.8 → 23.0.0-develop.1
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/autocomplete/autocomplete.component.d.ts +11 -11
- package/comboboxes/combobox-column/column-cell-template.directive.d.ts +4 -4
- package/comboboxes/combobox-column/column-header-template.directive.d.ts +4 -4
- package/comboboxes/combobox-column/combobox-column.component.d.ts +3 -3
- package/comboboxes/combobox.component.d.ts +17 -16
- package/comboboxes/multicolumncombobox.component.d.ts +1 -1
- package/common/filtering/filter-settings.d.ts +5 -5
- package/common/filtering/filter.directive.d.ts +2 -2
- package/common/localization/custom-messages.component.d.ts +1 -1
- package/common/models/fillmode.d.ts +1 -1
- package/common/models/size.d.ts +1 -1
- package/common/models/virtualization-settings.d.ts +4 -4
- package/common/templates/custom-item-template.directive.d.ts +1 -1
- package/common/templates/fixed-group-template.directive.d.ts +5 -5
- package/common/templates/footer-template.directive.d.ts +6 -6
- package/common/templates/group-tag-template.directive.d.ts +1 -1
- package/common/templates/group-template.directive.d.ts +5 -5
- package/common/templates/header-template.directive.d.ts +6 -6
- package/common/templates/item-template.directive.d.ts +4 -4
- package/common/templates/no-data-template.directive.d.ts +6 -6
- package/common/templates/tag-template.directive.d.ts +1 -1
- package/common/templates/value-template.directive.d.ts +2 -2
- package/dropdownlist/dropdownlist.component.d.ts +16 -18
- package/dropdowntrees/checked-state/checkable-settings.d.ts +1 -1
- package/dropdowntrees/dropdowntree.component.d.ts +17 -16
- package/dropdowntrees/multiselecttree.component.d.ts +3 -3
- package/dropdowntrees/summary-tag/summary-tag.directive.d.ts +1 -1
- package/fesm2022/progress-kendo-angular-dropdowns.mjs +333 -352
- package/multiselect/multiselect.component.d.ts +9 -9
- package/multiselect/summary-tag.directive.d.ts +1 -1
- package/package-metadata.mjs +2 -2
- package/package.json +11 -11
- package/schematics/ngAdd/index.js +2 -2
|
@@ -43,10 +43,10 @@ import { AdaptiveRendererComponent } from '../common/adaptive-renderer.component
|
|
|
43
43
|
import { TagListComponent } from '../common/taglist.component';
|
|
44
44
|
import * as i0 from "@angular/core";
|
|
45
45
|
/**
|
|
46
|
-
* Represents the [Kendo UI MultiSelect component for Angular](
|
|
46
|
+
* Represents the [Kendo UI MultiSelect component for Angular](https://www.telerik.com/kendo-angular-ui/components/dropdowns/multiselect).
|
|
47
47
|
*
|
|
48
48
|
* Use the `MultiSelectComponent` to show a dropdown list where users can select multiple items.
|
|
49
|
-
* [See example](
|
|
49
|
+
* [See example](https://www.telerik.com/kendo-angular-ui/components/dropdowns/multiselect).
|
|
50
50
|
*
|
|
51
51
|
* @example
|
|
52
52
|
* ```typescript
|
|
@@ -168,7 +168,7 @@ export declare class MultiSelectComponent implements OnDestroy, OnChanges, OnIni
|
|
|
168
168
|
get appendTo(): ViewContainerRef;
|
|
169
169
|
/**
|
|
170
170
|
* Shows or hides the current group sticky header when using grouped data.
|
|
171
|
-
* By default the sticky header is displayed ([see example](
|
|
171
|
+
* By default the sticky header is displayed ([see example](https://www.telerik.com/kendo-angular-ui/components/dropdowns/autocomplete/grouping#sticky-header)).
|
|
172
172
|
*/
|
|
173
173
|
showStickyHeader: boolean;
|
|
174
174
|
/**
|
|
@@ -176,7 +176,7 @@ export declare class MultiSelectComponent implements OnDestroy, OnChanges, OnIni
|
|
|
176
176
|
*/
|
|
177
177
|
focusableId: string;
|
|
178
178
|
/**
|
|
179
|
-
* Controls whether the options list closes after item selection finishes ([see example](
|
|
179
|
+
* Controls whether the options list closes after item selection finishes ([see example](https://www.telerik.com/kendo-angular-ui/components/dropdowns/multiselect/open-state#keeping-the-options-list-open-while-on-focus)).
|
|
180
180
|
* Set to `false` to keep the list open while the component has focus.
|
|
181
181
|
*
|
|
182
182
|
* @default true
|
|
@@ -227,21 +227,21 @@ export declare class MultiSelectComponent implements OnDestroy, OnChanges, OnIni
|
|
|
227
227
|
/**
|
|
228
228
|
* Sets the size of the component.
|
|
229
229
|
*
|
|
230
|
-
* @default
|
|
230
|
+
* @default undefined
|
|
231
231
|
*/
|
|
232
232
|
set size(size: DropDownSize);
|
|
233
233
|
get size(): DropDownSize;
|
|
234
234
|
/**
|
|
235
235
|
* Sets the border radius of the component.
|
|
236
236
|
*
|
|
237
|
-
* @default
|
|
237
|
+
* @default undefined
|
|
238
238
|
*/
|
|
239
239
|
set rounded(rounded: DropDownRounded);
|
|
240
240
|
get rounded(): DropDownRounded;
|
|
241
241
|
/**
|
|
242
242
|
* Sets the fill mode of the component.
|
|
243
243
|
*
|
|
244
|
-
* @default
|
|
244
|
+
* @default undefined
|
|
245
245
|
*/
|
|
246
246
|
set fillMode(fillMode: DropDownFillMode);
|
|
247
247
|
get fillMode(): DropDownFillMode;
|
|
@@ -275,7 +275,7 @@ export declare class MultiSelectComponent implements OnDestroy, OnChanges, OnIni
|
|
|
275
275
|
/**
|
|
276
276
|
* Controls the disabled state of the component.
|
|
277
277
|
* When true, sets the component to disabled.
|
|
278
|
-
* To learn how to disable the component in reactive forms, refer to the article on [Forms Support](
|
|
278
|
+
* To learn how to disable the component in reactive forms, refer to the article on [Forms Support](https://www.telerik.com/kendo-angular-ui/components/dropdowns/multiselect/forms#managing-the-multiselect-disabled-state-in-reactive-forms).
|
|
279
279
|
*
|
|
280
280
|
* @default false
|
|
281
281
|
*/
|
|
@@ -528,7 +528,7 @@ export declare class MultiSelectComponent implements OnDestroy, OnChanges, OnIni
|
|
|
528
528
|
ngOnDestroy(): void;
|
|
529
529
|
/**
|
|
530
530
|
* Toggles the visibility of the popup or actionSheet
|
|
531
|
-
* ([see example](
|
|
531
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/dropdowns/multiselect/open-state#setting-the-initially-opened-component)).
|
|
532
532
|
* If you use the `toggle` method to open or close the popup or actionSheet, the respective `open` and `close` events will not be fired.
|
|
533
533
|
*
|
|
534
534
|
* @param open - The state of the popup.
|
|
@@ -8,7 +8,7 @@ import * as i0 from "@angular/core";
|
|
|
8
8
|
/**
|
|
9
9
|
* Configures the MultiSelect to show one summary tag for all selected items.
|
|
10
10
|
* Set a number to display the summary tag after the respective number of items are selected.
|
|
11
|
-
* [See example](
|
|
11
|
+
* [See example](https://www.telerik.com/kendo-angular-ui/components/dropdowns/multiselect/summary-tag-mode).
|
|
12
12
|
*
|
|
13
13
|
* @example
|
|
14
14
|
* ```ts-no-run
|
package/package-metadata.mjs
CHANGED
|
@@ -7,7 +7,7 @@ export const packageMetadata = {
|
|
|
7
7
|
"productCodes": [
|
|
8
8
|
"KENDOUIANGULAR"
|
|
9
9
|
],
|
|
10
|
-
"publishDate":
|
|
11
|
-
"version": "
|
|
10
|
+
"publishDate": 1770286965,
|
|
11
|
+
"version": "23.0.0-develop.1",
|
|
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": "
|
|
3
|
+
"version": "23.0.0-develop.1",
|
|
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",
|
|
@@ -100,7 +100,7 @@
|
|
|
100
100
|
"package": {
|
|
101
101
|
"productName": "Kendo UI for Angular",
|
|
102
102
|
"productCode": "KENDOUIANGULAR",
|
|
103
|
-
"publishDate":
|
|
103
|
+
"publishDate": 1770286965,
|
|
104
104
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
105
105
|
}
|
|
106
106
|
},
|
|
@@ -110,19 +110,19 @@
|
|
|
110
110
|
"@angular/core": "19 - 21",
|
|
111
111
|
"@angular/forms": "19 - 21",
|
|
112
112
|
"@angular/platform-browser": "19 - 21",
|
|
113
|
-
"@progress/kendo-licensing": "^1.
|
|
114
|
-
"@progress/kendo-angular-common": "
|
|
115
|
-
"@progress/kendo-angular-utils": "
|
|
116
|
-
"@progress/kendo-angular-l10n": "
|
|
117
|
-
"@progress/kendo-angular-navigation": "
|
|
118
|
-
"@progress/kendo-angular-popup": "
|
|
119
|
-
"@progress/kendo-angular-icons": "
|
|
120
|
-
"@progress/kendo-angular-treeview": "
|
|
113
|
+
"@progress/kendo-licensing": "^1.10.0",
|
|
114
|
+
"@progress/kendo-angular-common": "23.0.0-develop.1",
|
|
115
|
+
"@progress/kendo-angular-utils": "23.0.0-develop.1",
|
|
116
|
+
"@progress/kendo-angular-l10n": "23.0.0-develop.1",
|
|
117
|
+
"@progress/kendo-angular-navigation": "23.0.0-develop.1",
|
|
118
|
+
"@progress/kendo-angular-popup": "23.0.0-develop.1",
|
|
119
|
+
"@progress/kendo-angular-icons": "23.0.0-develop.1",
|
|
120
|
+
"@progress/kendo-angular-treeview": "23.0.0-develop.1",
|
|
121
121
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
122
122
|
},
|
|
123
123
|
"dependencies": {
|
|
124
124
|
"tslib": "^2.3.1",
|
|
125
|
-
"@progress/kendo-angular-schematics": "
|
|
125
|
+
"@progress/kendo-angular-schematics": "23.0.0-develop.1",
|
|
126
126
|
"@progress/kendo-common": "^1.0.1"
|
|
127
127
|
},
|
|
128
128
|
"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': '
|
|
12
|
+
'@progress/kendo-angular-inputs': '23.0.0-develop.1',
|
|
13
13
|
// peers of inputs
|
|
14
|
-
'@progress/kendo-angular-intl': '
|
|
14
|
+
'@progress/kendo-angular-intl': '23.0.0-develop.1',
|
|
15
15
|
'@progress/kendo-drawing': '^1.17.2',
|
|
16
16
|
// Peer dependency of icons
|
|
17
17
|
'@progress/kendo-svg-icons': '^4.0.0'
|