@progress/kendo-angular-buttons 11.3.0-develop.8 → 11.3.0
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.
|
@@ -178,6 +178,13 @@ export declare class ButtonComponent implements OnDestroy, AfterViewInit {
|
|
|
178
178
|
* @hidden
|
|
179
179
|
*/
|
|
180
180
|
set look(value: 'flat' | 'outline' | 'clear' | 'default');
|
|
181
|
+
/**
|
|
182
|
+
* Alias for ElementRef.nativeElement to workaround
|
|
183
|
+
* ViewChild() selectors that used to return the host element before v11.
|
|
184
|
+
*
|
|
185
|
+
* @hidden
|
|
186
|
+
*/
|
|
187
|
+
get nativeElement(): any;
|
|
181
188
|
constructor(element: ElementRef, renderer: Renderer2, service: KendoButtonService, localization: LocalizationService, ngZone: NgZone);
|
|
182
189
|
ngOnInit(): void;
|
|
183
190
|
ngOnChanges(change: SimpleChanges): void;
|
|
@@ -289,6 +289,15 @@ export class ButtonComponent {
|
|
|
289
289
|
break;
|
|
290
290
|
}
|
|
291
291
|
}
|
|
292
|
+
/**
|
|
293
|
+
* Alias for ElementRef.nativeElement to workaround
|
|
294
|
+
* ViewChild() selectors that used to return the host element before v11.
|
|
295
|
+
*
|
|
296
|
+
* @hidden
|
|
297
|
+
*/
|
|
298
|
+
get nativeElement() {
|
|
299
|
+
return this.element;
|
|
300
|
+
}
|
|
292
301
|
ngOnInit() {
|
|
293
302
|
const elementTagName = this.element.tagName;
|
|
294
303
|
const isSpanOrKendoButton = elementTagName === SPAN_TAG_NAME || elementTagName === KENDO_BUTTON_TAG_NAME;
|
|
@@ -9,7 +9,7 @@ export const packageMetadata = {
|
|
|
9
9
|
name: '@progress/kendo-angular-buttons',
|
|
10
10
|
productName: 'Kendo UI for Angular',
|
|
11
11
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
12
|
-
publishDate:
|
|
13
|
-
version: '11.3.0
|
|
12
|
+
publishDate: 1677673782,
|
|
13
|
+
version: '11.3.0',
|
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
15
15
|
};
|
|
@@ -28,8 +28,8 @@ const packageMetadata = {
|
|
|
28
28
|
name: '@progress/kendo-angular-buttons',
|
|
29
29
|
productName: 'Kendo UI for Angular',
|
|
30
30
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
31
|
-
publishDate:
|
|
32
|
-
version: '11.3.0
|
|
31
|
+
publishDate: 1677673782,
|
|
32
|
+
version: '11.3.0',
|
|
33
33
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
34
34
|
};
|
|
35
35
|
|
|
@@ -417,6 +417,15 @@ class ButtonComponent {
|
|
|
417
417
|
break;
|
|
418
418
|
}
|
|
419
419
|
}
|
|
420
|
+
/**
|
|
421
|
+
* Alias for ElementRef.nativeElement to workaround
|
|
422
|
+
* ViewChild() selectors that used to return the host element before v11.
|
|
423
|
+
*
|
|
424
|
+
* @hidden
|
|
425
|
+
*/
|
|
426
|
+
get nativeElement() {
|
|
427
|
+
return this.element;
|
|
428
|
+
}
|
|
420
429
|
ngOnInit() {
|
|
421
430
|
const elementTagName = this.element.tagName;
|
|
422
431
|
const isSpanOrKendoButton = elementTagName === SPAN_TAG_NAME || elementTagName === KENDO_BUTTON_TAG_NAME;
|
|
@@ -46,8 +46,8 @@ const packageMetadata = {
|
|
|
46
46
|
name: '@progress/kendo-angular-buttons',
|
|
47
47
|
productName: 'Kendo UI for Angular',
|
|
48
48
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
49
|
-
publishDate:
|
|
50
|
-
version: '11.3.0
|
|
49
|
+
publishDate: 1677673782,
|
|
50
|
+
version: '11.3.0',
|
|
51
51
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
52
52
|
};
|
|
53
53
|
|
|
@@ -417,6 +417,15 @@ class ButtonComponent {
|
|
|
417
417
|
break;
|
|
418
418
|
}
|
|
419
419
|
}
|
|
420
|
+
/**
|
|
421
|
+
* Alias for ElementRef.nativeElement to workaround
|
|
422
|
+
* ViewChild() selectors that used to return the host element before v11.
|
|
423
|
+
*
|
|
424
|
+
* @hidden
|
|
425
|
+
*/
|
|
426
|
+
get nativeElement() {
|
|
427
|
+
return this.element;
|
|
428
|
+
}
|
|
420
429
|
ngOnInit() {
|
|
421
430
|
const elementTagName = this.element.tagName;
|
|
422
431
|
const isSpanOrKendoButton = elementTagName === SPAN_TAG_NAME || elementTagName === KENDO_BUTTON_TAG_NAME;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-buttons",
|
|
3
|
-
"version": "11.3.0
|
|
3
|
+
"version": "11.3.0",
|
|
4
4
|
"description": "Buttons Package for Angular",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -25,15 +25,15 @@
|
|
|
25
25
|
"@angular/core": "13 - 15",
|
|
26
26
|
"@angular/platform-browser": "13 - 15",
|
|
27
27
|
"@progress/kendo-licensing": "^1.0.2",
|
|
28
|
-
"@progress/kendo-angular-common": "11.3.0
|
|
29
|
-
"@progress/kendo-angular-l10n": "11.3.0
|
|
30
|
-
"@progress/kendo-angular-popup": "11.3.0
|
|
31
|
-
"@progress/kendo-angular-icons": "11.3.0
|
|
28
|
+
"@progress/kendo-angular-common": "11.3.0",
|
|
29
|
+
"@progress/kendo-angular-l10n": "11.3.0",
|
|
30
|
+
"@progress/kendo-angular-popup": "11.3.0",
|
|
31
|
+
"@progress/kendo-angular-icons": "11.3.0",
|
|
32
32
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"tslib": "^2.3.1",
|
|
36
|
-
"@progress/kendo-angular-schematics": "11.3.0
|
|
36
|
+
"@progress/kendo-angular-schematics": "11.3.0",
|
|
37
37
|
"@progress/kendo-common": "^0.2.1"
|
|
38
38
|
},
|
|
39
39
|
"schematics": "./schematics/collection.json",
|