@progress/kendo-angular-navigation 24.0.0-develop.20 → 24.0.0-develop.22
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.
|
@@ -8,10 +8,11 @@
|
|
|
8
8
|
* The theme color will be applied as a background color to the component.
|
|
9
9
|
*
|
|
10
10
|
* * The possible values are:
|
|
11
|
-
* * `
|
|
12
|
-
* * `dark`—Applies coloring based on the dark theme color.
|
|
13
|
-
* * `inherit`&mdash Applies inherited coloring value.
|
|
11
|
+
* * `base`—Applies base coloring value.
|
|
14
12
|
* * `primary`—Applies primary coloring value.
|
|
13
|
+
* * `secondary`—Applies secondary coloring value.
|
|
14
|
+
* * `tertiary`—Applies tertiary coloring value.
|
|
15
|
+
* * `inverse`—Applies inverse coloring value.
|
|
15
16
|
*
|
|
16
17
|
*/
|
|
17
|
-
export type AppBarThemeColor = '
|
|
18
|
+
export type AppBarThemeColor = 'base' | 'primary' | 'secondary' | 'tertiary' | 'inverse';
|
|
@@ -6,15 +6,10 @@
|
|
|
6
6
|
* Represents the possible theme colors of the BottomNavigation ([see example](https://www.telerik.com/kendo-angular-ui/components/navigation/bottomnavigation/appearance)).
|
|
7
7
|
*
|
|
8
8
|
* The possible values are:
|
|
9
|
-
* * `
|
|
10
|
-
* * `
|
|
11
|
-
* * `
|
|
12
|
-
* * `
|
|
13
|
-
* * `
|
|
14
|
-
* * `warning`—Applies coloring based on the warning theme color.
|
|
15
|
-
* * `error`—Applies coloring based on the error theme color.
|
|
16
|
-
* * `dark`—Applies coloring based on the dark theme color.
|
|
17
|
-
* * `light`—Applies coloring based on the light theme color.
|
|
18
|
-
* * `inverse`—Applies coloring based on the inverted theme color.
|
|
9
|
+
* * `base`—Applies base coloring value.
|
|
10
|
+
* * `primary`—Applies primary coloring value.
|
|
11
|
+
* * `secondary`—Applies secondary coloring value.
|
|
12
|
+
* * `tertiary`—Applies tertiary coloring value.
|
|
13
|
+
* * `inverse`—Applies inverse coloring value.
|
|
19
14
|
*/
|
|
20
|
-
export type BottomNavigationThemeColor = '
|
|
15
|
+
export type BottomNavigationThemeColor = 'base' | 'primary' | 'secondary' | 'tertiary' | 'inverse';
|
|
@@ -25,8 +25,8 @@ const packageMetadata = {
|
|
|
25
25
|
productName: 'Kendo UI for Angular',
|
|
26
26
|
productCode: 'KENDOUIANGULAR',
|
|
27
27
|
productCodes: ['KENDOUIANGULAR'],
|
|
28
|
-
publishDate:
|
|
29
|
-
version: '24.0.0-develop.
|
|
28
|
+
publishDate: 1778164588,
|
|
29
|
+
version: '24.0.0-develop.22',
|
|
30
30
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
31
31
|
};
|
|
32
32
|
|
|
@@ -1244,7 +1244,7 @@ class ActionSheetComponent {
|
|
|
1244
1244
|
</div>
|
|
1245
1245
|
</div>
|
|
1246
1246
|
}
|
|
1247
|
-
`, isInline: true, dependencies: [{ kind: "directive", type: NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "component", type: ActionSheetListComponent, selector: "[kendoActionSheetList]", inputs: ["groupItems", "allItems", "itemTemplate"], outputs: ["itemClick"] }, { kind: "component", type: ButtonDirective, selector: "button[kendoButton]", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconPosition", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon"
|
|
1247
|
+
`, isInline: true, dependencies: [{ kind: "directive", type: NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "component", type: ActionSheetListComponent, selector: "[kendoActionSheetList]", inputs: ["groupItems", "allItems", "itemTemplate"], outputs: ["itemClick"] }, { kind: "component", type: ButtonDirective, selector: "button[kendoButton]", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconPosition", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }] });
|
|
1248
1248
|
}
|
|
1249
1249
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: ActionSheetComponent, decorators: [{
|
|
1250
1250
|
type: Component,
|
|
@@ -1714,7 +1714,7 @@ const BOTTOMNAVIGATION_ITEM_INDEX = 'data-kendo-bottomnavigation-index';
|
|
|
1714
1714
|
/**
|
|
1715
1715
|
* @hidden
|
|
1716
1716
|
*/
|
|
1717
|
-
const colors = ['
|
|
1717
|
+
const colors = ['base', 'primary', 'secondary', 'tertiary', 'inverse'];
|
|
1718
1718
|
/**
|
|
1719
1719
|
* @hidden
|
|
1720
1720
|
*/
|
package/package-metadata.mjs
CHANGED
|
@@ -7,7 +7,7 @@ export const packageMetadata = {
|
|
|
7
7
|
"productCodes": [
|
|
8
8
|
"KENDOUIANGULAR"
|
|
9
9
|
],
|
|
10
|
-
"publishDate":
|
|
11
|
-
"version": "24.0.0-develop.
|
|
10
|
+
"publishDate": 1778164588,
|
|
11
|
+
"version": "24.0.0-develop.22",
|
|
12
12
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
13
13
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-navigation",
|
|
3
|
-
"version": "24.0.0-develop.
|
|
3
|
+
"version": "24.0.0-develop.22",
|
|
4
4
|
"description": "Kendo UI Navigation for Angular",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"package": {
|
|
18
18
|
"productName": "Kendo UI for Angular",
|
|
19
19
|
"productCode": "KENDOUIANGULAR",
|
|
20
|
-
"publishDate":
|
|
20
|
+
"publishDate": 1778164588,
|
|
21
21
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
22
22
|
}
|
|
23
23
|
},
|
|
@@ -27,15 +27,15 @@
|
|
|
27
27
|
"@angular/core": "19 - 21",
|
|
28
28
|
"@angular/platform-browser": "19 - 21",
|
|
29
29
|
"@progress/kendo-licensing": "^1.11.0",
|
|
30
|
-
"@progress/kendo-angular-buttons": "24.0.0-develop.
|
|
31
|
-
"@progress/kendo-angular-common": "24.0.0-develop.
|
|
32
|
-
"@progress/kendo-angular-icons": "24.0.0-develop.
|
|
33
|
-
"@progress/kendo-angular-l10n": "24.0.0-develop.
|
|
30
|
+
"@progress/kendo-angular-buttons": "24.0.0-develop.22",
|
|
31
|
+
"@progress/kendo-angular-common": "24.0.0-develop.22",
|
|
32
|
+
"@progress/kendo-angular-icons": "24.0.0-develop.22",
|
|
33
|
+
"@progress/kendo-angular-l10n": "24.0.0-develop.22",
|
|
34
34
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
37
|
"tslib": "^2.3.1",
|
|
38
|
-
"@progress/kendo-angular-schematics": "24.0.0-develop.
|
|
38
|
+
"@progress/kendo-angular-schematics": "24.0.0-develop.22"
|
|
39
39
|
},
|
|
40
40
|
"schematics": "./schematics/collection.json",
|
|
41
41
|
"module": "fesm2022/progress-kendo-angular-navigation.mjs",
|