@progress/kendo-angular-layout 12.0.0-develop.4 → 12.0.0-develop.6

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.
@@ -9,7 +9,7 @@ export const packageMetadata = {
9
9
  name: '@progress/kendo-angular-layout',
10
10
  productName: 'Kendo UI for Angular',
11
11
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
12
- publishDate: 1681239051,
13
- version: '12.0.0-develop.4',
12
+ publishDate: 1681289754,
13
+ version: '12.0.0-develop.6',
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
  };
@@ -6,6 +6,7 @@ import { TabStripTabComponent } from '../models/tabstrip-tab.component';
6
6
  import { Component, EventEmitter, HostBinding, Input, Output } from '@angular/core';
7
7
  import { LocalizationService } from '@progress/kendo-angular-l10n';
8
8
  import { TabCloseEvent } from '../events/tabclose-event';
9
+ import { xIcon } from '@progress/kendo-svg-icons';
9
10
  import * as i0 from "@angular/core";
10
11
  import * as i1 from "@progress/kendo-angular-l10n";
11
12
  import * as i2 from "@progress/kendo-angular-buttons";
@@ -37,6 +38,18 @@ export class TabComponent {
37
38
  }
38
39
  return this.tabStripClosable;
39
40
  }
41
+ get closeSVGIconClass() {
42
+ if (this.customCloseButtonClasses) {
43
+ return;
44
+ }
45
+ if (this.tab.closeSVGIcon) {
46
+ return this.tab.closeSVGIcon;
47
+ }
48
+ if (this.closeSVGIcon) {
49
+ return this.closeSVGIcon;
50
+ }
51
+ return xIcon;
52
+ }
40
53
  get closeButtonClasses() {
41
54
  if (!this.customTabstripCloseIcon && this.tabStripCloseIcon && !this.tab.closeIconClass) {
42
55
  if (this.tab.closeIcon) {
@@ -76,7 +89,7 @@ TabComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version:
76
89
  fillMode="flat"
77
90
  [icon]="closeButtonClasses"
78
91
  [iconClass]="customCloseButtonClasses"
79
- [svgIcon]="closeSVGIcon"
92
+ [svgIcon]="closeSVGIconClass"
80
93
  [title]="closeButtonTitle"
81
94
  [attr.aria-label]="closeButtonTitle"
82
95
  (click)="closeTab(index)"
@@ -102,7 +115,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
102
115
  fillMode="flat"
103
116
  [icon]="closeButtonClasses"
104
117
  [iconClass]="customCloseButtonClasses"
105
- [svgIcon]="closeSVGIcon"
118
+ [svgIcon]="closeSVGIconClass"
106
119
  [title]="closeButtonTitle"
107
120
  [attr.aria-label]="closeButtonTitle"
108
121
  (click)="closeTab(index)"
@@ -12,7 +12,7 @@ import { validatePackage } from '@progress/kendo-licensing';
12
12
  import * as i1$2 from '@angular/animations';
13
13
  import { trigger, state, style, transition, animate, AUTO_STYLE } from '@angular/animations';
14
14
  import { Subject, BehaviorSubject, Subscription, of } from 'rxjs';
15
- import { arrowUpIcon, arrowDownIcon, caretAltLeftIcon, caretAltRightIcon, caretAltUpIcon, caretAltDownIcon, chevronUpIcon, chevronDownIcon, checkCircleIcon, exclamationCircleIcon } from '@progress/kendo-svg-icons';
15
+ import { arrowUpIcon, arrowDownIcon, caretAltLeftIcon, caretAltRightIcon, caretAltUpIcon, caretAltDownIcon, xIcon, chevronUpIcon, chevronDownIcon, checkCircleIcon, exclamationCircleIcon } from '@progress/kendo-svg-icons';
16
16
  import * as i2 from '@progress/kendo-angular-icons';
17
17
  import { IconsModule } from '@progress/kendo-angular-icons';
18
18
  import * as i3 from '@angular/common';
@@ -31,8 +31,8 @@ const packageMetadata = {
31
31
  name: '@progress/kendo-angular-layout',
32
32
  productName: 'Kendo UI for Angular',
33
33
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
34
- publishDate: 1681239051,
35
- version: '12.0.0-develop.4',
34
+ publishDate: 1681289754,
35
+ version: '12.0.0-develop.6',
36
36
  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'
37
37
  };
38
38
 
@@ -3311,6 +3311,18 @@ class TabComponent {
3311
3311
  }
3312
3312
  return this.tabStripClosable;
3313
3313
  }
3314
+ get closeSVGIconClass() {
3315
+ if (this.customCloseButtonClasses) {
3316
+ return;
3317
+ }
3318
+ if (this.tab.closeSVGIcon) {
3319
+ return this.tab.closeSVGIcon;
3320
+ }
3321
+ if (this.closeSVGIcon) {
3322
+ return this.closeSVGIcon;
3323
+ }
3324
+ return xIcon;
3325
+ }
3314
3326
  get closeButtonClasses() {
3315
3327
  if (!this.customTabstripCloseIcon && this.tabStripCloseIcon && !this.tab.closeIconClass) {
3316
3328
  if (this.tab.closeIcon) {
@@ -3350,7 +3362,7 @@ TabComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version:
3350
3362
  fillMode="flat"
3351
3363
  [icon]="closeButtonClasses"
3352
3364
  [iconClass]="customCloseButtonClasses"
3353
- [svgIcon]="closeSVGIcon"
3365
+ [svgIcon]="closeSVGIconClass"
3354
3366
  [title]="closeButtonTitle"
3355
3367
  [attr.aria-label]="closeButtonTitle"
3356
3368
  (click)="closeTab(index)"
@@ -3376,7 +3388,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
3376
3388
  fillMode="flat"
3377
3389
  [icon]="closeButtonClasses"
3378
3390
  [iconClass]="customCloseButtonClasses"
3379
- [svgIcon]="closeSVGIcon"
3391
+ [svgIcon]="closeSVGIconClass"
3380
3392
  [title]="closeButtonTitle"
3381
3393
  [attr.aria-label]="closeButtonTitle"
3382
3394
  (click)="closeTab(index)"
@@ -12,7 +12,7 @@ import { validatePackage } from '@progress/kendo-licensing';
12
12
  import * as i1$2 from '@angular/animations';
13
13
  import { trigger, state, style, transition, animate, AUTO_STYLE } from '@angular/animations';
14
14
  import { Subject, BehaviorSubject, Subscription, of } from 'rxjs';
15
- import { arrowUpIcon, arrowDownIcon, caretAltLeftIcon, caretAltRightIcon, caretAltUpIcon, caretAltDownIcon, chevronUpIcon, chevronDownIcon, checkCircleIcon, exclamationCircleIcon } from '@progress/kendo-svg-icons';
15
+ import { arrowUpIcon, arrowDownIcon, caretAltLeftIcon, caretAltRightIcon, caretAltUpIcon, caretAltDownIcon, xIcon, chevronUpIcon, chevronDownIcon, checkCircleIcon, exclamationCircleIcon } from '@progress/kendo-svg-icons';
16
16
  import * as i2 from '@progress/kendo-angular-icons';
17
17
  import { IconsModule } from '@progress/kendo-angular-icons';
18
18
  import * as i3 from '@angular/common';
@@ -31,8 +31,8 @@ const packageMetadata = {
31
31
  name: '@progress/kendo-angular-layout',
32
32
  productName: 'Kendo UI for Angular',
33
33
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
34
- publishDate: 1681239051,
35
- version: '12.0.0-develop.4',
34
+ publishDate: 1681289754,
35
+ version: '12.0.0-develop.6',
36
36
  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'
37
37
  };
38
38
 
@@ -3301,6 +3301,18 @@ class TabComponent {
3301
3301
  }
3302
3302
  return this.tabStripClosable;
3303
3303
  }
3304
+ get closeSVGIconClass() {
3305
+ if (this.customCloseButtonClasses) {
3306
+ return;
3307
+ }
3308
+ if (this.tab.closeSVGIcon) {
3309
+ return this.tab.closeSVGIcon;
3310
+ }
3311
+ if (this.closeSVGIcon) {
3312
+ return this.closeSVGIcon;
3313
+ }
3314
+ return xIcon;
3315
+ }
3304
3316
  get closeButtonClasses() {
3305
3317
  if (!this.customTabstripCloseIcon && this.tabStripCloseIcon && !this.tab.closeIconClass) {
3306
3318
  if (this.tab.closeIcon) {
@@ -3340,7 +3352,7 @@ TabComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version:
3340
3352
  fillMode="flat"
3341
3353
  [icon]="closeButtonClasses"
3342
3354
  [iconClass]="customCloseButtonClasses"
3343
- [svgIcon]="closeSVGIcon"
3355
+ [svgIcon]="closeSVGIconClass"
3344
3356
  [title]="closeButtonTitle"
3345
3357
  [attr.aria-label]="closeButtonTitle"
3346
3358
  (click)="closeTab(index)"
@@ -3366,7 +3378,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
3366
3378
  fillMode="flat"
3367
3379
  [icon]="closeButtonClasses"
3368
3380
  [iconClass]="customCloseButtonClasses"
3369
- [svgIcon]="closeSVGIcon"
3381
+ [svgIcon]="closeSVGIconClass"
3370
3382
  [title]="closeButtonTitle"
3371
3383
  [attr.aria-label]="closeButtonTitle"
3372
3384
  (click)="closeTab(index)"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-layout",
3
- "version": "12.0.0-develop.4",
3
+ "version": "12.0.0-develop.6",
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",
@@ -39,16 +39,16 @@
39
39
  "@angular/core": "13 - 15",
40
40
  "@angular/platform-browser": "13 - 15",
41
41
  "@progress/kendo-licensing": "^1.0.2",
42
- "@progress/kendo-angular-common": "12.0.0-develop.4",
43
- "@progress/kendo-angular-l10n": "12.0.0-develop.4",
44
- "@progress/kendo-angular-progressbar": "12.0.0-develop.4",
45
- "@progress/kendo-angular-icons": "12.0.0-develop.4",
46
- "@progress/kendo-angular-buttons": "12.0.0-develop.4",
42
+ "@progress/kendo-angular-common": "12.0.0-develop.6",
43
+ "@progress/kendo-angular-l10n": "12.0.0-develop.6",
44
+ "@progress/kendo-angular-progressbar": "12.0.0-develop.6",
45
+ "@progress/kendo-angular-icons": "12.0.0-develop.6",
46
+ "@progress/kendo-angular-buttons": "12.0.0-develop.6",
47
47
  "rxjs": "^6.5.3 || ^7.0.0"
48
48
  },
49
49
  "dependencies": {
50
50
  "tslib": "^2.3.1",
51
- "@progress/kendo-angular-schematics": "12.0.0-develop.4",
51
+ "@progress/kendo-angular-schematics": "12.0.0-develop.6",
52
52
  "@progress/kendo-draggable": "^3.0.2"
53
53
  },
54
54
  "schematics": "./schematics/collection.json",
@@ -27,6 +27,7 @@ export declare class TabComponent {
27
27
  get tabIndex(): number;
28
28
  constructor(localization: LocalizationService);
29
29
  get tabClosable(): boolean;
30
+ get closeSVGIconClass(): SVGIcon;
30
31
  get closeButtonClasses(): string;
31
32
  get customCloseButtonClasses(): string;
32
33
  get closeButtonTitle(): string;