@selfdecode/sd-component-library 2.46.27 → 2.46.28

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.
@@ -1,5 +1,5 @@
1
- import { BaseComponentProps } from "../../interfaces";
2
- export interface BarsMeterProps extends BaseComponentProps {
1
+ import { GridProps } from "../../containers";
2
+ export interface BarsMeterProps extends Omit<GridProps, "minHeight" | "gridTemplateColumns"> {
3
3
  /**
4
4
  * Minimal height of the bar.
5
5
  */
@@ -8,10 +8,6 @@ export interface BarsMeterProps extends BaseComponentProps {
8
8
  * height of the meter
9
9
  */
10
10
  heightPx?: number;
11
- /**
12
- * gap between bars
13
- */
14
- gap?: string[];
15
11
  /**
16
12
  * width of a single bar
17
13
  */