suis 0.32.3 → 0.32.4
Sign up to get free protection for your applications and to get access to all the features.
- package/esm2022/lib/components/suis-text-area/suis-text-area.component.mjs +3 -3
- package/esm2022/lib/components/suis-title/index.mjs +2 -1
- package/esm2022/lib/components/suis-title/suis-title.component.mjs +17 -5
- package/esm2022/lib/components/suis-title/suis-title.enum.mjs +7 -0
- package/fesm2022/suis.mjs +24 -7
- package/fesm2022/suis.mjs.map +1 -1
- package/lib/components/suis-title/index.d.ts +1 -0
- package/lib/components/suis-title/suis-title.component.d.ts +8 -1
- package/lib/components/suis-title/suis-title.enum.d.ts +5 -0
- package/package.json +1 -1
@@ -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
|
}
|