@mychoice/mychoice-sdk-modules 2.2.23 → 2.2.25
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 +486 -143
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/insurances/car/pages/driver/helpers.d.ts +1 -1
- package/dist/cjs/insurances/car/pages/vehicle/sections/SectionPolicyDate.d.ts +2 -0
- package/dist/cjs/shared/boxes/InputFormBox/InputFormPhoneBox.d.ts +2 -2
- package/dist/cjs/shared/boxes/InputFormBox/interface.d.ts +3 -0
- package/dist/esm/index.js +488 -145
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/insurances/car/pages/driver/helpers.d.ts +1 -1
- package/dist/esm/insurances/car/pages/vehicle/sections/SectionPolicyDate.d.ts +2 -0
- package/dist/esm/shared/boxes/InputFormBox/InputFormPhoneBox.d.ts +2 -2
- package/dist/esm/shared/boxes/InputFormBox/interface.d.ts +3 -0
- package/dist/index.d.ts +4 -1
- package/package.json +4 -4
- package/dist/cjs/insurances/car/pages/quote/sections/VehicleOfferCoverage.d.ts +0 -3
- package/dist/cjs/insurances/car/pages/quote/sections/blocks/VehicleOfferCoverage.d.ts +0 -9
- package/dist/esm/insurances/car/pages/quote/sections/VehicleOfferCoverage.d.ts +0 -3
- package/dist/esm/insurances/car/pages/quote/sections/blocks/VehicleOfferCoverage.d.ts +0 -9
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { SelectOptionGroupInterface } from '@mychoice/mychoice-sdk-components';
|
|
2
2
|
/**
|
|
3
|
-
* Filter out G1/G2 options from "
|
|
3
|
+
* Filter out G1/G2 options (ALC, RB) from the "Criminal" section for trafficTicketsGroupOptions
|
|
4
4
|
*/
|
|
5
5
|
export declare const getTrafficTicketsGroupOptionsWithoutG1G2: () => SelectOptionGroupInterface[];
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { SdkFC } from '@mychoice/mychoice-sdk-components';
|
|
2
|
-
import {
|
|
3
|
-
export declare const InputFormPhoneBox: SdkFC<
|
|
2
|
+
import { InputFormPhoneBoxProps } from './interface';
|
|
3
|
+
export declare const InputFormPhoneBox: SdkFC<InputFormPhoneBoxProps>;
|
|
@@ -13,3 +13,6 @@ export type InputFormBoxProps = DefaultInputProps & {
|
|
|
13
13
|
export type InputFormEmailBoxProps = InputFormBoxProps & {
|
|
14
14
|
validationStatus?: ValidationStatusTypes;
|
|
15
15
|
};
|
|
16
|
+
export type InputFormPhoneBoxProps = InputFormBoxProps & {
|
|
17
|
+
validationStatus?: ValidationStatusTypes;
|
|
18
|
+
};
|
package/dist/index.d.ts
CHANGED
|
@@ -70,10 +70,13 @@ type InputFormBoxProps = DefaultInputProps & {
|
|
|
70
70
|
type InputFormEmailBoxProps = InputFormBoxProps & {
|
|
71
71
|
validationStatus?: ValidationStatusTypes;
|
|
72
72
|
};
|
|
73
|
+
type InputFormPhoneBoxProps = InputFormBoxProps & {
|
|
74
|
+
validationStatus?: ValidationStatusTypes;
|
|
75
|
+
};
|
|
73
76
|
|
|
74
77
|
declare const InputFormBox: SdkFC<InputFormBoxProps>;
|
|
75
78
|
|
|
76
|
-
declare const InputFormPhoneBox: SdkFC<
|
|
79
|
+
declare const InputFormPhoneBox: SdkFC<InputFormPhoneBoxProps>;
|
|
77
80
|
|
|
78
81
|
declare const InputFormEmailBox: SdkFC<InputFormEmailBoxProps>;
|
|
79
82
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mychoice/mychoice-sdk-modules",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.25",
|
|
4
4
|
"description": "Now I’m the model of a modern major general / The venerated Virginian veteran whose men are all / Lining up, to put me up on a pedestal / Writin’ letters to relatives / Embellishin’ my elegance and eloquence / But the elephant is in the room / The truth is in ya face when ya hear the British cannons go / BOOM",
|
|
5
5
|
"keywords": [],
|
|
6
6
|
"author": "GogMes",
|
|
@@ -30,8 +30,8 @@
|
|
|
30
30
|
},
|
|
31
31
|
"homepage": "https://github.com/hexdivision/mychoice-sdk#readme",
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@mychoice/mychoice-sdk-components": "^2.2.
|
|
34
|
-
"@mychoice/mychoice-sdk-store": "^2.2.
|
|
33
|
+
"@mychoice/mychoice-sdk-components": "^2.2.25",
|
|
34
|
+
"@mychoice/mychoice-sdk-store": "^2.2.25",
|
|
35
35
|
"@types/react-gtm-module": "^2.0.1",
|
|
36
36
|
"@types/react-places-autocomplete": "7.2.9",
|
|
37
37
|
"react-error-boundary": "^4.0.11",
|
|
@@ -40,5 +40,5 @@
|
|
|
40
40
|
"react-helmet": "^6.1.0",
|
|
41
41
|
"react-router-dom": "^6.3.0"
|
|
42
42
|
},
|
|
43
|
-
"gitHead": "
|
|
43
|
+
"gitHead": "887e4bfc4cf4c6849ce8306c43d5e55b20813411"
|
|
44
44
|
}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { SdkFC } from '@mychoice/mychoice-sdk-components';
|
|
2
|
-
export type VehicleOfferCoverageProps = {
|
|
3
|
-
annualPremium: number;
|
|
4
|
-
code: string;
|
|
5
|
-
deductible: string;
|
|
6
|
-
limit1: string;
|
|
7
|
-
limit2: string;
|
|
8
|
-
};
|
|
9
|
-
export declare const VehicleOfferCoverage: SdkFC<VehicleOfferCoverageProps>;
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { SdkFC } from '@mychoice/mychoice-sdk-components';
|
|
2
|
-
export type VehicleOfferCoverageProps = {
|
|
3
|
-
annualPremium: number;
|
|
4
|
-
code: string;
|
|
5
|
-
deductible: string;
|
|
6
|
-
limit1: string;
|
|
7
|
-
limit2: string;
|
|
8
|
-
};
|
|
9
|
-
export declare const VehicleOfferCoverage: SdkFC<VehicleOfferCoverageProps>;
|