@progress/kendo-angular-buttons 19.3.0-develop.13 → 19.3.0-develop.15
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.
|
@@ -28,6 +28,9 @@ export declare class ChipListComponent implements OnInit, AfterViewInit, AfterCo
|
|
|
28
28
|
private element;
|
|
29
29
|
private ngZone;
|
|
30
30
|
hostClass: boolean;
|
|
31
|
+
/**
|
|
32
|
+
* @hidden
|
|
33
|
+
*/
|
|
31
34
|
orientation: string;
|
|
32
35
|
/**
|
|
33
36
|
* @hidden
|
|
@@ -98,5 +101,5 @@ export declare class ChipListComponent implements OnInit, AfterViewInit, AfterCo
|
|
|
98
101
|
private normalizeActiveIndex;
|
|
99
102
|
private setChipSize;
|
|
100
103
|
static ɵfac: i0.ɵɵFactoryDeclaration<ChipListComponent, never>;
|
|
101
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ChipListComponent, "kendo-chiplist, kendo-chip-list", never, { "selection": { "alias": "selection"; "required": false; }; "size": { "alias": "size"; "required": false; }; "role": { "alias": "role"; "required": false; }; "navigable": { "alias": "navigable"; "required": false; }; }, { "selectedChange": "selectedChange"; "remove": "remove"; }, ["chips"], ["*"], true, never>;
|
|
104
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ChipListComponent, "kendo-chiplist, kendo-chip-list", never, { "orientation": { "alias": "orientation"; "required": false; }; "selection": { "alias": "selection"; "required": false; }; "size": { "alias": "size"; "required": false; }; "role": { "alias": "role"; "required": false; }; "navigable": { "alias": "navigable"; "required": false; }; }, { "selectedChange": "selectedChange"; "remove": "remove"; }, ["chips"], ["*"], true, never>;
|
|
102
105
|
}
|
|
@@ -31,6 +31,9 @@ export class ChipListComponent {
|
|
|
31
31
|
element;
|
|
32
32
|
ngZone;
|
|
33
33
|
hostClass = true;
|
|
34
|
+
/**
|
|
35
|
+
* @hidden
|
|
36
|
+
*/
|
|
34
37
|
orientation = 'horizontal';
|
|
35
38
|
/**
|
|
36
39
|
* @hidden
|
|
@@ -70,7 +73,7 @@ export class ChipListComponent {
|
|
|
70
73
|
return this.selection === 'single';
|
|
71
74
|
}
|
|
72
75
|
get multiple() {
|
|
73
|
-
return this.selection === 'multiple';
|
|
76
|
+
return this.selection === 'multiple' ? true : undefined;
|
|
74
77
|
}
|
|
75
78
|
/**
|
|
76
79
|
* @hidden
|
|
@@ -246,7 +249,7 @@ export class ChipListComponent {
|
|
|
246
249
|
this.chips.forEach((chip, idx) => {
|
|
247
250
|
const chipEl = chip.element.nativeElement;
|
|
248
251
|
this.renderer.removeAttribute(chipEl, 'aria-pressed');
|
|
249
|
-
this.renderer.setAttribute(chipEl, 'aria-selected', `${chip.selected}`);
|
|
252
|
+
this.selection !== 'none' && (this.renderer.setAttribute(chipEl, 'aria-selected', `${chip.selected}`));
|
|
250
253
|
this.role === 'listbox' && this.renderer.setAttribute(chipEl, 'role', 'option');
|
|
251
254
|
if (!this.navigable) {
|
|
252
255
|
return;
|
|
@@ -275,7 +278,7 @@ export class ChipListComponent {
|
|
|
275
278
|
!hasSize && (chip.sizeIsSet = false);
|
|
276
279
|
}
|
|
277
280
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ChipListComponent, deps: [{ token: i1.LocalizationService }, { token: i0.Renderer2 }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
278
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: ChipListComponent, isStandalone: true, selector: "kendo-chiplist, kendo-chip-list", inputs: { selection: "selection", size: "size", role: "role", navigable: "navigable" }, outputs: { selectedChange: "selectedChange", remove: "remove" }, host: { listeners: { "click": "onClick($event)" }, properties: { "class.k-chip-list": "this.hostClass", "attr.aria-orientation": "this.orientation", "attr.dir": "this.direction", "class.k-selection-single": "this.single", "attr.aria-multiselectable": "this.multiple", "class.k-selection-multiple": "this.multiple", "attr.role": "this.role" } }, providers: [
|
|
281
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: ChipListComponent, isStandalone: true, selector: "kendo-chiplist, kendo-chip-list", inputs: { orientation: "orientation", selection: "selection", size: "size", role: "role", navigable: "navigable" }, outputs: { selectedChange: "selectedChange", remove: "remove" }, host: { listeners: { "click": "onClick($event)" }, properties: { "class.k-chip-list": "this.hostClass", "attr.aria-orientation": "this.orientation", "attr.dir": "this.direction", "class.k-selection-single": "this.single", "attr.aria-multiselectable": "this.multiple", "class.k-selection-multiple": "this.multiple", "attr.role": "this.role" } }, providers: [
|
|
279
282
|
LocalizationService,
|
|
280
283
|
{
|
|
281
284
|
provide: L10N_PREFIX,
|
|
@@ -307,6 +310,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
307
310
|
}], orientation: [{
|
|
308
311
|
type: HostBinding,
|
|
309
312
|
args: ['attr.aria-orientation']
|
|
313
|
+
}, {
|
|
314
|
+
type: Input
|
|
310
315
|
}], direction: [{
|
|
311
316
|
type: HostBinding,
|
|
312
317
|
args: ['attr.dir']
|
|
@@ -10,7 +10,7 @@ export const packageMetadata = {
|
|
|
10
10
|
productName: 'Kendo UI for Angular',
|
|
11
11
|
productCode: 'KENDOUIANGULAR',
|
|
12
12
|
productCodes: ['KENDOUIANGULAR'],
|
|
13
|
-
publishDate:
|
|
14
|
-
version: '19.3.0-develop.
|
|
13
|
+
publishDate: 1753347332,
|
|
14
|
+
version: '19.3.0-develop.15',
|
|
15
15
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
16
16
|
};
|
|
@@ -45,8 +45,8 @@ const packageMetadata = {
|
|
|
45
45
|
productName: 'Kendo UI for Angular',
|
|
46
46
|
productCode: 'KENDOUIANGULAR',
|
|
47
47
|
productCodes: ['KENDOUIANGULAR'],
|
|
48
|
-
publishDate:
|
|
49
|
-
version: '19.3.0-develop.
|
|
48
|
+
publishDate: 1753347332,
|
|
49
|
+
version: '19.3.0-develop.15',
|
|
50
50
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
51
51
|
};
|
|
52
52
|
|
|
@@ -1588,6 +1588,9 @@ class ChipListComponent {
|
|
|
1588
1588
|
element;
|
|
1589
1589
|
ngZone;
|
|
1590
1590
|
hostClass = true;
|
|
1591
|
+
/**
|
|
1592
|
+
* @hidden
|
|
1593
|
+
*/
|
|
1591
1594
|
orientation = 'horizontal';
|
|
1592
1595
|
/**
|
|
1593
1596
|
* @hidden
|
|
@@ -1627,7 +1630,7 @@ class ChipListComponent {
|
|
|
1627
1630
|
return this.selection === 'single';
|
|
1628
1631
|
}
|
|
1629
1632
|
get multiple() {
|
|
1630
|
-
return this.selection === 'multiple';
|
|
1633
|
+
return this.selection === 'multiple' ? true : undefined;
|
|
1631
1634
|
}
|
|
1632
1635
|
/**
|
|
1633
1636
|
* @hidden
|
|
@@ -1803,7 +1806,7 @@ class ChipListComponent {
|
|
|
1803
1806
|
this.chips.forEach((chip, idx) => {
|
|
1804
1807
|
const chipEl = chip.element.nativeElement;
|
|
1805
1808
|
this.renderer.removeAttribute(chipEl, 'aria-pressed');
|
|
1806
|
-
this.renderer.setAttribute(chipEl, 'aria-selected', `${chip.selected}`);
|
|
1809
|
+
this.selection !== 'none' && (this.renderer.setAttribute(chipEl, 'aria-selected', `${chip.selected}`));
|
|
1807
1810
|
this.role === 'listbox' && this.renderer.setAttribute(chipEl, 'role', 'option');
|
|
1808
1811
|
if (!this.navigable) {
|
|
1809
1812
|
return;
|
|
@@ -1832,7 +1835,7 @@ class ChipListComponent {
|
|
|
1832
1835
|
!hasSize && (chip.sizeIsSet = false);
|
|
1833
1836
|
}
|
|
1834
1837
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ChipListComponent, deps: [{ token: i1.LocalizationService }, { token: i0.Renderer2 }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1835
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: ChipListComponent, isStandalone: true, selector: "kendo-chiplist, kendo-chip-list", inputs: { selection: "selection", size: "size", role: "role", navigable: "navigable" }, outputs: { selectedChange: "selectedChange", remove: "remove" }, host: { listeners: { "click": "onClick($event)" }, properties: { "class.k-chip-list": "this.hostClass", "attr.aria-orientation": "this.orientation", "attr.dir": "this.direction", "class.k-selection-single": "this.single", "attr.aria-multiselectable": "this.multiple", "class.k-selection-multiple": "this.multiple", "attr.role": "this.role" } }, providers: [
|
|
1838
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: ChipListComponent, isStandalone: true, selector: "kendo-chiplist, kendo-chip-list", inputs: { orientation: "orientation", selection: "selection", size: "size", role: "role", navigable: "navigable" }, outputs: { selectedChange: "selectedChange", remove: "remove" }, host: { listeners: { "click": "onClick($event)" }, properties: { "class.k-chip-list": "this.hostClass", "attr.aria-orientation": "this.orientation", "attr.dir": "this.direction", "class.k-selection-single": "this.single", "attr.aria-multiselectable": "this.multiple", "class.k-selection-multiple": "this.multiple", "attr.role": "this.role" } }, providers: [
|
|
1836
1839
|
LocalizationService,
|
|
1837
1840
|
{
|
|
1838
1841
|
provide: L10N_PREFIX,
|
|
@@ -1864,6 +1867,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1864
1867
|
}], orientation: [{
|
|
1865
1868
|
type: HostBinding,
|
|
1866
1869
|
args: ['attr.aria-orientation']
|
|
1870
|
+
}, {
|
|
1871
|
+
type: Input
|
|
1867
1872
|
}], direction: [{
|
|
1868
1873
|
type: HostBinding,
|
|
1869
1874
|
args: ['attr.dir']
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-buttons",
|
|
3
|
-
"version": "19.3.0-develop.
|
|
3
|
+
"version": "19.3.0-develop.15",
|
|
4
4
|
"description": "Buttons Package for Angular",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"package": {
|
|
22
22
|
"productName": "Kendo UI for Angular",
|
|
23
23
|
"productCode": "KENDOUIANGULAR",
|
|
24
|
-
"publishDate":
|
|
24
|
+
"publishDate": 1753347332,
|
|
25
25
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
26
26
|
}
|
|
27
27
|
},
|
|
@@ -31,15 +31,15 @@
|
|
|
31
31
|
"@angular/core": "16 - 20",
|
|
32
32
|
"@angular/platform-browser": "16 - 20",
|
|
33
33
|
"@progress/kendo-licensing": "^1.5.0",
|
|
34
|
-
"@progress/kendo-angular-common": "19.3.0-develop.
|
|
35
|
-
"@progress/kendo-angular-l10n": "19.3.0-develop.
|
|
36
|
-
"@progress/kendo-angular-popup": "19.3.0-develop.
|
|
37
|
-
"@progress/kendo-angular-icons": "19.3.0-develop.
|
|
34
|
+
"@progress/kendo-angular-common": "19.3.0-develop.15",
|
|
35
|
+
"@progress/kendo-angular-l10n": "19.3.0-develop.15",
|
|
36
|
+
"@progress/kendo-angular-popup": "19.3.0-develop.15",
|
|
37
|
+
"@progress/kendo-angular-icons": "19.3.0-develop.15",
|
|
38
38
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
41
|
"tslib": "^2.3.1",
|
|
42
|
-
"@progress/kendo-angular-schematics": "19.3.0-develop.
|
|
42
|
+
"@progress/kendo-angular-schematics": "19.3.0-develop.15",
|
|
43
43
|
"@progress/kendo-common": "^1.0.1",
|
|
44
44
|
"@progress/kendo-webspeech-common": "1.0.0"
|
|
45
45
|
},
|