@yuno-payments/dashboard-api-mfe 0.36.20-CORECM-11508.3 → 0.36.20-CORECM-11508.5
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.
|
@@ -77,7 +77,7 @@ export declare namespace Styling {
|
|
|
77
77
|
export declare namespace StylingSettings {
|
|
78
78
|
interface UpdateSettings {
|
|
79
79
|
styles: {
|
|
80
|
-
global
|
|
80
|
+
global?: {
|
|
81
81
|
accent_color?: string;
|
|
82
82
|
primary_background_color?: string;
|
|
83
83
|
primary_text_color?: string;
|
|
@@ -111,11 +111,11 @@ export declare namespace StylingSettings {
|
|
|
111
111
|
};
|
|
112
112
|
card?: {
|
|
113
113
|
save_on_success?: boolean;
|
|
114
|
-
visualization_mode?:
|
|
114
|
+
visualization_mode?: VisualizationMode;
|
|
115
115
|
};
|
|
116
116
|
web_sdk?: {
|
|
117
|
-
render_mode?: string;
|
|
118
117
|
hide_pay_button?: boolean;
|
|
118
|
+
render_mode?: RenderMode;
|
|
119
119
|
};
|
|
120
120
|
};
|
|
121
121
|
}
|
|
@@ -129,3 +129,11 @@ export declare namespace StylingSettings {
|
|
|
129
129
|
}[];
|
|
130
130
|
}
|
|
131
131
|
}
|
|
132
|
+
export interface VisualizationMode {
|
|
133
|
+
ONE_STEP: 'ONE_STEP';
|
|
134
|
+
STEP_BY_STEP: 'STEP_BY_STEP';
|
|
135
|
+
}
|
|
136
|
+
export interface RenderMode {
|
|
137
|
+
DEFAULT: 'DEFAULT';
|
|
138
|
+
FULL_SCREEN: 'FULL_SCREEN';
|
|
139
|
+
}
|
|
@@ -77,7 +77,7 @@ export declare namespace Styling {
|
|
|
77
77
|
export declare namespace StylingSettings {
|
|
78
78
|
interface UpdateSettings {
|
|
79
79
|
styles: {
|
|
80
|
-
global
|
|
80
|
+
global?: {
|
|
81
81
|
accent_color?: string;
|
|
82
82
|
primary_background_color?: string;
|
|
83
83
|
primary_text_color?: string;
|
|
@@ -111,11 +111,11 @@ export declare namespace StylingSettings {
|
|
|
111
111
|
};
|
|
112
112
|
card?: {
|
|
113
113
|
save_on_success?: boolean;
|
|
114
|
-
visualization_mode?:
|
|
114
|
+
visualization_mode?: VisualizationMode;
|
|
115
115
|
};
|
|
116
116
|
web_sdk?: {
|
|
117
|
-
render_mode?: string;
|
|
118
117
|
hide_pay_button?: boolean;
|
|
118
|
+
render_mode?: RenderMode;
|
|
119
119
|
};
|
|
120
120
|
};
|
|
121
121
|
}
|
|
@@ -129,3 +129,11 @@ export declare namespace StylingSettings {
|
|
|
129
129
|
}[];
|
|
130
130
|
}
|
|
131
131
|
}
|
|
132
|
+
export interface VisualizationMode {
|
|
133
|
+
ONE_STEP: 'ONE_STEP';
|
|
134
|
+
STEP_BY_STEP: 'STEP_BY_STEP';
|
|
135
|
+
}
|
|
136
|
+
export interface RenderMode {
|
|
137
|
+
DEFAULT: 'DEFAULT';
|
|
138
|
+
FULL_SCREEN: 'FULL_SCREEN';
|
|
139
|
+
}
|
package/build/index.d.ts
CHANGED
|
@@ -3742,7 +3742,7 @@ declare namespace Styling {
|
|
|
3742
3742
|
declare namespace StylingSettings {
|
|
3743
3743
|
interface UpdateSettings {
|
|
3744
3744
|
styles: {
|
|
3745
|
-
global
|
|
3745
|
+
global?: {
|
|
3746
3746
|
accent_color?: string;
|
|
3747
3747
|
primary_background_color?: string;
|
|
3748
3748
|
primary_text_color?: string;
|
|
@@ -3776,11 +3776,11 @@ declare namespace StylingSettings {
|
|
|
3776
3776
|
};
|
|
3777
3777
|
card?: {
|
|
3778
3778
|
save_on_success?: boolean;
|
|
3779
|
-
visualization_mode?:
|
|
3779
|
+
visualization_mode?: VisualizationMode;
|
|
3780
3780
|
};
|
|
3781
3781
|
web_sdk?: {
|
|
3782
|
-
render_mode?: string;
|
|
3783
3782
|
hide_pay_button?: boolean;
|
|
3783
|
+
render_mode?: RenderMode;
|
|
3784
3784
|
};
|
|
3785
3785
|
};
|
|
3786
3786
|
}
|
|
@@ -3794,6 +3794,14 @@ declare namespace StylingSettings {
|
|
|
3794
3794
|
}[];
|
|
3795
3795
|
}
|
|
3796
3796
|
}
|
|
3797
|
+
interface VisualizationMode {
|
|
3798
|
+
ONE_STEP: 'ONE_STEP';
|
|
3799
|
+
STEP_BY_STEP: 'STEP_BY_STEP';
|
|
3800
|
+
}
|
|
3801
|
+
interface RenderMode {
|
|
3802
|
+
DEFAULT: 'DEFAULT';
|
|
3803
|
+
FULL_SCREEN: 'FULL_SCREEN';
|
|
3804
|
+
}
|
|
3797
3805
|
|
|
3798
3806
|
declare function useUpdateStylingTheme(): _tanstack_react_query.UseMutationResult<unknown, unknown, Styling.UpdateStylingThemeParams, unknown>;
|
|
3799
3807
|
|