suis 0.18.0 → 0.19.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -22,3 +22,4 @@ export * from './suis-select-option';
22
22
  export * from './suis-select-multi';
23
23
  export * from './suis-spinner';
24
24
  export * from './suis-spinner-container';
25
+ export * from './suis-title';
@@ -5,8 +5,12 @@ export declare class SuisBreadcrumbsComponent {
5
5
  * List of breadcrumbs items. Type of SuisBreadcrumbItem[]. By default set to empty array.
6
6
  */
7
7
  items: SuisBreadcrumbItem[];
8
+ /**
9
+ * Adds a bottom margin below the breadcrumbs. By default set to false.
10
+ */
11
+ spacing: boolean;
8
12
  /** @internal */
9
13
  itemTrackBy(index: number, item: SuisBreadcrumbItem): string;
10
14
  static ɵfac: i0.ɵɵFactoryDeclaration<SuisBreadcrumbsComponent, never>;
11
- static ɵcmp: i0.ɵɵComponentDeclaration<SuisBreadcrumbsComponent, "suis-breadcrumbs", never, { "items": { "alias": "items"; "required": false; }; }, {}, never, never, true, never>;
15
+ static ɵcmp: i0.ɵɵComponentDeclaration<SuisBreadcrumbsComponent, "suis-breadcrumbs", never, { "items": { "alias": "items"; "required": false; }; "spacing": { "alias": "spacing"; "required": false; }; }, {}, never, never, true, never>;
12
16
  }
@@ -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
  }
@@ -0,0 +1 @@
1
+ export * from './suis-title.component';
@@ -0,0 +1,9 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class SuisTitleComponent {
3
+ /**
4
+ * Adds a bottom margin below the title. By default set to false.
5
+ */
6
+ spacing: boolean;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<SuisTitleComponent, never>;
8
+ static ɵcmp: i0.ɵɵComponentDeclaration<SuisTitleComponent, "suis-title", never, { "spacing": { "alias": "spacing"; "required": false; }; }, {}, never, ["*"], true, never>;
9
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "suis",
3
- "version": "0.18.0",
3
+ "version": "0.19.0",
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"