@cyber-harbour/ui 1.0.52 → 1.0.54

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.
@@ -30,6 +30,7 @@ export type LabelSizeStyle = {
30
30
  helpText: { fontSize: number | string; marginTop: number | string };
31
31
  };
32
32
 
33
+ export type SwitchState = 'default' | 'checked' | 'disabled';
33
34
  // Типи для spacing та breakpoints
34
35
  export type Breakpoint = 'xs' | 's' | 'm' | 'l' | 'xl';
35
36
 
@@ -287,6 +288,17 @@ export type Theme = {
287
288
  color: string;
288
289
  helpTextColor: string;
289
290
  };
291
+ leanerProgress: {
292
+ background: string;
293
+ progressColor: string;
294
+ };
295
+ switch: Record<
296
+ SwitchState,
297
+ {
298
+ background: string;
299
+ color: string;
300
+ }
301
+ >;
290
302
  };
291
303
 
292
304
  //TODO check and refactoring