@progress/kendo-angular-navigation 19.1.2-develop.4 → 19.1.2-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.
- package/actionsheet/actionsheet.component.d.ts +18 -17
- package/actionsheet/models/actionsheet-action-layout.d.ts +15 -13
- package/actionsheet/models/actionsheet-action.d.ts +9 -30
- package/actionsheet/models/actionsheet-item.interface.d.ts +13 -18
- package/actionsheet/models/animation.d.ts +4 -2
- package/actionsheet/models/group.d.ts +6 -0
- package/actionsheet/models/item-click.event.d.ts +5 -3
- package/actionsheet/templates/actionsheet-template.d.ts +10 -1
- package/actionsheet/templates/content-template.directive.d.ts +10 -1
- package/actionsheet/templates/footer-template.directive.d.ts +10 -1
- package/actionsheet/templates/header-template.directive.d.ts +10 -1
- package/actionsheet/templates/item-template.directive.d.ts +10 -1
- package/actionsheet.module.d.ts +5 -18
- package/appbar/appbar-section.component.d.ts +9 -13
- package/appbar/appbar-spacer.component.d.ts +13 -21
- package/appbar/appbar.component.d.ts +19 -25
- package/appbar/models/position-mode.d.ts +5 -6
- package/appbar/models/position.d.ts +3 -8
- package/appbar/models/theme-color.d.ts +6 -7
- package/appbar.module.d.ts +5 -18
- package/bottomnavigation/bottomnavigation.component.d.ts +17 -31
- package/bottomnavigation/events/select-event.d.ts +5 -5
- package/bottomnavigation/templates/item-template.directive.d.ts +11 -3
- package/bottomnavigation/types/bottomnavigation-fill.d.ts +3 -3
- package/bottomnavigation/types/bottomnavigation-item-flow.d.ts +3 -3
- package/bottomnavigation/types/bottomnavigation-item.d.ts +11 -10
- package/bottomnavigation/types/bottomnavigation-position-mode.d.ts +3 -3
- package/bottomnavigation/types/bottomnavigation-theme-color.d.ts +12 -12
- package/bottomnavigation.module.d.ts +6 -18
- package/breadcrumb/breadcrumb.component.d.ts +14 -19
- package/breadcrumb/models/breadcrumb-item.interface.d.ts +10 -11
- package/breadcrumb/models/breadcrumb-size.d.ts +1 -2
- package/breadcrumb/models/collapse-mode.d.ts +5 -3
- package/breadcrumb/template-directives/item-template.directive.d.ts +12 -1
- package/breadcrumb.module.d.ts +6 -18
- package/directives.d.ts +94 -5
- package/esm2022/actionsheet/actionsheet.component.mjs +18 -17
- package/esm2022/actionsheet/models/item-click.event.mjs +5 -3
- package/esm2022/actionsheet/templates/actionsheet-template.mjs +10 -1
- package/esm2022/actionsheet/templates/content-template.directive.mjs +10 -1
- package/esm2022/actionsheet/templates/footer-template.directive.mjs +10 -1
- package/esm2022/actionsheet/templates/header-template.directive.mjs +10 -1
- package/esm2022/actionsheet/templates/item-template.directive.mjs +10 -1
- package/esm2022/actionsheet.module.mjs +5 -18
- package/esm2022/appbar/appbar-section.component.mjs +9 -13
- package/esm2022/appbar/appbar-spacer.component.mjs +13 -21
- package/esm2022/appbar/appbar.component.mjs +19 -25
- package/esm2022/appbar.module.mjs +5 -18
- package/esm2022/bottomnavigation/bottomnavigation.component.mjs +17 -31
- package/esm2022/bottomnavigation/events/select-event.mjs +5 -5
- package/esm2022/bottomnavigation/templates/item-template.directive.mjs +11 -3
- package/esm2022/bottomnavigation/types/bottomnavigation-theme-color.mjs +12 -12
- package/esm2022/bottomnavigation.module.mjs +6 -18
- package/esm2022/breadcrumb/breadcrumb.component.mjs +14 -19
- package/esm2022/breadcrumb/template-directives/item-template.directive.mjs +12 -1
- package/esm2022/breadcrumb.module.mjs +6 -18
- package/esm2022/directives.mjs +94 -5
- package/esm2022/navigation.module.mjs +6 -18
- package/esm2022/package-metadata.mjs +2 -2
- package/fesm2022/progress-kendo-angular-navigation.mjs +297 -240
- package/navigation.module.d.ts +6 -18
- package/package.json +7 -7
package/navigation.module.d.ts
CHANGED
|
@@ -18,34 +18,22 @@ import * as i12 from "./bottomnavigation/templates/item-template.directive";
|
|
|
18
18
|
import * as i13 from "./breadcrumb/breadcrumb.component";
|
|
19
19
|
import * as i14 from "./breadcrumb/template-directives/item-template.directive";
|
|
20
20
|
/**
|
|
21
|
-
* Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
|
|
21
|
+
* Represents the [`NgModule`](link:site.data.urls.angular['ngmoduleapi'])
|
|
22
22
|
* definition for the Navigation components.
|
|
23
23
|
*
|
|
24
24
|
* @example
|
|
25
|
-
*
|
|
26
|
-
* ```ts-no-run
|
|
27
|
-
* // Import the Navigation module
|
|
25
|
+
* ```typescript
|
|
28
26
|
* import { NavigationModule } from '@progress/kendo-angular-navigation';
|
|
29
|
-
*
|
|
30
|
-
* // The browser platform with a compiler
|
|
31
|
-
* import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
|
|
32
|
-
*
|
|
27
|
+
* import { BrowserModule } from '@angular/platform-browser';
|
|
33
28
|
* import { NgModule } from '@angular/core';
|
|
34
|
-
*
|
|
35
|
-
* // Import the app component
|
|
36
29
|
* import { AppComponent } from './app.component';
|
|
37
30
|
*
|
|
38
|
-
*
|
|
39
|
-
*
|
|
40
|
-
*
|
|
41
|
-
* imports: [BrowserModule, NavigationModule], // import Navigation module
|
|
31
|
+
* @NgModule({
|
|
32
|
+
* declarations: [AppComponent],
|
|
33
|
+
* imports: [BrowserModule, NavigationModule],
|
|
42
34
|
* bootstrap: [AppComponent]
|
|
43
35
|
* })
|
|
44
36
|
* export class AppModule {}
|
|
45
|
-
*
|
|
46
|
-
* // Compile and launch the module
|
|
47
|
-
* platformBrowserDynamic().bootstrapModule(AppModule);
|
|
48
|
-
*
|
|
49
37
|
* ```
|
|
50
38
|
*/
|
|
51
39
|
export declare class NavigationModule {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-navigation",
|
|
3
|
-
"version": "19.1.2-develop.
|
|
3
|
+
"version": "19.1.2-develop.6",
|
|
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": 1750433561,
|
|
21
21
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
22
22
|
}
|
|
23
23
|
},
|
|
@@ -27,15 +27,15 @@
|
|
|
27
27
|
"@angular/core": "16 - 20",
|
|
28
28
|
"@angular/platform-browser": "16 - 20",
|
|
29
29
|
"@progress/kendo-licensing": "^1.5.0",
|
|
30
|
-
"@progress/kendo-angular-buttons": "19.1.2-develop.
|
|
31
|
-
"@progress/kendo-angular-common": "19.1.2-develop.
|
|
32
|
-
"@progress/kendo-angular-icons": "19.1.2-develop.
|
|
33
|
-
"@progress/kendo-angular-l10n": "19.1.2-develop.
|
|
30
|
+
"@progress/kendo-angular-buttons": "19.1.2-develop.6",
|
|
31
|
+
"@progress/kendo-angular-common": "19.1.2-develop.6",
|
|
32
|
+
"@progress/kendo-angular-icons": "19.1.2-develop.6",
|
|
33
|
+
"@progress/kendo-angular-l10n": "19.1.2-develop.6",
|
|
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": "19.1.2-develop.
|
|
38
|
+
"@progress/kendo-angular-schematics": "19.1.2-develop.6"
|
|
39
39
|
},
|
|
40
40
|
"schematics": "./schematics/collection.json",
|
|
41
41
|
"module": "fesm2022/progress-kendo-angular-navigation.mjs",
|