@progress/kendo-angular-buttons 7.0.5-dev.202203211505 → 7.0.5-dev.202203241407
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/dist/cdn/js/kendo-angular-buttons.js +1 -1
- package/dist/cdn/main.js +1 -1
- package/dist/es/button/button.directive.js +4 -2
- package/dist/es/package-metadata.js +1 -1
- package/dist/es2015/button/button.directive.js +4 -2
- package/dist/es2015/package-metadata.js +1 -1
- package/dist/fesm2015/index.js +5 -3
- package/dist/fesm5/index.js +5 -3
- package/dist/npm/button/button.directive.js +4 -2
- package/dist/npm/package-metadata.js +1 -1
- package/dist/systemjs/kendo-angular-buttons.js +1 -1
- package/package.json +1 -1
|
@@ -9,7 +9,7 @@ export var packageMetadata = {
|
|
|
9
9
|
name: '@progress/kendo-angular-buttons',
|
|
10
10
|
productName: 'Kendo UI for Angular',
|
|
11
11
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
12
|
-
publishDate:
|
|
12
|
+
publishDate: 1648130763,
|
|
13
13
|
version: '',
|
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/?utm_medium=product&utm_source=kendoangular&utm_campaign=kendo-ui-angular-purchase-license-keys-warning'
|
|
15
15
|
};
|
|
@@ -400,8 +400,10 @@ let ButtonDirective = class ButtonDirective {
|
|
|
400
400
|
}
|
|
401
401
|
addImgIcon(imageUrl) {
|
|
402
402
|
let renderer = this.renderer;
|
|
403
|
-
this.iconSpanNode
|
|
404
|
-
|
|
403
|
+
if (!this.iconSpanNode) {
|
|
404
|
+
this.iconSpanNode = renderer.createElement('span');
|
|
405
|
+
renderer.setProperty(this.iconSpanNode, 'className', 'k-button-icon k-icon');
|
|
406
|
+
}
|
|
405
407
|
if (this.imageNode) {
|
|
406
408
|
renderer.setProperty(this.imageNode, 'src', imageUrl);
|
|
407
409
|
}
|
|
@@ -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:
|
|
12
|
+
publishDate: 1648130763,
|
|
13
13
|
version: '',
|
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/?utm_medium=product&utm_source=kendoangular&utm_campaign=kendo-ui-angular-purchase-license-keys-warning'
|
|
15
15
|
};
|
package/dist/fesm2015/index.js
CHANGED
|
@@ -40,7 +40,7 @@ const packageMetadata = {
|
|
|
40
40
|
name: '@progress/kendo-angular-buttons',
|
|
41
41
|
productName: 'Kendo UI for Angular',
|
|
42
42
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
43
|
-
publishDate:
|
|
43
|
+
publishDate: 1648130763,
|
|
44
44
|
version: '',
|
|
45
45
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/?utm_medium=product&utm_source=kendoangular&utm_campaign=kendo-ui-angular-purchase-license-keys-warning'
|
|
46
46
|
};
|
|
@@ -536,8 +536,10 @@ let ButtonDirective = class ButtonDirective {
|
|
|
536
536
|
}
|
|
537
537
|
addImgIcon(imageUrl) {
|
|
538
538
|
let renderer = this.renderer;
|
|
539
|
-
this.iconSpanNode
|
|
540
|
-
|
|
539
|
+
if (!this.iconSpanNode) {
|
|
540
|
+
this.iconSpanNode = renderer.createElement('span');
|
|
541
|
+
renderer.setProperty(this.iconSpanNode, 'className', 'k-button-icon k-icon');
|
|
542
|
+
}
|
|
541
543
|
if (this.imageNode) {
|
|
542
544
|
renderer.setProperty(this.imageNode, 'src', imageUrl);
|
|
543
545
|
}
|
package/dist/fesm5/index.js
CHANGED
|
@@ -38,7 +38,7 @@ var packageMetadata = {
|
|
|
38
38
|
name: '@progress/kendo-angular-buttons',
|
|
39
39
|
productName: 'Kendo UI for Angular',
|
|
40
40
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
41
|
-
publishDate:
|
|
41
|
+
publishDate: 1648130763,
|
|
42
42
|
version: '',
|
|
43
43
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/?utm_medium=product&utm_source=kendoangular&utm_campaign=kendo-ui-angular-purchase-license-keys-warning'
|
|
44
44
|
};
|
|
@@ -629,8 +629,10 @@ var ButtonDirective = /** @class */ (function () {
|
|
|
629
629
|
};
|
|
630
630
|
ButtonDirective.prototype.addImgIcon = function (imageUrl) {
|
|
631
631
|
var renderer = this.renderer;
|
|
632
|
-
this.iconSpanNode
|
|
633
|
-
|
|
632
|
+
if (!this.iconSpanNode) {
|
|
633
|
+
this.iconSpanNode = renderer.createElement('span');
|
|
634
|
+
renderer.setProperty(this.iconSpanNode, 'className', 'k-button-icon k-icon');
|
|
635
|
+
}
|
|
634
636
|
if (this.imageNode) {
|
|
635
637
|
renderer.setProperty(this.imageNode, 'src', imageUrl);
|
|
636
638
|
}
|
|
@@ -495,8 +495,10 @@ var ButtonDirective = /** @class */ (function () {
|
|
|
495
495
|
};
|
|
496
496
|
ButtonDirective.prototype.addImgIcon = function (imageUrl) {
|
|
497
497
|
var renderer = this.renderer;
|
|
498
|
-
this.iconSpanNode
|
|
499
|
-
|
|
498
|
+
if (!this.iconSpanNode) {
|
|
499
|
+
this.iconSpanNode = renderer.createElement('span');
|
|
500
|
+
renderer.setProperty(this.iconSpanNode, 'className', 'k-button-icon k-icon');
|
|
501
|
+
}
|
|
500
502
|
if (this.imageNode) {
|
|
501
503
|
renderer.setProperty(this.imageNode, 'src', imageUrl);
|
|
502
504
|
}
|
|
@@ -11,7 +11,7 @@ exports.packageMetadata = {
|
|
|
11
11
|
name: '@progress/kendo-angular-buttons',
|
|
12
12
|
productName: 'Kendo UI for Angular',
|
|
13
13
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
14
|
-
publishDate:
|
|
14
|
+
publishDate: 1648130763,
|
|
15
15
|
version: '',
|
|
16
16
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/?utm_medium=product&utm_source=kendoangular&utm_campaign=kendo-ui-angular-purchase-license-keys-warning'
|
|
17
17
|
};
|