@progress/kendo-angular-layout 25.0.0-develop.3 → 25.0.0-develop.5
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/fesm2022/progress-kendo-angular-layout.mjs +17 -13
- package/index.d.ts +1 -0
- package/package-metadata.mjs +2 -2
- package/package.json +9 -9
|
@@ -29,8 +29,8 @@ const packageMetadata = {
|
|
|
29
29
|
productName: 'Kendo UI for Angular',
|
|
30
30
|
productCode: 'KENDOUIANGULAR',
|
|
31
31
|
productCodes: ['KENDOUIANGULAR'],
|
|
32
|
-
publishDate:
|
|
33
|
-
version: '25.0.0-develop.
|
|
32
|
+
publishDate: 1784008708,
|
|
33
|
+
version: '25.0.0-develop.5',
|
|
34
34
|
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'
|
|
35
35
|
};
|
|
36
36
|
|
|
@@ -3745,6 +3745,7 @@ class TabStripScrollableButtonComponent {
|
|
|
3745
3745
|
renderer;
|
|
3746
3746
|
ngZone;
|
|
3747
3747
|
localization;
|
|
3748
|
+
ariaHidden = true;
|
|
3748
3749
|
get prevClass() {
|
|
3749
3750
|
return this.prev;
|
|
3750
3751
|
}
|
|
@@ -3872,7 +3873,7 @@ class TabStripScrollableButtonComponent {
|
|
|
3872
3873
|
return scrollEvent;
|
|
3873
3874
|
}
|
|
3874
3875
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.25", ngImport: i0, type: TabStripScrollableButtonComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.NgZone }, { token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
3875
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.25", type: TabStripScrollableButtonComponent, isStandalone: true, selector: "[kendoTabStripScrollableButton]", inputs: { prev: "prev", tabPosition: "tabPosition", scrollable: "scrollable" }, outputs: { tabScroll: "tabScroll", onClick: "onClick" }, host: { properties: { "class.k-tabstrip-prev": "this.prevClass", "class.k-tabstrip-next": "this.nextClass" } }, ngImport: i0, template: `
|
|
3876
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.25", type: TabStripScrollableButtonComponent, isStandalone: true, selector: "[kendoTabStripScrollableButton]", inputs: { prev: "prev", tabPosition: "tabPosition", scrollable: "scrollable" }, outputs: { tabScroll: "tabScroll", onClick: "onClick" }, host: { properties: { "attr.aria-hidden": "this.ariaHidden", "class.k-tabstrip-prev": "this.prevClass", "class.k-tabstrip-next": "this.nextClass" } }, ngImport: i0, template: `
|
|
3876
3877
|
<kendo-icon-wrapper
|
|
3877
3878
|
[name]="iconClass"
|
|
3878
3879
|
[customFontClass]="customIconClass"
|
|
@@ -3898,7 +3899,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.25", ngImpo
|
|
|
3898
3899
|
standalone: true,
|
|
3899
3900
|
imports: [IconWrapperComponent]
|
|
3900
3901
|
}]
|
|
3901
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.NgZone }, { type: i1.LocalizationService }], propDecorators: {
|
|
3902
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.NgZone }, { type: i1.LocalizationService }], propDecorators: { ariaHidden: [{
|
|
3903
|
+
type: HostBinding,
|
|
3904
|
+
args: ['attr.aria-hidden']
|
|
3905
|
+
}], prevClass: [{
|
|
3902
3906
|
type: HostBinding,
|
|
3903
3907
|
args: ['class.k-tabstrip-prev']
|
|
3904
3908
|
}], nextClass: [{
|
|
@@ -3930,7 +3934,7 @@ class TabComponent {
|
|
|
3930
3934
|
tabClose = new EventEmitter();
|
|
3931
3935
|
hostClasses = true;
|
|
3932
3936
|
get activeClass() {
|
|
3933
|
-
return this.tab.selected;
|
|
3937
|
+
return this.tab.selected || null;
|
|
3934
3938
|
}
|
|
3935
3939
|
get disabledClass() {
|
|
3936
3940
|
return this.tab.disabled || null;
|
|
@@ -4677,7 +4681,7 @@ class TabStripComponent {
|
|
|
4677
4681
|
[prev]="true"
|
|
4678
4682
|
[title]="localization.get('previousTabButton')"
|
|
4679
4683
|
(tabScroll)="tabScroll.emit($event)"
|
|
4680
|
-
class="k-icon-button k-button k-button-flat
|
|
4684
|
+
class="k-icon-button k-button k-button-flat"
|
|
4681
4685
|
[ngClass]="{
|
|
4682
4686
|
'k-button-sm': size === 'small',
|
|
4683
4687
|
'k-button-md': size === 'medium',
|
|
@@ -4695,7 +4699,7 @@ class TabStripComponent {
|
|
|
4695
4699
|
[prev]="false"
|
|
4696
4700
|
[title]="localization.get('nextTabButton')"
|
|
4697
4701
|
(tabScroll)="tabScroll.emit($event)"
|
|
4698
|
-
class="k-icon-button k-button k-button-flat
|
|
4702
|
+
class="k-icon-button k-button k-button-flat"
|
|
4699
4703
|
[ngClass]="{
|
|
4700
4704
|
'k-button-sm': size === 'small',
|
|
4701
4705
|
'k-button-md': size === 'medium',
|
|
@@ -4746,7 +4750,7 @@ class TabStripComponent {
|
|
|
4746
4750
|
[prev]="true"
|
|
4747
4751
|
[title]="localization.get('previousTabButton')"
|
|
4748
4752
|
(tabScroll)="tabScroll.emit($event)"
|
|
4749
|
-
class="k-icon-button k-button k-button-flat
|
|
4753
|
+
class="k-icon-button k-button k-button-flat"
|
|
4750
4754
|
[ngClass]="{
|
|
4751
4755
|
'k-button-sm': size === 'small',
|
|
4752
4756
|
'k-button-md': size === 'medium',
|
|
@@ -4764,7 +4768,7 @@ class TabStripComponent {
|
|
|
4764
4768
|
[prev]="false"
|
|
4765
4769
|
[title]="localization.get('nextTabButton')"
|
|
4766
4770
|
(tabScroll)="tabScroll.emit($event)"
|
|
4767
|
-
class="k-icon-button k-button k-button-flat
|
|
4771
|
+
class="k-icon-button k-button k-button-flat"
|
|
4768
4772
|
[ngClass]="{
|
|
4769
4773
|
'k-button-sm': size === 'small',
|
|
4770
4774
|
'k-button-md': size === 'medium',
|
|
@@ -4871,7 +4875,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.25", ngImpo
|
|
|
4871
4875
|
[prev]="true"
|
|
4872
4876
|
[title]="localization.get('previousTabButton')"
|
|
4873
4877
|
(tabScroll)="tabScroll.emit($event)"
|
|
4874
|
-
class="k-icon-button k-button k-button-flat
|
|
4878
|
+
class="k-icon-button k-button k-button-flat"
|
|
4875
4879
|
[ngClass]="{
|
|
4876
4880
|
'k-button-sm': size === 'small',
|
|
4877
4881
|
'k-button-md': size === 'medium',
|
|
@@ -4889,7 +4893,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.25", ngImpo
|
|
|
4889
4893
|
[prev]="false"
|
|
4890
4894
|
[title]="localization.get('nextTabButton')"
|
|
4891
4895
|
(tabScroll)="tabScroll.emit($event)"
|
|
4892
|
-
class="k-icon-button k-button k-button-flat
|
|
4896
|
+
class="k-icon-button k-button k-button-flat"
|
|
4893
4897
|
[ngClass]="{
|
|
4894
4898
|
'k-button-sm': size === 'small',
|
|
4895
4899
|
'k-button-md': size === 'medium',
|
|
@@ -4940,7 +4944,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.25", ngImpo
|
|
|
4940
4944
|
[prev]="true"
|
|
4941
4945
|
[title]="localization.get('previousTabButton')"
|
|
4942
4946
|
(tabScroll)="tabScroll.emit($event)"
|
|
4943
|
-
class="k-icon-button k-button k-button-flat
|
|
4947
|
+
class="k-icon-button k-button k-button-flat"
|
|
4944
4948
|
[ngClass]="{
|
|
4945
4949
|
'k-button-sm': size === 'small',
|
|
4946
4950
|
'k-button-md': size === 'medium',
|
|
@@ -4958,7 +4962,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.25", ngImpo
|
|
|
4958
4962
|
[prev]="false"
|
|
4959
4963
|
[title]="localization.get('nextTabButton')"
|
|
4960
4964
|
(tabScroll)="tabScroll.emit($event)"
|
|
4961
|
-
class="k-icon-button k-button k-button-flat
|
|
4965
|
+
class="k-icon-button k-button k-button-flat"
|
|
4962
4966
|
[ngClass]="{
|
|
4963
4967
|
'k-button-sm': size === 'small',
|
|
4964
4968
|
'k-button-md': size === 'medium',
|
package/index.d.ts
CHANGED
|
@@ -1305,6 +1305,7 @@ declare class TabStripScrollableButtonComponent implements AfterViewInit, OnDest
|
|
|
1305
1305
|
private renderer;
|
|
1306
1306
|
private ngZone;
|
|
1307
1307
|
private localization;
|
|
1308
|
+
ariaHidden: boolean;
|
|
1308
1309
|
get prevClass(): boolean;
|
|
1309
1310
|
get nextClass(): boolean;
|
|
1310
1311
|
prev: boolean;
|
package/package-metadata.mjs
CHANGED
|
@@ -7,7 +7,7 @@ export const packageMetadata = {
|
|
|
7
7
|
"productCodes": [
|
|
8
8
|
"KENDOUIANGULAR"
|
|
9
9
|
],
|
|
10
|
-
"publishDate":
|
|
11
|
-
"version": "25.0.0-develop.
|
|
10
|
+
"publishDate": 1784008708,
|
|
11
|
+
"version": "25.0.0-develop.5",
|
|
12
12
|
"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"
|
|
13
13
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-layout",
|
|
3
|
-
"version": "25.0.0-develop.
|
|
3
|
+
"version": "25.0.0-develop.5",
|
|
4
4
|
"description": "Kendo UI for Angular Layout Package - a collection of components to create professional application layoyts",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -79,7 +79,7 @@
|
|
|
79
79
|
"package": {
|
|
80
80
|
"productName": "Kendo UI for Angular",
|
|
81
81
|
"productCode": "KENDOUIANGULAR",
|
|
82
|
-
"publishDate":
|
|
82
|
+
"publishDate": 1784008708,
|
|
83
83
|
"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"
|
|
84
84
|
}
|
|
85
85
|
},
|
|
@@ -89,17 +89,17 @@
|
|
|
89
89
|
"@angular/core": "20 - 22",
|
|
90
90
|
"@angular/platform-browser": "20 - 22",
|
|
91
91
|
"@progress/kendo-licensing": "^1.11.0",
|
|
92
|
-
"@progress/kendo-angular-common": "25.0.0-develop.
|
|
93
|
-
"@progress/kendo-angular-l10n": "25.0.0-develop.
|
|
94
|
-
"@progress/kendo-angular-progressbar": "25.0.0-develop.
|
|
95
|
-
"@progress/kendo-angular-icons": "25.0.0-develop.
|
|
96
|
-
"@progress/kendo-angular-buttons": "25.0.0-develop.
|
|
97
|
-
"@progress/kendo-angular-intl": "25.0.0-develop.
|
|
92
|
+
"@progress/kendo-angular-common": "25.0.0-develop.5",
|
|
93
|
+
"@progress/kendo-angular-l10n": "25.0.0-develop.5",
|
|
94
|
+
"@progress/kendo-angular-progressbar": "25.0.0-develop.5",
|
|
95
|
+
"@progress/kendo-angular-icons": "25.0.0-develop.5",
|
|
96
|
+
"@progress/kendo-angular-buttons": "25.0.0-develop.5",
|
|
97
|
+
"@progress/kendo-angular-intl": "25.0.0-develop.5",
|
|
98
98
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
99
99
|
},
|
|
100
100
|
"dependencies": {
|
|
101
101
|
"tslib": "^2.3.1",
|
|
102
|
-
"@progress/kendo-angular-schematics": "25.0.0-develop.
|
|
102
|
+
"@progress/kendo-angular-schematics": "25.0.0-develop.5",
|
|
103
103
|
"@progress/kendo-draggable": "^3.0.2"
|
|
104
104
|
},
|
|
105
105
|
"schematics": "./schematics/collection.json",
|