suis 0.32.2 → 0.32.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2022/lib/components/suis-input/suis-input.component.mjs +3 -3
- package/esm2022/lib/components/suis-input-checkbox/suis-input-checkbox.component.mjs +3 -3
- package/esm2022/lib/components/suis-input-chips/suis-input-chips.component.mjs +3 -3
- package/esm2022/lib/components/suis-input-image/suis-input-image.component.mjs +3 -3
- package/esm2022/lib/components/suis-input-number/suis-input-number.component.mjs +3 -3
- package/esm2022/lib/components/suis-input-radio/suis-input-radio.component.mjs +3 -3
- package/esm2022/lib/components/suis-progress-bar/suis-progress-bar.component.mjs +9 -3
- package/esm2022/lib/components/suis-select/suis-select.component.mjs +3 -3
- package/esm2022/lib/components/suis-select-multi/suis-select-multi.component.mjs +3 -3
- package/esm2022/lib/components/suis-text-area/suis-text-area.component.mjs +2 -2
- package/esm2022/lib/components/suis-toggle/suis-toggle.component.mjs +3 -3
- package/fesm2022/suis.mjs +28 -22
- package/fesm2022/suis.mjs.map +1 -1
- package/lib/components/suis-progress-bar/suis-progress-bar.component.d.ts +6 -2
- package/package.json +1 -1
@@ -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
|
}
|