@mmb-digital/design-system-web 0.1.35 → 0.1.37

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/dist/index.d.ts CHANGED
@@ -104,6 +104,7 @@ interface MinMaxLabels {
104
104
  readonly min: ReactElement | string;
105
105
  }
106
106
  interface SliderProps {
107
+ readonly colorScheme: ColorScheme;
107
108
  readonly disable?: boolean | undefined;
108
109
  readonly max: number;
109
110
  readonly min: number;
@@ -155,19 +156,14 @@ declare enum TableVariant {
155
156
  EXCHANGE = "exchange",
156
157
  SIMPLE = "simple"
157
158
  }
158
- declare enum TextAlign$1 {
159
- center = "center",
160
- left = "left",
161
- right = "right"
162
- }
163
- interface TableProps {
164
- children: ReactNode;
159
+ interface TableProps extends PropsWithChildren {
165
160
  variant: TableVariant;
166
161
  }
167
162
  interface TableCellProps extends PropsWithChildren {
163
+ align?: 'center' | 'char' | 'justify' | 'left' | 'right';
168
164
  delimiter?: boolean;
169
- textAlign?: TextAlign$1;
170
165
  variant: TableVariant;
166
+ width?: number | string;
171
167
  }
172
168
 
173
169
  declare const Table: FC<TableProps>;
@@ -178,7 +174,7 @@ declare const TableData: FC<TableCellProps>;
178
174
 
179
175
  declare const TableHead: FC<TableProps>;
180
176
 
181
- declare const TableHeadData: FC<TableProps>;
177
+ declare const TableHeadData: FC<TableCellProps>;
182
178
 
183
179
  declare const TableRow: FC<TableProps>;
184
180
 
@@ -672,9 +668,11 @@ interface SliderInputMinMax {
672
668
  min: number;
673
669
  }
674
670
  interface SliderInputProps extends RefAttributes<HTMLInputElement> {
671
+ colorScheme?: ColorScheme;
675
672
  disabled?: boolean | undefined;
676
673
  hasError?: boolean;
677
674
  id?: string | undefined;
675
+ inputNote?: ReactElement | string;
678
676
  isInputHidden?: boolean | undefined;
679
677
  label: SliderInputLabel;
680
678
  mediaType: MediaType;