@hievilmath/browser-formidavim 1.7.1 → 1.8.0
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/README.md +6 -0
- package/index.js +626 -358
- package/index.mjs +21129 -19835
- package/lib/components/Banner.d.ts +8 -0
- package/lib/components/ComponentFactory.d.ts +1 -0
- package/lib/components/DataRenderer.d.ts +1 -0
- package/lib/components/PipelineProcessor.d.ts +1 -0
- package/lib/components/Renderer.d.ts +1 -0
- package/lib/components/complex/Address.d.ts +21 -0
- package/lib/components/complex/Checkout/Billing.d.ts +22 -0
- package/lib/components/complex/Checkout/Checkout.d.ts +7 -0
- package/lib/components/complex/Checkout/CheckoutModal.d.ts +14 -0
- package/lib/components/complex/Checkout/OrderSummary.d.ts +8 -0
- package/lib/components/complex/Checkout/mock-data/mock-order.d.ts +39 -0
- package/lib/components/complex/Modal.d.ts +7 -0
- package/lib/components/complex/TextInput.d.ts +10 -0
- package/lib/components/icons/IconError.d.ts +2 -0
- package/lib/components/icons/IconX.d.ts +2 -0
- package/lib/components/icons/icon-props.d.ts +5 -0
- package/lib/components/index.d.ts +3 -0
- package/lib/components/inputs/Address.d.ts +0 -53
- package/lib/constants/states.d.ts +53 -0
- package/lib/hooks/useFlowNavigation.d.ts +4 -0
- package/lib/hooks/useFlowStore.d.ts +2 -0
- package/lib/state/slices/flow.slice.d.ts +8 -1
- package/lib/styled-components/layout.d.ts +31 -0
- package/lib/styled-components/uiComponents.d.ts +5 -0
- package/package.json +1 -1
|
@@ -3,6 +3,7 @@ import { FormComponent } from '../../../../../axios/formidavim/src/index.ts';
|
|
|
3
3
|
export interface FormComponentProps {
|
|
4
4
|
formComponent: Partial<FormComponent>;
|
|
5
5
|
formidavimHost?: string;
|
|
6
|
+
isPreview: boolean;
|
|
6
7
|
}
|
|
7
8
|
export declare class ComponentFactory {
|
|
8
9
|
private static registry;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
export interface AddressProps {
|
|
3
|
+
idPrefix: string;
|
|
4
|
+
label: string;
|
|
5
|
+
firstName: string;
|
|
6
|
+
lastName: string;
|
|
7
|
+
company?: string;
|
|
8
|
+
country: string;
|
|
9
|
+
address1: string;
|
|
10
|
+
address2: string;
|
|
11
|
+
city: string;
|
|
12
|
+
state: string;
|
|
13
|
+
zipCode: string;
|
|
14
|
+
}
|
|
15
|
+
export interface AddressRef {
|
|
16
|
+
reportValidity: () => boolean;
|
|
17
|
+
}
|
|
18
|
+
export declare const Address: React.ForwardRefExoticComponent<{
|
|
19
|
+
value: AddressProps;
|
|
20
|
+
onChange: (field: keyof AddressProps, value: string) => void;
|
|
21
|
+
} & React.RefAttributes<AddressRef>>;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { DefaultApi } from '../../../../../../../axios/formidavim/src/index.ts';
|
|
2
|
+
import { FC } from 'react';
|
|
3
|
+
import { AddressProps } from '../Address';
|
|
4
|
+
interface BillingProps {
|
|
5
|
+
api: DefaultApi;
|
|
6
|
+
onPlaceOrder: (paymentToken: string, cardHolderName: string, billingAddress: AddressProps, recurringPaymentAgreed: boolean, recurringPaymentAgreementText: string) => void;
|
|
7
|
+
subtotal: string;
|
|
8
|
+
tax: string;
|
|
9
|
+
billingAddress: AddressProps;
|
|
10
|
+
shippingAddress: AddressProps;
|
|
11
|
+
showRecurringPaymentDisclosure: boolean;
|
|
12
|
+
errorMessage: string;
|
|
13
|
+
setErrorMessage: (errorMessage: string) => void;
|
|
14
|
+
onChange: (field: keyof AddressProps, value: string) => void;
|
|
15
|
+
}
|
|
16
|
+
declare global {
|
|
17
|
+
interface Window {
|
|
18
|
+
Netvalve: any;
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
export declare const Billing: FC<BillingProps>;
|
|
22
|
+
export {};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { FC } from 'react';
|
|
2
|
+
import { FormComponent } from '../../../../../../../axios/formidavim/src/index.ts';
|
|
3
|
+
export declare const RECURRING_SUBSCRIPTION_TYPE = "subscription_variation";
|
|
4
|
+
export declare const Checkout: FC<{
|
|
5
|
+
formComponent: Partial<FormComponent>;
|
|
6
|
+
isPreview: boolean;
|
|
7
|
+
}>;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { FC } from 'react';
|
|
2
|
+
import { CartPaymentDto, DefaultApi } from '../../../../../../../axios/formidavim/src/index.ts';
|
|
3
|
+
interface CheckoutModalProps {
|
|
4
|
+
onClose: () => void;
|
|
5
|
+
onPaymentSuccess: (order: any) => void;
|
|
6
|
+
api: DefaultApi;
|
|
7
|
+
subtotal: string;
|
|
8
|
+
tax: string;
|
|
9
|
+
shipping: string;
|
|
10
|
+
cartPaymentDto: Pick<CartPaymentDto, 'lineItems' | 'billingInfo' | 'shippingInfo' | 'wcCustomerId'>;
|
|
11
|
+
isPreview: boolean;
|
|
12
|
+
}
|
|
13
|
+
export declare const CheckoutModal: FC<CheckoutModalProps>;
|
|
14
|
+
export {};
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
export declare const mockOrder: {
|
|
2
|
+
id: number;
|
|
3
|
+
orderNumber: string;
|
|
4
|
+
status: string;
|
|
5
|
+
total: string;
|
|
6
|
+
total_tax: string;
|
|
7
|
+
shipping_total: string;
|
|
8
|
+
currency: string;
|
|
9
|
+
line_items: {
|
|
10
|
+
productId: number;
|
|
11
|
+
variationId: null;
|
|
12
|
+
sku: string;
|
|
13
|
+
name: string;
|
|
14
|
+
quantity: number;
|
|
15
|
+
total: string;
|
|
16
|
+
subtotal: string;
|
|
17
|
+
price: number;
|
|
18
|
+
}[];
|
|
19
|
+
billingInfo: {
|
|
20
|
+
firstName: string;
|
|
21
|
+
lastName: string;
|
|
22
|
+
address1: string;
|
|
23
|
+
city: string;
|
|
24
|
+
state: string;
|
|
25
|
+
postcode: string;
|
|
26
|
+
country: string;
|
|
27
|
+
email: string;
|
|
28
|
+
phone: string;
|
|
29
|
+
};
|
|
30
|
+
shippingInfo: {
|
|
31
|
+
firstName: string;
|
|
32
|
+
lastName: string;
|
|
33
|
+
address1: string;
|
|
34
|
+
city: string;
|
|
35
|
+
state: string;
|
|
36
|
+
postcode: string;
|
|
37
|
+
country: string;
|
|
38
|
+
};
|
|
39
|
+
};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
interface TextInputProps extends React.InputHTMLAttributes<HTMLInputElement> {
|
|
2
|
+
label: string;
|
|
3
|
+
visible?: boolean;
|
|
4
|
+
id: string;
|
|
5
|
+
}
|
|
6
|
+
export interface TextInputRef {
|
|
7
|
+
reportValidity: () => boolean;
|
|
8
|
+
}
|
|
9
|
+
export declare const TextInput: import('react').ForwardRefExoticComponent<TextInputProps & import('react').RefAttributes<TextInputRef>>;
|
|
10
|
+
export {};
|
|
@@ -8,4 +8,7 @@ export { FormComponentRenderer } from './FormComponentRenderer';
|
|
|
8
8
|
export { FormWrapper } from './FormWrapper';
|
|
9
9
|
export { DataRenderer } from './DataRenderer';
|
|
10
10
|
export { PipelineProcessor } from './PipelineProcessor';
|
|
11
|
+
export { useFlowNavigation } from '../hooks/useFlowNavigation';
|
|
12
|
+
export { useFlowStore } from '../hooks/useFlowStore';
|
|
13
|
+
export { useConditionEvaluator } from '../hooks/useConditionEvaluator';
|
|
11
14
|
export { ComponentFactory } from './ComponentFactory';
|
|
@@ -1,58 +1,5 @@
|
|
|
1
1
|
import { FC } from 'react';
|
|
2
2
|
import { FormComponent } from '../../../../../../axios/formidavim/src/index.ts';
|
|
3
|
-
export declare const states: {
|
|
4
|
-
AL: string;
|
|
5
|
-
AK: string;
|
|
6
|
-
AZ: string;
|
|
7
|
-
AR: string;
|
|
8
|
-
CA: string;
|
|
9
|
-
CO: string;
|
|
10
|
-
CT: string;
|
|
11
|
-
DE: string;
|
|
12
|
-
FL: string;
|
|
13
|
-
GA: string;
|
|
14
|
-
HI: string;
|
|
15
|
-
ID: string;
|
|
16
|
-
IL: string;
|
|
17
|
-
IN: string;
|
|
18
|
-
IA: string;
|
|
19
|
-
KS: string;
|
|
20
|
-
KY: string;
|
|
21
|
-
LA: string;
|
|
22
|
-
ME: string;
|
|
23
|
-
MD: string;
|
|
24
|
-
MA: string;
|
|
25
|
-
MI: string;
|
|
26
|
-
MN: string;
|
|
27
|
-
MS: string;
|
|
28
|
-
MO: string;
|
|
29
|
-
MT: string;
|
|
30
|
-
NE: string;
|
|
31
|
-
NV: string;
|
|
32
|
-
NH: string;
|
|
33
|
-
NJ: string;
|
|
34
|
-
NM: string;
|
|
35
|
-
NY: string;
|
|
36
|
-
NC: string;
|
|
37
|
-
ND: string;
|
|
38
|
-
OH: string;
|
|
39
|
-
OK: string;
|
|
40
|
-
OR: string;
|
|
41
|
-
PA: string;
|
|
42
|
-
RI: string;
|
|
43
|
-
SC: string;
|
|
44
|
-
SD: string;
|
|
45
|
-
TN: string;
|
|
46
|
-
TX: string;
|
|
47
|
-
UT: string;
|
|
48
|
-
VT: string;
|
|
49
|
-
VA: string;
|
|
50
|
-
WA: string;
|
|
51
|
-
DC: string;
|
|
52
|
-
WV: string;
|
|
53
|
-
WI: string;
|
|
54
|
-
WY: string;
|
|
55
|
-
};
|
|
56
3
|
export declare const translateStateToAbbr: (stateString: string) => string;
|
|
57
4
|
export declare const translateStateToFull: (stateString: string) => string;
|
|
58
5
|
export declare const Address: FC<{
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
export declare const STATES: {
|
|
2
|
+
AL: string;
|
|
3
|
+
AK: string;
|
|
4
|
+
AZ: string;
|
|
5
|
+
AR: string;
|
|
6
|
+
CA: string;
|
|
7
|
+
CO: string;
|
|
8
|
+
CT: string;
|
|
9
|
+
DE: string;
|
|
10
|
+
FL: string;
|
|
11
|
+
GA: string;
|
|
12
|
+
HI: string;
|
|
13
|
+
ID: string;
|
|
14
|
+
IL: string;
|
|
15
|
+
IN: string;
|
|
16
|
+
IA: string;
|
|
17
|
+
KS: string;
|
|
18
|
+
KY: string;
|
|
19
|
+
LA: string;
|
|
20
|
+
ME: string;
|
|
21
|
+
MD: string;
|
|
22
|
+
MA: string;
|
|
23
|
+
MI: string;
|
|
24
|
+
MN: string;
|
|
25
|
+
MS: string;
|
|
26
|
+
MO: string;
|
|
27
|
+
MT: string;
|
|
28
|
+
NE: string;
|
|
29
|
+
NV: string;
|
|
30
|
+
NH: string;
|
|
31
|
+
NJ: string;
|
|
32
|
+
NM: string;
|
|
33
|
+
NY: string;
|
|
34
|
+
NC: string;
|
|
35
|
+
ND: string;
|
|
36
|
+
OH: string;
|
|
37
|
+
OK: string;
|
|
38
|
+
OR: string;
|
|
39
|
+
PA: string;
|
|
40
|
+
RI: string;
|
|
41
|
+
SC: string;
|
|
42
|
+
SD: string;
|
|
43
|
+
TN: string;
|
|
44
|
+
TX: string;
|
|
45
|
+
UT: string;
|
|
46
|
+
VT: string;
|
|
47
|
+
VA: string;
|
|
48
|
+
WA: string;
|
|
49
|
+
DC: string;
|
|
50
|
+
WV: string;
|
|
51
|
+
WI: string;
|
|
52
|
+
WY: string;
|
|
53
|
+
};
|
|
@@ -22,6 +22,8 @@ export declare const useFlowStore: () => {
|
|
|
22
22
|
getCurrentFlowValue: () => Partial<Flow>;
|
|
23
23
|
setCurrentFormValue: (form: any) => void;
|
|
24
24
|
getCurrentFormValue: () => Partial<import('../../../../../axios/formidavim/src/index.ts').Form>;
|
|
25
|
+
setShowLoaderValue: (loading: boolean) => void;
|
|
26
|
+
getShowLoader: () => boolean;
|
|
25
27
|
getFormidavimHost: () => string | undefined;
|
|
26
28
|
setFormidavimHostValue: (host: string | undefined) => void;
|
|
27
29
|
setFlowAndPatientValue: (field: string, value: any) => void;
|
|
@@ -7,6 +7,7 @@ export interface FlowSliceState {
|
|
|
7
7
|
manualDisableSubmit: boolean;
|
|
8
8
|
currentFlow: Partial<Flow>;
|
|
9
9
|
currentForm: Partial<Form>;
|
|
10
|
+
showLoader: boolean;
|
|
10
11
|
formidavimHost?: string;
|
|
11
12
|
}
|
|
12
13
|
export declare const flowSlice: import('@reduxjs/toolkit').Slice<FlowSliceState, {
|
|
@@ -25,6 +26,7 @@ export declare const flowSlice: import('@reduxjs/toolkit').Slice<FlowSliceState,
|
|
|
25
26
|
setManualDisableSubmit: (state: import('immer').WritableDraft<FlowSliceState>, action: PayloadAction<boolean>) => void;
|
|
26
27
|
setCurrentFlow: (state: import('immer').WritableDraft<FlowSliceState>, action: PayloadAction<Partial<Flow>>) => void;
|
|
27
28
|
setCurrentForm: (state: import('immer').WritableDraft<FlowSliceState>, action: PayloadAction<Partial<Form>>) => void;
|
|
29
|
+
setShowLoader: (state: import('immer').WritableDraft<FlowSliceState>, action: PayloadAction<boolean>) => void;
|
|
28
30
|
setFormidavimHost: (state: import('immer').WritableDraft<FlowSliceState>, action: PayloadAction<string | undefined>) => void;
|
|
29
31
|
}, "flow", "flow", {
|
|
30
32
|
selectInputValues: (state: FlowSliceState) => Record<string, any>;
|
|
@@ -33,6 +35,7 @@ export declare const flowSlice: import('@reduxjs/toolkit').Slice<FlowSliceState,
|
|
|
33
35
|
selectManualDisableSubmit: (state: FlowSliceState) => boolean;
|
|
34
36
|
selectCurrentFlow: (state: FlowSliceState) => Partial<Flow>;
|
|
35
37
|
selectCurrentForm: (state: FlowSliceState) => Partial<Form>;
|
|
38
|
+
selectShowLoader: (state: FlowSliceState) => boolean;
|
|
36
39
|
selectFormidavimHost: (state: FlowSliceState) => string | undefined;
|
|
37
40
|
}>;
|
|
38
41
|
export declare const setInputValue: import('@reduxjs/toolkit').ActionCreatorWithPayload<{
|
|
@@ -41,7 +44,7 @@ export declare const setInputValue: import('@reduxjs/toolkit').ActionCreatorWith
|
|
|
41
44
|
}, "flow/setInputValue">, setInputValues: import('@reduxjs/toolkit').ActionCreatorWithPayload<Record<string, any>, "flow/setInputValues">, resetInputValues: import('@reduxjs/toolkit').ActionCreatorWithoutPayload<"flow/resetInputValues">, resetAndSetInputValues: import('@reduxjs/toolkit').ActionCreatorWithPayload<Record<string, any>, "flow/resetAndSetInputValues">, setInputError: import('@reduxjs/toolkit').ActionCreatorWithPayload<{
|
|
42
45
|
field: string;
|
|
43
46
|
error: string | null;
|
|
44
|
-
}, "flow/setInputError">, setDisableSubmit: import('@reduxjs/toolkit').ActionCreatorWithPayload<boolean, "flow/setDisableSubmit">, setManualDisableSubmit: import('@reduxjs/toolkit').ActionCreatorWithPayload<boolean, "flow/setManualDisableSubmit">, setCurrentFlow: import('@reduxjs/toolkit').ActionCreatorWithPayload<Partial<Flow>, "flow/setCurrentFlow">, setCurrentForm: import('@reduxjs/toolkit').ActionCreatorWithPayload<Partial<Form>, "flow/setCurrentForm">, setFormidavimHost: import('@reduxjs/toolkit').ActionCreatorWithOptionalPayload<string | undefined, "flow/setFormidavimHost">;
|
|
47
|
+
}, "flow/setInputError">, setDisableSubmit: import('@reduxjs/toolkit').ActionCreatorWithPayload<boolean, "flow/setDisableSubmit">, setManualDisableSubmit: import('@reduxjs/toolkit').ActionCreatorWithPayload<boolean, "flow/setManualDisableSubmit">, setCurrentFlow: import('@reduxjs/toolkit').ActionCreatorWithPayload<Partial<Flow>, "flow/setCurrentFlow">, setCurrentForm: import('@reduxjs/toolkit').ActionCreatorWithPayload<Partial<Form>, "flow/setCurrentForm">, setShowLoader: import('@reduxjs/toolkit').ActionCreatorWithPayload<boolean, "flow/setShowLoader">, setFormidavimHost: import('@reduxjs/toolkit').ActionCreatorWithOptionalPayload<string | undefined, "flow/setFormidavimHost">;
|
|
45
48
|
export declare const selectInputValues: import('reselect').Selector<{
|
|
46
49
|
flow: FlowSliceState;
|
|
47
50
|
}, Record<string, any>, []> & {
|
|
@@ -66,6 +69,10 @@ export declare const selectInputValues: import('reselect').Selector<{
|
|
|
66
69
|
flow: FlowSliceState;
|
|
67
70
|
}, Partial<Form>, []> & {
|
|
68
71
|
unwrapped: (state: FlowSliceState) => Partial<Form>;
|
|
72
|
+
}, selectShowLoader: import('reselect').Selector<{
|
|
73
|
+
flow: FlowSliceState;
|
|
74
|
+
}, boolean, []> & {
|
|
75
|
+
unwrapped: (state: FlowSliceState) => boolean;
|
|
69
76
|
}, selectFormidavimHost: import('reselect').Selector<{
|
|
70
77
|
flow: FlowSliceState;
|
|
71
78
|
}, string | undefined, []> & {
|
|
@@ -134,7 +134,38 @@ export declare const CRModalFooter: import('styled-components/dist/types').IStyl
|
|
|
134
134
|
export declare const FormSelectWrapper: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, FormSelectWrapperProps & {
|
|
135
135
|
$marginBottom?: string;
|
|
136
136
|
}>> & string;
|
|
137
|
+
export declare const Select: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').SelectHTMLAttributes<HTMLSelectElement>, HTMLSelectElement>, never>> & string;
|
|
137
138
|
export declare const FormFileWrapper: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, FormFileWrapperProps>> & string;
|
|
138
139
|
export declare const FormDatePickerWrapper: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, FormDatePickerWrapperProps>> & string;
|
|
139
140
|
export declare const FlowContainer: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
141
|
+
export declare const ModalContent: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
142
|
+
export declare const ModalContainer: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
143
|
+
export declare const ModalBackdrop: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
144
|
+
export declare const TabsWrapper: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
145
|
+
export declare const TabButton: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, never>> & string;
|
|
146
|
+
export declare const SlideUpDownContainer: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {
|
|
147
|
+
$closing?: boolean;
|
|
148
|
+
$shouldAnimate?: boolean;
|
|
149
|
+
}>> & string;
|
|
150
|
+
export declare const CheckoutContainer: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
151
|
+
export declare const CheckoutCard: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
152
|
+
export declare const CartHeader: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
153
|
+
export declare const YourCart: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, never>> & string;
|
|
154
|
+
export declare const CartContent: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
155
|
+
export declare const ProductList: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLUListElement>, HTMLUListElement>, never>> & string;
|
|
156
|
+
export declare const ItemPrice: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, never>> & string;
|
|
157
|
+
export declare const ProductItem: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
158
|
+
export declare const ItemContainer: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
159
|
+
export declare const ItemName: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, never>> & string;
|
|
160
|
+
export declare const ItemDescription: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
161
|
+
export declare const ItemCaption: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
162
|
+
export declare const TotalAmount: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, never>> & string;
|
|
163
|
+
export declare const Divider: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLHRElement>, HTMLHRElement>, never>> & string;
|
|
164
|
+
export declare const PrimaryBtn: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, never>> & string;
|
|
165
|
+
export declare const ModalClose: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, never>> & string;
|
|
166
|
+
export declare const ModalSection: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
167
|
+
export declare const ModalHeader: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
168
|
+
export declare const ModalTitle: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, never>> & string;
|
|
169
|
+
export declare const PaymentInfoContainer: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
170
|
+
export declare const PaymentExpiryCvvContainer: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
140
171
|
export {};
|
|
@@ -161,4 +161,9 @@ export declare const TitrationButton: import('styled-components/dist/types').ISt
|
|
|
161
161
|
export declare const TitrationInputContainer: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
162
162
|
export declare const TitrationInput: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, never>> & string;
|
|
163
163
|
export declare const TitrationUnitsLabel: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, never>> & string;
|
|
164
|
+
export declare const StyledLink: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<import('react').DetailedHTMLProps<import('react').AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>, {
|
|
165
|
+
$color?: string;
|
|
166
|
+
$fontWeight?: string;
|
|
167
|
+
$fontSize?: string;
|
|
168
|
+
}>> & string;
|
|
164
169
|
export {};
|