suis 0.32.2 → 0.32.4

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,4 +1,4 @@
1
- import { SuisColor } from '../../types';
1
+ import { SuisColor, SuisSize } from '../../types';
2
2
  import * as i0 from "@angular/core";
3
3
  export declare class SuisProgressBarComponent {
4
4
  /** @internal */
@@ -17,6 +17,10 @@ export declare class SuisProgressBarComponent {
17
17
  * Sets the background color of the progress bar. Type of SuisColor. By default set to 'tertiary'.
18
18
  */
19
19
  backgroundColor: SuisColor;
20
+ /**
21
+ * Sets the height of the progress bar. Type of SuisSize. By default set to 'md'.
22
+ */
23
+ size: SuisSize;
20
24
  static ɵfac: i0.ɵɵFactoryDeclaration<SuisProgressBarComponent, never>;
21
- static ɵcmp: i0.ɵɵComponentDeclaration<SuisProgressBarComponent, "suis-progress-bar", never, { "value": { "alias": "value"; "required": false; }; "color": { "alias": "color"; "required": false; }; "backgroundColor": { "alias": "backgroundColor"; "required": false; }; }, {}, never, never, true, never>;
25
+ static ɵcmp: i0.ɵɵComponentDeclaration<SuisProgressBarComponent, "suis-progress-bar", never, { "value": { "alias": "value"; "required": false; }; "color": { "alias": "color"; "required": false; }; "backgroundColor": { "alias": "backgroundColor"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, {}, never, never, true, never>;
22
26
  }
@@ -1 +1,2 @@
1
1
  export * from './suis-title.component';
2
+ export * from './suis-title.enum';
@@ -1,5 +1,12 @@
1
+ import { SuisTitle } from './suis-title.enum';
1
2
  import * as i0 from "@angular/core";
2
3
  export declare class SuisTitleComponent {
4
+ /** @internal */
5
+ readonly SuisTitle: typeof SuisTitle;
6
+ /**
7
+ * Sets level of the header tag. Type of SuisTitle. By default set to H1.
8
+ */
9
+ level: SuisTitle;
3
10
  static ɵfac: i0.ɵɵFactoryDeclaration<SuisTitleComponent, never>;
4
- static ɵcmp: i0.ɵɵComponentDeclaration<SuisTitleComponent, "suis-title", never, {}, {}, never, ["*"], true, never>;
11
+ static ɵcmp: i0.ɵɵComponentDeclaration<SuisTitleComponent, "suis-title", never, { "level": { "alias": "level"; "required": false; }; }, {}, never, ["*"], true, never>;
5
12
  }
@@ -0,0 +1,5 @@
1
+ export declare enum SuisTitle {
2
+ H1 = 1,
3
+ H2 = 2,
4
+ H3 = 3
5
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "suis",
3
- "version": "0.32.2",
3
+ "version": "0.32.4",
4
4
  "main": "src/index.ts",
5
5
  "author": "Karol Jaskółka",
6
6
  "description": "Angular 16+ Component Library",