@patter/ngx-components 0.5.12 → 0.5.13

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.
@@ -0,0 +1,8 @@
1
+ export interface PtrBreadcrumb {
2
+ label?: string;
3
+ url?: string;
4
+ }
5
+ export interface BreadcrumbRouteInfo {
6
+ label?: string;
7
+ url?: string;
8
+ }
@@ -0,0 +1,13 @@
1
+ import { PtrBreadcrumb } from './interfaces';
2
+ import * as i0 from "@angular/core";
3
+ export declare class PtrBreadcrumbsComponent {
4
+ showFirstSeparator: boolean;
5
+ private router;
6
+ private activatedRoute;
7
+ private routeEvents;
8
+ breadcrumbs: import("@angular/core").Signal<PtrBreadcrumb[]>;
9
+ private createBreadcrumbs;
10
+ private getLabelForRoute;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<PtrBreadcrumbsComponent, never>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<PtrBreadcrumbsComponent, "ptr-breadcrumbs", never, { "showFirstSeparator": { "alias": "showFirstSeparator"; "required": false; }; }, {}, never, never, true, never>;
13
+ }
@@ -4,6 +4,7 @@ import * as i0 from "@angular/core";
4
4
  export declare class PtrTitleComponent implements OnInit {
5
5
  styleClass: string;
6
6
  wrapperStyleClass: string;
7
+ screenReaderOnly: boolean;
7
8
  private router;
8
9
  private activatedRoute;
9
10
  private titleStrategy;
@@ -12,5 +13,5 @@ export declare class PtrTitleComponent implements OnInit {
12
13
  ngOnInit(): void;
13
14
  private getRoute;
14
15
  static ɵfac: i0.ɵɵFactoryDeclaration<PtrTitleComponent, never>;
15
- static ɵcmp: i0.ɵɵComponentDeclaration<PtrTitleComponent, "ptr-title", never, { "styleClass": { "alias": "styleClass"; "required": false; }; "wrapperStyleClass": { "alias": "wrapperStyleClass"; "required": false; }; }, {}, never, never, true, never>;
16
+ static ɵcmp: i0.ɵɵComponentDeclaration<PtrTitleComponent, "ptr-title", never, { "styleClass": { "alias": "styleClass"; "required": false; }; "wrapperStyleClass": { "alias": "wrapperStyleClass"; "required": false; }; "screenReaderOnly": { "alias": "screenReaderOnly"; "required": false; }; }, {}, never, never, true, never>;
16
17
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@patter/ngx-components",
3
- "version": "0.5.12",
3
+ "version": "0.5.13",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^18.2.0",
6
6
  "@angular/core": "^18.2.0"
package/public-api.d.ts CHANGED
@@ -11,3 +11,7 @@ export { PtrButtonComponent } from './lib/ptr-button/ptr-button.component';
11
11
  export { PtrDialogService } from './lib/dialog/ptr-dialog.service';
12
12
  export { PtrDialogComponent } from './lib/dialog/ptr-dialog/ptr-dialog.component';
13
13
  export { PtrTooltipComponent } from './lib/dialog/ptr-tooltip/ptr-tooltip.component';
14
+ export { PtrBreadcrumbsComponent } from './lib/ptr-breadcrumbs/ptr-breadcrumbs.component';
15
+ export { PtrBreadcrumb } from './lib/ptr-breadcrumbs/interfaces';
16
+ export { PtrTabsComponent } from './lib/components/tabs/ptr-tabs/ptr-tabs.component';
17
+ export { PtrTabComponent } from './lib/components/tabs/ptr-tab/ptr-tab.component';