suis 0.31.2 → 0.32.1
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +1 -0
- package/esm2022/lib/components/index.mjs +2 -1
- package/esm2022/lib/components/suis-divider/index.mjs +2 -0
- package/esm2022/lib/components/suis-divider/suis-divider.component.mjs +22 -0
- package/fesm2022/suis.mjs +25 -7
- package/fesm2022/suis.mjs.map +1 -1
- package/lib/components/index.d.ts +1 -0
- package/lib/components/suis-divider/index.d.ts +1 -0
- package/lib/components/suis-divider/suis-divider.component.d.ts +10 -0
- package/package.json +1 -1
@@ -9,6 +9,7 @@ export * from './suis-chip';
|
|
9
9
|
export * from './suis-container';
|
10
10
|
export * from './suis-dialog';
|
11
11
|
export * from './suis-dialog-container';
|
12
|
+
export * from './suis-divider';
|
12
13
|
export * from './suis-form-field';
|
13
14
|
export * from './suis-icon';
|
14
15
|
export * from './suis-input';
|
@@ -0,0 +1 @@
|
|
1
|
+
export * from './suis-divider.component';
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import { SuisColor } from '../../types/suis-color.type';
|
2
|
+
import * as i0 from "@angular/core";
|
3
|
+
export declare class SuisDividerComponent {
|
4
|
+
/**
|
5
|
+
* Sets the color of the divider. Type of SuisColor. By default set to 'tertiary'.
|
6
|
+
*/
|
7
|
+
color: SuisColor;
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SuisDividerComponent, never>;
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SuisDividerComponent, "suis-divider", never, { "color": { "alias": "color"; "required": false; }; }, {}, never, never, true, never>;
|
10
|
+
}
|