@progress/kendo-angular-navigation 17.0.0-develop.35 → 17.0.0-develop.37
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/breadcrumb/template-directives/separator.directive.d.ts +0 -1
- package/esm2022/breadcrumb/breadcrumb-item.component.mjs +4 -4
- package/esm2022/breadcrumb/template-directives/separator.directive.mjs +3 -8
- package/esm2022/package-metadata.mjs +2 -2
- package/fesm2022/progress-kendo-angular-navigation.mjs +9 -14
- package/package.json +5 -5
|
@@ -61,8 +61,8 @@ export class BreadCrumbItemComponent {
|
|
|
61
61
|
[ngClass]="{
|
|
62
62
|
'k-breadcrumb-root-link': item.context.isFirst,
|
|
63
63
|
'k-breadcrumb-link': index !== 0,
|
|
64
|
-
'k-breadcrumb-icontext-link': !!item.data.icon && !!item.data.text,
|
|
65
|
-
'k-breadcrumb-icon-link': !!item.data.icon && !item.data.text,
|
|
64
|
+
'k-breadcrumb-icontext-link': (!!item.data.icon || !!item.data.svgIcon) && !!item.data.text,
|
|
65
|
+
'k-breadcrumb-icon-link': (!!item.data.icon || !!item.data.svgIcon) && !item.data.text,
|
|
66
66
|
'k-disabled': disabled
|
|
67
67
|
}"
|
|
68
68
|
[title]="item.data.title || ''"
|
|
@@ -115,8 +115,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
115
115
|
[ngClass]="{
|
|
116
116
|
'k-breadcrumb-root-link': item.context.isFirst,
|
|
117
117
|
'k-breadcrumb-link': index !== 0,
|
|
118
|
-
'k-breadcrumb-icontext-link': !!item.data.icon && !!item.data.text,
|
|
119
|
-
'k-breadcrumb-icon-link': !!item.data.icon && !item.data.text,
|
|
118
|
+
'k-breadcrumb-icontext-link': (!!item.data.icon || !!item.data.svgIcon) && !!item.data.text,
|
|
119
|
+
'k-breadcrumb-icon-link': (!!item.data.icon || !!item.data.svgIcon) && !item.data.text,
|
|
120
120
|
'k-disabled': disabled
|
|
121
121
|
}"
|
|
122
122
|
[title]="item.data.title || ''"
|
|
@@ -45,7 +45,6 @@ export class BreadCrumbSeparatorDirective {
|
|
|
45
45
|
get svgIcon() {
|
|
46
46
|
return this._svgIcon;
|
|
47
47
|
}
|
|
48
|
-
defaultClasses = true;
|
|
49
48
|
ariaHidden = true;
|
|
50
49
|
_icon;
|
|
51
50
|
_svgIcon;
|
|
@@ -73,11 +72,12 @@ export class BreadCrumbSeparatorDirective {
|
|
|
73
72
|
this.localizationChangesSubscription.unsubscribe();
|
|
74
73
|
}
|
|
75
74
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: BreadCrumbSeparatorDirective, deps: [{ token: i0.ElementRef }, { token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
76
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: BreadCrumbSeparatorDirective, isStandalone: true, selector: "[kendoBreadCrumbSeparator]", inputs: { icon: "icon", svgIcon: "svgIcon" }, host: { properties: { "
|
|
75
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: BreadCrumbSeparatorDirective, isStandalone: true, selector: "[kendoBreadCrumbSeparator]", inputs: { icon: "icon", svgIcon: "svgIcon" }, host: { properties: { "attr.aria-hidden": "this.ariaHidden" } }, ngImport: i0, template: `
|
|
77
76
|
<kendo-icon-wrapper
|
|
78
77
|
size='xsmall'
|
|
79
78
|
[name]="icon"
|
|
80
79
|
[svgIcon]="svgIcon"
|
|
80
|
+
innerCssClass="k-breadcrumb-delimiter-icon"
|
|
81
81
|
>
|
|
82
82
|
</kendo-icon-wrapper>
|
|
83
83
|
`, isInline: true, dependencies: [{ kind: "component", type: IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }] });
|
|
@@ -91,6 +91,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
91
91
|
size='xsmall'
|
|
92
92
|
[name]="icon"
|
|
93
93
|
[svgIcon]="svgIcon"
|
|
94
|
+
innerCssClass="k-breadcrumb-delimiter-icon"
|
|
94
95
|
>
|
|
95
96
|
</kendo-icon-wrapper>
|
|
96
97
|
`,
|
|
@@ -101,12 +102,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
101
102
|
type: Input
|
|
102
103
|
}], svgIcon: [{
|
|
103
104
|
type: Input
|
|
104
|
-
}], defaultClasses: [{
|
|
105
|
-
type: HostBinding,
|
|
106
|
-
args: ['class.k-breadcrumb-delimiter-icon']
|
|
107
|
-
}, {
|
|
108
|
-
type: HostBinding,
|
|
109
|
-
args: ['class.k-icon']
|
|
110
105
|
}], ariaHidden: [{
|
|
111
106
|
type: HostBinding,
|
|
112
107
|
args: ['attr.aria-hidden']
|
|
@@ -9,7 +9,7 @@ export const packageMetadata = {
|
|
|
9
9
|
name: '@progress/kendo-angular-navigation',
|
|
10
10
|
productName: 'Kendo UI for Angular',
|
|
11
11
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
12
|
-
publishDate:
|
|
13
|
-
version: '17.0.0-develop.
|
|
12
|
+
publishDate: 1730722664,
|
|
13
|
+
version: '17.0.0-develop.37',
|
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
15
15
|
};
|
|
@@ -23,8 +23,8 @@ const packageMetadata = {
|
|
|
23
23
|
name: '@progress/kendo-angular-navigation',
|
|
24
24
|
productName: 'Kendo UI for Angular',
|
|
25
25
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
26
|
-
publishDate:
|
|
27
|
-
version: '17.0.0-develop.
|
|
26
|
+
publishDate: 1730722664,
|
|
27
|
+
version: '17.0.0-develop.37',
|
|
28
28
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
29
29
|
};
|
|
30
30
|
|
|
@@ -1826,8 +1826,8 @@ class BreadCrumbItemComponent {
|
|
|
1826
1826
|
[ngClass]="{
|
|
1827
1827
|
'k-breadcrumb-root-link': item.context.isFirst,
|
|
1828
1828
|
'k-breadcrumb-link': index !== 0,
|
|
1829
|
-
'k-breadcrumb-icontext-link': !!item.data.icon && !!item.data.text,
|
|
1830
|
-
'k-breadcrumb-icon-link': !!item.data.icon && !item.data.text,
|
|
1829
|
+
'k-breadcrumb-icontext-link': (!!item.data.icon || !!item.data.svgIcon) && !!item.data.text,
|
|
1830
|
+
'k-breadcrumb-icon-link': (!!item.data.icon || !!item.data.svgIcon) && !item.data.text,
|
|
1831
1831
|
'k-disabled': disabled
|
|
1832
1832
|
}"
|
|
1833
1833
|
[title]="item.data.title || ''"
|
|
@@ -1880,8 +1880,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1880
1880
|
[ngClass]="{
|
|
1881
1881
|
'k-breadcrumb-root-link': item.context.isFirst,
|
|
1882
1882
|
'k-breadcrumb-link': index !== 0,
|
|
1883
|
-
'k-breadcrumb-icontext-link': !!item.data.icon && !!item.data.text,
|
|
1884
|
-
'k-breadcrumb-icon-link': !!item.data.icon && !item.data.text,
|
|
1883
|
+
'k-breadcrumb-icontext-link': (!!item.data.icon || !!item.data.svgIcon) && !!item.data.text,
|
|
1884
|
+
'k-breadcrumb-icon-link': (!!item.data.icon || !!item.data.svgIcon) && !item.data.text,
|
|
1885
1885
|
'k-disabled': disabled
|
|
1886
1886
|
}"
|
|
1887
1887
|
[title]="item.data.title || ''"
|
|
@@ -1974,7 +1974,6 @@ class BreadCrumbSeparatorDirective {
|
|
|
1974
1974
|
get svgIcon() {
|
|
1975
1975
|
return this._svgIcon;
|
|
1976
1976
|
}
|
|
1977
|
-
defaultClasses = true;
|
|
1978
1977
|
ariaHidden = true;
|
|
1979
1978
|
_icon;
|
|
1980
1979
|
_svgIcon;
|
|
@@ -2002,11 +2001,12 @@ class BreadCrumbSeparatorDirective {
|
|
|
2002
2001
|
this.localizationChangesSubscription.unsubscribe();
|
|
2003
2002
|
}
|
|
2004
2003
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: BreadCrumbSeparatorDirective, deps: [{ token: i0.ElementRef }, { token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
2005
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: BreadCrumbSeparatorDirective, isStandalone: true, selector: "[kendoBreadCrumbSeparator]", inputs: { icon: "icon", svgIcon: "svgIcon" }, host: { properties: { "
|
|
2004
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: BreadCrumbSeparatorDirective, isStandalone: true, selector: "[kendoBreadCrumbSeparator]", inputs: { icon: "icon", svgIcon: "svgIcon" }, host: { properties: { "attr.aria-hidden": "this.ariaHidden" } }, ngImport: i0, template: `
|
|
2006
2005
|
<kendo-icon-wrapper
|
|
2007
2006
|
size='xsmall'
|
|
2008
2007
|
[name]="icon"
|
|
2009
2008
|
[svgIcon]="svgIcon"
|
|
2009
|
+
innerCssClass="k-breadcrumb-delimiter-icon"
|
|
2010
2010
|
>
|
|
2011
2011
|
</kendo-icon-wrapper>
|
|
2012
2012
|
`, isInline: true, dependencies: [{ kind: "component", type: IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }] });
|
|
@@ -2020,6 +2020,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2020
2020
|
size='xsmall'
|
|
2021
2021
|
[name]="icon"
|
|
2022
2022
|
[svgIcon]="svgIcon"
|
|
2023
|
+
innerCssClass="k-breadcrumb-delimiter-icon"
|
|
2023
2024
|
>
|
|
2024
2025
|
</kendo-icon-wrapper>
|
|
2025
2026
|
`,
|
|
@@ -2030,12 +2031,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2030
2031
|
type: Input
|
|
2031
2032
|
}], svgIcon: [{
|
|
2032
2033
|
type: Input
|
|
2033
|
-
}], defaultClasses: [{
|
|
2034
|
-
type: HostBinding,
|
|
2035
|
-
args: ['class.k-breadcrumb-delimiter-icon']
|
|
2036
|
-
}, {
|
|
2037
|
-
type: HostBinding,
|
|
2038
|
-
args: ['class.k-icon']
|
|
2039
2034
|
}], ariaHidden: [{
|
|
2040
2035
|
type: HostBinding,
|
|
2041
2036
|
args: ['attr.aria-hidden']
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-navigation",
|
|
3
|
-
"version": "17.0.0-develop.
|
|
3
|
+
"version": "17.0.0-develop.37",
|
|
4
4
|
"description": "Kendo UI Navigation for Angular",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -21,14 +21,14 @@
|
|
|
21
21
|
"@angular/core": "16 - 18",
|
|
22
22
|
"@angular/platform-browser": "16 - 18",
|
|
23
23
|
"@progress/kendo-licensing": "^1.0.2",
|
|
24
|
-
"@progress/kendo-angular-common": "17.0.0-develop.
|
|
25
|
-
"@progress/kendo-angular-icons": "17.0.0-develop.
|
|
26
|
-
"@progress/kendo-angular-l10n": "17.0.0-develop.
|
|
24
|
+
"@progress/kendo-angular-common": "17.0.0-develop.37",
|
|
25
|
+
"@progress/kendo-angular-icons": "17.0.0-develop.37",
|
|
26
|
+
"@progress/kendo-angular-l10n": "17.0.0-develop.37",
|
|
27
27
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
30
|
"tslib": "^2.3.1",
|
|
31
|
-
"@progress/kendo-angular-schematics": "17.0.0-develop.
|
|
31
|
+
"@progress/kendo-angular-schematics": "17.0.0-develop.37"
|
|
32
32
|
},
|
|
33
33
|
"schematics": "./schematics/collection.json",
|
|
34
34
|
"module": "fesm2022/progress-kendo-angular-navigation.mjs",
|