@mindly/ui-components 5.102.3 → 5.102.4

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.
@@ -157,6 +157,7 @@ export type OnBoardingFlowType = {
157
157
  promocode_duration_min?: number | null;
158
158
  duration_min?: number | null;
159
159
  isDefault?: boolean;
160
+ theme?: OnboardingVariant;
160
161
  };
161
162
  export declare enum OnboardingVariant {
162
163
  default = "default",
@@ -8,3 +8,4 @@ export * from './specialistStatus';
8
8
  export * from './userCan';
9
9
  export * from './filter';
10
10
  export * from './session';
11
+ export { ONBOARDING_THEME_DEFAULT_COLORS } from './onboarding';
@@ -0,0 +1,4 @@
1
+ import { OnboardingVariant } from '../types';
2
+ export declare const ONBOARDING_THEME_DEFAULT_COLORS: Record<OnboardingVariant, {
3
+ defaultThemeColor: string;
4
+ }>;