suis 0.24.0 → 0.25.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -28,3 +28,4 @@ export * from './suis-spinner-container';
28
28
  export * from './suis-table';
29
29
  export * from './suis-tabs';
30
30
  export * from './suis-title';
31
+ export * from './suis-toolbar';
@@ -5,12 +5,8 @@ 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;
12
8
  /** @internal */
13
9
  itemTrackBy(index: number, item: SuisBreadcrumbItem): string;
14
10
  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>;
11
+ static ɵcmp: i0.ɵɵComponentDeclaration<SuisBreadcrumbsComponent, "suis-breadcrumbs", never, { "items": { "alias": "items"; "required": false; }; }, {}, never, never, true, never>;
16
12
  }
@@ -5,10 +5,6 @@ export declare class SuisFormFieldComponent {
5
5
  * Template to be added below the field with error message.
6
6
  */
7
7
  errorTemplate?: TemplateRef<HTMLElement>;
8
- /**
9
- * Adds a bottom margin below the field. By default set to false.
10
- */
11
- spacing: boolean;
12
8
  static ɵfac: i0.ɵɵFactoryDeclaration<SuisFormFieldComponent, never>;
13
- static ɵcmp: i0.ɵɵComponentDeclaration<SuisFormFieldComponent, "suis-form-field", never, { "errorTemplate": { "alias": "errorTemplate"; "required": false; }; "spacing": { "alias": "spacing"; "required": false; }; }, {}, never, ["*"], true, never>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<SuisFormFieldComponent, "suis-form-field", never, { "errorTemplate": { "alias": "errorTemplate"; "required": false; }; }, {}, never, ["*"], true, never>;
14
10
  }
@@ -4,10 +4,6 @@ export declare class SuisLabelComponent {
4
4
  * Adds a red colored asterisk after the label. By default set to false.
5
5
  */
6
6
  required: boolean;
7
- /**
8
- * Adds a bottom margin below the label. By default set to false.
9
- */
10
- spacing: boolean;
11
7
  static ɵfac: i0.ɵɵFactoryDeclaration<SuisLabelComponent, never>;
12
- static ɵcmp: i0.ɵɵComponentDeclaration<SuisLabelComponent, "suis-label", never, { "required": { "alias": "required"; "required": false; }; "spacing": { "alias": "spacing"; "required": false; }; }, {}, never, ["*", "[suisLabelAside]"], true, never>;
8
+ static ɵcmp: i0.ɵɵComponentDeclaration<SuisLabelComponent, "suis-label", never, { "required": { "alias": "required"; "required": false; }; }, {}, never, ["*", "[suisLabelAside]"], true, never>;
13
9
  }
@@ -27,10 +27,6 @@ export declare class SuisPaginationComponent implements OnInit, OnChanges {
27
27
  * Number of total items in data source. By default set to 0.
28
28
  */
29
29
  totalItems: number;
30
- /**
31
- * Adds margin top above the pagination. By default set to false.
32
- */
33
- spacing: boolean;
34
30
  /**
35
31
  * Sets the of label "1 'of' 25". By default set to 'of'.
36
32
  */
@@ -55,5 +51,5 @@ export declare class SuisPaginationComponent implements OnInit, OnChanges {
55
51
  previous(): void;
56
52
  onPerPageChange(value: number): void;
57
53
  static ɵfac: i0.ɵɵFactoryDeclaration<SuisPaginationComponent, never>;
58
- static ɵcmp: i0.ɵɵComponentDeclaration<SuisPaginationComponent, "suis-pagination", never, { "page": { "alias": "page"; "required": false; }; "perPage": { "alias": "perPage"; "required": false; }; "perPageOptions": { "alias": "perPageOptions"; "required": false; }; "totalItems": { "alias": "totalItems"; "required": false; }; "spacing": { "alias": "spacing"; "required": false; }; "ofLabel": { "alias": "ofLabel"; "required": false; }; "itemsLabel": { "alias": "itemsLabel"; "required": false; }; }, { "pageChange": "pageChange"; "perPageChange": "perPageChange"; }, never, never, true, never>;
54
+ static ɵcmp: i0.ɵɵComponentDeclaration<SuisPaginationComponent, "suis-pagination", never, { "page": { "alias": "page"; "required": false; }; "perPage": { "alias": "perPage"; "required": false; }; "perPageOptions": { "alias": "perPageOptions"; "required": false; }; "totalItems": { "alias": "totalItems"; "required": false; }; "ofLabel": { "alias": "ofLabel"; "required": false; }; "itemsLabel": { "alias": "itemsLabel"; "required": false; }; }, { "pageChange": "pageChange"; "perPageChange": "perPageChange"; }, never, never, true, never>;
59
55
  }
@@ -1,9 +1,5 @@
1
1
  import * as i0 from "@angular/core";
2
2
  export declare class SuisTitleComponent {
3
- /**
4
- * Adds a bottom margin below the title. By default set to false.
5
- */
6
- spacing: boolean;
7
3
  static ɵfac: i0.ɵɵFactoryDeclaration<SuisTitleComponent, never>;
8
- static ɵcmp: i0.ɵɵComponentDeclaration<SuisTitleComponent, "suis-title", never, { "spacing": { "alias": "spacing"; "required": false; }; }, {}, never, ["*"], true, never>;
4
+ static ɵcmp: i0.ɵɵComponentDeclaration<SuisTitleComponent, "suis-title", never, {}, {}, never, ["*"], true, never>;
9
5
  }
@@ -0,0 +1 @@
1
+ export * from './suis-toolbar.component';
@@ -0,0 +1,9 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class SuisToolbarComponent {
3
+ /**
4
+ * Adds a padding around the content. By default set to false.
5
+ */
6
+ spacing: boolean;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<SuisToolbarComponent, never>;
8
+ static ɵcmp: i0.ɵɵComponentDeclaration<SuisToolbarComponent, "suis-toolbar", never, { "spacing": { "alias": "spacing"; "required": false; }; }, {}, never, ["[suisToolbarLeft]", "[suisToolbarCenter]", "[suisToolbarRight]"], true, never>;
9
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "suis",
3
- "version": "0.24.0",
3
+ "version": "0.25.0",
4
4
  "main": "src/index.ts",
5
5
  "author": "Karol Jaskółka",
6
6
  "description": "Angular 16+ Component Library",