@indigina/ui-kit 1.1.37 → 1.1.38

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,10 @@
1
+ import { KitBreadcrumbsItem } from './kit-breadcrumbs.model';
2
+ import * as i0 from "@angular/core";
3
+ export declare class KitBreadcrumbsComponent {
4
+ /**
5
+ * Defines items that will be rendered as breadcrumbs
6
+ */
7
+ items: KitBreadcrumbsItem[];
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<KitBreadcrumbsComponent, never>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<KitBreadcrumbsComponent, "kit-breadcrumbs", never, { "items": { "alias": "items"; "required": false; }; }, {}, never, never, false, never>;
10
+ }
@@ -0,0 +1,4 @@
1
+ export interface KitBreadcrumbsItem {
2
+ text: string;
3
+ url: string;
4
+ }
@@ -0,0 +1,9 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./kit-breadcrumbs.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "@angular/router";
5
+ export declare class KitBreadcrumbsModule {
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<KitBreadcrumbsModule, never>;
7
+ static ɵmod: i0.ɵɵNgModuleDeclaration<KitBreadcrumbsModule, [typeof i1.KitBreadcrumbsComponent], [typeof i2.CommonModule, typeof i3.RouterLink], [typeof i1.KitBreadcrumbsComponent]>;
8
+ static ɵinj: i0.ɵɵInjectorDeclaration<KitBreadcrumbsModule>;
9
+ }
package/package.json CHANGED
@@ -7,7 +7,7 @@
7
7
  "components",
8
8
  "shared"
9
9
  ],
10
- "version": "1.1.37",
10
+ "version": "1.1.38",
11
11
  "peerDependencies": {
12
12
  "@angular/common": "^17.0.7",
13
13
  "@angular/core": "^17.0.7"
package/public-api.d.ts CHANGED
@@ -117,3 +117,6 @@ export { KitCardModule } from './lib/components/kit-card/kit-card.module';
117
117
  export { KitCardComponent } from './lib/components/kit-card/kit-card.component';
118
118
  export { KitCard, KitCardItem } from './lib/components/kit-card/kit-card.model';
119
119
  export { KitCardTheme } from './lib/components/kit-card/kit-card.const';
120
+ export { KitBreadcrumbsModule } from './lib/components/kit-breadcrumbs/kit-breadcrumbs.module';
121
+ export { KitBreadcrumbsComponent } from './lib/components/kit-breadcrumbs/kit-breadcrumbs.component';
122
+ export { KitBreadcrumbsItem } from './lib/components/kit-breadcrumbs/kit-breadcrumbs.model';