@progress/kendo-angular-navigation 19.1.2-develop.3 → 19.1.2-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.
Files changed (62) hide show
  1. package/actionsheet/actionsheet.component.d.ts +18 -17
  2. package/actionsheet/models/actionsheet-action-layout.d.ts +15 -13
  3. package/actionsheet/models/actionsheet-action.d.ts +9 -30
  4. package/actionsheet/models/actionsheet-item.interface.d.ts +13 -18
  5. package/actionsheet/models/animation.d.ts +4 -2
  6. package/actionsheet/models/group.d.ts +6 -0
  7. package/actionsheet/models/item-click.event.d.ts +5 -3
  8. package/actionsheet/templates/actionsheet-template.d.ts +10 -1
  9. package/actionsheet/templates/content-template.directive.d.ts +10 -1
  10. package/actionsheet/templates/footer-template.directive.d.ts +10 -1
  11. package/actionsheet/templates/header-template.directive.d.ts +10 -1
  12. package/actionsheet/templates/item-template.directive.d.ts +10 -1
  13. package/actionsheet.module.d.ts +5 -18
  14. package/appbar/appbar-section.component.d.ts +9 -13
  15. package/appbar/appbar-spacer.component.d.ts +13 -21
  16. package/appbar/appbar.component.d.ts +19 -25
  17. package/appbar/models/position-mode.d.ts +5 -6
  18. package/appbar/models/position.d.ts +3 -8
  19. package/appbar/models/theme-color.d.ts +6 -7
  20. package/appbar.module.d.ts +5 -18
  21. package/bottomnavigation/bottomnavigation.component.d.ts +17 -31
  22. package/bottomnavigation/events/select-event.d.ts +5 -5
  23. package/bottomnavigation/templates/item-template.directive.d.ts +11 -3
  24. package/bottomnavigation/types/bottomnavigation-fill.d.ts +3 -3
  25. package/bottomnavigation/types/bottomnavigation-item-flow.d.ts +3 -3
  26. package/bottomnavigation/types/bottomnavigation-item.d.ts +11 -10
  27. package/bottomnavigation/types/bottomnavigation-position-mode.d.ts +3 -3
  28. package/bottomnavigation/types/bottomnavigation-theme-color.d.ts +12 -12
  29. package/bottomnavigation.module.d.ts +6 -18
  30. package/breadcrumb/breadcrumb.component.d.ts +14 -19
  31. package/breadcrumb/models/breadcrumb-item.interface.d.ts +10 -11
  32. package/breadcrumb/models/breadcrumb-size.d.ts +1 -2
  33. package/breadcrumb/models/collapse-mode.d.ts +5 -3
  34. package/breadcrumb/template-directives/item-template.directive.d.ts +12 -1
  35. package/breadcrumb.module.d.ts +6 -18
  36. package/directives.d.ts +94 -5
  37. package/esm2022/actionsheet/actionsheet.component.mjs +18 -17
  38. package/esm2022/actionsheet/models/item-click.event.mjs +5 -3
  39. package/esm2022/actionsheet/templates/actionsheet-template.mjs +10 -1
  40. package/esm2022/actionsheet/templates/content-template.directive.mjs +10 -1
  41. package/esm2022/actionsheet/templates/footer-template.directive.mjs +10 -1
  42. package/esm2022/actionsheet/templates/header-template.directive.mjs +10 -1
  43. package/esm2022/actionsheet/templates/item-template.directive.mjs +10 -1
  44. package/esm2022/actionsheet.module.mjs +5 -18
  45. package/esm2022/appbar/appbar-section.component.mjs +9 -13
  46. package/esm2022/appbar/appbar-spacer.component.mjs +13 -21
  47. package/esm2022/appbar/appbar.component.mjs +19 -25
  48. package/esm2022/appbar.module.mjs +5 -18
  49. package/esm2022/bottomnavigation/bottomnavigation.component.mjs +17 -31
  50. package/esm2022/bottomnavigation/events/select-event.mjs +5 -5
  51. package/esm2022/bottomnavigation/templates/item-template.directive.mjs +11 -3
  52. package/esm2022/bottomnavigation/types/bottomnavigation-theme-color.mjs +12 -12
  53. package/esm2022/bottomnavigation.module.mjs +6 -18
  54. package/esm2022/breadcrumb/breadcrumb.component.mjs +14 -19
  55. package/esm2022/breadcrumb/template-directives/item-template.directive.mjs +12 -1
  56. package/esm2022/breadcrumb.module.mjs +6 -18
  57. package/esm2022/directives.mjs +94 -5
  58. package/esm2022/navigation.module.mjs +6 -18
  59. package/esm2022/package-metadata.mjs +2 -2
  60. package/fesm2022/progress-kendo-angular-navigation.mjs +297 -240
  61. package/navigation.module.d.ts +6 -18
  62. package/package.json +7 -7
@@ -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
- * // Define the app module
39
- * _@NgModule({
40
- * declarations: [AppComponent], // declare app component
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",
3
+ "version": "19.1.2-develop.5",
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": 1750152406,
20
+ "publishDate": 1750430744,
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.3",
31
- "@progress/kendo-angular-common": "19.1.2-develop.3",
32
- "@progress/kendo-angular-icons": "19.1.2-develop.3",
33
- "@progress/kendo-angular-l10n": "19.1.2-develop.3",
30
+ "@progress/kendo-angular-buttons": "19.1.2-develop.5",
31
+ "@progress/kendo-angular-common": "19.1.2-develop.5",
32
+ "@progress/kendo-angular-icons": "19.1.2-develop.5",
33
+ "@progress/kendo-angular-l10n": "19.1.2-develop.5",
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.3"
38
+ "@progress/kendo-angular-schematics": "19.1.2-develop.5"
39
39
  },
40
40
  "schematics": "./schematics/collection.json",
41
41
  "module": "fesm2022/progress-kendo-angular-navigation.mjs",