@mindly/ui-components 5.97.8 → 5.97.10
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/cjs/index.js +3 -3
- package/dist/cjs/lib2/shared/types/onBoardingFlow.type.d.ts +9 -0
- package/dist/cjs/lib2/widgets/SpecialistCardWidget/SpecialistCardWidget.stories.d.ts +1 -0
- package/dist/esm/index.js +2 -2
- package/dist/esm/lib2/shared/types/onBoardingFlow.type.d.ts +9 -0
- package/dist/esm/lib2/widgets/SpecialistCardWidget/SpecialistCardWidget.stories.d.ts +1 -0
- package/dist/index.d.ts +9 -0
- package/package.json +1 -1
|
@@ -12,6 +12,7 @@ export interface Rule {
|
|
|
12
12
|
condition: ConditionRulesType;
|
|
13
13
|
value: string;
|
|
14
14
|
action: Action;
|
|
15
|
+
experimentId?: string;
|
|
15
16
|
}
|
|
16
17
|
export declare enum OnBoardingScreenStyleOptions {
|
|
17
18
|
DARK = "DARK",
|
|
@@ -95,4 +96,12 @@ export type OnBoardingFlowType = {
|
|
|
95
96
|
name: string;
|
|
96
97
|
screens: Record<string, OnBoardingScreensType>;
|
|
97
98
|
isWebToWeb?: boolean;
|
|
99
|
+
experiment?: {
|
|
100
|
+
enabled: boolean;
|
|
101
|
+
name: string;
|
|
102
|
+
variants: {
|
|
103
|
+
id: string;
|
|
104
|
+
name: string;
|
|
105
|
+
}[];
|
|
106
|
+
};
|
|
98
107
|
};
|
|
@@ -15,3 +15,4 @@ export declare const WithoutRatingAndExperience: Story;
|
|
|
15
15
|
export declare const WithoutExperience: Story;
|
|
16
16
|
export declare const WithSuperSpecialistAndNewSpecialist: Story;
|
|
17
17
|
export declare const WithSuperSpecialistAndNewSpecialistWithoutMatch: Story;
|
|
18
|
+
export declare const WithUsdCurrency: Story;
|
package/dist/index.d.ts
CHANGED
|
@@ -1486,6 +1486,7 @@ interface Rule {
|
|
|
1486
1486
|
condition: ConditionRulesType;
|
|
1487
1487
|
value: string;
|
|
1488
1488
|
action: Action;
|
|
1489
|
+
experimentId?: string;
|
|
1489
1490
|
}
|
|
1490
1491
|
declare enum OnBoardingScreenStyleOptions {
|
|
1491
1492
|
DARK = "DARK",
|
|
@@ -1569,6 +1570,14 @@ type OnBoardingFlowType = {
|
|
|
1569
1570
|
name: string;
|
|
1570
1571
|
screens: Record<string, OnBoardingScreensType>;
|
|
1571
1572
|
isWebToWeb?: boolean;
|
|
1573
|
+
experiment?: {
|
|
1574
|
+
enabled: boolean;
|
|
1575
|
+
name: string;
|
|
1576
|
+
variants: {
|
|
1577
|
+
id: string;
|
|
1578
|
+
name: string;
|
|
1579
|
+
}[];
|
|
1580
|
+
};
|
|
1572
1581
|
};
|
|
1573
1582
|
|
|
1574
1583
|
declare enum ContractStatusEnum {
|