suis 0.17.0 → 0.18.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,5 +1,6 @@
1
1
  export * from './suis-alert';
2
2
  export * from './suis-box';
3
+ export * from './suis-breadcrumbs';
3
4
  export * from './suis-button';
4
5
  export * from './suis-chip';
5
6
  export * from './suis-container';
@@ -0,0 +1,2 @@
1
+ export * from './suis-breadcrumbs.component';
2
+ export * from './suis-breadcrumbs.interface';
@@ -0,0 +1,16 @@
1
+ import { SuisBreadcrumbItem } from './suis-breadcrumbs.interface';
2
+ import * as i0 from "@angular/core";
3
+ export declare class SuisBreadcrumbsComponent {
4
+ /**
5
+ * List of breadcrumbs items. Type of SuisBreadcrumbItem[]. By default set to empty array.
6
+ */
7
+ items: SuisBreadcrumbItem[];
8
+ /**
9
+ * Adds a bottom margin below the breadcrumbs. By default set to false.
10
+ */
11
+ spacing: boolean;
12
+ /** @internal */
13
+ itemTrackBy(index: number, item: SuisBreadcrumbItem): string;
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<SuisBreadcrumbsComponent, never>;
15
+ static ɵcmp: i0.ɵɵComponentDeclaration<SuisBreadcrumbsComponent, "suis-breadcrumbs", never, { "items": { "alias": "items"; "required": false; }; "spacing": { "alias": "spacing"; "required": false; }; }, {}, never, never, true, never>;
16
+ }
@@ -0,0 +1,4 @@
1
+ export interface SuisBreadcrumbItem {
2
+ label: string;
3
+ link: string;
4
+ }
@@ -1,5 +1,9 @@
1
1
  import * as i0 from "@angular/core";
2
2
  export declare class SuisContainerComponent {
3
+ /**
4
+ * Adds a padding around the container. By default set to false.
5
+ */
6
+ spacing: boolean;
3
7
  static ɵfac: i0.ɵɵFactoryDeclaration<SuisContainerComponent, never>;
4
- static ɵcmp: i0.ɵɵComponentDeclaration<SuisContainerComponent, "suis-container", never, {}, {}, never, ["*"], true, never>;
8
+ static ɵcmp: i0.ɵɵComponentDeclaration<SuisContainerComponent, "suis-container", never, { "spacing": { "alias": "spacing"; "required": false; }; }, {}, never, ["*"], true, never>;
5
9
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "suis",
3
- "version": "0.17.0",
3
+ "version": "0.18.1",
4
4
  "main": "src/index.ts",
5
5
  "author": "Karol Jaskółka",
6
6
  "description": "SUIS (Standalone UI + Signals) Angular 16+ Component Library",
@@ -14,8 +14,8 @@
14
14
  "peerDependencies": {
15
15
  "@angular/common": "^16.0.0",
16
16
  "@angular/core": "^16.0.0",
17
- "@angular/forms": "16.0.0",
18
- "@angular/router": "16.0.0"
17
+ "@angular/router": "16.0.0",
18
+ "@angular/forms": "16.0.0"
19
19
  },
20
20
  "dependencies": {
21
21
  "tslib": "^2.3.0"